Skip to content

Instantly share code, notes, and snippets.

@dougdowson
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dougdowson/f648e89d284d18b995ab to your computer and use it in GitHub Desktop.
Save dougdowson/f648e89d284d18b995ab to your computer and use it in GitHub Desktop.
Line Chart: BLS Industry Data
var margin = {top: 10, right: 65, bottom: 25, left: 55},
width = 675 - margin.left - margin.right,
height = 450 - margin.top - margin.bottom,
numberFormat = d3.format(",.0f"),
dollarFormat = d3.format("$,.0f"),
labelBuffer = 7;
var xScale = d3.time.scale()
.range([0, width]);
var yScale = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(yScale)
.ticks(10)
.orient("left")
.tickSize(-width)
.tickFormat(numberFormat);
var parseDate = d3.time.format("%d-%m-%Y").parse;
var svg = d3.select(".chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
d3.csv("data.csv", function(error, data) {
var menu = d3.select("#menu");
var labelFormat = d3.format(",.0f");
var selectedVariable = "employment";
var selectedSeries = menu.property("value");
var line = d3.svg.line()
.x(function(d) { return xScale(d.date); })
.y(function(d) { return yScale(d[selectedVariable]); });
data.forEach(function(d) {
d.date = parseDate(d.date);
d.employment = +d.employment;
d.hourlyearnings = +d.hourlyearnings;
d.weeklyhours = +d.weeklyhours;
});
var filteredData = data.filter(function(d) { return d.series == selectedSeries; });
xScale.domain(d3.extent(data, function(d) { return d.date }));
yScale.domain([d3.min(filteredData,function (d) { return 0.95*d[selectedVariable]}),d3.max(filteredData,function (d) { return 1.05*d[selectedVariable]})]);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis);
valuesByIndustry = d3.nest()
.key(function(d) { return d.series})
.entries(data);
var industries = svg.append("g").selectAll(".industryLine")
.data(valuesByIndustry)
.enter()
.append("g")
.attr("class", "industryLine")
.attr("id", function(d) { return "series" + d.key; });
industries.append("path")
.attr("class", selectedVariable)
.attr("d", function(d) { return line(d.values); })
.style("stroke", "#66BFED");
industries.append("circle")
.attr("cx", function(d) { return xScale(d.values[0].date); })
.attr("cy", function(d) { return yScale((d.values[0])[selectedVariable]); })
.attr("r", 3)
.attr("class", "circleone");
industries.append("circle")
.attr("cx", function(d) { return xScale(d.values[d.values.length - 1].date); })
.attr("cy", function(d) { return yScale((d.values[d.values.length - 1])[selectedVariable]); })
.attr("r", 3)
.attr("class", "circletwo");
industries.append("text")
.text(function(d) { return labelFormat((d.values[d.values.length - 1])[selectedVariable]); })
.attr("x", function(d) { return xScale(d.values[d.values.length - 1].date) + labelBuffer; })
.attr("y", function(d) { return yScale((d.values[d.values.length - 1])[selectedVariable]) + 3; });
svg.selectAll("g")
.classed("g-baseline", function(d) { return d == 0 });
d3.selectAll(".y.axis .tick text")
.attr("x", "-10");
d3.select("#series" + selectedSeries)
.classed("show", true);
d3.selectAll("." + selectedVariable)
.classed("show",true);
d3.select("#" + selectedVariable)
.classed("selected",true);
d3.select("#unit").text("Thousands");
d3.selectAll(".button").on("click", function(){
d3.selectAll(".button")
.classed("selected",false);
selectedVariable = d3.select(this).attr("id");
d3.selectAll(".industryLine").selectAll("path")
.attr("class", selectedVariable);
if (selectedVariable=="employment") {
labelFormat = d3.format(",.0f");
d3.select("#unit").text("Thousands");
} else if (selectedVariable=="weeklyhours") {
labelFormat = d3.format(",.1f");
d3.select("#unit").text("Hours");
} else if (selectedVariable=="hourlyearnings") {
labelFormat = d3.format("$,.2f");
d3.select("#unit").text("Current dollars");
} else if (selectedVariable=="annualearnings") {
labelFormat = d3.format("$,.0f");
d3.select("#unit").text("Current dollars");
} else if (selectedVariable=="realannualearnings") {
labelFormat = d3.format("$,.0f");
d3.select("#unit").text("April 2014 dollars");
}
d3.selectAll("." + selectedVariable)
.classed("show",true);
d3.select("#" + selectedVariable)
.classed("selected",true);
selectedSeries = menu.property("value");
filteredData = data.filter(function(d) { return d.series == selectedSeries; });
yScale = d3.scale.linear()
.range([height, 0])
.domain([d3.min(filteredData,function (d) { return 0.95*d[selectedVariable]}),d3.max(filteredData,function (d) { return 1.05*d[selectedVariable]})]);
yAxis = d3.svg.axis()
.scale(yScale)
.ticks(10)
.orient("left")
.tickSize(-width);
if (selectedVariable=="hourlyearnings") {
yAxis.tickFormat(d3.format("$,.2f"));
} else if (selectedVariable=="annualearnings") {
yAxis.tickFormat(dollarFormat);
} else if (selectedVariable=="realannualearnings") {
yAxis.tickFormat(dollarFormat);
}
line = d3.svg.line()
.x(function(d) { return xScale(d.date); })
.y(function(d) { return yScale(d[selectedVariable]); });
d3.selectAll(".y.axis")
.call(yAxis);
d3.selectAll(".y.axis .tick text")
.attr("x", "-10");
d3.selectAll(".industryLine").selectAll("path")
.attr("d", function(d) { return line(d.values); });
d3.selectAll(".industryLine").select("circle.circleone")
.attr("cx", function(d) { return xScale(d.values[0].date); })
.attr("cy", function(d) { return yScale((d.values[0])[selectedVariable]); });
d3.selectAll(".industryLine").select("circle.circletwo")
.attr("cx", function(d) { return xScale(d.values[d.values.length - 1].date); })
.attr("cy", function(d) { return yScale((d.values[d.values.length - 1])[selectedVariable]); });
d3.selectAll(".industryLine").selectAll("text")
.text(function(d) { return labelFormat((d.values[d.values.length - 1])[selectedVariable]); })
.attr("x", function(d) { return xScale(d.values[d.values.length - 1].date) + labelBuffer; })
.attr("y", function(d) { return yScale((d.values[d.values.length - 1])[selectedVariable]) + 3; });
});
d3.select("#menu").on("change", function(){
selectedSeries = menu.property("value");
filteredData = data.filter(function(d) { return d.series == selectedSeries; });
yScale = d3.scale.linear()
.range([height, 0])
.domain([d3.min(filteredData,function (d) { return 0.95*d[selectedVariable]}),d3.max(filteredData,function (d) { return 1.05*d[selectedVariable]})]);
yAxis = d3.svg.axis()
.scale(yScale)
.ticks(10)
.orient("left")
.tickSize(-width);
if (selectedVariable=="hourlyearnings") {
yAxis.tickFormat(dollarFormat);
} else if (selectedVariable=="annualearnings") {
yAxis.tickFormat(dollarFormat);
} else if (selectedVariable=="realannualearnings") {
yAxis.tickFormat(dollarFormat);
}
line = d3.svg.line()
.x(function(d) { return xScale(d.date); })
.y(function(d) { return yScale(d[selectedVariable]); });
d3.selectAll(".y.axis")
.call(yAxis);
d3.selectAll(".y.axis .tick text")
.attr("x", "-10");
d3.selectAll(".industryLine").selectAll("path")
.attr("d", function(d) { return line(d.values); })
d3.selectAll(".industryLine")
.classed("show", false);
d3.select("#series" + selectedSeries)
.classed("show", true);
d3.selectAll(".industryLine").select("circle.circleone")
.attr("cx", function(d) { return xScale(d.values[0].date); })
.attr("cy", function(d) { return yScale((d.values[0])[selectedVariable]); });
d3.selectAll(".industryLine").select("circle.circletwo")
.attr("cx", function(d) { return xScale(d.values[d.values.length - 1].date); })
.attr("cy", function(d) { return yScale((d.values[d.values.length - 1])[selectedVariable]); });
d3.selectAll(".industryLine").selectAll("text")
.text(function(d) { return labelFormat((d.values[d.values.length - 1])[selectedVariable]); })
.attr("x", function(d) { return xScale(d.values[d.values.length - 1].date) + labelBuffer; })
.attr("y", function(d) { return yScale((d.values[d.values.length - 1])[selectedVariable]) + 3; });
});
});
d3.select(self.frameElement).style("height", "660px");
We can't make this file beautiful and searchable because it's too large.
date,series,industry_code,naics_code,industry_name,employment,hourlyearnings,weeklyhours,annualearnings,realannualearnings
1-3-2006,CEU0500000001,05000000,-,Total private,114094,20.04,34.4,35847.55,42534.79
1-4-2006,CEU0500000001,05000000,-,Total private,114260,20.16,34.6,36271.87,42675.16
1-5-2006,CEU0500000001,05000000,-,Total private,114276,20.13,34.5,36113.22,42278.68
1-6-2006,CEU0500000001,05000000,-,Total private,114357,20.22,34.6,36379.82,42506.84
1-7-2006,CEU0500000001,05000000,-,Total private,114513,20.3,34.6,36523.76,42549.2
1-8-2006,CEU0500000001,05000000,-,Total private,114659,20.32,34.5,36454.08,42384.7
1-9-2006,CEU0500000001,05000000,-,Total private,114745,20.41,34.5,36615.54,42782.25
1-10-2006,CEU0500000001,05000000,-,Total private,114761,20.44,34.5,36669.36,43078.68
1-11-2006,CEU0500000001,05000000,-,Total private,114956,20.48,34.5,36741.12,43227.25
1-12-2006,CEU0500000001,05000000,-,Total private,115122,20.57,34.7,37116.51,43603.99
1-1-2007,CEU0500000001,05000000,-,Total private,115353,20.6,34.5,36956.4,43283.77
1-2-2007,CEU0500000001,05000000,-,Total private,115405,20.68,34.5,37099.92,43220.62
1-3-2007,CEU0500000001,05000000,-,Total private,115575,20.77,34.6,37369.38,43141.7
1-4-2007,CEU0500000001,05000000,-,Total private,115627,20.83,34.6,37477.34,42987.08
1-5-2007,CEU0500000001,05000000,-,Total private,115753,20.88,34.6,37567.3,42828.55
1-6-2007,CEU0500000001,05000000,-,Total private,115810,21,34.6,37783.2,42991.37
1-7-2007,CEU0500000001,05000000,-,Total private,115813,21,34.6,37783.2,43002.31
1-8-2007,CEU0500000001,05000000,-,Total private,115742,21.04,34.6,37855.17,43163.38
1-9-2007,CEU0500000001,05000000,-,Total private,115774,21.07,34.6,37909.14,43106.13
1-10-2007,CEU0500000001,05000000,-,Total private,115838,21.11,34.5,37871.34,42971.21
1-11-2007,CEU0500000001,05000000,-,Total private,115919,21.16,34.5,37961.04,42818.67
1-12-2007,CEU0500000001,05000000,-,Total private,115974,21.21,34.6,38161.03,43073.15
1-1-2008,CEU0500000001,05000000,-,Total private,115977,21.24,34.6,38215.01,42920.73
1-2-2008,CEU0500000001,05000000,-,Total private,115862,21.31,34.6,38340.95,42937.49
1-3-2008,CEU0500000001,05000000,-,Total private,115756,21.4,34.7,38614.16,42871.83
1-4-2008,CEU0500000001,05000000,-,Total private,115535,21.42,34.5,38427.48,42407.38
1-5-2008,CEU0500000001,05000000,-,Total private,115320,21.51,34.6,38700.79,42352.35
1-6-2008,CEU0500000001,05000000,-,Total private,115114,21.56,34.5,38678.64,41905.82
1-7-2008,CEU0500000001,05000000,-,Total private,114853,21.63,34.5,38804.22,41822.27
1-8-2008,CEU0500000001,05000000,-,Total private,114595,21.73,34.5,38983.62,42184
1-9-2008,CEU0500000001,05000000,-,Total private,114173,21.76,34.4,38924.29,42178.13
1-10-2008,CEU0500000001,05000000,-,Total private,113687,21.81,34.4,39013.73,42706.44
1-11-2008,CEU0500000001,05000000,-,Total private,112911,21.92,34.3,39096.51,43632.76
1-12-2008,CEU0500000001,05000000,-,Total private,112218,21.98,34.1,38974.94,43951.64
1-1-2009,CEU0500000001,05000000,-,Total private,111397,21.99,34.1,38992.67,43781.08
1-2-2009,CEU0500000001,05000000,-,Total private,110699,22.05,34.1,39099.06,43683.3
1-3-2009,CEU0500000001,05000000,-,Total private,109889,22.08,33.8,38807.81,43252.73
1-4-2009,CEU0500000001,05000000,-,Total private,109088,22.11,33.8,38860.54,43203.64
1-5-2009,CEU0500000001,05000000,-,Total private,108794,22.12,33.8,38878.11,43098.68
1-6-2009,CEU0500000001,05000000,-,Total private,108368,22.15,33.8,38930.84,42789.58
1-7-2009,CEU0500000001,05000000,-,Total private,108096,22.19,33.8,39001.14,42934.93
1-8-2009,CEU0500000001,05000000,-,Total private,107864,22.26,33.8,39124.18,42973.98
1-9-2009,CEU0500000001,05000000,-,Total private,107723,22.26,33.8,39124.18,42947.12
1-10-2009,CEU0500000001,05000000,-,Total private,107452,22.32,33.8,39229.63,43021.45
1-11-2009,CEU0500000001,05000000,-,Total private,107437,22.37,33.9,39433.84,43214.8
1-12-2009,CEU0500000001,05000000,-,Total private,107205,22.38,33.9,39451.46,43310.4
1-1-2010,CEU0500000001,05000000,-,Total private,107225,22.42,34,39638.56,43367.59
1-2-2010,CEU0500000001,05000000,-,Total private,107187,22.45,33.9,39574.86,43287.11
1-3-2010,CEU0500000001,05000000,-,Total private,107300,22.47,34,39726.96,43275.77
1-4-2010,CEU0500000001,05000000,-,Total private,107492,22.5,34.1,39897,43385.65
1-5-2010,CEU0500000001,05000000,-,Total private,107586,22.54,34.2,40085.14,43556.47
1-6-2010,CEU0500000001,05000000,-,Total private,107696,22.54,34.1,39967.93,43471.55
1-7-2010,CEU0500000001,05000000,-,Total private,107816,22.6,34.2,40191.84,43705.86
1-8-2010,CEU0500000001,05000000,-,Total private,107933,22.64,34.2,40262.98,43722.86
1-9-2010,CEU0500000001,05000000,-,Total private,108040,22.68,34.3,40452.05,43902.63
1-10-2010,CEU0500000001,05000000,-,Total private,108239,22.74,34.3,40559.06,43964.04
1-11-2010,CEU0500000001,05000000,-,Total private,108388,22.74,34.2,40440.82,43817.43
1-12-2010,CEU0500000001,05000000,-,Total private,108482,22.77,34.3,40612.57,43928.04
1-1-2011,CEU0500000001,05000000,-,Total private,108554,22.86,34.2,40654.22,43764.63
1-2-2011,CEU0500000001,05000000,-,Total private,108777,22.86,34.3,40773.1,43677.21
1-3-2011,CEU0500000001,05000000,-,Total private,109008,22.88,34.3,40808.77,43293.27
1-4-2011,CEU0500000001,05000000,-,Total private,109328,22.93,34.4,41017.18,43235.96
1-5-2011,CEU0500000001,05000000,-,Total private,109494,23,34.4,41142.4,43164.89
1-6-2011,CEU0500000001,05000000,-,Total private,109680,23.02,34.3,41058.47,43123.02
1-7-2011,CEU0500000001,05000000,-,Total private,109899,23.11,34.4,41339.17,43379.39
1-8-2011,CEU0500000001,05000000,-,Total private,110024,23.08,34.3,41165.49,43078.35
1-9-2011,CEU0500000001,05000000,-,Total private,110292,23.12,34.4,41357.05,43213.2
1-10-2011,CEU0500000001,05000000,-,Total private,110469,23.22,34.4,41535.94,43489.82
1-11-2011,CEU0500000001,05000000,-,Total private,110660,23.2,34.4,41500.16,43489.04
1-12-2011,CEU0500000001,05000000,-,Total private,110882,23.22,34.4,41535.94,43634.16
1-1-2012,CEU0500000001,05000000,-,Total private,111246,23.25,34.5,41710.5,43625.58
1-2-2012,CEU0500000001,05000000,-,Total private,111474,23.3,34.5,41800.2,43527.75
1-3-2012,CEU0500000001,05000000,-,Total private,111720,23.37,34.4,41804.26,43203.86
1-4-2012,CEU0500000001,05000000,-,Total private,111822,23.4,34.5,41979.6,43254.4
1-5-2012,CEU0500000001,05000000,-,Total private,111953,23.41,34.4,41875.81,43198.14
1-6-2012,CEU0500000001,05000000,-,Total private,112028,23.47,34.4,41983.14,43372.46
1-7-2012,CEU0500000001,05000000,-,Total private,112200,23.52,34.4,42072.57,43535.81
1-8-2012,CEU0500000001,05000000,-,Total private,112336,23.51,34.4,42054.69,43276.46
1-9-2012,CEU0500000001,05000000,-,Total private,112495,23.58,34.5,42302.52,43338.11
1-10-2012,CEU0500000001,05000000,-,Total private,112750,23.56,34.4,42144.13,43192.65
1-11-2012,CEU0500000001,05000000,-,Total private,112961,23.64,34.4,42287.23,43545.63
1-12-2012,CEU0500000001,05000000,-,Total private,113176,23.71,34.4,42412.45,43792.51
1-1-2013,CEU0500000001,05000000,-,Total private,113395,23.75,34.4,42484,43737.05
1-2-2013,CEU0500000001,05000000,-,Total private,113658,23.79,34.5,42679.26,43581.13
1-3-2013,CEU0500000001,05000000,-,Total private,113822,23.81,34.5,42715.14,43504.03
1-4-2013,CEU0500000001,05000000,-,Total private,114010,23.86,34.4,42680.77,43514.27
1-5-2013,CEU0500000001,05000000,-,Total private,114232,23.89,34.5,42858.66,43617.97
1-6-2013,CEU0500000001,05000000,-,Total private,114433,23.98,34.5,43020.12,43677.48
1-7-2013,CEU0500000001,05000000,-,Total private,114603,23.97,34.4,42877.54,43515.57
1-8-2013,CEU0500000001,05000000,-,Total private,114783,24.03,34.5,43109.82,43698.75
1-9-2013,CEU0500000001,05000000,-,Total private,114936,24.06,34.5,43163.64,43702.47
1-10-2013,CEU0500000001,05000000,-,Total private,115183,24.09,34.4,43092.19,43742.78
1-11-2013,CEU0500000001,05000000,-,Total private,115455,24.15,34.5,43325.1,44069.22
1-12-2013,CEU0500000001,05000000,-,Total private,115541,24.17,34.3,43109.61,43853.79
1-1-2014,CEU0500000001,05000000,-,Total private,115707,24.22,34.4,43324.73,43909.27
1-2-2014,CEU0500000001,05000000,-,Total private,115908,24.29,34.3,43323.64,43746.39
1-3-2014,CEU0500000001,05000000,-,Total private,116110,24.31,34.5,43612.14,43755.92
1-4-2014,CEU0500000001,05000000,-,Total private,116383,24.31,34.5,43612.14,43612.14
1-3-2006,CEU0600000001,06000000,-,Goods-producing,22572,21.14,39.1,42981.85,50999.96
1-4-2006,CEU0600000001,06000000,-,Goods-producing,22631,21.32,39.3,43569.55,51261.14
1-5-2006,CEU0600000001,06000000,-,Goods-producing,22596,21.24,39.3,43406.06,50816.6
1-6-2006,CEU0600000001,06000000,-,Goods-producing,22597,21.38,39.4,43803.34,51180.61
1-7-2006,CEU0600000001,06000000,-,Goods-producing,22590,21.48,39.4,44008.22,51268.39
1-8-2006,CEU0600000001,06000000,-,Goods-producing,22571,21.46,39.3,43855.66,50990.43
1-9-2006,CEU0600000001,06000000,-,Goods-producing,22537,21.59,39.2,44009.05,51420.97
1-10-2006,CEU0600000001,06000000,-,Goods-producing,22455,21.73,39.4,44520.43,52302.02
1-11-2006,CEU0600000001,06000000,-,Goods-producing,22408,21.68,39.3,44305.25,52126.71
1-12-2006,CEU0600000001,06000000,-,Goods-producing,22404,21.79,39.5,44756.66,52579.54
1-1-2007,CEU0600000001,06000000,-,Goods-producing,22439,21.77,39.4,44602.38,52238.82
1-2-2007,CEU0600000001,06000000,-,Goods-producing,22334,21.85,39.2,44539.04,51887.04
1-3-2007,CEU0600000001,06000000,-,Goods-producing,22391,21.88,39.4,44827.74,51752.13
1-4-2007,CEU0600000001,06000000,-,Goods-producing,22350,22.02,39.5,45229.08,51878.45
1-5-2007,CEU0600000001,06000000,-,Goods-producing,22322,22.07,39.5,45331.78,51680.44
1-6-2007,CEU0600000001,06000000,-,Goods-producing,22322,22.17,39.5,45537.18,51814.19
1-7-2007,CEU0600000001,06000000,-,Goods-producing,22277,22.2,39.5,45598.8,51897.51
1-8-2007,CEU0600000001,06000000,-,Goods-producing,22166,22.23,39.4,45544.82,51931.31
1-9-2007,CEU0600000001,06000000,-,Goods-producing,22093,22.29,39.6,45899.57,52191.96
1-10-2007,CEU0600000001,06000000,-,Goods-producing,22055,22.22,39.4,45524.34,51654.79
1-11-2007,CEU0600000001,06000000,-,Goods-producing,22015,22.32,39.6,45961.34,51842.72
1-12-2007,CEU0600000001,06000000,-,Goods-producing,21976,22.43,39.6,46187.86,52133.19
1-1-2008,CEU0600000001,06000000,-,Goods-producing,21947,22.41,39.6,46146.67,51829.09
1-2-2008,CEU0600000001,06000000,-,Goods-producing,21898,22.49,39.6,46311.41,51863.49
1-3-2008,CEU0600000001,06000000,-,Goods-producing,21820,22.67,39.7,46799.95,51960.2
1-4-2008,CEU0600000001,06000000,-,Goods-producing,21680,22.57,39.4,46241.41,51030.59
1-5-2008,CEU0600000001,06000000,-,Goods-producing,21599,22.73,39.4,46569.22,50963.2
1-6-2008,CEU0600000001,06000000,-,Goods-producing,21483,22.88,39.5,46995.52,50916.63
1-7-2008,CEU0600000001,06000000,-,Goods-producing,21360,22.89,39.3,46778,50416.22
1-8-2008,CEU0600000001,06000000,-,Goods-producing,21250,23.05,39.3,47104.98,50972.09
1-9-2008,CEU0600000001,06000000,-,Goods-producing,21101,23.07,39,46785.96,50697
1-10-2008,CEU0600000001,06000000,-,Goods-producing,20897,23.21,39.2,47311.27,51789.36
1-11-2008,CEU0600000001,06000000,-,Goods-producing,20625,23.4,38.9,47333.52,52825.48
1-12-2008,CEU0600000001,06000000,-,Goods-producing,20323,23.43,38.6,47028.7,53033.79
1-1-2009,CEU0600000001,06000000,-,Goods-producing,19888,23.55,38.4,47024.64,52799.41
1-2-2009,CEU0600000001,06000000,-,Goods-producing,19576,23.63,38.6,47430.14,52991.18
1-3-2009,CEU0600000001,06000000,-,Goods-producing,19226,23.76,38.3,47320.41,52740.34
1-4-2009,CEU0600000001,06000000,-,Goods-producing,18893,23.77,38.2,47216.73,52493.74
1-5-2009,CEU0600000001,06000000,-,Goods-producing,18655,23.76,38.2,47196.86,52320.51
1-6-2009,CEU0600000001,06000000,-,Goods-producing,18422,23.78,38.3,47360.25,52054.49
1-7-2009,CEU0600000001,06000000,-,Goods-producing,18276,23.81,38.5,47667.62,52475.53
1-8-2009,CEU0600000001,06000000,-,Goods-producing,18150,23.85,38.7,47995.74,52718.5
1-9-2009,CEU0600000001,06000000,-,Goods-producing,18042,23.83,38.5,47707.66,52369.32
1-10-2009,CEU0600000001,06000000,-,Goods-producing,17917,23.87,38.5,47787.74,52406.75
1-11-2009,CEU0600000001,06000000,-,Goods-producing,17871,23.92,39.1,48634.14,53297.25
1-12-2009,CEU0600000001,06000000,-,Goods-producing,17794,23.83,38.9,48203.32,52918.32
1-1-2010,CEU0600000001,06000000,-,Goods-producing,17716,23.91,39.2,48738.14,53323.22
1-2-2010,CEU0600000001,06000000,-,Goods-producing,17635,23.97,38.8,48361.87,52898.37
1-3-2010,CEU0600000001,06000000,-,Goods-producing,17676,23.94,39.3,48923.79,53294.15
1-4-2010,CEU0600000001,06000000,-,Goods-producing,17735,23.95,39.6,49317.84,53630.26
1-5-2010,CEU0600000001,06000000,-,Goods-producing,17747,24.04,39.7,49628.18,53925.93
1-6-2010,CEU0600000001,06000000,-,Goods-producing,17756,23.97,39.5,49234.38,53550.31
1-7-2010,CEU0600000001,06000000,-,Goods-producing,17781,24.08,39.6,49585.54,53920.86
1-8-2010,CEU0600000001,06000000,-,Goods-producing,17792,24.14,39.7,49834.62,54117.01
1-9-2010,CEU0600000001,06000000,-,Goods-producing,17783,24.15,39.9,50106.42,54380.54
1-10-2010,CEU0600000001,06000000,-,Goods-producing,17795,24.2,39.9,50210.16,54425.35
1-11-2010,CEU0600000001,06000000,-,Goods-producing,17822,24.17,39.8,50022.23,54198.84
1-12-2010,CEU0600000001,06000000,-,Goods-producing,17788,24.23,39.9,50272.4,54376.46
1-1-2011,CEU0600000001,06000000,-,Goods-producing,17788,24.36,39.7,50288.79,54136.32
1-2-2011,CEU0600000001,06000000,-,Goods-producing,17855,24.26,39.8,50208.5,53784.66
1-3-2011,CEU0600000001,06000000,-,Goods-producing,17904,24.28,39.8,50249.89,53309.18
1-4-2011,CEU0600000001,06000000,-,Goods-producing,17967,24.35,39.9,50521.38,53254.27
1-5-2011,CEU0600000001,06000000,-,Goods-producing,18008,24.41,40.1,50899.73,53401.87
1-6-2011,CEU0600000001,06000000,-,Goods-producing,18036,24.39,40,50731.2,53282.12
1-7-2011,CEU0600000001,06000000,-,Goods-producing,18106,24.43,40,50814.4,53322.26
1-8-2011,CEU0600000001,06000000,-,Goods-producing,18122,24.43,39.9,50687.36,53042.68
1-9-2011,CEU0600000001,06000000,-,Goods-producing,18171,24.49,40,50939.2,53225.4
1-10-2011,CEU0600000001,06000000,-,Goods-producing,18177,24.58,40.2,51382.03,53799.08
1-11-2011,CEU0600000001,06000000,-,Goods-producing,18181,24.47,39.9,50770.36,53203.51
1-12-2011,CEU0600000001,06000000,-,Goods-producing,18236,24.56,40.2,51340.22,53933.71
1-1-2012,CEU0600000001,06000000,-,Goods-producing,18304,24.56,40.4,51595.65,53964.59
1-2-2012,CEU0600000001,06000000,-,Goods-producing,18327,24.58,40.4,51637.66,53771.78
1-3-2012,CEU0600000001,06000000,-,Goods-producing,18377,24.65,40.2,51528.36,53253.52
1-4-2012,CEU0600000001,06000000,-,Goods-producing,18396,24.68,40.4,51847.74,53422.2
1-5-2012,CEU0600000001,06000000,-,Goods-producing,18394,24.62,40.1,51337.63,52958.74
1-6-2012,CEU0600000001,06000000,-,Goods-producing,18411,24.69,40.2,51611.98,53319.95
1-7-2012,CEU0600000001,06000000,-,Goods-producing,18465,24.72,40.2,51674.69,53471.88
1-8-2012,CEU0600000001,06000000,-,Goods-producing,18452,24.69,40.1,51483.59,52979.3
1-9-2012,CEU0600000001,06000000,-,Goods-producing,18436,24.76,40.2,51758.3,53025.38
1-10-2012,CEU0600000001,06000000,-,Goods-producing,18452,24.71,40.1,51525.29,52807.21
1-11-2012,CEU0600000001,06000000,-,Goods-producing,18484,24.79,40.3,51949.93,53495.87
1-12-2012,CEU0600000001,06000000,-,Goods-producing,18536,24.87,40.4,52246.89,53946.96
1-1-2013,CEU0600000001,06000000,-,Goods-producing,18579,24.85,40.2,51946.44,53478.58
1-2-2013,CEU0600000001,06000000,-,Goods-producing,18651,24.92,40.5,52481.52,53590.53
1-3-2013,CEU0600000001,06000000,-,Goods-producing,18680,24.95,40.4,52414.96,53382.99
1-4-2013,CEU0600000001,06000000,-,Goods-producing,18669,24.98,40.3,52348.09,53370.38
1-5-2013,CEU0600000001,06000000,-,Goods-producing,18671,25.06,40.4,52646.05,53578.76
1-6-2013,CEU0600000001,06000000,-,Goods-producing,18684,25.19,40.4,52919.15,53727.77
1-7-2013,CEU0600000001,06000000,-,Goods-producing,18679,25.16,40.3,52725.3,53509.87
1-8-2013,CEU0600000001,06000000,-,Goods-producing,18696,25.23,40.5,53134.38,53860.25
1-9-2013,CEU0600000001,06000000,-,Goods-producing,18718,25.28,40.5,53239.68,53904.3
1-10-2013,CEU0600000001,06000000,-,Goods-producing,18756,25.3,40.4,53150.24,53952.68
1-11-2013,CEU0600000001,06000000,-,Goods-producing,18824,25.38,40.6,53582.26,54502.54
1-12-2013,CEU0600000001,06000000,-,Goods-producing,18811,25.44,40.4,53444.35,54366.93
1-1-2014,CEU0600000001,06000000,-,Goods-producing,18876,25.49,40.2,53284.3,54003.21
1-2-2014,CEU0600000001,06000000,-,Goods-producing,18924,25.58,40.2,53472.43,53994.22
1-3-2014,CEU0600000001,06000000,-,Goods-producing,18953,25.61,40.6,54067.83,54246.08
1-4-2014,CEU0600000001,06000000,-,Goods-producing,19006,25.59,40.5,53892.54,53892.54
1-3-2006,CEU0800000001,08000000,-,Private service-providing,91522,19.72,33.2,34044.61,40395.52
1-4-2006,CEU0800000001,08000000,-,Private service-providing,91629,19.83,33.4,34440.74,40520.77
1-5-2006,CEU0800000001,08000000,-,Private service-providing,91680,19.81,33.3,34303,40159.41
1-6-2006,CEU0800000001,08000000,-,Private service-providing,91760,19.89,33.4,34544.95,40362.94
1-7-2006,CEU0800000001,08000000,-,Private service-providing,91923,19.96,33.4,34666.53,40385.57
1-8-2006,CEU0800000001,08000000,-,Private service-providing,92088,19.99,33.3,34614.68,40246.06
1-9-2006,CEU0800000001,08000000,-,Private service-providing,92208,20.07,33.4,34857.57,40728.21
1-10-2006,CEU0800000001,08000000,-,Private service-providing,92306,20.07,33.3,34753.21,40827.62
1-11-2006,CEU0800000001,08000000,-,Private service-providing,92548,20.13,33.4,34961.79,41133.8
1-12-2006,CEU0800000001,08000000,-,Private service-providing,92718,20.22,33.5,35223.24,41379.8
1-1-2007,CEU0800000001,08000000,-,Private service-providing,92914,20.26,33.3,35082.21,41088.7
1-2-2007,CEU0800000001,08000000,-,Private service-providing,93071,20.34,33.4,35326.51,41154.64
1-3-2007,CEU0800000001,08000000,-,Private service-providing,93184,20.46,33.4,35534.93,41023.89
1-4-2007,CEU0800000001,08000000,-,Private service-providing,93277,20.49,33.4,35587.03,40818.87
1-5-2007,CEU0800000001,08000000,-,Private service-providing,93431,20.55,33.4,35691.24,40689.75
1-6-2007,CEU0800000001,08000000,-,Private service-providing,93488,20.66,33.5,35989.72,40950.67
1-7-2007,CEU0800000001,08000000,-,Private service-providing,93536,20.66,33.4,35882.29,40838.82
1-8-2007,CEU0800000001,08000000,-,Private service-providing,93576,20.71,33.4,35969.13,41012.87
1-9-2007,CEU0800000001,08000000,-,Private service-providing,93681,20.73,33.4,36003.86,40939.65
1-10-2007,CEU0800000001,08000000,-,Private service-providing,93783,20.8,33.4,36125.44,40990.21
1-11-2007,CEU0800000001,08000000,-,Private service-providing,93904,20.84,33.4,36194.91,40826.54
1-12-2007,CEU0800000001,08000000,-,Private service-providing,93998,20.87,33.4,36247.02,40912.76
1-1-2008,CEU0800000001,08000000,-,Private service-providing,94030,20.92,33.4,36333.86,40807.94
1-2-2008,CEU0800000001,08000000,-,Private service-providing,93964,20.99,33.4,36455.43,40825.93
1-3-2008,CEU0800000001,08000000,-,Private service-providing,93936,21.06,33.5,36686.52,40731.64
1-4-2008,CEU0800000001,08000000,-,Private service-providing,93855,21.1,33.4,36646.48,40441.92
1-5-2008,CEU0800000001,08000000,-,Private service-providing,93721,21.17,33.5,36878.14,40357.72
1-6-2008,CEU0800000001,08000000,-,Private service-providing,93631,21.2,33.4,36820.16,39892.28
1-7-2008,CEU0800000001,08000000,-,Private service-providing,93493,21.3,33.4,36993.84,39871.09
1-8-2008,CEU0800000001,08000000,-,Private service-providing,93345,21.38,33.4,37132.79,40181.22
1-9-2008,CEU0800000001,08000000,-,Private service-providing,93072,21.41,33.4,37184.89,40293.33
1-10-2008,CEU0800000001,08000000,-,Private service-providing,92790,21.44,33.4,37236.99,40761.54
1-11-2008,CEU0800000001,08000000,-,Private service-providing,92286,21.53,33.3,37281.35,41606.98
1-12-2008,CEU0800000001,08000000,-,Private service-providing,91895,21.61,33.1,37195.13,41944.58
1-1-2009,CEU0800000001,08000000,-,Private service-providing,91509,21.6,33.2,37290.24,41869.59
1-2-2009,CEU0800000001,08000000,-,Private service-providing,91123,21.65,33.1,37263.98,41633.07
1-3-2009,CEU0800000001,08000000,-,Private service-providing,90663,21.67,32.9,37073.04,41319.26
1-4-2009,CEU0800000001,08000000,-,Private service-providing,90195,21.71,32.9,37141.47,41292.45
1-5-2009,CEU0800000001,08000000,-,Private service-providing,90139,21.73,32.9,37175.68,41211.44
1-6-2009,CEU0800000001,08000000,-,Private service-providing,89946,21.76,32.8,37113.86,40792.5
1-7-2009,CEU0800000001,08000000,-,Private service-providing,89820,21.8,32.9,37295.44,41057.18
1-8-2009,CEU0800000001,08000000,-,Private service-providing,89714,21.88,32.8,37318.53,40990.66
1-9-2009,CEU0800000001,08000000,-,Private service-providing,89681,21.9,32.9,37466.52,41127.49
1-10-2009,CEU0800000001,08000000,-,Private service-providing,89535,21.96,32.8,37454.98,41075.26
1-11-2009,CEU0800000001,08000000,-,Private service-providing,89566,22,32.9,37637.6,41246.34
1-12-2009,CEU0800000001,08000000,-,Private service-providing,89411,22.04,32.9,37706.03,41394.24
1-1-2010,CEU0800000001,08000000,-,Private service-providing,89509,22.07,33,37872.12,41434.97
1-2-2010,CEU0800000001,08000000,-,Private service-providing,89552,22.1,32.9,37808.68,41355.25
1-3-2010,CEU0800000001,08000000,-,Private service-providing,89624,22.12,33,37957.92,41348.71
1-4-2010,CEU0800000001,08000000,-,Private service-providing,89757,22.16,33,38026.56,41351.65
1-5-2010,CEU0800000001,08000000,-,Private service-providing,89839,22.19,33.1,38193.43,41500.94
1-6-2010,CEU0800000001,08000000,-,Private service-providing,89940,22.2,33,38095.2,41434.66
1-7-2010,CEU0800000001,08000000,-,Private service-providing,90035,22.25,33.1,38296.7,41645.03
1-8-2010,CEU0800000001,08000000,-,Private service-providing,90141,22.29,33.1,38365.55,41662.38
1-9-2010,CEU0800000001,08000000,-,Private service-providing,90257,22.33,33.2,38550.51,41838.9
1-10-2010,CEU0800000001,08000000,-,Private service-providing,90444,22.39,33.2,38654.1,41899.15
1-11-2010,CEU0800000001,08000000,-,Private service-providing,90566,22.41,33.2,38688.63,41918.94
1-12-2010,CEU0800000001,08000000,-,Private service-providing,90694,22.43,33.2,38723.15,41884.37
1-1-2011,CEU0800000001,08000000,-,Private service-providing,90766,22.51,33.1,38744.21,41708.48
1-2-2011,CEU0800000001,08000000,-,Private service-providing,90922,22.53,33.2,38895.79,41666.2
1-3-2011,CEU0800000001,08000000,-,Private service-providing,91104,22.56,33.2,38947.59,41318.77
1-4-2011,CEU0800000001,08000000,-,Private service-providing,91361,22.6,33.3,39134.16,41251.07
1-5-2011,CEU0800000001,08000000,-,Private service-providing,91486,22.67,33.2,39137.49,41061.42
1-6-2011,CEU0800000001,08000000,-,Private service-providing,91644,22.7,33.2,39189.28,41159.84
1-7-2011,CEU0800000001,08000000,-,Private service-providing,91793,22.8,33.3,39480.48,41428.98
1-8-2011,CEU0800000001,08000000,-,Private service-providing,91902,22.76,33.2,39292.86,41118.71
1-9-2011,CEU0800000001,08000000,-,Private service-providing,92121,22.8,33.3,39480.48,41252.4
1-10-2011,CEU0800000001,08000000,-,Private service-providing,92292,22.89,33.3,39636.32,41500.84
1-11-2011,CEU0800000001,08000000,-,Private service-providing,92479,22.9,33.3,39653.64,41554.03
1-12-2011,CEU0800000001,08000000,-,Private service-providing,92646,22.91,33.3,39670.96,41674.96
1-1-2012,CEU0800000001,08000000,-,Private service-providing,92942,22.94,33.3,39722.9,41546.72
1-2-2012,CEU0800000001,08000000,-,Private service-providing,93147,23,33.3,39826.8,41472.79
1-3-2012,CEU0800000001,08000000,-,Private service-providing,93343,23.07,33.3,39948.01,41285.46
1-4-2012,CEU0800000001,08000000,-,Private service-providing,93426,23.09,33.3,39982.64,41196.8
1-5-2012,CEU0800000001,08000000,-,Private service-providing,93559,23.12,33.3,40034.59,41298.79
1-6-2012,CEU0800000001,08000000,-,Private service-providing,93617,23.18,33.3,40138.49,41466.77
1-7-2012,CEU0800000001,08000000,-,Private service-providing,93735,23.24,33.3,40242.38,41641.97
1-8-2012,CEU0800000001,08000000,-,Private service-providing,93884,23.23,33.3,40225.07,41393.69
1-9-2012,CEU0800000001,08000000,-,Private service-providing,94059,23.3,33.3,40346.28,41333.99
1-10-2012,CEU0800000001,08000000,-,Private service-providing,94298,23.29,33.2,40207.86,41208.2
1-11-2012,CEU0800000001,08000000,-,Private service-providing,94477,23.37,33.3,40467.49,41671.74
1-12-2012,CEU0800000001,08000000,-,Private service-providing,94640,23.43,33.3,40571.39,41891.54
1-1-2013,CEU0800000001,08000000,-,Private service-providing,94816,23.49,33.2,40553.14,41749.23
1-2-2013,CEU0800000001,08000000,-,Private service-providing,95007,23.52,33.3,40727.23,41587.86
1-3-2013,CEU0800000001,08000000,-,Private service-providing,95142,23.54,33.4,40884.27,41639.35
1-4-2013,CEU0800000001,08000000,-,Private service-providing,95341,23.6,33.3,40865.76,41663.81
1-5-2013,CEU0800000001,08000000,-,Private service-providing,95561,23.61,33.3,40883.07,41607.39
1-6-2013,CEU0800000001,08000000,-,Private service-providing,95749,23.69,33.3,41021.61,41648.43
1-7-2013,CEU0800000001,08000000,-,Private service-providing,95924,23.69,33.2,40898.41,41507
1-8-2013,CEU0800000001,08000000,-,Private service-providing,96087,23.75,33.3,41125.5,41687.32
1-9-2013,CEU0800000001,08000000,-,Private service-providing,96218,23.77,33.3,41160.13,41673.95
1-10-2013,CEU0800000001,08000000,-,Private service-providing,96427,23.8,33.2,41088.32,41708.66
1-11-2013,CEU0800000001,08000000,-,Private service-providing,96631,23.86,33.3,41315.98,42025.59
1-12-2013,CEU0800000001,08000000,-,Private service-providing,96730,23.87,33.1,41085.04,41794.27
1-1-2014,CEU0800000001,08000000,-,Private service-providing,96831,23.92,33.2,41295.49,41852.65
1-2-2014,CEU0800000001,08000000,-,Private service-providing,96984,23.99,33.1,41291.59,41694.51
1-3-2014,CEU0800000001,08000000,-,Private service-providing,97157,24,33.3,41558.4,41695.41
1-4-2014,CEU0800000001,08000000,-,Private service-providing,97377,24.01,33.3,41575.71,41575.71
1-3-2006,CEU1000000001,10000000,-,Mining and logging,669,22.76,42.7,50536.3,59963.68
1-4-2006,CEU1000000001,10000000,-,Mining and logging,679,23.35,42.9,52089.18,61284.79
1-5-2006,CEU1000000001,10000000,-,Mining and logging,681,23.44,42.6,51924.29,60789.11
1-6-2006,CEU1000000001,10000000,-,Mining and logging,686,23.62,42.7,52445.85,61278.67
1-7-2006,CEU1000000001,10000000,-,Mining and logging,690,23.72,43,53037.92,61787.75
1-8-2006,CEU1000000001,10000000,-,Mining and logging,693,23.55,42.4,51923.04,60370.27
1-9-2006,CEU1000000001,10000000,-,Mining and logging,694,23.94,42.4,52782.91,61672.5
1-10-2006,CEU1000000001,10000000,-,Mining and logging,699,24.3,42.3,53450.28,62792.69
1-11-2006,CEU1000000001,10000000,-,Mining and logging,701,24.97,42,54534.48,64161.78
1-12-2006,CEU1000000001,10000000,-,Mining and logging,705,24.55,42.8,54638.48,64188.57
1-1-2007,CEU1000000001,10000000,-,Mining and logging,706,24.63,42.6,54560.38,63901.75
1-2-2007,CEU1000000001,10000000,-,Mining and logging,711,24.78,42.9,55279.22,64399.12
1-3-2007,CEU1000000001,10000000,-,Mining and logging,715,24.84,43.3,55929.74,64569.02
1-4-2007,CEU1000000001,10000000,-,Mining and logging,719,24.89,44.6,57724.89,66211.33
1-5-2007,CEU1000000001,10000000,-,Mining and logging,721,24.92,44.2,57276.13,65297.58
1-6-2007,CEU1000000001,10000000,-,Mining and logging,725,25.04,44,57291.52,65188.79
1-7-2007,CEU1000000001,10000000,-,Mining and logging,728,24.84,44.1,56963.09,64831.58
1-8-2007,CEU1000000001,10000000,-,Mining and logging,727,24.71,44.1,56664.97,64610.77
1-9-2007,CEU1000000001,10000000,-,Mining and logging,726,24.95,44.4,57604.56,65501.6
1-10-2007,CEU1000000001,10000000,-,Mining and logging,727,24.77,44.2,56931.37,64597.93
1-11-2007,CEU1000000001,10000000,-,Mining and logging,735,24.96,44,57108.48,64416.29
1-12-2007,CEU1000000001,10000000,-,Mining and logging,740,25.11,44.2,57712.82,65141.66
1-1-2008,CEU1000000001,10000000,-,Mining and logging,746,25.43,43.7,57787.13,64902.94
1-2-2008,CEU1000000001,10000000,-,Mining and logging,748,24.76,43.8,56393.38,63154.15
1-3-2008,CEU1000000001,10000000,-,Mining and logging,755,26.39,44.8,61478.14,68256.84
1-4-2008,CEU1000000001,10000000,-,Mining and logging,755,24.99,43.2,56137.54,61951.64
1-5-2008,CEU1000000001,10000000,-,Mining and logging,761,25.41,43.5,57477.42,62900.62
1-6-2008,CEU1000000001,10000000,-,Mining and logging,766,25.84,43.9,58987.55,63909.22
1-7-2008,CEU1000000001,10000000,-,Mining and logging,770,26.38,43.3,59397.21,64016.9
1-8-2008,CEU1000000001,10000000,-,Mining and logging,778,26.75,43.7,60786.7,65777.02
1-9-2008,CEU1000000001,10000000,-,Mining and logging,782,26.65,42.7,59173.66,64120.23
1-10-2008,CEU1000000001,10000000,-,Mining and logging,781,26.6,44.3,61275.76,67075.62
1-11-2008,CEU1000000001,10000000,-,Mining and logging,776,27.55,44,63034.4,70348.09
1-12-2008,CEU1000000001,10000000,-,Mining and logging,771,27.32,43.2,61371.65,69208.2
1-1-2009,CEU1000000001,10000000,-,Mining and logging,761,27.39,43,61244.04,68764.99
1-2-2009,CEU1000000001,10000000,-,Mining and logging,749,27.41,42.9,61146.23,68315.44
1-3-2009,CEU1000000001,10000000,-,Mining and logging,728,27.63,42.5,61062.3,68056.18
1-4-2009,CEU1000000001,10000000,-,Mining and logging,710,27.49,41.9,59895.21,66589.19
1-5-2009,CEU1000000001,10000000,-,Mining and logging,693,27.53,41.5,59409.74,65859.2
1-6-2009,CEU1000000001,10000000,-,Mining and logging,686,27.42,41.7,59457.53,65350.82
1-7-2009,CEU1000000001,10000000,-,Mining and logging,678,27.27,42,59557.68,65564.86
1-8-2009,CEU1000000001,10000000,-,Mining and logging,670,27.42,42.3,60313.03,66247.81
1-9-2009,CEU1000000001,10000000,-,Mining and logging,665,27.16,42.2,59599.9,65423.59
1-10-2009,CEU1000000001,10000000,-,Mining and logging,661,27.3,42,59623.2,65386.2
1-11-2009,CEU1000000001,10000000,-,Mining and logging,664,27.04,42.5,59758.4,65488.11
1-12-2009,CEU1000000001,10000000,-,Mining and logging,663,26.98,42.3,59345.21,65150.05
1-1-2010,CEU1000000001,10000000,-,Mining and logging,667,27.02,43,60416.72,66100.47
1-2-2010,CEU1000000001,10000000,-,Mining and logging,674,27.08,43,60550.88,66230.74
1-3-2010,CEU1000000001,10000000,-,Mining and logging,682,27.08,43.3,60973.33,66420.08
1-4-2010,CEU1000000001,10000000,-,Mining and logging,687,27.16,43.7,61718.38,67115.12
1-5-2010,CEU1000000001,10000000,-,Mining and logging,696,27.39,43.9,62525.89,67940.57
1-6-2010,CEU1000000001,10000000,-,Mining and logging,701,27.4,43.2,61551.36,66947.01
1-7-2010,CEU1000000001,10000000,-,Mining and logging,708,27.58,43.8,62816.21,68308.31
1-8-2010,CEU1000000001,10000000,-,Mining and logging,717,27.61,43.9,63028.11,68444.24
1-9-2010,CEU1000000001,10000000,-,Mining and logging,723,27.78,43.4,62693.9,68041.73
1-10-2010,CEU1000000001,10000000,-,Mining and logging,731,27.6,43.6,62574.72,67827.93
1-11-2010,CEU1000000001,10000000,-,Mining and logging,737,27.73,42.9,61860.09,67025.1
1-12-2010,CEU1000000001,10000000,-,Mining and logging,734,27.64,44.1,63384.05,68558.49
1-1-2011,CEU1000000001,10000000,-,Mining and logging,736,27.94,44.6,64798.45,69756.1
1-2-2011,CEU1000000001,10000000,-,Mining and logging,738,28.01,44.1,64232.53,68807.57
1-3-2011,CEU1000000001,10000000,-,Mining and logging,754,28.08,44.4,64831.11,68778.12
1-4-2011,CEU1000000001,10000000,-,Mining and logging,767,28.26,44.6,65540.59,69085.93
1-5-2011,CEU1000000001,10000000,-,Mining and logging,777,28.2,44.8,65694.72,68924.16
1-6-2011,CEU1000000001,10000000,-,Mining and logging,789,27.89,44.5,64537.46,67782.6
1-7-2011,CEU1000000001,10000000,-,Mining and logging,800,27.82,44.2,63941.49,67097.22
1-8-2011,CEU1000000001,10000000,-,Mining and logging,806,28.03,44.1,64278.39,67265.25
1-9-2011,CEU1000000001,10000000,-,Mining and logging,815,28.07,44.5,64953.98,67869.18
1-10-2011,CEU1000000001,10000000,-,Mining and logging,820,28.16,45.4,66480.13,69607.4
1-11-2011,CEU1000000001,10000000,-,Mining and logging,825,28.28,43.9,64557.59,67651.48
1-12-2011,CEU1000000001,10000000,-,Mining and logging,832,28.44,44.6,65958.05,69289.97
1-1-2012,CEU1000000001,10000000,-,Mining and logging,840,28.04,45.5,66342.64,69388.67
1-2-2012,CEU1000000001,10000000,-,Mining and logging,846,28.55,44.7,66361.62,69104.26
1-3-2012,CEU1000000001,10000000,-,Mining and logging,849,28.69,44.1,65791.91,67994.61
1-4-2012,CEU1000000001,10000000,-,Mining and logging,850,28.79,44.1,66021.23,68026.09
1-5-2012,CEU1000000001,10000000,-,Mining and logging,853,28.57,43.6,64773.9,66819.3
1-6-2012,CEU1000000001,10000000,-,Mining and logging,852,28.83,43.9,65813.13,67991.05
1-7-2012,CEU1000000001,10000000,-,Mining and logging,851,28.9,44,66123.2,68422.9
1-8-2012,CEU1000000001,10000000,-,Mining and logging,849,28.7,43.5,64919.4,66805.45
1-9-2012,CEU1000000001,10000000,-,Mining and logging,846,28.9,43.3,65071.24,66664.23
1-10-2012,CEU1000000001,10000000,-,Mining and logging,839,28.56,43.4,64454.21,66057.78
1-11-2012,CEU1000000001,10000000,-,Mining and logging,846,28.8,43.2,64696.32,66621.58
1-12-2012,CEU1000000001,10000000,-,Mining and logging,851,29.17,43.5,65982.54,68129.55
1-1-2013,CEU1000000001,10000000,-,Mining and logging,854,29.03,42.7,64458.21,66359.38
1-2-2013,CEU1000000001,10000000,-,Mining and logging,858,28.81,43.4,65018.41,66392.34
1-3-2013,CEU1000000001,10000000,-,Mining and logging,860,29.09,43.3,65499.04,66708.72
1-4-2013,CEU1000000001,10000000,-,Mining and logging,857,29.12,43.2,65415.17,66692.63
1-5-2013,CEU1000000001,10000000,-,Mining and logging,861,29.5,43.8,67189.2,68379.57
1-6-2013,CEU1000000001,10000000,-,Mining and logging,864,29.87,44.2,68653.21,69702.25
1-7-2013,CEU1000000001,10000000,-,Mining and logging,867,29.48,44,67450.24,68453.93
1-8-2013,CEU1000000001,10000000,-,Mining and logging,870,29.88,44.1,68520.81,69456.88
1-9-2013,CEU1000000001,10000000,-,Mining and logging,876,30.02,44.3,69154.07,70017.35
1-10-2013,CEU1000000001,10000000,-,Mining and logging,881,30.26,44.1,69392.23,70439.89
1-11-2013,CEU1000000001,10000000,-,Mining and logging,882,30.5,44.6,70735.6,71950.5
1-12-2013,CEU1000000001,10000000,-,Mining and logging,882,30.59,44.8,71262.46,72492.63
1-1-2014,CEU1000000001,10000000,-,Mining and logging,888,30.63,44.2,70399.99,71349.83
1-2-2014,CEU1000000001,10000000,-,Mining and logging,892,30.76,45,71978.4,72680.77
1-3-2014,CEU1000000001,10000000,-,Mining and logging,897,30.88,45.5,73062.08,73302.95
1-4-2014,CEU1000000001,10000000,-,Mining and logging,906,30.7,44.1,70401.24,70401.24
1-3-2006,CEU1011330001,10113300,1133,Logging,65.8,15.87,38.9,32101.84,38090.32
1-4-2006,CEU1011330001,10113300,1133,Logging,66,16.04,38.2,31861.86,37486.62
1-5-2006,CEU1011330001,10113300,1133,Logging,66.5,16.24,38.2,32259.14,37766.61
1-6-2006,CEU1011330001,10113300,1133,Logging,65.3,16.59,38.2,32954.38,38504.48
1-7-2006,CEU1011330001,10113300,1133,Logging,65.3,16.81,38.1,33303.97,38798.23
1-8-2006,CEU1011330001,10113300,1133,Logging,64.6,16.74,38.4,33426.43,38864.5
1-9-2006,CEU1011330001,10113300,1133,Logging,63.4,16.3,38.1,32293.56,37732.38
1-10-2006,CEU1011330001,10113300,1133,Logging,62.8,16.11,39,32671.08,38381.56
1-11-2006,CEU1011330001,10113300,1133,Logging,62.8,16,38.5,32032,37686.8
1-12-2006,CEU1011330001,10113300,1133,Logging,62.3,15.84,39.5,32535.36,38222.11
1-1-2007,CEU1011330001,10113300,1133,Logging,61.7,15.78,39.4,32330.06,37865.35
1-2-2007,CEU1011330001,10113300,1133,Logging,61.8,16.08,39.5,33028.32,38477.29
1-3-2007,CEU1011330001,10113300,1133,Logging,61.5,16.21,39.1,32958.17,38049.11
1-4-2007,CEU1011330001,10113300,1133,Logging,61.1,16.68,39.4,34173.98,39198.09
1-5-2007,CEU1011330001,10113300,1133,Logging,60.4,16.9,39.8,34976.24,39874.62
1-6-2007,CEU1011330001,10113300,1133,Logging,62,16.9,39,34273.2,38997.54
1-7-2007,CEU1011330001,10113300,1133,Logging,59.6,17.13,37.5,33403.5,38017.63
1-8-2007,CEU1011330001,10113300,1133,Logging,58.6,17.27,39.4,35382.78,40344.3
1-9-2007,CEU1011330001,10113300,1133,Logging,58.4,17.35,41,36990.2,42061.21
1-10-2007,CEU1011330001,10113300,1133,Logging,58,17.5,40,36400,41301.74
1-11-2007,CEU1011330001,10113300,1133,Logging,58.8,17.5,40.3,36673,41365.81
1-12-2007,CEU1011330001,10113300,1133,Logging,59.2,17.6,40,36608,41320.21
1-1-2008,CEU1011330001,10113300,1133,Logging,58.8,17.49,39.4,35833.51,40245.98
1-2-2008,CEU1011330001,10113300,1133,Logging,58.3,17.41,39.4,35669.61,39945.89
1-3-2008,CEU1011330001,10113300,1133,Logging,58,17.55,39.7,36230.22,40225.03
1-4-2008,CEU1011330001,10113300,1133,Logging,58.6,17.51,39.8,36238.7,39991.9
1-5-2008,CEU1011330001,10113300,1133,Logging,57.6,17.5,38.8,35308,38639.43
1-6-2008,CEU1011330001,10113300,1133,Logging,55.2,17.61,40.3,36903.52,39982.59
1-7-2008,CEU1011330001,10113300,1133,Logging,55.2,17.63,40.2,36853.75,39720.1
1-8-2008,CEU1011330001,10113300,1133,Logging,55.1,17.77,39.8,36776.79,39796.01
1-9-2008,CEU1011330001,10113300,1133,Logging,55.5,17.92,40,37273.6,40389.46
1-10-2008,CEU1011330001,10113300,1133,Logging,55.6,18.09,41.3,38850.09,42527.31
1-11-2008,CEU1011330001,10113300,1133,Logging,55.7,18.44,40.1,38451.09,42912.45
1-12-2008,CEU1011330001,10113300,1133,Logging,54.6,18.08,37.3,35067.97,39545.8
1-1-2009,CEU1011330001,10113300,1133,Logging,53.8,18.24,38,36042.24,40468.33
1-2-2009,CEU1011330001,10113300,1133,Logging,54.1,18.03,39.7,37221.13,41585.2
1-3-2009,CEU1011330001,10113300,1133,Logging,50.5,18,37.8,35380.8,39433.2
1-4-2009,CEU1011330001,10113300,1133,Logging,49.6,17.56,38,34698.56,38576.52
1-5-2009,CEU1011330001,10113300,1133,Logging,49.3,17.63,37.8,34653.53,38415.48
1-6-2009,CEU1011330001,10113300,1133,Logging,49.6,17.08,38.2,33927.71,37290.55
1-7-2009,CEU1011330001,10113300,1133,Logging,49.3,17.47,38.2,34702.41,38202.6
1-8-2009,CEU1011330001,10113300,1133,Logging,49.9,17.62,38.8,35550.11,39048.23
1-9-2009,CEU1011330001,10113300,1133,Logging,50.6,17.23,37.3,33419.31,36684.81
1-10-2009,CEU1011330001,10113300,1133,Logging,49.5,17.3,36.7,33015.32,36206.48
1-11-2009,CEU1011330001,10113300,1133,Logging,49,17.1,36.4,32366.88,35470.26
1-12-2009,CEU1011330001,10113300,1133,Logging,48.7,17.89,38.5,35815.78,39319.09
1-1-2010,CEU1011330001,10113300,1133,Logging,48.3,18.1,39.9,37553.88,41086.79
1-2-2010,CEU1011330001,10113300,1133,Logging,49.3,18.44,39.9,38259.31,41848.16
1-3-2010,CEU1011330001,10113300,1133,Logging,50.4,18.58,41.1,39709.18,43256.4
1-4-2010,CEU1011330001,10113300,1133,Logging,50.9,18.63,40.5,39234.78,42665.52
1-5-2010,CEU1011330001,10113300,1133,Logging,50.9,18.43,41.8,40059.45,43528.56
1-6-2010,CEU1011330001,10113300,1133,Logging,50.5,18.7,40.8,39673.92,43151.77
1-7-2010,CEU1011330001,10113300,1133,Logging,50.6,18.73,40.3,39250.59,42682.32
1-8-2010,CEU1011330001,10113300,1133,Logging,51.1,18.85,40.8,39992.16,43428.77
1-9-2010,CEU1011330001,10113300,1133,Logging,49.9,19.09,41.5,41196.22,44710.29
1-10-2010,CEU1011330001,10113300,1133,Logging,49.1,19.13,41.3,41083.59,44532.6
1-11-2010,CEU1011330001,10113300,1133,Logging,48.5,19.22,40.6,40577.27,43965.27
1-12-2010,CEU1011330001,10113300,1133,Logging,47.9,19.48,40.6,41126.18,44483.57
1-1-2011,CEU1011330001,10113300,1133,Logging,48.5,19.51,41,41595.32,44777.73
1-2-2011,CEU1011330001,10113300,1133,Logging,49.4,19.7,40.9,41897.96,44882.2
1-3-2011,CEU1011330001,10113300,1133,Logging,51,19.76,37.9,38943.01,41313.92
1-4-2011,CEU1011330001,10113300,1133,Logging,48.5,20.15,41.3,43274.14,45615
1-5-2011,CEU1011330001,10113300,1133,Logging,48.1,20.26,41.1,43299.67,45428.21
1-6-2011,CEU1011330001,10113300,1133,Logging,48.2,20.37,41,43428.84,45612.57
1-7-2011,CEU1011330001,10113300,1133,Logging,48.8,20.3,41.4,43701.84,45858.67
1-8-2011,CEU1011330001,10113300,1133,Logging,48.7,20.25,41.2,43383.6,45399.53
1-9-2011,CEU1011330001,10113300,1133,Logging,48.7,20.36,41.2,43619.27,45576.94
1-10-2011,CEU1011330001,10113300,1133,Logging,46.9,20.42,41.2,43747.81,45805.73
1-11-2011,CEU1011330001,10113300,1133,Logging,49.3,20.56,41.3,44154.66,46270.75
1-12-2011,CEU1011330001,10113300,1133,Logging,49.7,20.37,41.5,43958.46,46179.05
1-1-2012,CEU1011330001,10113300,1133,Logging,50.1,20.35,41.4,43809.48,45820.93
1-2-2012,CEU1011330001,10113300,1133,Logging,50.1,20.39,40.4,42835.31,44605.64
1-3-2012,CEU1011330001,10113300,1133,Logging,50,20.11,38.4,40155.65,41500.05
1-4-2012,CEU1011330001,10113300,1133,Logging,48.8,20.43,40.3,42813.11,44113.21
1-5-2012,CEU1011330001,10113300,1133,Logging,51,20.44,39.1,41558.61,42870.93
1-6-2012,CEU1011330001,10113300,1133,Logging,51.7,20.3,39.5,41696.2,43076.03
1-7-2012,CEU1011330001,10113300,1133,Logging,51.3,20.67,39.4,42348.7,43821.54
1-8-2012,CEU1011330001,10113300,1133,Logging,51.1,20.74,40,43139.2,44392.48
1-9-2012,CEU1011330001,10113300,1133,Logging,51.2,20.88,39.3,42670.37,43714.97
1-10-2012,CEU1011330001,10113300,1133,Logging,51.2,20.82,40.6,43955.18,45048.76
1-11-2012,CEU1011330001,10113300,1133,Logging,51.3,20.68,39.6,42584.26,43851.5
1-12-2012,CEU1011330001,10113300,1133,Logging,51.6,20.58,39.5,42271.32,43646.79
1-1-2013,CEU1011330001,10113300,1133,Logging,49.9,20.88,39.8,43213.25,44487.8
1-2-2013,CEU1011330001,10113300,1133,Logging,51.5,20.59,40.6,43469.61,44388.18
1-3-2013,CEU1011330001,10113300,1133,Logging,51.9,20.59,40.7,43576.68,44381.48
1-4-2013,CEU1011330001,10113300,1133,Logging,52.3,20.39,39.3,41669,42482.74
1-5-2013,CEU1011330001,10113300,1133,Logging,52.5,20.67,41.1,44175.93,44958.57
1-6-2013,CEU1011330001,10113300,1133,Logging,52.6,20.7,40.3,43378.92,44041.76
1-7-2013,CEU1011330001,10113300,1133,Logging,51.7,20.74,40.8,44001.98,44656.75
1-8-2013,CEU1011330001,10113300,1133,Logging,52.5,20.94,41.1,44752.97,45364.34
1-9-2013,CEU1011330001,10113300,1133,Logging,52.9,20.67,41.3,44390.89,44945.04
1-10-2013,CEU1011330001,10113300,1133,Logging,53.2,20.49,40.9,43578.13,44236.06
1-11-2013,CEU1011330001,10113300,1133,Logging,55.2,20.62,42.7,45784.65,46571.01
1-12-2013,CEU1011330001,10113300,1133,Logging,54.3,20.66,41.3,44369.41,45135.34
1-1-2014,CEU1011330001,10113300,1133,Logging,54.3,20.65,40.1,43059.38,43640.34
1-2-2014,CEU1011330001,10113300,1133,Logging,54.1,20.77,40.5,43741.62,44168.45
1-3-2014,CEU1011330001,10113300,1133,Logging,55.2,20.46,41.1,43727.11,43871.27
1-3-2006,CEU1021000001,10210000,21,Mining,602.9,23.47,43.1,52600.96,62413.49
1-4-2006,CEU1021000001,10210000,21,Mining,612.9,24.1,43.3,54263.56,63843.03
1-5-2006,CEU1021000001,10210000,21,Mining,614.3,24.12,43.1,54057.74,63286.8
1-6-2006,CEU1021000001,10210000,21,Mining,620.3,24.24,43.1,54326.69,63476.28
1-7-2006,CEU1021000001,10210000,21,Mining,624.5,24.36,43.5,55102.32,64192.71
1-8-2006,CEU1021000001,10210000,21,Mining,628.3,24.11,42.8,53659.21,62388.9
1-9-2006,CEU1021000001,10210000,21,Mining,631,24.58,42.9,54833.06,64067.93
1-10-2006,CEU1021000001,10210000,21,Mining,636.2,25,42.6,55380,65059.7
1-11-2006,CEU1021000001,10210000,21,Mining,638.1,25.73,42.5,56863.3,66901.72
1-12-2006,CEU1021000001,10210000,21,Mining,642.2,25.31,43,56593.16,66484.91
1-1-2007,CEU1021000001,10210000,21,Mining,644.1,25.42,42.9,56706.94,66415.83
1-2-2007,CEU1021000001,10210000,21,Mining,649.2,25.69,43.3,57843.61,67386.57
1-3-2007,CEU1021000001,10210000,21,Mining,653.6,25.6,43.7,58173.44,67159.29
1-4-2007,CEU1021000001,10210000,21,Mining,657.4,25.62,45,59950.8,68764.48
1-5-2007,CEU1021000001,10210000,21,Mining,660.7,25.56,44.6,59278.75,67580.67
1-6-2007,CEU1021000001,10210000,21,Mining,663.3,25.68,44.5,59423.52,67614.67
1-7-2007,CEU1021000001,10210000,21,Mining,668.8,25.42,44.7,59086.25,67248.02
1-8-2007,CEU1021000001,10210000,21,Mining,668.1,25.22,44.5,58359.08,66542.44
1-9-2007,CEU1021000001,10210000,21,Mining,667.9,25.52,44.7,59318.69,67450.72
1-10-2007,CEU1021000001,10210000,21,Mining,669.4,25.3,44.6,58675.76,66577.23
1-11-2007,CEU1021000001,10210000,21,Mining,676.2,25.51,44.3,58764.84,66284.59
1-12-2007,CEU1021000001,10210000,21,Mining,680.8,25.67,44.5,59400.38,67046.44
1-1-2008,CEU1021000001,10210000,21,Mining,687.3,26.04,44.2,59850.34,67220.2
1-2-2008,CEU1021000001,10210000,21,Mining,689.3,25.47,44.2,58540.25,65558.4
1-3-2008,CEU1021000001,10210000,21,Mining,697.1,27.05,45.3,63718.98,70744.76
1-4-2008,CEU1021000001,10210000,21,Mining,696,25.62,43.4,57819.21,63807.5
1-5-2008,CEU1021000001,10210000,21,Mining,702.9,25.98,43.9,59307.14,64902.98
1-6-2008,CEU1021000001,10210000,21,Mining,710.7,26.4,44.2,60677.76,65740.46
1-7-2008,CEU1021000001,10210000,21,Mining,715.2,27,43.4,60933.6,65672.79
1-8-2008,CEU1021000001,10210000,21,Mining,722.9,27.32,44,62508.16,67639.8
1-9-2008,CEU1021000001,10210000,21,Mining,726.5,27.23,43.1,61027.88,66129.45
1-10-2008,CEU1021000001,10210000,21,Mining,725.4,27.19,44.4,62776.27,68718.16
1-11-2008,CEU1021000001,10210000,21,Mining,720.4,28.18,44.3,64915.45,72447.38
1-12-2008,CEU1021000001,10210000,21,Mining,715.9,27.9,43.7,63399.96,71495.5
1-1-2009,CEU1021000001,10210000,21,Mining,707.4,28.02,43.3,63089.83,70837.45
1-2-2009,CEU1021000001,10210000,21,Mining,694.4,28.11,43.2,63146.3,70550.02
1-3-2009,CEU1021000001,10210000,21,Mining,677,28.28,42.8,62939.97,70148.91
1-4-2009,CEU1021000001,10210000,21,Mining,660.8,28.22,42.1,61779.22,68683.76
1-5-2009,CEU1021000001,10210000,21,Mining,644,28.19,41.9,61420.37,68088.11
1-6-2009,CEU1021000001,10210000,21,Mining,635.9,28.13,42,61435.92,67525.31
1-7-2009,CEU1021000001,10210000,21,Mining,628.5,27.98,42.3,61544.81,67752.41
1-8-2009,CEU1021000001,10210000,21,Mining,619.6,28.09,42.6,62224.97,68347.88
1-9-2009,CEU1021000001,10210000,21,Mining,614.3,27.86,42.7,61860.34,67904.91
1-10-2009,CEU1021000001,10210000,21,Mining,611.4,28.01,42.5,61902.1,67885.37
1-11-2009,CEU1021000001,10210000,21,Mining,614.5,27.71,43,61959.56,67900.33
1-12-2009,CEU1021000001,10210000,21,Mining,614.1,27.62,42.6,61183.82,67168.51
1-1-2010,CEU1021000001,10210000,21,Mining,618.9,27.69,43.2,62202.82,68054.59
1-2-2010,CEU1021000001,10210000,21,Mining,624.8,27.72,43.3,62414.35,68269.02
1-3-2010,CEU1021000001,10210000,21,Mining,631.2,27.74,43.4,62603.63,68196.02
1-4-2010,CEU1021000001,10210000,21,Mining,636.1,27.83,44,63675.04,69242.87
1-5-2010,CEU1021000001,10210000,21,Mining,645.4,28.04,44.2,64447.14,70028.2
1-6-2010,CEU1021000001,10210000,21,Mining,650.5,28.01,43.4,63212.97,68754.27
1-7-2010,CEU1021000001,10210000,21,Mining,657.8,28.19,44.1,64645.31,70297.34
1-8-2010,CEU1021000001,10210000,21,Mining,665.9,28.2,44.2,64814.88,70384.55
1-9-2010,CEU1021000001,10210000,21,Mining,673.5,28.38,43.6,64343.14,69831.65
1-10-2010,CEU1021000001,10210000,21,Mining,682.2,28.19,43.8,64205.54,69595.66
1-11-2010,CEU1021000001,10210000,21,Mining,688,28.29,43.1,63403.55,68697.44
1-12-2010,CEU1021000001,10210000,21,Mining,685.6,28.16,44.3,64869.38,70165.08
1-1-2011,CEU1021000001,10210000,21,Mining,687.6,28.48,44.8,66347.01,71423.13
1-2-2011,CEU1021000001,10210000,21,Mining,688.8,28.56,44.4,65939.33,70635.94
1-3-2011,CEU1021000001,10210000,21,Mining,703,28.6,44.8,66626.56,70682.89
1-4-2011,CEU1021000001,10210000,21,Mining,718.3,28.79,44.8,67069.19,70697.21
1-5-2011,CEU1021000001,10210000,21,Mining,728.4,28.67,45,67087.8,70385.71
1-6-2011,CEU1021000001,10210000,21,Mining,740.6,28.31,44.8,65950.98,69267.2
1-7-2011,CEU1021000001,10210000,21,Mining,751.3,28.25,44.4,65223.6,68442.61
1-8-2011,CEU1021000001,10210000,21,Mining,756.9,28.47,44.3,65583.49,68630.99
1-9-2011,CEU1021000001,10210000,21,Mining,766.3,28.52,44.6,66143.59,69112.17
1-10-2011,CEU1021000001,10210000,21,Mining,773.5,28.61,45.7,67988.8,71187.05
1-11-2011,CEU1021000001,10210000,21,Mining,775.6,28.74,44,65757.12,68908.5
1-12-2011,CEU1021000001,10210000,21,Mining,781.8,28.92,44.8,67372.03,70775.38
1-1-2012,CEU1021000001,10210000,21,Mining,790,28.48,45.7,67679.88,70787.3
1-2-2012,CEU1021000001,10210000,21,Mining,796.1,29.11,44.8,67814.66,70617.34
1-3-2012,CEU1021000001,10210000,21,Mining,798.6,29.16,44.5,67476.24,69735.34
1-4-2012,CEU1021000001,10210000,21,Mining,800.9,29.27,44.3,67426.38,69473.91
1-5-2012,CEU1021000001,10210000,21,Mining,801.9,29.02,43.9,66246.86,68338.77
1-6-2012,CEU1021000001,10210000,21,Mining,800.7,29.29,44.2,67320.13,69547.92
1-7-2012,CEU1021000001,10210000,21,Mining,799.3,29.34,44.4,67740.2,70096.13
1-8-2012,CEU1021000001,10210000,21,Mining,797.7,29.15,43.7,66240.46,68164.89
1-9-2012,CEU1021000001,10210000,21,Mining,794.3,29.34,43.6,66519.65,68148.09
1-10-2012,CEU1021000001,10210000,21,Mining,787.4,29.05,43.6,65862.16,67500.77
1-11-2012,CEU1021000001,10210000,21,Mining,794.3,29.26,43.5,66186.12,68155.7
1-12-2012,CEU1021000001,10210000,21,Mining,799.5,29.65,43.9,67685.02,69887.43
1-1-2013,CEU1021000001,10210000,21,Mining,803.7,29.5,42.9,65808.6,67749.59
1-2-2013,CEU1021000001,10210000,21,Mining,806.9,29.39,43.6,66633.01,68041.05
1-3-2013,CEU1021000001,10210000,21,Mining,807.7,29.62,43.4,66846.41,68080.98
1-4-2013,CEU1021000001,10210000,21,Mining,805.1,29.63,43.4,66868.98,68174.84
1-5-2013,CEU1021000001,10210000,21,Mining,808.8,30.02,43.9,68529.66,69743.77
1-6-2013,CEU1021000001,10210000,21,Mining,811.4,30.41,44.4,70210.61,71283.45
1-7-2013,CEU1021000001,10210000,21,Mining,815.3,29.98,44.2,68906.03,69931.38
1-8-2013,CEU1021000001,10210000,21,Mining,817.9,30.4,44.3,70029.44,70986.11
1-9-2013,CEU1021000001,10210000,21,Mining,822.6,30.57,44.5,70738.98,71622.05
1-10-2013,CEU1021000001,10210000,21,Mining,827.6,30.85,44.3,71066.06,72138.99
1-11-2013,CEU1021000001,10210000,21,Mining,826.7,31.1,44.8,72450.56,73694.91
1-12-2013,CEU1021000001,10210000,21,Mining,828,31.19,44.9,72822.41,74079.51
1-1-2014,CEU1021000001,10210000,21,Mining,833.9,31.23,44.4,72103.82,73076.64
1-2-2014,CEU1021000001,10210000,21,Mining,837.9,31.36,45.2,73708.55,74427.8
1-3-2014,CEU1021000001,10210000,21,Mining,842.1,31.51,45.6,74716.52,74962.84
1-3-2006,CEU1021100001,10211000,211,Oil and gas extraction,131.2,28.81,39.9,59774.99,70925.8
1-4-2006,CEU1021100001,10211000,211,Oil and gas extraction,132.8,29.02,41,61870.64,72793.03
1-5-2006,CEU1021100001,10211000,211,Oil and gas extraction,133.1,29.45,40.4,61868.56,72431.13
1-6-2006,CEU1021100001,10211000,211,Oil and gas extraction,134.7,29.34,41,62552.88,73087.91
1-7-2006,CEU1021100001,10211000,211,Oil and gas extraction,135.1,29.64,40.7,62730.1,73078.88
1-8-2006,CEU1021100001,10211000,211,Oil and gas extraction,136.8,29.68,39.3,60654.05,70521.7
1-9-2006,CEU1021100001,10211000,211,Oil and gas extraction,136.7,30.02,39.3,61348.87,71681.12
1-10-2006,CEU1021100001,10211000,211,Oil and gas extraction,138.3,30.78,40.3,64502.57,75776.77
1-11-2006,CEU1021100001,10211000,211,Oil and gas extraction,138.3,31.39,38.4,62679.55,73744.74
1-12-2006,CEU1021100001,10211000,211,Oil and gas extraction,139.4,31.11,38.3,61958.68,72788.24
1-1-2007,CEU1021100001,10211000,211,Oil and gas extraction,140.7,31.46,38.4,62819.33,73574.73
1-2-2007,CEU1021100001,10211000,211,Oil and gas extraction,141.7,31.75,38.9,64223.9,74819.48
1-3-2007,CEU1021100001,10211000,211,Oil and gas extraction,142.8,31.06,38.8,62666.66,72346.55
1-4-2007,CEU1021100001,10211000,211,Oil and gas extraction,143.8,31.59,39.9,65542.93,75178.74
1-5-2007,CEU1021100001,10211000,211,Oil and gas extraction,144,31.87,38.8,64300.91,73306.17
1-6-2007,CEU1021100001,10211000,211,Oil and gas extraction,145.3,31.64,39.2,64494.98,73385.2
1-7-2007,CEU1021100001,10211000,211,Oil and gas extraction,146.5,31.56,39.8,65316.57,74338.96
1-8-2007,CEU1021100001,10211000,211,Oil and gas extraction,147,31.3,39.1,63639.16,72562.91
1-9-2007,CEU1021100001,10211000,211,Oil and gas extraction,147.2,31.35,40.5,66023.1,75074.24
1-10-2007,CEU1021100001,10211000,211,Oil and gas extraction,149.3,31.16,39,63192.48,71702.19
1-11-2007,CEU1021100001,10211000,211,Oil and gas extraction,151.9,30.9,39.6,63629.28,71771.51
1-12-2007,CEU1021100001,10211000,211,Oil and gas extraction,153.5,31.1,40.4,65334.88,73744.84
1-1-2008,CEU1021100001,10211000,211,Oil and gas extraction,154.8,33.56,39.2,68408.7,76832.43
1-2-2008,CEU1021100001,10211000,211,Oil and gas extraction,155,31.02,39.3,63392.47,70992.34
1-3-2008,CEU1021100001,10211000,211,Oil and gas extraction,156.2,36.35,40.8,77120.16,85623.57
1-4-2008,CEU1021100001,10211000,211,Oil and gas extraction,154,31.93,38.7,64255.93,70910.86
1-5-2008,CEU1021100001,10211000,211,Oil and gas extraction,158.8,32.1,40.4,67435.68,73798.48
1-6-2008,CEU1021100001,10211000,211,Oil and gas extraction,159.9,32.19,42.3,70805.13,76712.8
1-7-2008,CEU1021100001,10211000,211,Oil and gas extraction,161.6,33.99,39.8,70345.7,75816.93
1-8-2008,CEU1021100001,10211000,211,Oil and gas extraction,163.3,34.38,40.4,72225.51,78154.91
1-9-2008,CEU1021100001,10211000,211,Oil and gas extraction,164.4,32.11,39.4,65786.97,71286.38
1-10-2008,CEU1021100001,10211000,211,Oil and gas extraction,164.3,31.41,40.9,66802.79,73125.79
1-11-2008,CEU1021100001,10211000,211,Oil and gas extraction,165.3,35.15,41,74939.8,83634.83
1-12-2008,CEU1021100001,10211000,211,Oil and gas extraction,167.1,35.26,40,73340.8,82705.68
1-1-2009,CEU1021100001,10211000,211,Oil and gas extraction,165.1,35,40.1,72982,81944.41
1-2-2009,CEU1021100001,10211000,211,Oil and gas extraction,164.4,35.05,41.2,75091.12,83895.33
1-3-2009,CEU1021100001,10211000,211,Oil and gas extraction,162.6,35.83,40.9,76203.24,84931.31
1-4-2009,CEU1021100001,10211000,211,Oil and gas extraction,160.8,35.44,39.1,72056.61,80109.76
1-5-2009,CEU1021100001,10211000,211,Oil and gas extraction,160.5,35.02,38.8,70656.35,78326.73
1-6-2009,CEU1021100001,10211000,211,Oil and gas extraction,160.6,35.28,39.3,72098.21,79244.42
1-7-2009,CEU1021100001,10211000,211,Oil and gas extraction,159.6,35.21,39.3,71955.16,79212.78
1-8-2009,CEU1021100001,10211000,211,Oil and gas extraction,158,35.41,41.1,75678.25,83124.96
1-9-2009,CEU1021100001,10211000,211,Oil and gas extraction,157.7,35.06,39.7,72377.87,79450.13
1-10-2009,CEU1021100001,10211000,211,Oil and gas extraction,157.4,35.29,39.7,72852.68,79894.4
1-11-2009,CEU1021100001,10211000,211,Oil and gas extraction,156.9,35.62,40.4,74830.49,82005.34
1-12-2009,CEU1021100001,10211000,211,Oil and gas extraction,155.3,35.53,39.9,73717.64,80928.32
1-1-2010,CEU1021100001,10211000,211,Oil and gas extraction,156.5,35.93,40.2,75108.07,82173.92
1-2-2010,CEU1021100001,10211000,211,Oil and gas extraction,156.6,35.93,39.8,74360.73,81336
1-3-2010,CEU1021100001,10211000,211,Oil and gas extraction,156.9,35.93,39.1,73052.88,79578.7
1-4-2010,CEU1021100001,10211000,211,Oil and gas extraction,157.5,35.65,40.9,75820.42,82450.26
1-5-2010,CEU1021100001,10211000,211,Oil and gas extraction,158.7,36.05,41.7,78170.82,84940.34
1-6-2010,CEU1021100001,10211000,211,Oil and gas extraction,158.2,36.04,40.1,75150.61,81738.38
1-7-2010,CEU1021100001,10211000,211,Oil and gas extraction,158.3,36.13,41.8,78532.17,85398.34
1-8-2010,CEU1021100001,10211000,211,Oil and gas extraction,159.7,36,41.6,77875.2,84567.18
1-9-2010,CEU1021100001,10211000,211,Oil and gas extraction,160.1,36.24,41.7,78582.81,85285.98
1-10-2010,CEU1021100001,10211000,211,Oil and gas extraction,161.2,36.37,40.7,76973.47,83435.47
1-11-2010,CEU1021100001,10211000,211,Oil and gas extraction,161.4,36.37,39.9,75460.48,81761.06
1-12-2010,CEU1021100001,10211000,211,Oil and gas extraction,160.8,36.15,42.5,79891.5,86413.55
1-1-2011,CEU1021100001,10211000,211,Oil and gas extraction,162.8,36.47,43.6,82684.78,89010.89
1-2-2011,CEU1021100001,10211000,211,Oil and gas extraction,164.4,36.68,42.1,80299.86,86019.31
1-3-2011,CEU1021100001,10211000,211,Oil and gas extraction,166.8,36.22,42.7,80422.89,85319.16
1-4-2011,CEU1021100001,10211000,211,Oil and gas extraction,169.2,36.23,43.7,82329.05,86782.54
1-5-2011,CEU1021100001,10211000,211,Oil and gas extraction,170.1,35.81,44.3,82491.91,86547.07
1-6-2011,CEU1021100001,10211000,211,Oil and gas extraction,171.1,35.02,44.1,80307.87,84345.99
1-7-2011,CEU1021100001,10211000,211,Oil and gas extraction,172.6,34.34,43,76784.24,80573.8
1-8-2011,CEU1021100001,10211000,211,Oil and gas extraction,173.9,34.65,42.5,76576.5,80134.82
1-9-2011,CEU1021100001,10211000,211,Oil and gas extraction,176.4,34.69,44,79370.72,82932.95
1-10-2011,CEU1021100001,10211000,211,Oil and gas extraction,177.9,34.27,45.5,81082.82,84897.02
1-11-2011,CEU1021100001,10211000,211,Oil and gas extraction,178.6,34.12,43.8,77711.71,81436.02
1-12-2011,CEU1021100001,10211000,211,Oil and gas extraction,180.4,34.29,43.9,78277.21,82231.45
1-1-2012,CEU1021100001,10211000,211,Oil and gas extraction,181.4,33.88,45.5,80160.08,83840.52
1-2-2012,CEU1021100001,10211000,211,Oil and gas extraction,182.4,34.12,45.1,80018.23,83325.27
1-3-2012,CEU1021100001,10211000,211,Oil and gas extraction,184.9,33.94,44.8,79066.63,81713.76
1-4-2012,CEU1021100001,10211000,211,Oil and gas extraction,185.2,34.14,45.1,80065.13,82496.46
1-5-2012,CEU1021100001,10211000,211,Oil and gas extraction,186.2,33.91,43.7,77057.09,79490.36
1-6-2012,CEU1021100001,10211000,211,Oil and gas extraction,187.8,34.28,44.4,79145.66,81764.79
1-7-2012,CEU1021100001,10211000,211,Oil and gas extraction,188.6,34.59,45.4,81660.07,84500.13
1-8-2012,CEU1021100001,10211000,211,Oil and gas extraction,189,33.87,45.4,79960.3,82283.31
1-9-2012,CEU1021100001,10211000,211,Oil and gas extraction,189.2,34.07,45.2,80078.13,82038.49
1-10-2012,CEU1021100001,10211000,211,Oil and gas extraction,189,33.17,45,77617.8,79548.88
1-11-2012,CEU1021100001,10211000,211,Oil and gas extraction,190.6,33.76,44.7,78471.74,80806.93
1-12-2012,CEU1021100001,10211000,211,Oil and gas extraction,192.4,34.15,45.8,81331.64,83978.09
1-1-2013,CEU1021100001,10211000,211,Oil and gas extraction,193.2,34.18,43.4,77137.42,79412.55
1-2-2013,CEU1021100001,10211000,211,Oil and gas extraction,194.8,33.86,44.2,77823.82,79468.34
1-3-2013,CEU1021100001,10211000,211,Oil and gas extraction,194.2,34.2,43.9,78071.76,79513.63
1-4-2013,CEU1021100001,10211000,211,Oil and gas extraction,194.9,33.96,43,75934.56,77417.46
1-5-2013,CEU1021100001,10211000,211,Oil and gas extraction,195.7,34.32,43.4,77453.38,78825.59
1-6-2013,CEU1021100001,10211000,211,Oil and gas extraction,196,34.58,44.3,79658.48,80875.69
1-7-2013,CEU1021100001,10211000,211,Oil and gas extraction,197.5,33.8,43.1,75752.56,76879.79
1-8-2013,CEU1021100001,10211000,211,Oil and gas extraction,198.7,34.7,43.5,78491.4,79563.67
1-9-2013,CEU1021100001,10211000,211,Oil and gas extraction,199.7,34.53,43.6,78286.41,79263.7
1-10-2013,CEU1021100001,10211000,211,Oil and gas extraction,200.6,34.88,43.2,78354.43,79537.4
1-11-2013,CEU1021100001,10211000,211,Oil and gas extraction,203.1,36.01,43,80518.36,81901.28
1-12-2013,CEU1021100001,10211000,211,Oil and gas extraction,204.3,36.14,43.3,81372.82,82777.52
1-1-2014,CEU1021100001,10211000,211,Oil and gas extraction,205.3,37.14,42.9,82851.91,83969.75
1-2-2014,CEU1021100001,10211000,211,Oil and gas extraction,207.8,37.19,43,83156.84,83968.29
1-3-2014,CEU1021100001,10211000,211,Oil and gas extraction,207.8,38.46,43.4,86796.53,87082.68
1-3-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",221.3,21.48,44.4,49593.02,58844.43
1-4-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",221.1,21.59,45.7,51306.48,60363.91
1-5-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",220.5,21.81,44.9,50921.99,59615.69
1-6-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",220.4,21.88,44.3,50402.77,58891.5
1-7-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",220.7,22.05,45.1,51711.66,60242.69
1-8-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",219.9,21.94,45,51339.6,59691.91
1-9-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",220.6,22.05,45.3,51940.98,60688.77
1-10-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",220.7,22.2,45.5,52525.2,61705.92
1-11-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",220.9,22.01,45.3,51846.76,60999.57
1-12-2006,CEU1021200001,10212000,212,"Mining, except oil and gas",221.3,22.08,45.3,52011.65,61102.61
1-1-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",220.6,21.93,45.4,51772.34,60636.38
1-2-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",221.3,21.99,45.2,51685.3,60212.27
1-3-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",222.3,21.93,45.5,51886.38,59901.09
1-4-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",223.8,22.03,45.6,52237.54,59917.25
1-5-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",223.5,22.12,45.5,52335.92,59665.5
1-6-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",224.2,22.37,45.7,53160.07,60487.84
1-7-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",224.4,22.33,45.5,52832.78,60130.74
1-8-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",224.1,22.43,45.4,52952.74,60378
1-9-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",223.8,22.47,44.9,52462.96,59655.13
1-10-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",224.2,22.42,44.7,52113.05,59130.76
1-11-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",223.8,22.68,45.8,54014.69,60926.6
1-12-2007,CEU1021200001,10212000,212,"Mining, except oil and gas",222.7,22.78,45,53305.2,60166.68
1-1-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",224.1,22.95,44.6,53225.64,59779.75
1-2-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",223.2,23.24,44.8,54139.9,60630.52
1-3-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",223.4,23.37,44.8,54442.75,60445.71
1-4-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",222.2,23.5,44.5,54379,60010.98
1-5-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",225.6,23.53,45,55060.2,60255.32
1-6-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",226.8,23.62,45.1,55393.63,60015.43
1-7-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",226.5,23.5,44.6,54501.2,58740.1
1-8-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",228.4,23.88,44.8,55630.85,60197.9
1-9-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",227.7,24.12,44.8,56189.95,60887.11
1-10-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",228.4,24.11,45,56417.4,61757.4
1-11-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",226.8,24.37,44.2,56012.01,62510.91
1-12-2008,CEU1021200001,10212000,212,"Mining, except oil and gas",224.9,24.51,44.2,56333.79,63527.04
1-1-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",222.9,24.57,43.8,55960.63,62832.77
1-2-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",219.8,24.56,43.8,55937.86,62496.4
1-3-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",215.5,24.68,43.3,55569.49,61934.24
1-4-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",212.9,24.9,42.7,55287.96,61467.02
1-5-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",210,24.79,42.4,54656.99,60590.5
1-6-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",207.2,24.78,42.3,54506.09,59908.61
1-7-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",205,24.7,42.9,55100.76,60658.4
1-8-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",203.1,25.1,42.9,55993.08,61502.78
1-9-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",202.1,24.88,42.9,55502.3,60925.61
1-10-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",199.7,25.23,42.6,55889.5,61291.6
1-11-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",199.9,25.22,43.5,57047.64,62517.45
1-12-2009,CEU1021200001,10212000,212,"Mining, except oil and gas",199.5,25,42.9,55770,61225.13
1-1-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",199.1,25.3,43.4,57097.04,62468.49
1-2-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",199.9,25.44,43.2,57148.41,62509.12
1-3-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",200.6,25.4,43.6,57586.88,62731.12
1-4-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",201.1,25.51,44.5,59030.14,64191.81
1-5-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",202.3,25.73,43.9,58736.45,63822.96
1-6-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",202.8,25.76,43.6,58403.07,63522.74
1-7-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",203.9,25.94,43.6,58811.17,63953.11
1-8-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",205.8,25.93,43.8,59058.17,64133.16
1-9-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",207.5,25.86,43.7,58764.27,63776.9
1-10-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",208.9,26.01,43.8,59240.38,64213.66
1-11-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",211,25.83,44.2,59367.67,64324.58
1-12-2010,CEU1021200001,10212000,212,"Mining, except oil and gas",208.8,26.2,43.9,59809.36,64691.98
1-1-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",209.3,26.46,43.8,60265.3,64876.12
1-2-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",209.7,26.32,44,60220.16,64509.41
1-3-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",211.1,26.53,44.2,60976.55,64688.89
1-4-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",215,26.28,44.3,60538.61,63813.37
1-5-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",218.1,26.26,44.5,60765.64,63752.77
1-6-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",220.6,26.45,44.5,61205.3,64282.89
1-7-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",220.6,26.58,44.3,61229.69,64251.58
1-8-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",222.5,26.55,44.3,61160.58,64002.56
1-9-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",222.7,26.82,44.5,62061.48,64846.86
1-10-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",224,26.92,44.9,62852.82,65809.45
1-11-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",223,27.01,44.6,62641.59,65643.67
1-12-2011,CEU1021200001,10212000,212,"Mining, except oil and gas",223.3,27.11,45,63437.4,66641.98
1-1-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",223.8,27.34,45.1,64117.77,67061.65
1-2-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",223.7,27.3,44.9,63740.04,66374.33
1-3-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",223,27.52,44,62965.76,65073.84
1-4-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",223.1,27.65,44.8,64413.44,66369.48
1-5-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",221.7,27.8,44.2,63895.52,65913.19
1-6-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",219.2,27.72,44.2,63711.65,65820.02
1-7-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",218.7,27.67,44.3,63740.61,65957.45
1-8-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",216.6,27.76,43.7,63081.82,64914.48
1-9-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",215.7,27.82,43.8,63362.83,64914
1-10-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",212.9,27.71,43.5,62680.02,64239.46
1-11-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",213.6,27.7,43.5,62657.4,64521.98
1-12-2012,CEU1021200001,10212000,212,"Mining, except oil and gas",214.2,27.76,44,63514.88,65581.59
1-1-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",215,27.75,43.8,63203.4,65067.55
1-2-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",215.6,27.79,43.5,62860.98,64189.32
1-3-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",213.8,27.93,43.7,63468.13,64640.3
1-4-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",210.8,27.99,43.7,63604.48,64846.59
1-5-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",210.7,28.17,43.5,63720.54,64849.45
1-6-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",210.4,28.41,43.9,64854.35,65845.34
1-7-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",209.5,28.31,44,64773.28,65737.13
1-8-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",208.7,28.38,44,64933.44,65820.5
1-9-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",209.1,28.47,44.1,65287.4,66102.41
1-10-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",210,28.62,44.1,65631.38,66622.26
1-11-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",211.8,28.62,44.7,66524.33,67666.9
1-12-2013,CEU1021200001,10212000,212,"Mining, except oil and gas",210.1,29.12,44.2,66929.41,68084.77
1-1-2014,CEU1021200001,10212000,212,"Mining, except oil and gas",212.1,28.82,44.3,66389.75,67285.48
1-2-2014,CEU1021200001,10212000,212,"Mining, except oil and gas",212.9,29.29,44.5,67777.06,68438.43
1-3-2014,CEU1021200001,10212000,212,"Mining, except oil and gas",212.4,29.31,45.1,68737.81,68964.42
1-3-2006,CEU1021210001,10212100,2121,Coal mining,78.7,23.33,46.3,56169.31,66647.5
1-4-2006,CEU1021210001,10212100,2121,Coal mining,79,23.34,47.6,57771.17,67969.86
1-5-2006,CEU1021210001,10212100,2121,Coal mining,78.7,23.57,47.2,57850.21,67726.73
1-6-2006,CEU1021210001,10212100,2121,Coal mining,78.4,23.49,46.2,56432.38,65936.6
1-7-2006,CEU1021210001,10212100,2121,Coal mining,78,23.91,47.8,59430.7,69235.16
1-8-2006,CEU1021210001,10212100,2121,Coal mining,78.2,23.65,47.7,58661.46,68204.95
1-9-2006,CEU1021210001,10212100,2121,Coal mining,77.8,23.96,49.4,61548.45,71914.31
1-10-2006,CEU1021210001,10212100,2121,Coal mining,78,24.07,48.3,60454.21,71020.82
1-11-2006,CEU1021210001,10212100,2121,Coal mining,77.5,24.06,48.1,60178.87,70802.61
1-12-2006,CEU1021210001,10212100,2121,Coal mining,77.9,24.71,46.8,60134.26,70644.94
1-1-2007,CEU1021210001,10212100,2121,Coal mining,77.5,24.43,48.5,61612.46,72161.23
1-2-2007,CEU1021210001,10212100,2121,Coal mining,77,24.71,48.5,62318.62,72599.87
1-3-2007,CEU1021210001,10212100,2121,Coal mining,77.1,24.43,47.3,60088.03,69369.62
1-4-2007,CEU1021210001,10212100,2121,Coal mining,77.3,24.52,47.4,60436.89,69322.05
1-5-2007,CEU1021210001,10212100,2121,Coal mining,76.6,24.39,47.9,60750.61,69258.66
1-6-2007,CEU1021210001,10212100,2121,Coal mining,76.7,24.8,47.9,61771.84,70286.7
1-7-2007,CEU1021210001,10212100,2121,Coal mining,77.2,24.63,47.6,60964.18,69385.35
1-8-2007,CEU1021210001,10212100,2121,Coal mining,76.9,24.7,48.4,62164.96,70881.99
1-9-2007,CEU1021210001,10212100,2121,Coal mining,77,24.68,47.2,60574.59,68878.8
1-10-2007,CEU1021210001,10212100,2121,Coal mining,77.4,24.61,47.1,60274.81,68391.61
1-11-2007,CEU1021210001,10212100,2121,Coal mining,77.7,24.86,47.7,61662.74,69553.33
1-12-2007,CEU1021210001,10212100,2121,Coal mining,77.2,24.65,47.5,60885.5,68722.73
1-1-2008,CEU1021210001,10212100,2121,Coal mining,77.2,24.81,47,60635.64,68102.2
1-2-2008,CEU1021210001,10212100,2121,Coal mining,77.3,25.05,47.5,61873.5,69291.26
1-3-2008,CEU1021210001,10212100,2121,Coal mining,77.6,25.25,48.6,63811.8,70847.81
1-4-2008,CEU1021210001,10212100,2121,Coal mining,78,25.49,48.2,63888.14,70504.97
1-5-2008,CEU1021210001,10212100,2121,Coal mining,79.2,25.49,48.9,64815.97,70931.59
1-6-2008,CEU1021210001,10212100,2121,Coal mining,80.3,25.33,49.5,65199.42,70639.38
1-7-2008,CEU1021210001,10212100,2121,Coal mining,80.4,25.32,49,64515.36,69533.13
1-8-2008,CEU1021210001,10212100,2121,Coal mining,82.7,25.63,48.7,64905.41,70233.86
1-9-2008,CEU1021210001,10212100,2121,Coal mining,83.6,26.04,49.1,66485.33,72043.12
1-10-2008,CEU1021210001,10212100,2121,Coal mining,84.8,25.89,49.2,66236.98,72506.42
1-11-2008,CEU1021210001,10212100,2121,Coal mining,86.1,26.16,48.8,66383.62,74085.9
1-12-2008,CEU1021210001,10212100,2121,Coal mining,86.3,26.19,49.4,67276.88,75867.45
1-1-2009,CEU1021210001,10212100,2121,Coal mining,86.4,26.29,49,66986.92,75213.12
1-2-2009,CEU1021210001,10212100,2121,Coal mining,85.9,26.02,48.7,65893.05,73618.8
1-3-2009,CEU1021210001,10212100,2121,Coal mining,85.2,26.13,48.3,65628.11,73144.94
1-4-2009,CEU1021210001,10212100,2121,Coal mining,83.9,26.7,47.3,65671.32,73010.84
1-5-2009,CEU1021210001,10212100,2121,Coal mining,82.2,26.62,46.3,64090.31,71047.89
1-6-2009,CEU1021210001,10212100,2121,Coal mining,81,26.57,45.5,62864.62,69095.63
1-7-2009,CEU1021210001,10212100,2121,Coal mining,79.9,26.84,46.4,64759.55,71291.41
1-8-2009,CEU1021210001,10212100,2121,Coal mining,80,27.18,46.4,65579.91,72032.95
1-9-2009,CEU1021210001,10212100,2121,Coal mining,79.4,27.06,47.4,66697.48,73214.7
1-10-2009,CEU1021210001,10212100,2121,Coal mining,78.3,27.44,46.4,66207.23,72606.63
1-11-2009,CEU1021210001,10212100,2121,Coal mining,77.9,27.55,46.7,66902.42,73317.12
1-12-2009,CEU1021210001,10212100,2121,Coal mining,77.7,27.12,46.3,65294.11,71680.84
1-1-2010,CEU1021210001,10212100,2121,Coal mining,77.9,27.45,46.5,66374.1,72618.3
1-2-2010,CEU1021210001,10212100,2121,Coal mining,78.7,27.9,46.2,67026.96,73314.3
1-3-2010,CEU1021210001,10212100,2121,Coal mining,79,27.93,47.2,68551.39,74675.09
1-4-2010,CEU1021210001,10212100,2121,Coal mining,79.2,27.81,48.5,70136.82,76269.68
1-5-2010,CEU1021210001,10212100,2121,Coal mining,80.1,28.15,48.1,70408.78,76506.11
1-6-2010,CEU1021210001,10212100,2121,Coal mining,80.1,28.19,47.4,69482.71,75573.63
1-7-2010,CEU1021210001,10212100,2121,Coal mining,80.7,28.34,47.7,70294.54,76440.48
1-8-2010,CEU1021210001,10212100,2121,Coal mining,81.2,28.4,48,70886.4,76977.81
1-9-2010,CEU1021210001,10212100,2121,Coal mining,82,28.16,47.2,69115.91,75011.54
1-10-2010,CEU1021210001,10212100,2121,Coal mining,82.8,28.24,47.7,70046.49,75926.97
1-11-2010,CEU1021210001,10212100,2121,Coal mining,83.5,28.03,47.6,69379.86,75172.74
1-12-2010,CEU1021210001,10212100,2121,Coal mining,84.1,28.58,47.2,70146.75,75873.28
1-1-2011,CEU1021210001,10212100,2121,Coal mining,83.9,28.57,47.6,70716.46,76126.89
1-2-2011,CEU1021210001,10212100,2121,Coal mining,83.2,28.5,47.8,70839.6,75885.24
1-3-2011,CEU1021210001,10212100,2121,Coal mining,84.1,28.61,48.1,71559.33,75915.97
1-4-2011,CEU1021210001,10212100,2121,Coal mining,85.9,28.41,47.6,70320.43,74124.32
1-5-2011,CEU1021210001,10212100,2121,Coal mining,87.4,28.29,47.9,70464.73,73928.66
1-6-2011,CEU1021210001,10212100,2121,Coal mining,88,28.65,47.8,71212.44,74793.22
1-7-2011,CEU1021210001,10212100,2121,Coal mining,87.6,29.15,46.9,71091.02,74599.6
1-8-2011,CEU1021210001,10212100,2121,Coal mining,88.8,28.74,47.7,71286.7,74599.21
1-9-2011,CEU1021210001,10212100,2121,Coal mining,89.4,28.95,47.6,71657.04,74873.08
1-10-2011,CEU1021210001,10212100,2121,Coal mining,89.6,29.06,47.7,72080.42,75471.13
1-11-2011,CEU1021210001,10212100,2121,Coal mining,89.8,28.85,47.8,71709.56,75146.22
1-12-2011,CEU1021210001,10212100,2121,Coal mining,89.5,28.92,48.1,72334.7,75988.75
1-1-2012,CEU1021210001,10212100,2121,Coal mining,89.8,29.25,47.9,72855.9,76200.98
1-2-2012,CEU1021210001,10212100,2121,Coal mining,89.3,29.27,47.7,72601.3,75601.82
1-3-2012,CEU1021210001,10212100,2121,Coal mining,88.8,29.73,46,71114.16,73495.05
1-4-2012,CEU1021210001,10212100,2121,Coal mining,88,29.91,47.5,73877.7,76121.15
1-5-2012,CEU1021210001,10212100,2121,Coal mining,87.2,30.39,46.4,73324.99,75640.42
1-6-2012,CEU1021210001,10212100,2121,Coal mining,85.6,30.09,46.6,72914.09,75326.99
1-7-2012,CEU1021210001,10212100,2121,Coal mining,84.5,29.95,47.5,73976.5,76549.33
1-8-2012,CEU1021210001,10212100,2121,Coal mining,82.9,30.09,45.8,71662.34,73744.29
1-9-2012,CEU1021210001,10212100,2121,Coal mining,81.7,30.13,46.1,72227.63,73995.81
1-10-2012,CEU1021210001,10212100,2121,Coal mining,79.6,29.98,45.3,70620.89,72377.89
1-11-2012,CEU1021210001,10212100,2121,Coal mining,79.3,30.24,44.8,70447.1,72543.49
1-12-2012,CEU1021210001,10212100,2121,Coal mining,78.9,30.64,45.7,72812.9,75182.16
1-1-2013,CEU1021210001,10212100,2121,Coal mining,78.6,30.75,44.8,71635.2,73748.05
1-2-2013,CEU1021210001,10212100,2121,Coal mining,79.2,30.53,43.4,68900.1,70356.05
1-3-2013,CEU1021210001,10212100,2121,Coal mining,79.3,30.71,44.4,70903.25,72212.73
1-4-2013,CEU1021210001,10212100,2121,Coal mining,78.1,30.58,45.2,71875.23,73278.86
1-5-2013,CEU1021210001,10212100,2121,Coal mining,78.6,30.92,45,72352.8,73634.65
1-6-2013,CEU1021210001,10212100,2121,Coal mining,79.4,31.23,45.2,73402.99,74524.61
1-7-2013,CEU1021210001,10212100,2121,Coal mining,79.5,31.19,45.2,73308.98,74399.84
1-8-2013,CEU1021210001,10212100,2121,Coal mining,79.6,31.26,45.3,73636.05,74642
1-9-2013,CEU1021210001,10212100,2121,Coal mining,79.5,31.42,45.6,74503.1,75433.16
1-10-2013,CEU1021210001,10212100,2121,Coal mining,80.1,31.96,45.5,75617.36,76759
1-11-2013,CEU1021210001,10212100,2121,Coal mining,80.2,31.76,45.9,75804.77,77106.73
1-12-2013,CEU1021210001,10212100,2121,Coal mining,79.9,31.95,45.9,76258.26,77574.66
1-1-2014,CEU1021210001,10212100,2121,Coal mining,79.4,31.64,45.2,74366.66,75370.01
1-2-2014,CEU1021210001,10212100,2121,Coal mining,78.7,32.16,46,76926.72,77677.37
1-3-2014,CEU1021210001,10212100,2121,Coal mining,78,32.26,46.7,78340.19,78598.45
1-3-2006,CEU1021220001,10212200,2122,Metal ore mining,31.2,21.86,44.9,51038.73,60559.82
1-4-2006,CEU1021220001,10212200,2122,Metal ore mining,31.3,22.01,44.2,50587.79,59518.35
1-5-2006,CEU1021220001,10212200,2122,Metal ore mining,31.5,22,44.8,51251.2,60001.11
1-6-2006,CEU1021220001,10212200,2122,Metal ore mining,32,22.71,43.6,51488.11,60159.64
1-7-2006,CEU1021220001,10212200,2122,Metal ore mining,32.3,22.86,43.8,52065.94,60655.41
1-8-2006,CEU1021220001,10212200,2122,Metal ore mining,32.6,22.4,42.9,49969.92,58099.41
1-9-2006,CEU1021220001,10212200,2122,Metal ore mining,33.1,22.86,42.2,50163.98,58612.5
1-10-2006,CEU1021220001,10212200,2122,Metal ore mining,33.4,22.98,42.7,51024.79,59943.26
1-11-2006,CEU1021220001,10212200,2122,Metal ore mining,33.7,22.69,41.9,49436.97,58164.38
1-12-2006,CEU1021220001,10212200,2122,Metal ore mining,33.7,23.1,43.7,52492.44,61667.43
1-1-2007,CEU1021220001,10212200,2122,Metal ore mining,33.7,22.53,41.6,48736.89,57081.22
1-2-2007,CEU1021220001,10212200,2122,Metal ore mining,34.4,22.44,42.9,50059.15,58317.85
1-3-2007,CEU1021220001,10212200,2122,Metal ore mining,34.8,22.42,42.1,49081.86,56663.37
1-4-2007,CEU1021220001,10212200,2122,Metal ore mining,35.3,23.08,42.7,51246.83,58780.9
1-5-2007,CEU1021220001,10212200,2122,Metal ore mining,35.4,23.33,42.6,51680.62,58918.42
1-6-2007,CEU1021220001,10212200,2122,Metal ore mining,35.9,23.4,42.2,51348.96,58427.09
1-7-2007,CEU1021220001,10212200,2122,Metal ore mining,36.3,24.08,42.1,52715.94,59997.76
1-8-2007,CEU1021220001,10212200,2122,Metal ore mining,36.9,23.83,41.7,51672.97,58918.77
1-9-2007,CEU1021220001,10212200,2122,Metal ore mining,37.1,23.87,42.8,53125.07,60408.02
1-10-2007,CEU1021220001,10212200,2122,Metal ore mining,37.7,23.62,41.7,51217.61,58114.74
1-11-2007,CEU1021220001,10212200,2122,Metal ore mining,38,24.61,42.3,54132.16,61059.1
1-12-2007,CEU1021220001,10212200,2122,Metal ore mining,38.5,25.15,42.2,55189.16,62293.15
1-1-2008,CEU1021220001,10212200,2122,Metal ore mining,38.9,25.41,41.4,54702.65,61438.63
1-2-2008,CEU1021220001,10212200,2122,Metal ore mining,39.1,26.49,40.8,56201.18,62938.91
1-3-2008,CEU1021220001,10212200,2122,Metal ore mining,39.5,26.14,40.7,55322.7,61422.68
1-4-2008,CEU1021220001,10212200,2122,Metal ore mining,39.5,26.03,39.9,54007.04,59600.5
1-5-2008,CEU1021220001,10212200,2122,Metal ore mining,39.7,26.43,41.1,56486.2,61815.87
1-6-2008,CEU1021220001,10212200,2122,Metal ore mining,39.9,26.51,41.6,57346.43,62131.18
1-7-2008,CEU1021220001,10212200,2122,Metal ore mining,40.2,25.96,40.9,55211.73,59505.89
1-8-2008,CEU1021220001,10212200,2122,Metal ore mining,40.5,26.73,43.2,60046.27,64975.81
1-9-2008,CEU1021220001,10212200,2122,Metal ore mining,40.7,26.78,41.3,57512.73,62320.46
1-10-2008,CEU1021220001,10212200,2122,Metal ore mining,40.9,26.55,41.7,57571.02,63020.21
1-11-2008,CEU1021220001,10212200,2122,Metal ore mining,39.9,27.49,40,57179.2,63813.52
1-12-2008,CEU1021220001,10212200,2122,Metal ore mining,39.7,27.27,39.5,56012.58,63164.82
1-1-2009,CEU1021220001,10212200,2122,Metal ore mining,38.2,27.2,39.3,55585.92,62412.04
1-2-2009,CEU1021220001,10212200,2122,Metal ore mining,37,28.35,39.4,58083.48,64893.59
1-3-2009,CEU1021220001,10212200,2122,Metal ore mining,36,28.25,39.7,58319.3,64999
1-4-2009,CEU1021220001,10212200,2122,Metal ore mining,34.7,28.44,39.4,58267.87,64779.97
1-5-2009,CEU1021220001,10212200,2122,Metal ore mining,34.2,28.1,38.5,56256.2,62363.32
1-6-2009,CEU1021220001,10212200,2122,Metal ore mining,34.2,28.21,38.8,56916.5,62557.93
1-7-2009,CEU1021220001,10212200,2122,Metal ore mining,33.9,27.57,39.1,56055.32,61709.25
1-8-2009,CEU1021220001,10212200,2122,Metal ore mining,33.5,28.41,39.2,57910.95,63609.36
1-9-2009,CEU1021220001,10212200,2122,Metal ore mining,33.5,28.27,38.5,56596.54,62126.76
1-10-2009,CEU1021220001,10212200,2122,Metal ore mining,33.5,28.55,38.7,57454.02,63007.35
1-11-2009,CEU1021220001,10212200,2122,Metal ore mining,33.7,28.24,39.3,57711.27,63244.7
1-12-2009,CEU1021220001,10212200,2122,Metal ore mining,34,27.94,39.3,57098.18,62683.23
1-1-2010,CEU1021220001,10212200,2122,Metal ore mining,34.5,28.5,39.8,58983.6,64532.53
1-2-2010,CEU1021220001,10212200,2122,Metal ore mining,34.9,27.74,39.5,56977.96,62322.68
1-3-2010,CEU1021220001,10212200,2122,Metal ore mining,35,27.91,39.5,57327.14,62448.18
1-4-2010,CEU1021220001,10212200,2122,Metal ore mining,36,28.03,39.2,57136.35,62132.43
1-5-2010,CEU1021220001,10212200,2122,Metal ore mining,36.4,28.56,38.7,57474.14,62451.35
1-6-2010,CEU1021220001,10212200,2122,Metal ore mining,36.6,28.5,38.6,57205.2,62219.86
1-7-2010,CEU1021220001,10212200,2122,Metal ore mining,36.9,29.54,38.1,58524.65,63641.54
1-8-2010,CEU1021220001,10212200,2122,Metal ore mining,37.3,29.16,38.6,58529.95,63559.55
1-9-2010,CEU1021220001,10212200,2122,Metal ore mining,37.5,29.68,39.1,60345.38,65492.88
1-10-2010,CEU1021220001,10212200,2122,Metal ore mining,38.1,29.7,38.4,59304.96,64283.67
1-11-2010,CEU1021220001,10212200,2122,Metal ore mining,38.5,29.56,39.4,60562.53,65619.2
1-12-2010,CEU1021220001,10212200,2122,Metal ore mining,38.7,29.83,38.7,60029.89,64930.52
1-1-2011,CEU1021220001,10212200,2122,Metal ore mining,39.1,30.01,39.1,61016.33,65684.62
1-2-2011,CEU1021220001,10212200,2122,Metal ore mining,39.7,29.85,39,60535.8,64847.54
1-3-2011,CEU1021220001,10212200,2122,Metal ore mining,39.9,31.15,39.9,64630.02,68564.79
1-4-2011,CEU1021220001,10212200,2122,Metal ore mining,41,29.54,39.6,60828.77,64119.22
1-5-2011,CEU1021220001,10212200,2122,Metal ore mining,41.9,29.51,41,62915.32,66008.13
1-6-2011,CEU1021220001,10212200,2122,Metal ore mining,42.7,29.61,41,63128.52,66302.81
1-7-2011,CEU1021220001,10212200,2122,Metal ore mining,43,29.53,41.5,63725.74,66870.82
1-8-2011,CEU1021220001,10212200,2122,Metal ore mining,43.2,29.99,41.6,64874.37,67888.92
1-9-2011,CEU1021220001,10212200,2122,Metal ore mining,43.2,29.85,42.1,65347.62,68280.48
1-10-2011,CEU1021220001,10212200,2122,Metal ore mining,43.4,30.1,42.7,66834.04,69977.96
1-11-2011,CEU1021220001,10212200,2122,Metal ore mining,43.6,30.38,42.2,66665.88,69860.81
1-12-2011,CEU1021220001,10212200,2122,Metal ore mining,44,30.97,43.7,70376.23,73931.34
1-1-2012,CEU1021220001,10212200,2122,Metal ore mining,44.1,31.69,43.3,71353.2,74629.28
1-2-2012,CEU1021220001,10212200,2122,Metal ore mining,44.1,31.23,43.9,71291.84,74238.24
1-3-2012,CEU1021220001,10212200,2122,Metal ore mining,44,31.72,43.3,71420.75,73811.91
1-4-2012,CEU1021220001,10212200,2122,Metal ore mining,44.3,31.74,44.6,73611.41,75846.77
1-5-2012,CEU1021220001,10212200,2122,Metal ore mining,44.4,32.32,43.2,72603.65,74896.3
1-6-2012,CEU1021220001,10212200,2122,Metal ore mining,44.5,31.9,43.1,71494.28,73860.2
1-7-2012,CEU1021220001,10212200,2122,Metal ore mining,44.6,31.83,43.2,71502.91,73989.71
1-8-2012,CEU1021220001,10212200,2122,Metal ore mining,44.8,31.79,42.8,70751.82,72807.31
1-9-2012,CEU1021220001,10212200,2122,Metal ore mining,45.3,31.92,42.6,70709.19,72440.2
1-10-2012,CEU1021220001,10212200,2122,Metal ore mining,45.1,31.89,43,71306.04,73080.09
1-11-2012,CEU1021220001,10212200,2122,Metal ore mining,45.3,31.56,42.5,69747.6,71823.17
1-12-2012,CEU1021220001,10212200,2122,Metal ore mining,45.5,31.07,42.5,68664.7,70898.98
1-1-2013,CEU1021220001,10212200,2122,Metal ore mining,45.7,30.72,42.6,68050.95,70058.08
1-2-2013,CEU1021220001,10212200,2122,Metal ore mining,45.8,31.15,42.5,68841.5,70296.22
1-3-2013,CEU1021220001,10212200,2122,Metal ore mining,45.8,31.21,42.6,69136.39,70413.24
1-4-2013,CEU1021220001,10212200,2122,Metal ore mining,45.5,31.23,42.7,69343.09,70697.27
1-5-2013,CEU1021220001,10212200,2122,Metal ore mining,45.5,31.11,42.7,69076.64,70300.45
1-6-2013,CEU1021220001,10212200,2122,Metal ore mining,44.8,31.24,43,69852.64,70920.01
1-7-2013,CEU1021220001,10212200,2122,Metal ore mining,44.1,31.15,43.7,70785.26,71838.57
1-8-2013,CEU1021220001,10212200,2122,Metal ore mining,43.9,31.05,42.8,69104.88,70048.93
1-9-2013,CEU1021220001,10212200,2122,Metal ore mining,43.3,31.26,43,69897.36,70769.92
1-10-2013,CEU1021220001,10212200,2122,Metal ore mining,43.5,31.07,42.9,69310.95,70357.38
1-11-2013,CEU1021220001,10212200,2122,Metal ore mining,43,31.52,44.2,72445.57,73689.84
1-12-2013,CEU1021220001,10212200,2122,Metal ore mining,43.3,31.83,44.1,72992.55,74252.59
1-1-2014,CEU1021220001,10212200,2122,Metal ore mining,43.2,32.12,45.2,75494.85,76513.43
1-2-2014,CEU1021220001,10212200,2122,Metal ore mining,44.3,32.31,44.6,74933.35,75664.55
1-3-2014,CEU1021220001,10212200,2122,Metal ore mining,44.9,32.63,44,74657.44,74903.56
1-3-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,111.4,20.05,43.5,45353.1,53813.57
1-4-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,110.9,20.22,43.4,45632.5,53688.27
1-5-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,110.2,20.26,43.3,45617.41,53405.49
1-6-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,110.1,20.28,43.2,45556.99,53229.61
1-7-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,110.4,20.37,43.5,46076.94,53678.39
1-8-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.1,20.3,43.8,46235.28,53757.18
1-9-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.7,20.24,43.7,45993.38,53739.48
1-10-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.3,20.38,44.4,47053.34,55277.65
1-11-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.6,20.23,44,46286.24,54457.43
1-12-2006,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.7,19.93,44.8,46428.93,54544.1
1-1-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.3,19.84,44.5,45909.76,53770.05
1-2-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.8,19.87,43.7,45152.59,52601.81
1-3-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,110.5,20.01,45.9,47759.87,55137.17
1-4-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,111.2,19.95,45.2,46890.48,53784.1
1-5-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,111.5,20.02,44.8,46638.59,53170.27
1-6-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,111.7,20.2,45.1,47373.04,53903.11
1-7-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,110.9,20.12,44.9,46976.18,53465.14
1-8-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,110.3,20.2,44.6,46847.84,53417.04
1-9-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.7,20.31,44.3,46786.12,53200.05
1-10-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,109.1,20.25,44.2,46542.6,52810.18
1-11-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,108.1,20.4,45.3,48054.24,54203.43
1-12-2007,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,107,20.6,44.1,47239.92,53320.68
1-1-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,108.1,20.73,44.2,47645.83,53512.86
1-2-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,106.8,20.87,44.4,48184.66,53961.32
1-3-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,106.4,20.92,44,47864.96,53142.64
1-4-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,104.7,21.01,43.4,47415.37,52326.13
1-5-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,106.7,20.94,43.7,47584.05,52073.78
1-6-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,106.5,20.98,43,46911.28,50825.36
1-7-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,105.9,21.07,42.9,47002.96,50658.67
1-8-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,105.3,21.13,42.6,46807.18,50649.84
1-9-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,103.4,21.31,43.1,47759.97,51752.43
1-10-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,102.7,21.38,43.2,48028.03,52573.96
1-11-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,100.8,21.39,41.6,46270.85,51639.51
1-12-2008,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,98.9,21.74,41.3,46688.82,52650.52
1-1-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,98.3,21.69,40.7,45904.71,51541.95
1-2-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,96.8,21.65,40.6,45707.48,51066.54
1-3-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,94.4,21.78,40.2,45528.91,50743.64
1-4-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,94.2,21.6,38,42681.6,47451.76
1-5-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,93.6,21.76,40.3,45600.26,50550.58
1-6-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,92,21.73,40.8,46102.37,50671.93
1-7-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,91.2,21.67,41.1,46313.13,50984.41
1-8-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.6,21.83,41.3,46882.11,51495.29
1-9-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.2,21.45,41,45731.4,50199.96
1-10-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,87.9,21.73,40.8,46102.37,50558.48
1-11-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88.3,21.91,42.2,48079.3,52689.21
1-12-2009,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,87.8,21.8,41.2,46704.32,51272.7
1-1-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.6,21.83,42.1,47790.23,52286.14
1-2-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.3,21.97,41.8,47753.99,52233.47
1-3-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.5,21.81,42.1,47746.45,52011.65
1-4-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,85.9,22.08,42.1,48337.54,52564.23
1-5-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,85.8,22.06,42.3,48523.18,52725.23
1-6-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.1,22.1,42.2,48496.24,52747.46
1-7-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.4,22.2,42.1,48600.24,52849.42
1-8-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,87.3,22.1,42.2,48496.24,52663.62
1-9-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88,21.97,42.5,48553.7,52695.36
1-10-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88,22.18,42.6,49133.14,53257.91
1-11-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.1,22.08,42.9,49256.06,53368.7
1-12-2010,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,85.9,22.16,42.8,49319.3,53345.55
1-1-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.2,22.52,42.2,49417.89,53198.79
1-2-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.9,22.3,42.3,49051.08,52544.8
1-3-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,87,22.22,42.3,48875.11,51850.7
1-4-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88.1,22.49,42.6,49819.85,52514.79
1-5-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88.8,22.57,42.8,50231.79,52701.1
1-6-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.8,22.58,42.9,50371.46,52904.3
1-7-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90,22.7,43.2,50993.28,53509.97
1-8-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90.5,22.53,42.1,49322.68,51614.58
1-9-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90.1,22.99,42.9,51286.09,53587.86
1-10-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,91,23.06,43.4,52041.81,54489.89
1-11-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.6,23.3,42.4,51371.84,53833.82
1-12-2011,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.7,23.17,42.2,50844.25,53412.68
1-1-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.9,22.9,42.9,51085.32,53430.83
1-2-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90.3,23,42.3,50590.8,52681.65
1-3-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90.3,23.07,42.3,50744.77,52443.7
1-4-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90.7,23.07,42.7,51224.63,52780.17
1-5-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90.1,22.88,42.4,50445.82,52038.78
1-6-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.1,23.09,42.2,50668.7,52345.45
1-7-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.6,23.26,42,50799.84,52566.61
1-8-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88.9,23.31,42.1,51030.25,52512.79
1-9-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88.8,23.34,42.3,51338.66,52595.47
1-10-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88.2,23.34,42.5,51581.4,52864.71
1-11-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.1,23.36,42.8,51990.02,53537.15
1-12-2012,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.8,23.39,43.4,52786.55,54504.17
1-1-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90.7,23.53,43.6,53347.21,54920.66
1-2-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,90.6,23.68,44.2,54426.11,55576.21
1-3-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88.7,23.78,43.6,53914.02,54909.73
1-4-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,87.1,23.86,43.1,53475.03,54519.32
1-5-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.6,24.03,42.8,53481.17,54428.68
1-6-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.3,24.2,43.2,54362.88,55193.56
1-7-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,85.9,24.11,43.1,54035.33,54839.4
1-8-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,85.2,24.14,43.3,54353.63,55096.15
1-9-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.2,24.21,43.4,54637.13,55319.19
1-10-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.4,24.17,43.5,54672.54,55497.96
1-11-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,88.6,24.22,43.8,55163.47,56110.92
1-12-2013,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,86.9,24.82,42.9,55368.46,56324.25
1-1-2014,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.5,24.43,43.3,55006.59,55748.74
1-2-2014,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.9,24.96,43,55810.56,56355.16
1-3-2014,CEU1021230001,10212300,2123,Nonmetallic mineral mining and quarrying,89.6,24.97,44.4,57650.73,57840.79
1-3-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,51.4,17.75,43.8,40427.4,47968.99
1-4-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,51.5,18.09,46.6,43835.69,51574.26
1-5-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,51.8,18.06,43.6,40945.63,47936.11
1-6-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,51.5,18.11,43,40493.96,47313.87
1-7-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,51.6,18.25,44.1,41850.9,48755.17
1-8-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,50.7,18.07,45.5,42753.62,49709.1
1-9-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,51.7,18.09,45,42330.6,49459.83
1-10-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,51.3,18,45.6,42681.6,50141.79
1-11-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,51.7,17.97,45.2,42236.69,49692.98
1-12-2006,CEU1021231001,10212310,21231,Stone mining and quarrying,52.2,17.2,46.6,41679.04,48963.99
1-1-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,50.2,17.06,46.3,41073.66,48105.95
1-2-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,50.8,17.12,45.6,40594.95,47292.25
1-3-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,51.6,17.43,48,43505.28,50225.39
1-4-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,52.6,17.38,47.1,42567.1,48825.11
1-5-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,53,17.7,46.6,42890.64,48897.42
1-6-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,53,17.79,46.7,43201.23,49156.25
1-7-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,52.7,17.64,46.4,42561.79,48440.99
1-8-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,52,17.81,46,42601.52,48575.29
1-9-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,51.7,18.16,46.1,43533.15,49501.14
1-10-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,51,18.29,45.2,42988.82,48777.83
1-11-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,50.6,18.49,46,44228.08,49887.66
1-12-2007,CEU1021231001,10212310,21231,Stone mining and quarrying,50.1,18.7,44.5,43271.8,48841.78
1-1-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,50.5,18.91,45,44249.4,49698.19
1-2-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,49.6,19.16,45.2,45033.66,50432.57
1-3-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,49.1,19.2,43.6,43530.24,48329.96
1-4-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,48.1,19.28,43.2,43310.59,47796.23
1-5-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,48.2,19.34,43.2,43445.38,47544.6
1-6-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,47.5,19.46,42.5,43006.6,46594.89
1-7-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,47,19.58,42.9,43679.06,47076.26
1-8-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,46.7,19.73,42.4,43500.7,47071.92
1-9-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,46.3,19.56,41.9,42617.33,46179.89
1-10-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,46.3,19.7,42.2,43229.68,47321.44
1-11-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,45.7,19.62,41.2,42033.89,46910.95
1-12-2008,CEU1021231001,10212310,21231,Stone mining and quarrying,45.5,19.82,41.2,42462.37,47884.39
1-1-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,45.4,19.86,40.8,42134.98,47309.28
1-2-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,45.1,19.82,40.8,42050.11,46980.36
1-3-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,43.2,20.26,40.9,43088.97,48024.24
1-4-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,43.8,20.09,41,42831.88,47618.83
1-5-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,43.1,19.98,40.7,42285.67,46876.16
1-6-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,42.6,20.12,41.6,43523.59,47837.55
1-7-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,42.6,20.1,41.7,43584.84,47980.95
1-8-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,42.1,20.28,41.7,43975.15,48302.29
1-9-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,41.7,19.89,41.8,43232.9,47457.32
1-10-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,41.1,19.96,41.7,43281.27,47464.7
1-11-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,41.2,20.32,42.6,45012.86,49328.76
1-12-2009,CEU1021231001,10212310,21231,Stone mining and quarrying,40.7,20.19,41.9,43989.97,48292.84
1-1-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,40.5,20.34,42.4,44845.63,49064.52
1-2-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,40.2,20.44,42.2,44853.54,49060.94
1-3-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,40.5,20.38,42.1,44615.89,48601.44
1-4-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,40,20.56,42.5,45437.6,49410.73
1-5-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,39.8,20.65,42.9,46066.02,50055.29
1-6-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,40.4,20.54,42.7,45607.02,49604.97
1-7-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,40.7,20.73,42.7,46028.89,50053.26
1-8-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,41.1,20.65,42.8,45958.64,49907.96
1-9-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,41.5,20.69,43.2,46478.02,50442.62
1-10-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,41.7,20.78,43.6,47112.41,51067.55
1-11-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,41.9,20.91,44.1,47950.81,51954.47
1-12-2010,CEU1021231001,10212310,21231,Stone mining and quarrying,39.3,21.09,44.2,48473.26,52430.44
1-1-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,40.1,21.56,43.7,48992.95,52741.34
1-2-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,39.8,21.45,44.4,49523.76,53051.15
1-3-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,40,21.38,44.2,49139.79,52131.5
1-4-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,41,21.26,44.4,49085.09,51740.29
1-5-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,41.2,21.41,44.8,49876.73,52328.59
1-6-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,41.5,21.34,44.6,49491.73,51980.32
1-7-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,41,21.63,44.2,49714.39,52167.96
1-8-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,41.3,21.56,43.7,48992.95,51269.53
1-9-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,40.6,22.13,43.7,50288.21,52545.2
1-10-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,41.4,22.55,43.9,51477.14,53898.66
1-11-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,40.2,22.7,42.3,49930.92,52323.84
1-12-2011,CEU1021231001,10212310,21231,Stone mining and quarrying,40.7,22.74,42.6,50373.65,52918.31
1-1-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,40.3,22.75,42.8,50632.4,52957.11
1-2-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,40.3,22.71,42.2,49834.82,51894.43
1-3-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,40.7,22.8,42.9,50862.24,52565.1
1-4-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,40.4,22.99,43.1,51525.19,53089.86
1-5-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,40.5,22.96,43,51338.56,52959.71
1-6-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,39.6,23.24,42.9,51843.79,53559.43
1-7-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,40.2,23.32,42.9,52022.26,53831.54
1-8-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,39.8,23.13,43.3,52079.51,53592.53
1-9-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,39.8,23.47,43.3,52845.05,54138.73
1-10-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,39.5,23.24,43.3,52327.18,53629.05
1-11-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,39.6,23.09,43.4,52109.51,53660.2
1-12-2012,CEU1021231001,10212310,21231,Stone mining and quarrying,39.9,23.22,43.9,53006.62,54731.4
1-1-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,41.4,23.12,43.8,52658.11,54211.24
1-2-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,40.6,23.15,44.4,53448.72,54578.16
1-3-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,39.9,23.25,44.1,53316.9,54301.59
1-4-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,39.7,23.09,43.5,52229.58,53249.55
1-5-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,39.2,23.29,43.3,52439.77,53368.82
1-6-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,39.1,23.42,42.8,52123.55,52920.01
1-7-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,38.9,23.29,43,52076.44,52851.36
1-8-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,38.8,23.41,43.4,52831.69,53553.42
1-9-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,39.1,23.42,43.1,52488.9,53144.14
1-10-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,39.1,23.23,43.4,52425.46,53216.96
1-11-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,40,23.17,43.9,52892.48,53800.91
1-12-2013,CEU1021231001,10212310,21231,Stone mining and quarrying,39.6,23.43,43,52389.48,53293.85
1-1-2014,CEU1021231001,10212310,21231,Stone mining and quarrying,40.7,23.26,43.3,52372.21,53078.82
1-2-2014,CEU1021231001,10212310,21231,Stone mining and quarrying,40.4,23.27,43.1,52152.72,52661.63
1-3-2014,CEU1021231001,10212310,21231,Stone mining and quarrying,40.4,23.48,43.8,53478.05,53654.35
1-3-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.4,18.36,44.4,42389.57,50297.2
1-4-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.8,19.07,44.9,44524.64,52384.84
1-5-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,27,18.78,43.2,42187.39,49389.87
1-6-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.9,18.62,42.9,41537.5,48533.16
1-7-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.7,18.45,43.3,41542.02,48395.33
1-8-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.6,18.16,43.8,41361.21,48090.17
1-9-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.6,18.26,43.5,41304.12,48260.48
1-10-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.5,18.38,44.5,42531.32,49965.24
1-11-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.7,18.25,44.6,42325.4,49797.35
1-12-2006,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.6,18.3,44.4,42251.04,49635.97
1-1-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.1,18.02,45.3,42447.91,49715.49
1-2-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,25.8,18.05,44.9,42143.14,49095.86
1-3-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.2,17.85,47.7,44275.14,51114.17
1-4-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,27.2,17.52,45.8,41725.63,47859.94
1-5-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,28.2,17.69,45.9,42222.49,48135.7
1-6-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,27.6,17.87,45.7,42466.27,48319.97
1-7-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,27.2,17.53,45.7,41658.29,47412.68
1-8-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.9,18,44.4,41558.4,47385.89
1-9-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.7,18.24,45.7,43345.54,49287.8
1-10-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,26.4,18.43,44.5,42647.02,48390
1-11-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,25.9,18.49,48.1,46247.19,52165.14
1-12-2007,CEU1021231201,10212312,212312,Crushed and broken limestone mining,25.8,18.6,44.9,43427.28,49017.27
1-1-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,25.9,18.78,45,43945.2,49356.53
1-2-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,25,18.96,47.3,46634.02,52224.78
1-3-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,24.6,19.15,44.1,43914.78,48756.91
1-4-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,23.9,19.16,43.8,43638.82,48158.45
1-5-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,24.1,19.24,43.9,43921.07,48065.18
1-6-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,23.7,19.22,43.7,43675.53,47319.63
1-7-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,23.6,19.36,43.4,43691.65,47089.82
1-8-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,23.4,19.37,43.6,43915.66,47520.95
1-9-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,23.3,19.3,42.4,42552.64,46109.79
1-10-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,23.1,19.25,43.1,43143.1,47226.67
1-11-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,23,19.01,42.2,41715.54,46555.67
1-12-2008,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.7,19.22,42.8,42776.03,48238.1
1-1-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.9,19.52,42.2,42834.69,48094.91
1-2-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,23,19.3,41.2,41348.32,46196.29
1-3-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.5,19.32,42.1,42295.34,47139.71
1-4-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.4,19.36,42.3,42584.26,47343.54
1-5-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.5,19.15,43.2,43018.56,47688.61
1-6-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.2,19.18,43.7,43584.63,47904.64
1-7-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.9,19.09,44.1,43777.19,48192.7
1-8-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.1,19.18,44.2,44083.31,48421.09
1-9-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.2,18.53,44.6,42974.78,47173.98
1-10-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.3,18.84,44.1,43203.89,47379.84
1-11-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.2,19.05,45.9,45468.54,49828.13
1-12-2009,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.1,18.94,43.7,43039.26,47249.13
1-1-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.6,18.94,44.9,44221.11,48381.25
1-2-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.2,19.26,45.3,45368.86,49624.6
1-3-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.3,19.45,45,45513,49578.68
1-4-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.4,19.93,44.7,46325.29,50376.04
1-5-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.5,19.91,43.8,45347.02,49274.02
1-6-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.6,19.94,44.3,45933.79,49960.38
1-7-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22,19.94,44.3,45933.79,49949.84
1-8-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.8,20.04,44.3,46164.14,50131.12
1-9-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22,19.94,45.1,46763.29,50752.23
1-10-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.3,20.18,45.7,47955.75,51981.69
1-11-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22,20.23,46.2,48600.55,52658.46
1-12-2010,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.4,20.34,46,48653.28,52625.16
1-1-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.9,20.94,45.9,49979.59,53803.47
1-2-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.1,20.71,46.3,49861.39,53412.84
1-3-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.5,20.75,45.1,48662.9,51625.57
1-4-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.1,20.67,46.7,50195.03,52910.26
1-5-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22,20.99,46.2,50426.38,52905.25
1-6-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,22.7,21.02,46.2,50498.45,53037.67
1-7-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.8,21.35,45.8,50847.16,53356.64
1-8-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.6,21.38,45.7,50807.43,53168.33
1-9-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.9,22.09,45.5,52264.94,54610.64
1-10-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.8,22.6,45,52884,55371.7
1-11-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.7,22.71,43.5,51370.02,53831.91
1-12-2011,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.1,23.08,44,52807.04,55474.63
1-1-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.2,23.07,43.8,52544.23,54956.72
1-2-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.4,23.17,43.7,52651.51,54827.52
1-3-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.5,23.36,44.2,53690.63,55488.18
1-4-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.8,23.73,44.3,54664.43,56324.43
1-5-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.6,23.48,45.2,55187.39,56930.07
1-6-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.1,23.82,44.4,54995.62,56815.56
1-7-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.6,23.98,44.4,55365.02,57290.56
1-8-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.6,23.81,44.6,55220.15,56824.41
1-9-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.7,23.97,44.7,55715.87,57079.83
1-10-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.5,23.79,44,54431.52,55785.74
1-11-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.1,23.83,44.8,55514.37,57166.38
1-12-2012,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.8,23.93,45.7,56867.25,58717.66
1-1-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.6,23.71,44.6,54988.23,56610.08
1-2-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,21.6,23.43,45.9,55922.72,57104.45
1-3-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.9,23.6,45,55224,56243.91
1-4-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.4,23.62,44.7,54902.33,55974.5
1-5-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20,23.76,44.1,54486.43,55451.75
1-6-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.1,24.16,42.9,53896.13,54719.68
1-7-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20,23.87,44.2,54862.81,55679.19
1-8-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,19.9,23.89,43.9,54536.09,55281.11
1-9-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20,23.94,44,54774.72,55458.5
1-10-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20,23.77,44,54385.76,55206.86
1-11-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.3,23.84,45.3,56157.5,57122.02
1-12-2013,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.3,24.23,43.9,55312.24,56267.07
1-1-2014,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.7,23.93,44.4,55249.59,55995.01
1-2-2014,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.3,24.23,44.2,55690.23,56233.66
1-3-2014,CEU1021231201,10212312,212312,Crushed and broken limestone mining,20.4,24.3,44.8,56609.28,56795.91
1-3-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.9,17.2,43,38459.2,45633.63
1-4-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.7,17.21,44.5,39823.94,46854.3
1-5-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25,17.49,44.5,40471.86,47381.46
1-6-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.8,17.58,43.5,39765.96,46463.26
1-7-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.3,17.96,44.9,41933.01,48850.82
1-8-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.1,17.97,46.9,43825.23,50955.05
1-9-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.2,18.01,46.4,43454.53,50773.05
1-10-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.8,17.67,46.5,42726.06,50194.02
1-11-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25,17.61,47.2,43221.98,50852.22
1-12-2006,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.1,16.08,49.3,41222.69,48427.88
1-1-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.1,16.11,47.2,39540.38,46310.16
1-2-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.1,16.06,47.4,39584.69,46115.32
1-3-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.2,17.1,48.1,42770.52,49377.13
1-4-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.3,17.37,48.3,43626.49,50040.25
1-5-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.1,17.91,47.7,44423.96,50645.48
1-6-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.5,17.72,48.1,44321.27,50430.67
1-7-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.5,17.7,47,43258.8,49234.28
1-8-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.2,17.62,47,43063.28,49101.8
1-9-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,25.1,18.12,46.6,43908.38,49927.81
1-10-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.6,18.2,45.8,43345.12,49182.11
1-11-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.7,18.43,44.9,43030.36,48536.68
1-12-2007,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.2,18.74,44.4,43266.91,48836.26
1-1-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.6,19.04,44.6,44157.57,49595.05
1-2-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.6,19.13,44.2,43968.39,49239.58
1-3-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.2,19.33,43,43221.88,47987.61
1-4-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.2,19.53,42.1,42755.07,47183.18
1-5-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,24.3,19.63,42.1,42974,47028.75
1-6-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,23.9,19.76,41.1,42231.07,45754.65
1-7-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,23.4,19.77,42.2,43383.29,46757.48
1-8-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,23.4,20.14,40.9,42833.75,46350.22
1-9-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,23,19.87,41.3,42672.81,46240.01
1-10-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,23.1,20.22,41.3,43424.47,47534.67
1-11-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,22.7,20.15,40.6,42540.68,47476.54
1-12-2008,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,22.7,20.41,39.9,42346.67,47753.91
1-1-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,22.2,20.2,39.5,41490.8,46586
1-2-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,21.9,20.19,40.9,42940.09,47974.69
1-3-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,20.8,21.34,39.5,43832.36,48852.78
1-4-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,21.3,20.99,38.2,41694.54,46354.38
1-5-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,20.6,21.14,38.5,42322.28,46916.75
1-6-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,20.4,21.36,39.1,43429.15,47733.75
1-7-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,20.7,21.26,38.9,43004.73,47342.32
1-8-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.9,21.71,39,44027.88,48360.21
1-9-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.6,21.61,38.8,43600.34,47860.66
1-10-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.9,21.58,38.7,43427.59,47625.17
1-11-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19,22.03,39.1,44791.39,49086.05
1-12-2009,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.7,21.78,40,45302.4,49733.64
1-1-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.7,21.97,39.7,45354.87,49621.66
1-2-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.9,21.79,39,44190.12,48335.29
1-3-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.4,21.54,38.6,43235.09,47097.29
1-4-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.5,21.48,41.5,46353.84,50407.08
1-5-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.2,21.62,42.2,47442.93,51551.44
1-6-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.8,21.35,40.7,45185.14,49146.11
1-7-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.8,21.68,40.8,45996.29,50017.8
1-8-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.2,21.46,41.3,46087.5,50047.89
1-9-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.4,21.59,41.3,46366.68,50321.79
1-10-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.5,21.56,41,45965.92,49824.81
1-11-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.8,21.68,42.2,47574.59,51546.84
1-12-2010,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19,21.98,42.5,48575.8,52541.36
1-1-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.9,22.23,41.1,47509.96,51144.89
1-2-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.8,22.24,42.2,48803.46,52279.54
1-3-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.8,22.14,42.8,49274.79,52274.71
1-4-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.9,22.14,43.1,49620.17,52304.31
1-5-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.1,21.92,43.5,49583.04,52020.45
1-6-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19,21.77,42.9,48564.52,51006.49
1-7-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.3,21.98,42.6,48690.1,51093.12
1-8-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.5,21.85,41.7,47379.54,49581.15
1-9-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.5,22.15,42,48375.6,50546.75
1-10-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.7,22.47,42.4,49541.86,51872.34
1-11-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.4,22.59,41.2,48396.82,50716.21
1-12-2011,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.6,22.34,41.2,47861.21,50278.96
1-1-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,18.9,22.32,41.7,48398.69,50620.84
1-2-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.1,22.1,41.4,47576.88,49543.17
1-3-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.5,22.13,41,47181.16,48760.78
1-4-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.6,22.26,41.1,47574.07,49018.75
1-5-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.8,22.31,41.2,47796.95,49306.26
1-6-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.7,22.64,41.4,48739.39,50352.3
1-7-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.6,22.58,41.6,48845.05,50543.84
1-8-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.3,22.46,42,49052.64,50477.73
1-9-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.2,22.84,41.8,49645.02,50860.37
1-10-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.1,22.58,42.2,49549.55,50782.31
1-11-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.3,22.29,42.8,49608.63,51084.89
1-12-2012,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.3,22.46,42,49052.64,50648.77
1-1-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.6,22.42,42.7,49781.37,51249.64
1-2-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.3,22.75,43.4,51342.2,52427.13
1-3-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.3,22.86,42.9,50996.09,51937.92
1-4-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.4,22.59,41.5,48749.22,49701.22
1-5-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.1,22.76,42.3,50062.89,50949.84
1-6-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.1,22.71,42.6,50307.19,51075.9
1-7-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19,22.67,42,49511.28,50248.03
1-8-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19,22.98,42.9,51263.79,51964.1
1-9-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.2,22.8,42.4,50269.44,50896.98
1-10-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.2,22.6,42.5,49946,50700.07
1-11-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.7,22.47,43,50242.92,51105.86
1-12-2013,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.3,22.6,42.3,49710.96,50569.09
1-1-2014,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,19.7,22.47,42.4,49541.86,50210.27
1-2-2014,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,20,22.22,42.2,48759.57,49235.36
1-3-2014,CEU1021231901,10212319,"212311,3,9",Other stone mining and quarrying,20.1,22.65,42.6,50174.28,50339.69
1-3-2006,CEU1021300001,10213000,213,Support activities for mining,250.4,22.45,43.2,50431.68,59839.54
1-4-2006,CEU1021300001,10213000,213,Support activities for mining,259,24.01,43,53686.36,63163.93
1-5-2006,CEU1021300001,10213000,213,Support activities for mining,260.7,23.57,43,52702.52,61700.21
1-6-2006,CEU1021300001,10213000,213,Support activities for mining,265.2,23.87,43.2,53621.57,62652.4
1-7-2006,CEU1021300001,10213000,213,Support activities for mining,268.7,23.93,43.4,54005.22,62914.63
1-8-2006,CEU1021300001,10213000,213,Support activities for mining,271.6,23.47,42.9,52356.88,60874.69
1-9-2006,CEU1021300001,10213000,213,Support activities for mining,273.7,24.25,43.3,54601.3,63797.14
1-10-2006,CEU1021300001,10213000,213,Support activities for mining,277.2,24.82,40.7,52529.05,61710.44
1-11-2006,CEU1021300001,10213000,213,Support activities for mining,278.9,25.97,42.9,57933.88,68161.29
1-12-2006,CEU1021300001,10213000,213,Support activities for mining,281.5,25.61,43.6,58062.99,68211.64
1-1-2007,CEU1021300001,10213000,213,Support activities for mining,282.8,25.82,43.3,58136.31,68089.93
1-2-2007,CEU1021300001,10213000,213,Support activities for mining,286.2,26.1,44.1,59852.52,69726.91
1-3-2007,CEU1021300001,10213000,213,Support activities for mining,288.5,25.9,44.4,59797.92,69034.7
1-4-2007,CEU1021300001,10213000,213,Support activities for mining,289.8,25.91,48.1,64806.09,74333.59
1-5-2007,CEU1021300001,10213000,213,Support activities for mining,293.2,25.57,46.8,62227.15,70941.98
1-6-2007,CEU1021300001,10213000,213,Support activities for mining,293.8,25.74,46,61570.08,70057.12
1-7-2007,CEU1021300001,10213000,213,Support activities for mining,297.9,25.15,46.4,60681.92,69064.11
1-8-2007,CEU1021300001,10213000,213,Support activities for mining,297,24.9,46.4,60078.72,68503.21
1-9-2007,CEU1021300001,10213000,213,Support activities for mining,296.9,24.95,46.9,60848.06,69189.75
1-10-2007,CEU1021300001,10213000,213,Support activities for mining,295.9,25.07,46.4,60488.89,68634.52
1-11-2007,CEU1021300001,10213000,213,Support activities for mining,300.5,24.91,46.4,60102.85,67793.82
1-12-2007,CEU1021300001,10213000,213,Support activities for mining,304.6,25.51,46.3,61417.88,69323.63
1-1-2008,CEU1021300001,10213000,213,Support activities for mining,308.4,25.25,46.4,60923.2,68425.17
1-2-2008,CEU1021300001,10213000,213,Support activities for mining,311.1,24.87,46,59489.04,66620.94
1-3-2008,CEU1021300001,10213000,213,Support activities for mining,317.5,25.37,47.4,62531.98,69426.88
1-4-2008,CEU1021300001,10213000,213,Support activities for mining,319.8,24.61,45.7,58483.2,64540.25
1-5-2008,CEU1021300001,10213000,213,Support activities for mining,318.5,25.11,45.1,58887.97,64444.26
1-6-2008,CEU1021300001,10213000,213,Support activities for mining,324,25.66,44.5,59377.24,64331.43
1-7-2008,CEU1021300001,10213000,213,Support activities for mining,327.1,26.35,44.4,60836.88,65568.55
1-8-2008,CEU1021300001,10213000,213,Support activities for mining,331.2,26.72,45.1,62663.74,67808.16
1-9-2008,CEU1021300001,10213000,213,Support activities for mining,334.4,26.97,43.6,61146.38,66257.87
1-10-2008,CEU1021300001,10213000,213,Support activities for mining,332.7,27.03,45.4,63812.43,69852.38
1-11-2008,CEU1021300001,10213000,213,Support activities for mining,328.3,27.43,46.4,66183.1,73862.12
1-12-2008,CEU1021300001,10213000,213,Support activities for mining,323.9,26.93,45,63016.2,71062.73
1-1-2009,CEU1021300001,10213000,213,Support activities for mining,319.4,27.09,44.5,62686.26,70384.32
1-2-2009,CEU1021300001,10213000,213,Support activities for mining,310.2,27.21,43.7,61832,69081.62
1-3-2009,CEU1021300001,10213000,213,Support activities for mining,298.9,26.88,43.1,60243.46,67143.55
1-4-2009,CEU1021300001,10213000,213,Support activities for mining,287.1,26.82,43,59969.52,66671.8
1-5-2009,CEU1021300001,10213000,213,Support activities for mining,273.5,27.18,43.2,61057.15,67685.45
1-6-2009,CEU1021300001,10213000,213,Support activities for mining,268.1,26.77,43.6,60692.95,66708.7
1-7-2009,CEU1021300001,10213000,213,Support activities for mining,263.9,26.58,43.6,60262.18,66340.41
1-8-2009,CEU1021300001,10213000,213,Support activities for mining,258.5,26.21,43.3,59014.44,64821.44
1-9-2009,CEU1021300001,10213000,213,Support activities for mining,254.5,25.9,44.1,59393.88,65197.44
1-10-2009,CEU1021300001,10213000,213,Support activities for mining,254.3,25.62,43.8,58352.11,63992.25
1-11-2009,CEU1021300001,10213000,213,Support activities for mining,257.7,25.07,44.4,57881.62,63431.38
1-12-2009,CEU1021300001,10213000,213,Support activities for mining,259.3,25.27,44,57817.76,63473.2
1-1-2010,CEU1021300001,10213000,213,Support activities for mining,263.3,25.02,44.5,57896.28,63342.92
1-2-2010,CEU1021300001,10213000,213,Support activities for mining,268.3,25.19,45.2,59206.57,64760.34
1-3-2010,CEU1021300001,10213000,213,Support activities for mining,273.7,25.33,45.5,59930.78,65284.4
1-4-2010,CEU1021300001,10213000,213,Support activities for mining,277.5,25.37,45.7,60289.27,65561.05
1-5-2010,CEU1021300001,10213000,213,Support activities for mining,284.4,25.53,45.6,60536.73,65779.16
1-6-2010,CEU1021300001,10213000,213,Support activities for mining,289.5,25.58,45.4,60389.27,65683.05
1-7-2010,CEU1021300001,10213000,213,Support activities for mining,295.6,25.85,45.7,61429.94,66800.84
1-8-2010,CEU1021300001,10213000,213,Support activities for mining,300.4,25.91,46,61976.72,67302.5
1-9-2010,CEU1021300001,10213000,213,Support activities for mining,305.9,26.32,44.9,61451.94,66693.83
1-10-2010,CEU1021300001,10213000,213,Support activities for mining,312.1,25.95,44.9,60588.06,65674.48
1-11-2010,CEU1021300001,10213000,213,Support activities for mining,315.6,26.14,44.2,60080.18,65096.58
1-12-2010,CEU1021300001,10213000,213,Support activities for mining,316,25.68,45.4,60625.34,65574.58
1-1-2011,CEU1021300001,10213000,213,Support activities for mining,315.5,26.15,45.9,62414.82,67190.1
1-2-2011,CEU1021300001,10213000,213,Support activities for mining,314.7,26.14,45.8,62255.02,66689.21
1-3-2011,CEU1021300001,10213000,213,Support activities for mining,325.1,26.29,46,62885.68,66714.26
1-4-2011,CEU1021300001,10213000,213,Support activities for mining,334.1,26.66,45.7,63354.82,66781.92
1-5-2011,CEU1021300001,10213000,213,Support activities for mining,340.2,26.71,45.7,63473.64,66593.9
1-6-2011,CEU1021300001,10213000,213,Support activities for mining,348.9,26.17,45.5,61918.22,65031.66
1-7-2011,CEU1021300001,10213000,213,Support activities for mining,358.1,26.46,45.1,62053.99,65116.57
1-8-2011,CEU1021300001,10213000,213,Support activities for mining,360.5,26.82,45.3,63177.19,66112.88
1-9-2011,CEU1021300001,10213000,213,Support activities for mining,367.2,26.79,45.5,63385.14,66229.93
1-10-2011,CEU1021300001,10213000,213,Support activities for mining,371.6,27,45.9,64443.6,67475.07
1-11-2011,CEU1021300001,10213000,213,Support activities for mining,374,27.22,43.9,62137.82,65115.75
1-12-2011,CEU1021300001,10213000,213,Support activities for mining,378.1,27.51,45.2,64659.5,67925.83
1-1-2012,CEU1021300001,10213000,213,Support activities for mining,384.8,26.98,46.2,64816.75,67792.73
1-2-2012,CEU1021300001,10213000,213,Support activities for mining,390,28.02,44.8,65275.39,67973.13
1-3-2012,CEU1021300001,10213000,213,Support activities for mining,390.7,27.84,44.4,64276.99,66428.98
1-4-2012,CEU1021300001,10213000,213,Support activities for mining,392.6,27.92,44.1,64026.14,65970.43
1-5-2012,CEU1021300001,10213000,213,Support activities for mining,394,27.39,43.7,62241.04,64206.46
1-6-2012,CEU1021300001,10213000,213,Support activities for mining,393.7,27.64,44.3,63671.5,65778.55
1-7-2012,CEU1021300001,10213000,213,Support activities for mining,392,27.7,44,63377.6,65581.8
1-8-2012,CEU1021300001,10213000,213,Support activities for mining,392.1,27.59,42.8,61404.3,63188.23
1-9-2012,CEU1021300001,10213000,213,Support activities for mining,389.4,27.66,42.6,61272.43,62772.43
1-10-2012,CEU1021300001,10213000,213,Support activities for mining,385.5,27.71,42.6,61383.19,62910.36
1-11-2012,CEU1021300001,10213000,213,Support activities for mining,390.1,27.77,43.1,62238.13,64090.23
1-12-2012,CEU1021300001,10213000,213,Support activities for mining,392.9,28.14,42.9,62774.71,64817.34
1-1-2013,CEU1021300001,10213000,213,Support activities for mining,395.5,28.46,42.2,62452.63,64294.64
1-2-2013,CEU1021300001,10213000,213,Support activities for mining,396.5,28.23,43.5,63856.26,65205.63
1-3-2013,CEU1021300001,10213000,213,Support activities for mining,399.7,28.24,42.8,62850.95,64011.71
1-4-2013,CEU1021300001,10213000,213,Support activities for mining,399.4,28.51,43.9,65082.63,66353.6
1-5-2013,CEU1021300001,10213000,213,Support activities for mining,402.4,29.06,44.6,67395.95,68589.98
1-6-2013,CEU1021300001,10213000,213,Support activities for mining,405,29.28,45,68515.2,69562.13
1-7-2013,CEU1021300001,10213000,213,Support activities for mining,408.3,29.11,44.8,67814.66,68823.77
1-8-2013,CEU1021300001,10213000,213,Support activities for mining,410.5,29.44,44.7,68430.34,69365.16
1-9-2013,CEU1021300001,10213000,213,Support activities for mining,413.8,29.66,45,69404.4,70270.8
1-10-2013,CEU1021300001,10213000,213,Support activities for mining,417,30.11,44.7,69987.69,71044.34
1-11-2013,CEU1021300001,10213000,213,Support activities for mining,411.8,30.02,45.9,71651.73,72882.37
1-12-2013,CEU1021300001,10213000,213,Support activities for mining,413.6,29.75,46.3,71626.1,72862.55
1-1-2014,CEU1021300001,10213000,213,Support activities for mining,416.5,29.64,45.4,69974.11,70918.2
1-2-2014,CEU1021300001,10213000,213,Support activities for mining,417.2,29.7,47,72586.8,73295.1
1-3-2014,CEU1021300001,10213000,213,Support activities for mining,421.9,29.4,46.7,71394.96,71630.33
1-3-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,162.7,22.59,45.2,53095.54,63000.32
1-4-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,166.8,24.39,45.7,57960.39,68192.49
1-5-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,168.2,24.27,45.2,57044.21,66783.13
1-6-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,169.9,24.44,45.1,57316.69,66969.84
1-7-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,172.5,24.51,45.2,57608.3,67112.12
1-8-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,175.7,23.26,44.6,53944.59,62720.71
1-9-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,176.5,23.99,44.7,55762.36,65153.73
1-10-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,180,23.85,44.5,55188.9,64835.2
1-11-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,184.3,23.92,45.3,56345.95,66293.04
1-12-2006,CEU1021311201,10213112,213112,Support activities for oil and gas operations,183.9,23.44,46.6,56799.81,66727.67
1-1-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,184.2,23.98,44.6,55614.41,65136.25
1-2-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,187.3,24.73,45.4,58382.59,68014.47
1-3-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,190.3,24.43,45.4,57674.34,66583.1
1-4-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,192.7,24.68,45.5,58392.88,66977.53
1-5-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,195.3,24.56,46,58747.52,66975.04
1-6-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,195.1,24.75,44.8,57657.6,65605.34
1-7-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,196.3,24.3,45.6,57620.16,65579.41
1-8-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,195.3,24.26,46.1,58156.07,66310.96
1-9-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,196.1,24.24,46.8,58990.46,67077.5
1-10-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,197.7,24.44,45.3,57570.86,65323.54
1-11-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,197.6,24.48,44.8,57028.61,64326.19
1-12-2007,CEU1021311201,10213112,213112,Support activities for oil and gas operations,202,24.82,45.2,58336.93,65846.1
1-1-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,206.2,25.07,45.1,58794.16,66033.97
1-2-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,209.3,24.7,44.9,57669.56,64583.33
1-3-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,214.9,24.87,45.1,58325.13,64756.16
1-4-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,215,23.9,43.8,54434.64,60072.38
1-5-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,215.7,23.94,43.5,54152.28,59261.74
1-6-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,219.2,24.64,42.7,54710.66,59275.48
1-7-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,220.6,25.13,43.4,56713.38,61124.34
1-8-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,224.4,25.51,43.7,57968.93,62727.92
1-9-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,226.2,25.78,42.7,57241.91,62027
1-10-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,225.1,26.02,44.6,60345.59,66057.4
1-11-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,222.8,26.12,45.6,61935.74,69121.95
1-12-2008,CEU1021311201,10213112,213112,Support activities for oil and gas operations,221.3,25.75,44.4,59451.6,67042.98
1-1-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,221.2,25.88,44.1,59348.02,66636.13
1-2-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,216.9,25.81,43.7,58650.64,65527.25
1-3-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,209.6,25.89,42.6,57351.53,63920.39
1-4-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,201.7,25.83,43.1,57890.2,64360.09
1-5-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,196.1,25.86,43.3,58226.38,64547.37
1-6-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,192.4,25.77,44.3,59363.77,65247.78
1-7-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,190.3,25.5,44.3,58741.8,64666.69
1-8-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,186.2,25.23,44.2,57988.63,63694.69
1-9-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,183.1,25.05,44.7,58226.22,63915.68
1-10-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,182.2,24.59,44.6,57029.13,62541.39
1-11-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,183,24.22,46.1,58060.18,63627.07
1-12-2009,CEU1021311201,10213112,213112,Support activities for oil and gas operations,184.4,24.32,45.4,57414.66,63030.66
1-1-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,184.8,24.14,45.8,57491.82,62900.41
1-2-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,187.9,24.07,46.4,58076.1,63523.82
1-3-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,190.2,23.97,47.1,58707.32,63951.65
1-4-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,192.8,23.93,47.9,59604.84,64816.77
1-5-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,197.9,24.23,47.3,59596.11,64757.07
1-6-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,200.8,24.34,47,59486.96,64701.64
1-7-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,204.3,24.46,47.1,59907.43,65145.22
1-8-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,208.4,24.53,47.5,60589.1,65795.65
1-9-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,213.5,24.69,46.8,60085.59,65210.93
1-10-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,217,24.76,46.9,60384.69,65454.04
1-11-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,219,25.02,45.8,59587.63,64562.91
1-12-2010,CEU1021311201,10213112,213112,Support activities for oil and gas operations,219.6,24.77,47.3,60924.29,65897.94
1-1-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,221.1,24.84,47.7,61613.14,66327.08
1-2-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,220.2,25.1,47.6,62127.52,66552.63
1-3-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,226.5,25.22,47.7,62555.69,66364.17
1-4-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,233.6,25.88,47.1,63385.3,66814.05
1-5-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,237.4,25.73,47.4,63419.3,66536.88
1-6-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,243.8,25.65,47,62688.6,65840.77
1-7-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,247,26.06,46.6,63148.59,66265.19
1-8-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,250.1,26.4,46.9,64384.32,67376.1
1-9-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,254.9,26.52,47.3,65228.59,68156.12
1-10-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,260.2,26.84,47.5,66294.8,69413.35
1-11-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,263.8,26.98,45.5,63834.68,66893.93
1-12-2011,CEU1021311201,10213112,213112,Support activities for oil and gas operations,268,27.47,46.8,66850.99,70228.02
1-1-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,272.2,26.22,48.1,65581.46,68592.54
1-2-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,279.4,28.11,46.3,67677.63,70474.66
1-3-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,278.1,27.96,46.1,67025.71,69269.72
1-4-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,280.8,27.44,47.3,67491.42,69540.94
1-5-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,281.9,26.65,46.9,64994.02,67046.38
1-6-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,283,26.74,47.7,66325.9,68520.79
1-7-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,284,26.92,46.9,65652.49,67935.82
1-8-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,283.8,26.83,45.9,64037.84,65898.28
1-9-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,282.6,26.56,45.3,62564.73,64096.36
1-10-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,279.3,26.93,45.1,63156.23,64727.52
1-11-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,282.8,27.13,45.3,63907.43,65809.21
1-12-2012,CEU1021311201,10213112,213112,Support activities for oil and gas operations,286.4,27.37,44.9,63903.48,65982.84
1-1-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,288,27.26,43.8,62087.38,63918.61
1-2-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,289.8,27.29,45.2,64142.41,65497.83
1-3-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,290.9,27.68,44.9,64627.27,65820.84
1-4-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,291.2,28.1,45,65754,67038.09
1-5-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,294.2,28.36,45.4,66952.29,68138.46
1-6-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,295.4,28.45,45.9,67904.46,68942.05
1-7-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,298.7,28.36,45.2,66657.34,67649.23
1-8-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,301.9,28.32,45,66268.8,67174.09
1-9-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,303.1,28.69,45.4,67731.35,68576.88
1-10-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,305.9,28.73,45.2,67526.99,68546.49
1-11-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,300.5,28.66,46.7,69597.95,70793.3
1-12-2013,CEU1021311201,10213112,213112,Support activities for oil and gas operations,302.6,28.21,47.2,69238.63,70433.85
1-1-2014,CEU1021311201,10213112,213112,Support activities for oil and gas operations,304.6,28.07,46.8,68311.15,69232.8
1-2-2014,CEU1021311201,10213112,213112,Support activities for oil and gas operations,306.3,28.2,48.3,70827.12,71518.25
1-3-2014,CEU1021311201,10213112,213112,Support activities for oil and gas operations,309.6,27.98,48.5,70565.56,70798.2
1-3-2006,CEU2000000001,20000000,23,Construction,7689,21.85,37.6,42721.12,50690.6
1-4-2006,CEU2000000001,20000000,23,Construction,7726,22.06,38.1,43705.27,51420.82
1-5-2006,CEU2000000001,20000000,23,Construction,7713,22.03,37.6,43073.05,50426.74
1-6-2006,CEU2000000001,20000000,23,Construction,7699,22.21,37.8,43655.98,51008.43
1-7-2006,CEU2000000001,20000000,23,Construction,7712,22.29,37.8,43813.22,51041.22
1-8-2006,CEU2000000001,20000000,23,Construction,7720,22.25,37.8,43734.6,50849.68
1-9-2006,CEU2000000001,20000000,23,Construction,7718,22.42,37.6,43835.59,51218.29
1-10-2006,CEU2000000001,20000000,23,Construction,7682,22.53,37.9,44402.13,52163.04
1-11-2006,CEU2000000001,20000000,23,Construction,7666,22.47,37.9,44283.88,52101.57
1-12-2006,CEU2000000001,20000000,23,Construction,7685,22.5,38.5,45045,52918.28
1-1-2007,CEU2000000001,20000000,23,Construction,7725,22.6,38.1,44775.12,52441.15
1-2-2007,CEU2000000001,20000000,23,Construction,7626,22.66,37.6,44304.83,51614.19
1-3-2007,CEU2000000001,20000000,23,Construction,7706,22.72,38.1,45012.86,51965.84
1-4-2007,CEU2000000001,20000000,23,Construction,7686,22.84,37.9,45013.07,51630.68
1-5-2007,CEU2000000001,20000000,23,Construction,7673,22.98,38.1,45527.98,51904.11
1-6-2007,CEU2000000001,20000000,23,Construction,7687,23.02,38,45487.52,51757.68
1-7-2007,CEU2000000001,20000000,23,Construction,7660,23.1,37.9,45525.48,51814.06
1-8-2007,CEU2000000001,20000000,23,Construction,7610,23.12,37.9,45564.89,51954.2
1-9-2007,CEU2000000001,20000000,23,Construction,7577,23.2,38.2,46084.48,52402.23
1-10-2007,CEU2000000001,20000000,23,Construction,7565,23.18,38,45803.68,51971.75
1-11-2007,CEU2000000001,20000000,23,Construction,7523,23.29,38.3,46384.36,52319.87
1-12-2007,CEU2000000001,20000000,23,Construction,7490,23.42,38.3,46643.27,52647.23
1-1-2008,CEU2000000001,20000000,23,Construction,7476,23.43,38.4,46785.02,52546.05
1-2-2008,CEU2000000001,20000000,23,Construction,7453,23.51,38.2,46700.27,52298.97
1-3-2008,CEU2000000001,20000000,23,Construction,7406,23.58,38.2,46839.31,52003.91
1-4-2008,CEU2000000001,20000000,23,Construction,7327,23.65,38.1,46855.38,51708.14
1-5-2008,CEU2000000001,20000000,23,Construction,7274,23.82,37.8,46820.59,51238.29
1-6-2008,CEU2000000001,20000000,23,Construction,7213,23.9,38,47226.4,51166.77
1-7-2008,CEU2000000001,20000000,23,Construction,7160,23.98,37.9,47259.79,50935.48
1-8-2008,CEU2000000001,20000000,23,Construction,7114,24.2,37.9,47693.36,51608.78
1-9-2008,CEU2000000001,20000000,23,Construction,7044,24.22,37.6,47354.95,51313.54
1-10-2008,CEU2000000001,20000000,23,Construction,6967,24.26,37.8,47685.46,52198.96
1-11-2008,CEU2000000001,20000000,23,Construction,6813,24.43,37.3,47384.43,52882.3
1-12-2008,CEU2000000001,20000000,23,Construction,6701,24.55,37.3,47617.18,53697.41
1-1-2009,CEU2000000001,20000000,23,Construction,6567,24.55,37.1,47361.86,53178.04
1-2-2009,CEU2000000001,20000000,23,Construction,6446,24.57,37.3,47655.97,53243.49
1-3-2009,CEU2000000001,20000000,23,Construction,6291,24.76,37.2,47895.74,53381.57
1-4-2009,CEU2000000001,20000000,23,Construction,6154,24.79,37,47695.96,53026.53
1-5-2009,CEU2000000001,20000000,23,Construction,6100,24.78,37.2,47934.43,53138.15
1-6-2009,CEU2000000001,20000000,23,Construction,6010,24.85,37.2,48069.84,52834.41
1-7-2009,CEU2000000001,20000000,23,Construction,5932,24.86,37.3,48218.46,53081.93
1-8-2009,CEU2000000001,20000000,23,Construction,5855,24.9,37.3,48296.04,53048.35
1-9-2009,CEU2000000001,20000000,23,Construction,5787,24.87,36.9,47720.55,52383.48
1-10-2009,CEU2000000001,20000000,23,Construction,5716,25.01,36.7,47729.09,52342.43
1-11-2009,CEU2000000001,20000000,23,Construction,5696,25.05,37.5,48847.5,53531.06
1-12-2009,CEU2000000001,20000000,23,Construction,5654,24.98,37,48061.52,52762.65
1-1-2010,CEU2000000001,20000000,23,Construction,5587,25.11,37.3,48703.36,53285.16
1-2-2010,CEU2000000001,20000000,23,Construction,5508,25.22,36.4,47736.41,52214.24
1-3-2010,CEU2000000001,20000000,23,Construction,5536,25.18,37.3,48839.13,53201.93
1-4-2010,CEU2000000001,20000000,23,Construction,5555,25.1,38,49597.6,53934.48
1-5-2010,CEU2000000001,20000000,23,Construction,5524,25.16,37.6,49192.83,53452.88
1-6-2010,CEU2000000001,20000000,23,Construction,5512,25.13,37.7,49264.85,53583.45
1-7-2010,CEU2000000001,20000000,23,Construction,5502,25.18,37.7,49362.87,53678.73
1-8-2010,CEU2000000001,20000000,23,Construction,5525,25.18,37.9,49624.74,53889.1
1-9-2010,CEU2000000001,20000000,23,Construction,5503,25.2,38.2,50057.28,54327.2
1-10-2010,CEU2000000001,20000000,23,Construction,5507,25.31,38.2,50275.79,54496.49
1-11-2010,CEU2000000001,20000000,23,Construction,5504,25.32,38.2,50295.65,54495.09
1-12-2010,CEU2000000001,20000000,23,Construction,5462,25.35,38,50091.6,54180.9
1-1-2011,CEU2000000001,20000000,23,Construction,5432,25.47,37.6,49798.95,53609
1-2-2011,CEU2000000001,20000000,23,Construction,5464,25.41,37.7,49813.77,53361.81
1-3-2011,CEU2000000001,20000000,23,Construction,5475,25.34,37.9,49940.07,52980.5
1-4-2011,CEU2000000001,20000000,23,Construction,5496,25.38,38.1,50282.86,53002.84
1-5-2011,CEU2000000001,20000000,23,Construction,5520,25.36,38.4,50638.85,53128.16
1-6-2011,CEU2000000001,20000000,23,Construction,5524,25.36,38.4,50638.85,53185.13
1-7-2011,CEU2000000001,20000000,23,Construction,5551,25.36,38.5,50770.72,53276.43
1-8-2011,CEU2000000001,20000000,23,Construction,5553,25.47,38.2,50593.61,52944.57
1-9-2011,CEU2000000001,20000000,23,Construction,5590,25.5,38.4,50918.4,53203.67
1-10-2011,CEU2000000001,20000000,23,Construction,5584,25.49,38.3,50765.88,53153.95
1-11-2011,CEU2000000001,20000000,23,Construction,5585,25.45,38.3,50686.22,53115.34
1-12-2011,CEU2000000001,20000000,23,Construction,5606,25.49,38.5,51030.98,53608.85
1-1-2012,CEU2000000001,20000000,23,Construction,5627,25.5,38.6,51183.6,53533.63
1-2-2012,CEU2000000001,20000000,23,Construction,5622,25.54,38.7,51396.7,53520.85
1-3-2012,CEU2000000001,20000000,23,Construction,5627,25.67,38.6,51524.82,53249.87
1-4-2012,CEU2000000001,20000000,23,Construction,5630,25.66,38.8,51771.62,53343.77
1-5-2012,CEU2000000001,20000000,23,Construction,5613,25.71,38.5,51471.42,53096.77
1-6-2012,CEU2000000001,20000000,23,Construction,5620,25.72,38.6,51625.18,53333.59
1-7-2012,CEU2000000001,20000000,23,Construction,5635,25.74,38.5,51531.48,53323.69
1-8-2012,CEU2000000001,20000000,23,Construction,5647,25.75,38.6,51685.4,53186.97
1-9-2012,CEU2000000001,20000000,23,Construction,5648,25.86,38.9,52309.61,53590.18
1-10-2012,CEU2000000001,20000000,23,Construction,5666,25.83,38.8,52114.61,53411.19
1-11-2012,CEU2000000001,20000000,23,Construction,5687,25.89,39,52504.92,54067.38
1-12-2012,CEU2000000001,20000000,23,Construction,5720,25.93,39.2,52855.71,54575.58
1-1-2013,CEU2000000001,20000000,23,Construction,5743,25.97,38.9,52532.12,54081.53
1-2-2013,CEU2000000001,20000000,23,Construction,5789,26,39.2,52998.4,54118.33
1-3-2013,CEU2000000001,20000000,23,Construction,5813,25.99,39.1,52842.87,53818.8
1-4-2013,CEU2000000001,20000000,23,Construction,5811,26.04,39,52809.12,53840.41
1-5-2013,CEU2000000001,20000000,23,Construction,5816,26.05,39.2,53100.32,54041.08
1-6-2013,CEU2000000001,20000000,23,Construction,5829,26.13,39,52991.64,53801.37
1-7-2013,CEU2000000001,20000000,23,Construction,5830,26.17,38.9,52936.68,53724.39
1-8-2013,CEU2000000001,20000000,23,Construction,5836,26.18,39.1,53229.18,53956.34
1-9-2013,CEU2000000001,20000000,23,Construction,5849,26.17,39.2,53344.93,54010.86
1-10-2013,CEU2000000001,20000000,23,Construction,5864,26.19,38.8,52840.95,53638.72
1-11-2013,CEU2000000001,20000000,23,Construction,5896,26.23,39.2,53467.23,54385.54
1-12-2013,CEU2000000001,20000000,23,Construction,5876,26.35,38.7,53026.74,53942.11
1-1-2014,CEU2000000001,20000000,23,Construction,5927,26.4,38.6,52990.08,53705.02
1-2-2014,CEU2000000001,20000000,23,Construction,5951,26.56,38.1,52620.67,53134.14
1-3-2014,CEU2000000001,20000000,23,Construction,5968,26.5,39.1,53879.8,54057.43
1-4-2014,CEU2000000001,20000000,23,Construction,6000,26.58,39.2,54180.67,54180.67
1-3-2006,CEU2023600001,20236000,236,Construction of buildings,1807.3,22.94,37.1,44255.85,52511.63
1-4-2006,CEU2023600001,20236000,236,Construction of buildings,1822.4,23.67,37.3,45910.33,54015.16
1-5-2006,CEU2023600001,20236000,236,Construction of buildings,1815.2,23.47,37.3,45522.41,53294.27
1-6-2006,CEU2023600001,20236000,236,Construction of buildings,1804.6,23.71,37.4,46111.21,53877.16
1-7-2006,CEU2023600001,20236000,236,Construction of buildings,1814.9,23.83,37.4,46344.59,53990.19
1-8-2006,CEU2023600001,20236000,236,Construction of buildings,1807.5,23.82,37.3,46201.27,53717.64
1-9-2006,CEU2023600001,20236000,236,Construction of buildings,1811.5,23.98,37.4,46636.3,54490.7
1-10-2006,CEU2023600001,20236000,236,Construction of buildings,1804.5,24.21,37.5,47209.5,55461.1
1-11-2006,CEU2023600001,20236000,236,Construction of buildings,1794.5,24.05,37.5,46897.5,55176.59
1-12-2006,CEU2023600001,20236000,236,Construction of buildings,1790,23.87,38.2,47415.37,55702.95
1-1-2007,CEU2023600001,20236000,236,Construction of buildings,1797.3,24.18,37.9,47653.95,55812.86
1-2-2007,CEU2023600001,20236000,236,Construction of buildings,1790.1,24.18,37.1,46648.05,54343.99
1-3-2007,CEU2023600001,20236000,236,Construction of buildings,1795.8,24.21,37.7,47461.29,54792.46
1-4-2007,CEU2023600001,20236000,236,Construction of buildings,1785.4,24.21,37.7,47461.29,54438.82
1-5-2007,CEU2023600001,20236000,236,Construction of buildings,1785.3,24.26,37.6,47433.15,54076.11
1-6-2007,CEU2023600001,20236000,236,Construction of buildings,1793.8,24.19,37.8,47547.86,54102.03
1-7-2007,CEU2023600001,20236000,236,Construction of buildings,1784.7,24.23,37.8,47626.49,54205.29
1-8-2007,CEU2023600001,20236000,236,Construction of buildings,1764.2,24.23,37.7,47500.49,54161.21
1-9-2007,CEU2023600001,20236000,236,Construction of buildings,1769.3,24.21,37.8,47587.18,54110.93
1-10-2007,CEU2023600001,20236000,236,Construction of buildings,1754,24.21,37.8,47587.18,53995.42
1-11-2007,CEU2023600001,20236000,236,Construction of buildings,1729.1,24.33,37.9,47949.56,54085.36
1-12-2007,CEU2023600001,20236000,236,Construction of buildings,1730,24.35,38.2,48368.84,54594.91
1-1-2008,CEU2023600001,20236000,236,Construction of buildings,1725.4,24.13,37.8,47429.93,53270.37
1-2-2008,CEU2023600001,20236000,236,Construction of buildings,1716.1,24.45,37.7,47931.78,53678.13
1-3-2008,CEU2023600001,20236000,236,Construction of buildings,1714.5,24.44,38.1,48420.53,53759.47
1-4-2008,CEU2023600001,20236000,236,Construction of buildings,1692.9,24.32,37.8,47803.39,52754.34
1-5-2008,CEU2023600001,20236000,236,Construction of buildings,1672.4,24.6,37.7,48225.84,52776.12
1-6-2008,CEU2023600001,20236000,236,Construction of buildings,1652.2,24.77,37.8,48687.91,52750.22
1-7-2008,CEU2023600001,20236000,236,Construction of buildings,1642.5,24.83,37.5,48418.5,52184.31
1-8-2008,CEU2023600001,20236000,236,Construction of buildings,1629.5,24.93,37.7,48872.77,52885.02
1-9-2008,CEU2023600001,20236000,236,Construction of buildings,1600,25.14,37.3,48761.54,52837.73
1-10-2008,CEU2023600001,20236000,236,Construction of buildings,1578.7,25.19,37.5,49120.5,53769.84
1-11-2008,CEU2023600001,20236000,236,Construction of buildings,1547.7,25.22,37.2,48785.57,54446
1-12-2008,CEU2023600001,20236000,236,Construction of buildings,1530.3,25.41,37,48888.84,55131.45
1-1-2009,CEU2023600001,20236000,236,Construction of buildings,1495.5,25.43,36.8,48662.85,54638.79
1-2-2009,CEU2023600001,20236000,236,Construction of buildings,1458.1,25.56,37.4,49709.09,55537.33
1-3-2009,CEU2023600001,20236000,236,Construction of buildings,1420.2,25.78,37.7,50539.11,56327.7
1-4-2009,CEU2023600001,20236000,236,Construction of buildings,1392.4,26.01,37.2,50313.74,55936.88
1-5-2009,CEU2023600001,20236000,236,Construction of buildings,1377.7,25.9,37.2,50100.96,55539.87
1-6-2009,CEU2023600001,20236000,236,Construction of buildings,1356.3,26.2,37.2,50681.28,55704.7
1-7-2009,CEU2023600001,20236000,236,Construction of buildings,1338.8,26.22,37.4,50992.66,56135.94
1-8-2009,CEU2023600001,20236000,236,Construction of buildings,1323.2,26.33,37.6,51480.41,56546.07
1-9-2009,CEU2023600001,20236000,236,Construction of buildings,1305.4,26.27,37.2,50816.69,55782.14
1-10-2009,CEU2023600001,20236000,236,Construction of buildings,1290.4,26.42,37.1,50969.46,55896.02
1-11-2009,CEU2023600001,20236000,236,Construction of buildings,1281.2,26.41,37.6,51636.83,56587.84
1-12-2009,CEU2023600001,20236000,236,Construction of buildings,1262.8,26.42,37.1,50969.46,55955.03
1-1-2010,CEU2023600001,20236000,236,Construction of buildings,1245.8,26.52,37.2,51300.29,56126.41
1-2-2010,CEU2023600001,20236000,236,Construction of buildings,1223,26.55,36.8,50806.08,55571.85
1-3-2010,CEU2023600001,20236000,236,Construction of buildings,1236.9,26.5,37.1,51123.8,55690.7
1-4-2010,CEU2023600001,20236000,236,Construction of buildings,1246,26.33,37.3,51069.67,55535.27
1-5-2010,CEU2023600001,20236000,236,Construction of buildings,1241.2,26.45,37.3,51302.42,55745.16
1-6-2010,CEU2023600001,20236000,236,Construction of buildings,1236.4,26.32,37.2,50913.41,55376.52
1-7-2010,CEU2023600001,20236000,236,Construction of buildings,1229.2,26.39,37.2,51048.82,55512.08
1-8-2010,CEU2023600001,20236000,236,Construction of buildings,1226.3,26.34,37.4,51226.03,55627.99
1-9-2010,CEU2023600001,20236000,236,Construction of buildings,1224.3,26.26,37.3,50933.89,55278.59
1-10-2010,CEU2023600001,20236000,236,Construction of buildings,1218,26.27,37.4,51089.89,55378.94
1-11-2010,CEU2023600001,20236000,236,Construction of buildings,1216.6,26.34,37.4,51226.03,55503.16
1-12-2010,CEU2023600001,20236000,236,Construction of buildings,1211.5,26.34,37.3,51089.06,55259.79
1-1-2011,CEU2023600001,20236000,236,Construction of buildings,1204.8,26.38,36.7,50343.59,54195.32
1-2-2011,CEU2023600001,20236000,236,Construction of buildings,1200.9,26.26,37.1,50660.79,54269.17
1-3-2011,CEU2023600001,20236000,236,Construction of buildings,1211.7,26.18,37.1,50506.46,53581.37
1-4-2011,CEU2023600001,20236000,236,Construction of buildings,1214.2,26.18,37.2,50642.59,53382.04
1-5-2011,CEU2023600001,20236000,236,Construction of buildings,1211.9,26.12,37.5,50934,53437.82
1-6-2011,CEU2023600001,20236000,236,Construction of buildings,1221.8,26.11,37.3,50642.96,53189.44
1-7-2011,CEU2023600001,20236000,236,Construction of buildings,1223,26.07,37.4,50700.94,53203.2
1-8-2011,CEU2023600001,20236000,236,Construction of buildings,1226.4,26.16,37.2,50603.9,52955.34
1-9-2011,CEU2023600001,20236000,236,Construction of buildings,1237.8,26.23,37.6,51284.89,53586.61
1-10-2011,CEU2023600001,20236000,236,Construction of buildings,1237.4,26.3,37.7,51558.52,53983.87
1-11-2011,CEU2023600001,20236000,236,Construction of buildings,1232.3,26.3,37.5,51285,53742.82
1-12-2011,CEU2023600001,20236000,236,Construction of buildings,1230.6,26.2,37.6,51226.24,53813.97
1-1-2012,CEU2023600001,20236000,236,Construction of buildings,1234,26.28,38,51929.28,54313.54
1-2-2012,CEU2023600001,20236000,236,Construction of buildings,1234.3,26.29,38,51949.04,54096.02
1-3-2012,CEU2023600001,20236000,236,Construction of buildings,1231,26.4,37.9,52029.12,53771.05
1-4-2012,CEU2023600001,20236000,236,Construction of buildings,1230.5,26.44,38,52245.44,53831.98
1-5-2012,CEU2023600001,20236000,236,Construction of buildings,1233.9,26.66,37.8,52402.89,54057.65
1-6-2012,CEU2023600001,20236000,236,Construction of buildings,1234.9,26.58,38,52522.08,54260.16
1-7-2012,CEU2023600001,20236000,236,Construction of buildings,1240.4,26.58,38,52522.08,54348.74
1-8-2012,CEU2023600001,20236000,236,Construction of buildings,1243.4,26.63,37.7,52205.45,53722.13
1-9-2012,CEU2023600001,20236000,236,Construction of buildings,1242.7,26.68,38,52719.68,54010.29
1-10-2012,CEU2023600001,20236000,236,Construction of buildings,1244.8,26.66,38.1,52818.79,54132.89
1-11-2012,CEU2023600001,20236000,236,Construction of buildings,1252.9,26.74,38.3,53255.38,54840.18
1-12-2012,CEU2023600001,20236000,236,Construction of buildings,1258.8,26.86,38.4,53634.05,55379.25
1-1-2013,CEU2023600001,20236000,236,Construction of buildings,1262.6,26.87,38.4,53654.02,55236.52
1-2-2013,CEU2023600001,20236000,236,Construction of buildings,1271,26.96,38.5,53973.92,55114.46
1-3-2013,CEU2023600001,20236000,236,Construction of buildings,1275.9,27.07,38.3,53912.61,54908.3
1-4-2013,CEU2023600001,20236000,236,Construction of buildings,1279.8,27.21,38.1,53908.45,54961.21
1-5-2013,CEU2023600001,20236000,236,Construction of buildings,1280.4,27.17,38.3,54111.77,55070.45
1-6-2013,CEU2023600001,20236000,236,Construction of buildings,1281.7,27.14,38.3,54052.02,54877.95
1-7-2013,CEU2023600001,20236000,236,Construction of buildings,1286.1,27.47,37.9,54137.88,54943.47
1-8-2013,CEU2023600001,20236000,236,Construction of buildings,1286.3,27.42,38.3,54609.67,55355.7
1-9-2013,CEU2023600001,20236000,236,Construction of buildings,1293.9,27.51,38.4,54931.97,55617.71
1-10-2013,CEU2023600001,20236000,236,Construction of buildings,1303.1,27.56,38.1,54601.87,55426.23
1-11-2013,CEU2023600001,20236000,236,Construction of buildings,1312.6,27.58,38.4,55071.74,56017.61
1-12-2013,CEU2023600001,20236000,236,Construction of buildings,1314.7,27.71,38.5,55475.42,56433.06
1-1-2014,CEU2023600001,20236000,236,Construction of buildings,1332.7,27.81,38.2,55241.79,55987.11
1-2-2014,CEU2023600001,20236000,236,Construction of buildings,1334.4,28.04,37.9,55261.23,55800.47
1-3-2014,CEU2023600001,20236000,236,Construction of buildings,1339.3,27.89,38.3,55545.72,55728.84
1-3-2006,CEU2023610001,20236100,2361,Residential building,1017.8,21.77,35.6,40300.63,47818.57
1-4-2006,CEU2023610001,20236100,2361,Residential building,1022,22.66,35.8,42183.86,49630.82
1-5-2006,CEU2023610001,20236100,2361,Residential building,1016.6,22.21,35.9,41461.63,48540.2
1-6-2006,CEU2023610001,20236100,2361,Residential building,1007.8,22.48,35.8,41848.77,48896.85
1-7-2006,CEU2023610001,20236100,2361,Residential building,1007.3,22.76,35.8,42370.02,49359.93
1-8-2006,CEU2023610001,20236100,2361,Residential building,1009.2,22.69,35.5,41885.74,48700.03
1-9-2006,CEU2023610001,20236100,2361,Residential building,1011.6,22.7,35.8,42258.32,49375.38
1-10-2006,CEU2023610001,20236100,2361,Residential building,1005.8,22.77,35.9,42507.04,49936.71
1-11-2006,CEU2023610001,20236100,2361,Residential building,996,22.78,35.8,42407.25,49893.65
1-12-2006,CEU2023610001,20236100,2361,Residential building,989.5,22.42,36.2,42203.41,49580.01
1-1-2007,CEU2023610001,20236100,2361,Residential building,982.5,22.78,35.5,42051.88,49251.65
1-2-2007,CEU2023610001,20236100,2361,Residential building,977.3,22.7,35.2,41550.08,48404.96
1-3-2007,CEU2023610001,20236100,2361,Residential building,973.2,22.65,35.5,41811.9,48270.44
1-4-2007,CEU2023610001,20236100,2361,Residential building,966.8,22.59,35.4,41583.67,47697.11
1-5-2007,CEU2023610001,20236100,2361,Residential building,965.1,22.48,35.5,41498.08,47309.83
1-6-2007,CEU2023610001,20236100,2361,Residential building,964,22.29,35.6,41263.25,46951.12
1-7-2007,CEU2023610001,20236100,2361,Residential building,954.4,22.29,35.7,41379.16,47094.99
1-8-2007,CEU2023610001,20236100,2361,Residential building,942.1,22.29,35.6,41263.25,47049.35
1-9-2007,CEU2023610001,20236100,2361,Residential building,936.5,22.38,35.8,41662.61,47374.16
1-10-2007,CEU2023610001,20236100,2361,Residential building,921.6,22.31,35.7,41416.29,46993.54
1-11-2007,CEU2023610001,20236100,2361,Residential building,895,22.26,35.8,41439.21,46741.92
1-12-2007,CEU2023610001,20236100,2361,Residential building,896.4,22.37,36.2,42109.29,47529.63
1-1-2008,CEU2023610001,20236100,2361,Residential building,886.6,22.05,36.1,41392.26,46489.23
1-2-2008,CEU2023610001,20236100,2361,Residential building,874.5,22.29,36.2,41958.7,46988.95
1-3-2008,CEU2023610001,20236100,2361,Residential building,867.3,22.29,36.3,42074.61,46713.83
1-4-2008,CEU2023610001,20236100,2361,Residential building,854.6,22.06,36.1,41411.03,45699.93
1-5-2008,CEU2023610001,20236100,2361,Residential building,840.8,22.47,35.8,41830.15,45776.98
1-6-2008,CEU2023610001,20236100,2361,Residential building,824.8,22.51,35.8,41904.62,45400.96
1-7-2008,CEU2023610001,20236100,2361,Residential building,812.7,22.52,35.6,41689.02,44931.44
1-8-2008,CEU2023610001,20236100,2361,Residential building,800.3,22.51,35.7,41787.56,45218.14
1-9-2008,CEU2023610001,20236100,2361,Residential building,782.5,22.65,35.4,41694.12,45179.51
1-10-2008,CEU2023610001,20236100,2361,Residential building,766.4,22.66,35.9,42301.69,46305.61
1-11-2008,CEU2023610001,20236100,2361,Residential building,747.5,22.59,35.4,41583.67,46408.5
1-12-2008,CEU2023610001,20236100,2361,Residential building,732.4,22.72,34.6,40877.82,46097.51
1-1-2009,CEU2023610001,20236100,2361,Residential building,712.1,22.7,35.1,41432.04,46520.02
1-2-2009,CEU2023610001,20236100,2361,Residential building,688.8,22.83,35,41550.6,46422.29
1-3-2009,CEU2023610001,20236100,2361,Residential building,667.1,22.96,35.7,42622.95,47504.84
1-4-2009,CEU2023610001,20236100,2361,Residential building,655.8,23.34,35,42478.8,47226.29
1-5-2009,CEU2023610001,20236100,2361,Residential building,643.9,23.07,35,41987.4,46545.51
1-6-2009,CEU2023610001,20236100,2361,Residential building,634.9,23.36,34.6,42029.31,46195.16
1-7-2009,CEU2023610001,20236100,2361,Residential building,629.1,23.14,35,42114.8,46362.64
1-8-2009,CEU2023610001,20236100,2361,Residential building,620.8,23.33,35.1,42581.91,46771.96
1-9-2009,CEU2023610001,20236100,2361,Residential building,612.8,23.21,34.9,42121.51,46237.33
1-10-2009,CEU2023610001,20236100,2361,Residential building,606.4,23.27,34.6,41867.38,45914.16
1-11-2009,CEU2023610001,20236100,2361,Residential building,602.3,23.37,35.2,42776.45,46877.91
1-12-2009,CEU2023610001,20236100,2361,Residential building,596.2,23.31,34.5,41818.14,45908.57
1-1-2010,CEU2023610001,20236100,2361,Residential building,588,23.63,34.7,42637.97,46649.18
1-2-2010,CEU2023610001,20236100,2361,Residential building,576.8,23.41,34.7,42241,46203.34
1-3-2010,CEU2023610001,20236100,2361,Residential building,579.7,23.44,34.5,42051.36,45807.81
1-4-2010,CEU2023610001,20236100,2361,Residential building,580.4,23.23,34.8,42037.01,45712.78
1-5-2010,CEU2023610001,20236100,2361,Residential building,578.6,23.28,34.9,42248.54,45907.22
1-6-2010,CEU2023610001,20236100,2361,Residential building,577.2,22.97,35.2,42044.29,45729.93
1-7-2010,CEU2023610001,20236100,2361,Residential building,569.5,23.23,35.1,42399.39,46106.43
1-8-2010,CEU2023610001,20236100,2361,Residential building,568.8,23.18,35.3,42549.21,46205.55
1-9-2010,CEU2023610001,20236100,2361,Residential building,568.7,23.07,35.4,42467.26,46089.74
1-10-2010,CEU2023610001,20236100,2361,Residential building,564.2,22.91,35.5,42291.86,45842.3
1-11-2010,CEU2023610001,20236100,2361,Residential building,561.1,22.97,35.3,42163.73,45684.2
1-12-2010,CEU2023610001,20236100,2361,Residential building,559,22.87,35.4,42099.1,45535.92
1-1-2011,CEU2023610001,20236100,2361,Residential building,556.4,23.11,35.3,42420.71,45666.27
1-2-2011,CEU2023610001,20236100,2361,Residential building,558.4,22.77,35.5,42033.42,45027.3
1-3-2011,CEU2023610001,20236100,2361,Residential building,562.6,22.42,35.3,41154.15,43659.68
1-4-2011,CEU2023610001,20236100,2361,Residential building,564.1,22.46,35.7,41694.74,43950.16
1-5-2011,CEU2023610001,20236100,2361,Residential building,560.9,22.28,35.9,41592.3,43636.91
1-6-2011,CEU2023610001,20236100,2361,Residential building,567.5,22.14,35.6,40985.57,43046.45
1-7-2011,CEU2023610001,20236100,2361,Residential building,565.8,21.86,35.8,40694.57,42702.99
1-8-2011,CEU2023610001,20236100,2361,Residential building,564.2,21.98,35.4,40460.79,42340.9
1-9-2011,CEU2023610001,20236100,2361,Residential building,567.3,22.07,35.8,41085.51,42929.47
1-10-2011,CEU2023610001,20236100,2361,Residential building,572.7,22.24,36.2,41864.57,43833.91
1-11-2011,CEU2023610001,20236100,2361,Residential building,572.6,22.22,35.8,41364.75,43347.14
1-12-2011,CEU2023610001,20236100,2361,Residential building,575.8,22.14,36.2,41676.34,43781.65
1-1-2012,CEU2023610001,20236100,2361,Residential building,573.9,22.23,36.5,42192.54,44129.75
1-2-2012,CEU2023610001,20236100,2361,Residential building,575.3,22.21,36.6,42270.07,44017.04
1-3-2012,CEU2023610001,20236100,2361,Residential building,572.5,22.41,36.6,42650.71,44078.65
1-4-2012,CEU2023610001,20236100,2361,Residential building,572.1,22.44,36.4,42474.43,43764.25
1-5-2012,CEU2023610001,20236100,2361,Residential building,574.7,22.67,36.2,42674.01,44021.55
1-6-2012,CEU2023610001,20236100,2361,Residential building,576.6,22.66,36.4,42890.85,44310.21
1-7-2012,CEU2023610001,20236100,2361,Residential building,584.7,22.73,36.4,43023.34,44519.65
1-8-2012,CEU2023610001,20236100,2361,Residential building,584.6,22.83,36,42737.76,43979.39
1-9-2012,CEU2023610001,20236100,2361,Residential building,585.9,22.81,36.3,43056.16,44110.2
1-10-2012,CEU2023610001,20236100,2361,Residential building,584.3,22.88,36.4,43307.27,44384.72
1-11-2012,CEU2023610001,20236100,2361,Residential building,588.9,22.96,36.6,43697.47,44997.84
1-12-2012,CEU2023610001,20236100,2361,Residential building,590.9,23.23,36.7,44332.13,45774.66
1-1-2013,CEU2023610001,20236100,2361,Residential building,594.4,23.26,36.7,44389.38,45698.63
1-2-2013,CEU2023610001,20236100,2361,Residential building,598.2,23.29,36.7,44446.64,45385.86
1-3-2013,CEU2023610001,20236100,2361,Residential building,601.9,23.53,36.6,44782.3,45609.36
1-4-2013,CEU2023610001,20236100,2361,Residential building,609.2,23.71,36.5,45001.58,45880.4
1-5-2013,CEU2023610001,20236100,2361,Residential building,609.1,23.78,36.7,45381.75,46185.77
1-6-2013,CEU2023610001,20236100,2361,Residential building,610,23.82,36.7,45458.09,46152.7
1-7-2013,CEU2023610001,20236100,2361,Residential building,612.8,24.29,36.1,45597.19,46275.69
1-8-2013,CEU2023610001,20236100,2361,Residential building,615.3,24.3,36.7,46374.12,47007.64
1-9-2013,CEU2023610001,20236100,2361,Residential building,617.8,24.35,36.8,46596.16,47177.84
1-10-2013,CEU2023610001,20236100,2361,Residential building,626.3,24.44,36.6,46514.21,47216.46
1-11-2013,CEU2023610001,20236100,2361,Residential building,630,24.45,37.2,47296.08,48108.4
1-12-2013,CEU2023610001,20236100,2361,Residential building,632.8,24.5,36.9,47010.6,47822.12
1-1-2014,CEU2023610001,20236100,2361,Residential building,644.1,24.35,36.8,46596.16,47224.84
1-2-2014,CEU2023610001,20236100,2361,Residential building,648.4,24.79,36.5,47051.42,47510.55
1-3-2014,CEU2023610001,20236100,2361,Residential building,652.4,24.5,36.8,46883.2,47037.76
1-3-2006,CEU2023611501,20236115,236115,New single-family general contractors,634.2,22.58,36,42269.76,50155.04
1-4-2006,CEU2023611501,20236115,236115,New single-family general contractors,635.8,23.9,36.2,44989.36,52931.6
1-5-2006,CEU2023611501,20236115,236115,New single-family general contractors,630.4,23.06,36.1,43288.23,50678.66
1-6-2006,CEU2023611501,20236115,236115,New single-family general contractors,622.2,23.36,36,43729.92,51094.82
1-7-2006,CEU2023611501,20236115,236115,New single-family general contractors,616.1,23.63,36.1,44358.23,51676.14
1-8-2006,CEU2023611501,20236115,236115,New single-family general contractors,613.4,23.56,35.7,43736.79,50852.21
1-9-2006,CEU2023611501,20236115,236115,New single-family general contractors,609.8,23.73,36.1,44545.96,52048.3
1-10-2006,CEU2023611501,20236115,236115,New single-family general contractors,603.9,23.73,36,44422.56,52187.04
1-11-2006,CEU2023611501,20236115,236115,New single-family general contractors,598.1,23.79,35.9,44411.17,52251.34
1-12-2006,CEU2023611501,20236115,236115,New single-family general contractors,593.8,23.53,36.5,44659.94,52465.91
1-1-2007,CEU2023611501,20236115,236115,New single-family general contractors,591.7,23.66,35.6,43799.39,51298.36
1-2-2007,CEU2023611501,20236115,236115,New single-family general contractors,591.1,23.71,34.8,42905.62,49984.13
1-3-2007,CEU2023611501,20236115,236115,New single-family general contractors,585.8,23.7,35.5,43750.2,50508.14
1-4-2007,CEU2023611501,20236115,236115,New single-family general contractors,579.7,23.5,35.4,43258.8,49618.51
1-5-2007,CEU2023611501,20236115,236115,New single-family general contractors,576.9,23.24,35.4,42780.19,48771.5
1-6-2007,CEU2023611501,20236115,236115,New single-family general contractors,578.4,22.91,35.5,42291.86,48121.52
1-7-2007,CEU2023611501,20236115,236115,New single-family general contractors,571.2,22.97,35.7,42641.51,48531.71
1-8-2007,CEU2023611501,20236115,236115,New single-family general contractors,565.3,23.15,35.6,42855.28,48864.63
1-9-2007,CEU2023611501,20236115,236115,New single-family general contractors,556.8,23.09,35.7,42864.28,48740.57
1-10-2007,CEU2023611501,20236115,236115,New single-family general contractors,546.7,22.94,35.6,42466.53,48185.21
1-11-2007,CEU2023611501,20236115,236115,New single-family general contractors,523.1,22.81,35.7,42344.48,47763.04
1-12-2007,CEU2023611501,20236115,236115,New single-family general contractors,525.9,22.95,36.5,43559.1,49166.06
1-1-2008,CEU2023611501,20236115,236115,New single-family general contractors,517.7,22.53,36,42176.16,47369.66
1-2-2008,CEU2023611501,20236115,236115,New single-family general contractors,507,22.69,35.9,42357.69,47435.78
1-3-2008,CEU2023611501,20236115,236115,New single-family general contractors,501.1,22.76,36.2,42843.43,47567.43
1-4-2008,CEU2023611501,20236115,236115,New single-family general contractors,493.8,22.67,36,42438.24,46833.53
1-5-2008,CEU2023611501,20236115,236115,New single-family general contractors,485.9,22.94,35.6,42466.53,46473.39
1-6-2008,CEU2023611501,20236115,236115,New single-family general contractors,473.4,23.05,35.7,42790.02,46360.24
1-7-2008,CEU2023611501,20236115,236115,New single-family general contractors,464.7,23.04,35.5,42531.84,45839.81
1-8-2008,CEU2023611501,20236115,236115,New single-family general contractors,453.6,22.97,35.8,42760.95,46271.44
1-9-2008,CEU2023611501,20236115,236115,New single-family general contractors,442.3,23.07,35.2,42227.33,45757.29
1-10-2008,CEU2023611501,20236115,236115,New single-family general contractors,430.8,23.13,35.9,43179.09,47266.06
1-11-2008,CEU2023611501,20236115,236115,New single-family general contractors,418.9,22.78,35.4,41933.43,46798.83
1-12-2008,CEU2023611501,20236115,236115,New single-family general contractors,408.7,22.97,34.7,41447.07,46739.44
1-1-2009,CEU2023611501,20236115,236115,New single-family general contractors,390.5,23.19,35.2,42446.98,47659.59
1-2-2009,CEU2023611501,20236115,236115,New single-family general contractors,371.4,23.42,35.2,42867.97,47894.11
1-3-2009,CEU2023611501,20236115,236115,New single-family general contractors,361.7,23.6,35.9,44056.48,49102.57
1-4-2009,CEU2023611501,20236115,236115,New single-family general contractors,352.3,23.91,35.3,43889.2,48794.32
1-5-2009,CEU2023611501,20236115,236115,New single-family general contractors,344,23.47,35.3,43081.53,47758.42
1-6-2009,CEU2023611501,20236115,236115,New single-family general contractors,336.7,24.05,35.1,43896.06,48246.94
1-7-2009,CEU2023611501,20236115,236115,New single-family general contractors,331.5,23.89,35,43479.8,47865.31
1-8-2009,CEU2023611501,20236115,236115,New single-family general contractors,325.4,23.94,35.7,44442.21,48815.31
1-9-2009,CEU2023611501,20236115,236115,New single-family general contractors,321.5,23.77,35.2,43508.61,47759.97
1-10-2009,CEU2023611501,20236115,236115,New single-family general contractors,318.8,23.85,34.7,43034.94,47194.57
1-11-2009,CEU2023611501,20236115,236115,New single-family general contractors,316.4,24,35.2,43929.6,48141.63
1-12-2009,CEU2023611501,20236115,236115,New single-family general contractors,313,24.01,34.8,43448.5,47698.4
1-1-2010,CEU2023611501,20236115,236115,New single-family general contractors,306.8,24.16,35.2,44222.46,48382.73
1-2-2010,CEU2023611501,20236115,236115,New single-family general contractors,301.7,24.09,35.4,44344.87,48504.56
1-3-2010,CEU2023611501,20236115,236115,New single-family general contractors,301,24.06,35.1,43914.31,47837.18
1-4-2010,CEU2023611501,20236115,236115,New single-family general contractors,300.4,23.93,35.2,43801.47,47631.53
1-5-2010,CEU2023611501,20236115,236115,New single-family general contractors,298.3,23.83,35.7,44238.01,48068.98
1-6-2010,CEU2023611501,20236115,236115,New single-family general contractors,297,23.67,35.6,43817.9,47659.02
1-7-2010,CEU2023611501,20236115,236115,New single-family general contractors,292.9,23.84,35.8,44380.54,48260.79
1-8-2010,CEU2023611501,20236115,236115,New single-family general contractors,290.8,23.86,36,44665.92,48504.16
1-9-2010,CEU2023611501,20236115,236115,New single-family general contractors,287.7,23.85,35.8,44399.16,48186.44
1-10-2010,CEU2023611501,20236115,236115,New single-family general contractors,285,23.56,36.2,44349.34,48072.52
1-11-2010,CEU2023611501,20236115,236115,New single-family general contractors,282.6,23.7,35.9,44243.16,47937.25
1-12-2010,CEU2023611501,20236115,236115,New single-family general contractors,280.1,23.58,36,44141.76,47745.34
1-1-2011,CEU2023611501,20236115,236115,New single-family general contractors,278.3,23.49,35.9,43851.13,47206.13
1-2-2011,CEU2023611501,20236115,236115,New single-family general contractors,280.5,22.84,35.9,42637.71,45674.63
1-3-2011,CEU2023611501,20236115,236115,New single-family general contractors,281.9,22.31,35.8,41532.3,44060.84
1-4-2011,CEU2023611501,20236115,236115,New single-family general contractors,282,21.86,36.5,41490.28,43734.64
1-5-2011,CEU2023611501,20236115,236115,New single-family general contractors,277.8,22.2,36.1,41673.84,43722.45
1-6-2011,CEU2023611501,20236115,236115,New single-family general contractors,282.5,22.07,36,41315.04,43392.48
1-7-2011,CEU2023611501,20236115,236115,New single-family general contractors,281.6,21.37,36.6,40671.38,42678.65
1-8-2011,CEU2023611501,20236115,236115,New single-family general contractors,281.7,21.68,36.1,40697.7,42588.82
1-9-2011,CEU2023611501,20236115,236115,New single-family general contractors,282.1,21.77,36.3,41093.05,42937.35
1-10-2011,CEU2023611501,20236115,236115,New single-family general contractors,282.1,22.4,36.6,42631.68,44637.11
1-11-2011,CEU2023611501,20236115,236115,New single-family general contractors,281.4,22.14,36.1,41561.21,43553.01
1-12-2011,CEU2023611501,20236115,236115,New single-family general contractors,282.6,22.17,36.8,42424.51,44567.62
1-1-2012,CEU2023611501,20236115,236115,New single-family general contractors,280.9,22.37,36.8,42807.23,44772.66
1-2-2012,CEU2023611501,20236115,236115,New single-family general contractors,279.9,22.21,37.6,43424.99,45219.69
1-3-2012,CEU2023611501,20236115,236115,New single-family general contractors,279.2,22.38,37.1,43175.5,44621
1-4-2012,CEU2023611501,20236115,236115,New single-family general contractors,278.8,22.51,37,43309.24,44624.41
1-5-2012,CEU2023611501,20236115,236115,New single-family general contractors,279.7,22.88,36.4,43307.27,44674.8
1-6-2012,CEU2023611501,20236115,236115,New single-family general contractors,281.4,22.8,37,43867.2,45318.88
1-7-2012,CEU2023611501,20236115,236115,New single-family general contractors,286.6,23.01,36.5,43672.98,45191.88
1-8-2012,CEU2023611501,20236115,236115,New single-family general contractors,286.5,23.17,36.3,43735.69,45006.31
1-9-2012,CEU2023611501,20236115,236115,New single-family general contractors,286.7,23.08,36.6,43925.86,45001.19
1-10-2012,CEU2023611501,20236115,236115,New single-family general contractors,284.1,23.23,36.3,43848.95,44939.88
1-11-2012,CEU2023611501,20236115,236115,New single-family general contractors,287,23.19,36.4,43894.03,45200.25
1-12-2012,CEU2023611501,20236115,236115,New single-family general contractors,287,23.28,36.7,44427.55,45873.18
1-1-2013,CEU2023611501,20236115,236115,New single-family general contractors,289.5,23.38,36.5,44375.24,45684.07
1-2-2013,CEU2023611501,20236115,236115,New single-family general contractors,291.1,23.63,36.4,44726.86,45672
1-3-2013,CEU2023611501,20236115,236115,New single-family general contractors,292.2,23.82,36.2,44838.77,45666.88
1-4-2013,CEU2023611501,20236115,236115,New single-family general contractors,294,24.04,36.1,45127.89,46009.17
1-5-2013,CEU2023611501,20236115,236115,New single-family general contractors,294.1,23.98,36.4,45389.34,46193.49
1-6-2013,CEU2023611501,20236115,236115,New single-family general contractors,294.4,24.11,36.6,45886.15,46587.3
1-7-2013,CEU2023611501,20236115,236115,New single-family general contractors,294.9,24.65,35.9,46016.62,46701.37
1-8-2013,CEU2023611501,20236115,236115,New single-family general contractors,295,24.51,36.5,46519.98,47155.49
1-9-2013,CEU2023611501,20236115,236115,New single-family general contractors,296.7,24.71,36.5,46899.58,47485.05
1-10-2013,CEU2023611501,20236115,236115,New single-family general contractors,302.6,24.81,36.4,46960.37,47669.36
1-11-2013,CEU2023611501,20236115,236115,New single-family general contractors,303.2,24.96,37.2,48282.63,49111.89
1-12-2013,CEU2023611501,20236115,236115,New single-family general contractors,306.5,24.77,37,47657.48,48480.16
1-1-2014,CEU2023611501,20236115,236115,New single-family general contractors,310.8,24.53,37.1,47323.28,47961.76
1-2-2014,CEU2023611501,20236115,236115,New single-family general contractors,314.4,25.3,36.9,48545.64,49019.35
1-3-2014,CEU2023611501,20236115,236115,New single-family general contractors,317.6,25.03,37.2,48418.03,48577.65
1-3-2006,CEU2023611601,20236116,236116,New multifamily general contractors,32.2,21.53,33.4,37393.3,44368.9
1-4-2006,CEU2023611601,20236116,236116,New multifamily general contractors,32.7,21.12,35.1,38548.22,45353.37
1-5-2006,CEU2023611601,20236116,236116,New multifamily general contractors,33.2,20.45,36,38282.4,44818.2
1-6-2006,CEU2023611601,20236116,236116,New multifamily general contractors,33.5,21.36,35.2,39097.34,45682.04
1-7-2006,CEU2023611601,20236116,236116,New multifamily general contractors,33.1,21.41,35.6,39634.19,46172.77
1-8-2006,CEU2023611601,20236116,236116,New multifamily general contractors,33,21.08,35.5,38913.68,45244.45
1-9-2006,CEU2023611601,20236116,236116,New multifamily general contractors,33.2,20.91,34.7,37730,44084.41
1-10-2006,CEU2023611601,20236116,236116,New multifamily general contractors,32.2,20.86,35.2,38182.14,44855.88
1-11-2006,CEU2023611601,20236116,236116,New multifamily general contractors,32.5,20.83,35.2,38127.23,44858.06
1-12-2006,CEU2023611601,20236116,236116,New multifamily general contractors,32.4,20.93,34.5,37548.42,44111.39
1-1-2007,CEU2023611601,20236116,236116,New multifamily general contractors,32.6,20.72,34.2,36848.45,43157.34
1-2-2007,CEU2023611601,20236116,236116,New multifamily general contractors,32.1,20.91,34,36968.88,43067.96
1-3-2007,CEU2023611601,20236116,236116,New multifamily general contractors,31.6,21.14,34.7,38145.02,44037.14
1-4-2007,CEU2023611601,20236116,236116,New multifamily general contractors,31.3,21.49,35.1,39223.55,44990.01
1-5-2007,CEU2023611601,20236116,236116,New multifamily general contractors,31.4,21.5,33.7,37676.6,42953.16
1-6-2007,CEU2023611601,20236116,236116,New multifamily general contractors,30.5,21.84,35.5,40316.64,45874.03
1-7-2007,CEU2023611601,20236116,236116,New multifamily general contractors,30.9,22.57,35.7,41898.95,47686.58
1-8-2007,CEU2023611601,20236116,236116,New multifamily general contractors,30,23.5,35.1,42892.2,48906.72
1-9-2007,CEU2023611601,20236116,236116,New multifamily general contractors,30.1,23.27,36.4,44045.46,50083.67
1-10-2007,CEU2023611601,20236116,236116,New multifamily general contractors,30.2,23.29,35.8,43356.66,49195.21
1-11-2007,CEU2023611601,20236116,236116,New multifamily general contractors,29.6,23.89,36.3,45094.77,50865.25
1-12-2007,CEU2023611601,20236116,236116,New multifamily general contractors,30.3,23.9,37.4,46480.72,52463.75
1-1-2008,CEU2023611601,20236116,236116,New multifamily general contractors,30.2,24.53,37.2,47450.83,53293.84
1-2-2008,CEU2023611601,20236116,236116,New multifamily general contractors,30,25.16,37.9,49585.33,55529.91
1-3-2008,CEU2023611601,20236116,236116,New multifamily general contractors,30.2,25.58,37.7,50147.03,55676.34
1-4-2008,CEU2023611601,20236116,236116,New multifamily general contractors,30.2,25.3,36.9,48545.64,53573.46
1-5-2008,CEU2023611601,20236116,236116,New multifamily general contractors,29.2,27.17,37,52275.08,57207.42
1-6-2008,CEU2023611601,20236116,236116,New multifamily general contractors,28.9,27.56,37.6,53885.31,58381.27
1-7-2008,CEU2023611601,20236116,236116,New multifamily general contractors,29.3,26.99,37.1,52069.11,56118.85
1-8-2008,CEU2023611601,20236116,236116,New multifamily general contractors,29.4,27.06,38.3,53892.7,58317.05
1-9-2008,CEU2023611601,20236116,236116,New multifamily general contractors,29.8,26.89,37.5,52435.5,56818.8
1-10-2008,CEU2023611601,20236116,236116,New multifamily general contractors,28.8,27.62,37.7,54146.25,59271.28
1-11-2008,CEU2023611601,20236116,236116,New multifamily general contractors,28.2,28.9,37,55603.6,62055.11
1-12-2008,CEU2023611601,20236116,236116,New multifamily general contractors,26.9,28.35,36.8,54250.56,61177.81
1-1-2009,CEU2023611601,20236116,236116,New multifamily general contractors,26.5,28.26,36.5,53637.48,60224.32
1-2-2009,CEU2023611601,20236116,236116,New multifamily general contractors,26.2,28.16,36.9,54033.41,60368.66
1-3-2009,CEU2023611601,20236116,236116,New multifamily general contractors,25.6,27.88,36.9,53496.14,59623.42
1-4-2009,CEU2023611601,20236116,236116,New multifamily general contractors,25.5,28.11,37.2,54375.98,60453.13
1-5-2009,CEU2023611601,20236116,236116,New multifamily general contractors,25.4,27.92,37.3,54153.63,60032.5
1-6-2009,CEU2023611601,20236116,236116,New multifamily general contractors,24.9,28.02,37.8,55076.11,60535.13
1-7-2009,CEU2023611601,20236116,236116,New multifamily general contractors,25,27.54,37.6,53846.21,59277.31
1-8-2009,CEU2023611601,20236116,236116,New multifamily general contractors,24.3,28,38.3,55764.8,61252.04
1-9-2009,CEU2023611601,20236116,236116,New multifamily general contractors,23.4,27.83,38.2,55281.51,60683.24
1-10-2009,CEU2023611601,20236116,236116,New multifamily general contractors,22.8,28,38.6,56201.6,61633.88
1-11-2009,CEU2023611601,20236116,236116,New multifamily general contractors,22.3,27.87,39.8,57679.75,63210.17
1-12-2009,CEU2023611601,20236116,236116,New multifamily general contractors,22.5,28.15,38.7,56649.06,62190.18
1-1-2010,CEU2023611601,20236116,236116,New multifamily general contractors,22.4,28.51,39.5,58559.54,64068.57
1-2-2010,CEU2023611601,20236116,236116,New multifamily general contractors,22.1,28.98,38.5,58017.96,63460.23
1-3-2010,CEU2023611601,20236116,236116,New multifamily general contractors,21.9,28.96,38.8,58429.7,63649.22
1-4-2010,CEU2023611601,20236116,236116,New multifamily general contractors,21.3,29.16,39.1,59288.11,64472.34
1-5-2010,CEU2023611601,20236116,236116,New multifamily general contractors,21.2,30.11,39.2,61376.22,66691.34
1-6-2010,CEU2023611601,20236116,236116,New multifamily general contractors,21.3,30.18,38.4,60263.43,65546.17
1-7-2010,CEU2023611601,20236116,236116,New multifamily general contractors,20.8,31.11,39,63091.08,68607.21
1-8-2010,CEU2023611601,20236116,236116,New multifamily general contractors,21.1,31.13,38.8,62807.89,68205.09
1-9-2010,CEU2023611601,20236116,236116,New multifamily general contractors,21.5,31.27,38.8,63090.35,68472
1-10-2010,CEU2023611601,20236116,236116,New multifamily general contractors,21.4,31.51,38.3,62755.32,68023.69
1-11-2010,CEU2023611601,20236116,236116,New multifamily general contractors,21.4,31.31,39.1,63659.49,68974.75
1-12-2010,CEU2023611601,20236116,236116,New multifamily general contractors,20.9,31.29,38.9,63293.41,68460.46
1-1-2011,CEU2023611601,20236116,236116,New multifamily general contractors,20.9,31.12,40.5,65538.72,70553.01
1-2-2011,CEU2023611601,20236116,236116,New multifamily general contractors,20.8,30.7,40.1,64015.64,68575.23
1-3-2011,CEU2023611601,20236116,236116,New multifamily general contractors,21,31.16,39.8,64488.73,68414.91
1-4-2011,CEU2023611601,20236116,236116,New multifamily general contractors,20.8,30.66,39.7,63294.5,66718.34
1-5-2011,CEU2023611601,20236116,236116,New multifamily general contractors,20.7,30.13,40.1,62827.07,65915.54
1-6-2011,CEU2023611601,20236116,236116,New multifamily general contractors,21.2,29.71,39.9,61642.31,64741.88
1-7-2011,CEU2023611601,20236116,236116,New multifamily general contractors,21,29.49,39.6,60725.81,63722.83
1-8-2011,CEU2023611601,20236116,236116,New multifamily general contractors,20.8,29.55,39.2,60234.72,63033.68
1-9-2011,CEU2023611601,20236116,236116,New multifamily general contractors,20.7,29.32,39.8,60680.67,63404.08
1-10-2011,CEU2023611601,20236116,236116,New multifamily general contractors,21,29.42,39.6,60581.66,63431.47
1-11-2011,CEU2023611601,20236116,236116,New multifamily general contractors,21,29.2,38.6,58610.24,61419.11
1-12-2011,CEU2023611601,20236116,236116,New multifamily general contractors,21.7,29.14,39.3,59550.5,62558.74
1-1-2012,CEU2023611601,20236116,236116,New multifamily general contractors,21.6,29.16,38.2,57923.43,60582.9
1-2-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22.4,29.08,38.7,58520.59,60939.17
1-3-2012,CEU2023611601,20236116,236116,New multifamily general contractors,21.4,29.36,38.4,58626.05,60588.84
1-4-2012,CEU2023611601,20236116,236116,New multifamily general contractors,21.7,28.75,38.4,57408,59151.31
1-5-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22,29.17,37.9,57488.23,59303.57
1-6-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22.3,29.43,37.5,57388.5,59287.63
1-7-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22.7,28.85,38.3,57457.66,59455.98
1-8-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22.6,29.05,38,57402.8,59070.48
1-9-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22.1,29.38,37.3,56985.45,58380.49
1-10-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22.2,28.84,37.1,55638.13,57022.37
1-11-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22.8,29.42,37,56604.08,58288.52
1-12-2012,CEU2023611601,20236116,236116,New multifamily general contractors,22.8,30.03,37,57777.72,59657.75
1-1-2013,CEU2023611601,20236116,236116,New multifamily general contractors,23.2,29.69,37.3,57586.72,59285.21
1-2-2013,CEU2023611601,20236116,236116,New multifamily general contractors,23.4,29.61,36.7,56507.72,57701.81
1-3-2013,CEU2023611601,20236116,236116,New multifamily general contractors,23.9,29.58,36.8,56604.29,57649.69
1-4-2013,CEU2023611601,20236116,236116,New multifamily general contractors,26.2,30.28,37,58258.72,59396.43
1-5-2013,CEU2023611601,20236116,236116,New multifamily general contractors,25.2,29.15,37.4,56690.92,57695.29
1-6-2013,CEU2023611601,20236116,236116,New multifamily general contractors,24.3,29.94,37.4,58227.31,59117.04
1-7-2013,CEU2023611601,20236116,236116,New multifamily general contractors,24.2,30.44,36.4,57616.83,58474.2
1-8-2013,CEU2023611601,20236116,236116,New multifamily general contractors,25.5,30.12,37.6,58890.63,59695.13
1-9-2013,CEU2023611601,20236116,236116,New multifamily general contractors,26.6,30.27,38.2,60128.33,60878.94
1-10-2013,CEU2023611601,20236116,236116,New multifamily general contractors,26.6,30.45,40,63336,64292.22
1-11-2013,CEU2023611601,20236116,236116,New multifamily general contractors,26.2,30.82,40.7,65227.45,66347.74
1-12-2013,CEU2023611601,20236116,236116,New multifamily general contractors,25.9,31.03,39.4,63574.27,64671.71
1-1-2014,CEU2023611601,20236116,236116,New multifamily general contractors,26.2,31.11,39.9,64547.03,65417.89
1-2-2014,CEU2023611601,20236116,236116,New multifamily general contractors,26.7,30.85,39.1,62724.22,63336.28
1-3-2014,CEU2023611601,20236116,236116,New multifamily general contractors,27.5,30.96,40.6,65362.75,65578.23
1-3-2006,CEU2023611701,20236117,236117,New housing operative builders,46.4,25.31,37.7,49617.72,58873.74
1-4-2006,CEU2023611701,20236117,236117,New housing operative builders,46.8,26.63,39.2,54282.59,63865.42
1-5-2006,CEU2023611701,20236117,236117,New housing operative builders,47.3,26.25,38.8,52962,62003.99
1-6-2006,CEU2023611701,20236117,236117,New housing operative builders,47.3,24.9,40,51792,60514.7
1-7-2006,CEU2023611701,20236117,236117,New housing operative builders,47.8,26.56,40,55244.8,64358.7
1-8-2006,CEU2023611701,20236117,236117,New housing operative builders,47.7,28.5,39.9,59131.8,68751.8
1-9-2006,CEU2023611701,20236117,236117,New housing operative builders,48.3,27.8,39.5,57101.2,66718.06
1-10-2006,CEU2023611701,20236117,236117,New housing operative builders,48.7,27.89,39.6,57431.09,67469.3
1-11-2006,CEU2023611701,20236117,236117,New housing operative builders,50.2,28.77,39.1,58495.16,68821.66
1-12-2006,CEU2023611701,20236117,236117,New housing operative builders,50.6,26.8,38.6,53792.96,63195.27
1-1-2007,CEU2023611701,20236117,236117,New housing operative builders,48.8,30.07,37.9,59261.96,69408.3
1-2-2007,CEU2023611701,20236117,236117,New housing operative builders,48.1,26.32,37.4,51187.14,59631.93
1-3-2007,CEU2023611701,20236117,236117,New housing operative builders,47.9,25.83,37.5,50368.5,58148.75
1-4-2007,CEU2023611701,20236117,236117,New housing operative builders,46.9,26.5,37.9,52226.2,59904.25
1-5-2007,CEU2023611701,20236117,236117,New housing operative builders,47,26.11,38.3,52000.68,59283.3
1-6-2007,CEU2023611701,20236117,236117,New housing operative builders,45.3,26.86,37.9,52935.69,60232.54
1-7-2007,CEU2023611701,20236117,236117,New housing operative builders,45.9,27.06,38.3,53892.7,61337.06
1-8-2007,CEU2023611701,20236117,236117,New housing operative builders,44.1,26.17,38.5,52392.34,59739.02
1-9-2007,CEU2023611701,20236117,236117,New housing operative builders,43.1,26.85,40.5,56546.1,64298.04
1-10-2007,CEU2023611701,20236117,236117,New housing operative builders,42.3,26.29,38.4,52495.87,59565.13
1-11-2007,CEU2023611701,20236117,236117,New housing operative builders,40.8,26.35,38.9,53300.78,60121.34
1-12-2007,CEU2023611701,20236117,236117,New housing operative builders,40.5,26.73,38.6,53652.46,60558.64
1-1-2008,CEU2023611701,20236117,236117,New housing operative builders,40.5,25.7,38.6,51585.04,57937.13
1-2-2008,CEU2023611701,20236117,236117,New housing operative builders,40.1,26.1,38.8,52659.36,58972.48
1-3-2008,CEU2023611701,20236117,236117,New housing operative builders,39.1,26.45,38.3,52677.82,58486.18
1-4-2008,CEU2023611701,20236117,236117,New housing operative builders,38.6,24.48,37.4,47608.7,52539.49
1-5-2008,CEU2023611701,20236117,236117,New housing operative builders,37.4,25.74,36.9,49389.91,54050.02
1-6-2008,CEU2023611701,20236117,236117,New housing operative builders,36.4,23.95,36.5,45457.1,49249.85
1-7-2008,CEU2023611701,20236117,236117,New housing operative builders,35.8,23.64,35.8,44008.22,47431.02
1-8-2008,CEU2023611701,20236117,236117,New housing operative builders,35,23.55,36.5,44697.9,48367.4
1-9-2008,CEU2023611701,20236117,236117,New housing operative builders,34.6,22.73,34.5,40777.62,44186.39
1-10-2008,CEU2023611701,20236117,236117,New housing operative builders,32.8,24.39,34.4,43628.83,47758.38
1-11-2008,CEU2023611701,20236117,236117,New housing operative builders,31.8,24.41,33.4,42395.29,47314.28
1-12-2008,CEU2023611701,20236117,236117,New housing operative builders,30.4,25.42,32.8,43356.35,48892.52
1-1-2009,CEU2023611701,20236117,236117,New housing operative builders,29.1,25.88,34,45755.84,51374.79
1-2-2009,CEU2023611701,20236117,236117,New housing operative builders,28,25.94,35.6,48020.13,53650.34
1-3-2009,CEU2023611701,20236117,236117,New housing operative builders,27.6,27.07,35.2,49548.93,55224.11
1-4-2009,CEU2023611701,20236117,236117,New housing operative builders,27,27.38,35,49831.6,55400.86
1-5-2009,CEU2023611701,20236117,236117,New housing operative builders,26.4,28.23,35.2,51672.19,57281.67
1-6-2009,CEU2023611701,20236117,236117,New housing operative builders,26,28.28,34.8,51175.49,56247.89
1-7-2009,CEU2023611701,20236117,236117,New housing operative builders,25.7,28.66,35.3,52608.3,57914.54
1-8-2009,CEU2023611701,20236117,236117,New housing operative builders,25.6,29.22,35.4,53788.18,59080.91
1-9-2009,CEU2023611701,20236117,236117,New housing operative builders,25.2,29.21,35.6,54073.55,59357.25
1-10-2009,CEU2023611701,20236117,236117,New housing operative builders,25.1,28.12,36.2,52933.09,58049.44
1-11-2009,CEU2023611701,20236117,236117,New housing operative builders,24.7,29.25,37.8,57493.8,63006.38
1-12-2009,CEU2023611701,20236117,236117,New housing operative builders,24.7,27.71,36.7,52881.77,58054.39
1-1-2010,CEU2023611701,20236117,236117,New housing operative builders,24.6,28.12,37,54102.88,59192.65
1-2-2010,CEU2023611701,20236117,236117,New housing operative builders,24.3,28.23,36.3,53286.95,58285.43
1-3-2010,CEU2023611701,20236117,236117,New housing operative builders,23.9,27.52,36.2,51803.65,56431.27
1-4-2010,CEU2023611701,20236117,236117,New housing operative builders,23.2,27.2,36.1,51059.84,55524.58
1-5-2010,CEU2023611701,20236117,236117,New housing operative builders,23,27.55,36.6,52433.16,56973.82
1-6-2010,CEU2023611701,20236117,236117,New housing operative builders,22.7,26.82,36.9,51462.21,55973.44
1-7-2010,CEU2023611701,20236117,236117,New housing operative builders,22.2,27.05,36.5,51340.9,55829.7
1-8-2010,CEU2023611701,20236117,236117,New housing operative builders,22,26.66,36.7,50877.95,55249.99
1-9-2010,CEU2023611701,20236117,236117,New housing operative builders,21.9,25.94,36.6,49369.01,53580.22
1-10-2010,CEU2023611701,20236117,236117,New housing operative builders,22.1,26.64,35.5,49177.44,53305.94
1-11-2010,CEU2023611701,20236117,236117,New housing operative builders,22.1,25.77,35.3,47303.41,51253.02
1-12-2010,CEU2023611701,20236117,236117,New housing operative builders,22.4,27.07,34.3,48282.05,52223.63
1-1-2011,CEU2023611701,20236117,236117,New housing operative builders,23,27.19,34,48071.92,51749.84
1-2-2011,CEU2023611701,20236117,236117,New housing operative builders,22.9,27.5,33.1,47333,50704.35
1-3-2011,CEU2023611701,20236117,236117,New housing operative builders,22.2,27.46,32.7,46692.98,49535.72
1-4-2011,CEU2023611701,20236117,236117,New housing operative builders,22.6,28.52,34.8,51609.79,54401.56
1-5-2011,CEU2023611701,20236117,236117,New housing operative builders,22.7,27.15,34.7,48989.46,51397.7
1-6-2011,CEU2023611701,20236117,236117,New housing operative builders,23.7,27.56,34.9,50015.89,52530.84
1-7-2011,CEU2023611701,20236117,236117,New housing operative builders,23,27.14,34.4,48548.03,50944.04
1-8-2011,CEU2023611701,20236117,236117,New housing operative builders,23.1,26.2,34.8,47411.52,49614.62
1-9-2011,CEU2023611701,20236117,236117,New housing operative builders,23,27.24,34.7,49151.86,51357.84
1-10-2011,CEU2023611701,20236117,236117,New housing operative builders,22.8,26.83,35.6,49667.7,52004.1
1-11-2011,CEU2023611701,20236117,236117,New housing operative builders,22.9,27.38,34.1,48550.21,50876.96
1-12-2011,CEU2023611701,20236117,236117,New housing operative builders,22.9,27.26,34.7,49187.95,51672.71
1-1-2012,CEU2023611701,20236117,236117,New housing operative builders,22.3,28.11,35.1,51306.37,53662.03
1-2-2012,CEU2023611701,20236117,236117,New housing operative builders,22.2,27.54,35.1,50266.01,52343.43
1-3-2012,CEU2023611701,20236117,236117,New housing operative builders,22.2,28.61,34.7,51623.88,53352.24
1-4-2012,CEU2023611701,20236117,236117,New housing operative builders,22.4,28.54,35,51942.8,53520.15
1-5-2012,CEU2023611701,20236117,236117,New housing operative builders,22.8,28.51,34.6,51295.19,52914.97
1-6-2012,CEU2023611701,20236117,236117,New housing operative builders,22.6,28.32,35.2,51836.93,53552.34
1-7-2012,CEU2023611701,20236117,236117,New housing operative builders,22.9,29.11,36.1,54645.29,56545.8
1-8-2012,CEU2023611701,20236117,236117,New housing operative builders,23,29.73,35.5,54881.58,56476
1-9-2012,CEU2023611701,20236117,236117,New housing operative builders,23.2,30.56,36.8,58479.62,59911.24
1-10-2012,CEU2023611701,20236117,236117,New housing operative builders,23.7,30.87,36.9,59233.36,60707.04
1-11-2012,CEU2023611701,20236117,236117,New housing operative builders,23.8,30.53,37.6,59692.26,61468.6
1-12-2012,CEU2023611701,20236117,236117,New housing operative builders,23.7,32.03,38.1,63457.84,65522.69
1-1-2013,CEU2023611701,20236117,236117,New housing operative builders,23.9,30.78,37.8,60501.17,62285.62
1-2-2013,CEU2023611701,20236117,236117,New housing operative builders,24.2,31.38,38.4,62659.59,63983.67
1-3-2013,CEU2023611701,20236117,236117,New housing operative builders,24.9,31.21,37.8,61346.38,62479.36
1-4-2013,CEU2023611701,20236117,236117,New housing operative builders,25.2,31.78,37.4,61805.74,63012.72
1-5-2013,CEU2023611701,20236117,236117,New housing operative builders,25.5,31.95,37.1,61637.94,62729.96
1-6-2013,CEU2023611701,20236117,236117,New housing operative builders,25.6,32.66,37.1,63007.67,63970.45
1-7-2013,CEU2023611701,20236117,236117,New housing operative builders,25.5,32.73,36.4,61951.34,62873.21
1-8-2013,CEU2023611701,20236117,236117,New housing operative builders,26,33.36,37.1,64358.11,65237.31
1-9-2013,CEU2023611701,20236117,236117,New housing operative builders,25.8,32.23,36.8,61675.33,62445.25
1-10-2013,CEU2023611701,20236117,236117,New housing operative builders,25.7,32.11,38.1,63616.33,64576.79
1-11-2013,CEU2023611701,20236117,236117,New housing operative builders,26.1,32.93,37.9,64898.45,66013.09
1-12-2013,CEU2023611701,20236117,236117,New housing operative builders,26,33.84,38.8,68275.59,69454.19
1-1-2014,CEU2023611701,20236117,236117,New housing operative builders,26.6,32.94,38.4,65774.59,66662.02
1-2-2014,CEU2023611701,20236117,236117,New housing operative builders,27,33.19,37.8,65238.27,65874.86
1-3-2014,CEU2023611701,20236117,236117,New housing operative builders,26.6,31,37.9,61094.8,61296.21
1-3-2006,CEU2023611801,20236118,236118,Residential remodelers,305.1,19.5,34.5,34983,41508.96
1-4-2006,CEU2023611801,20236118,236118,Residential remodelers,306.8,19.54,34.5,35054.76,41243.19
1-5-2006,CEU2023611801,20236118,236118,Residential remodelers,305.7,19.75,34.7,35636.9,41721.04
1-6-2006,CEU2023611801,20236118,236118,Residential remodelers,304.8,19.97,34.7,36033.87,42102.62
1-7-2006,CEU2023611801,20236118,236118,Residential remodelers,310.4,20.36,34.7,36737.59,42798.3
1-8-2006,CEU2023611801,20236118,236118,Residential remodelers,315.2,20.08,34.6,36127.94,42005.5
1-9-2006,CEU2023611801,20236118,236118,Residential remodelers,320.3,19.99,34.9,36277.85,42387.69
1-10-2006,CEU2023611801,20236118,236118,Residential remodelers,321,20.16,35,36691.2,43104.34
1-11-2006,CEU2023611801,20236118,236118,Residential remodelers,315.3,20.04,35.1,36577.01,43034.16
1-12-2006,CEU2023611801,20236118,236118,Residential remodelers,312.8,19.85,35.7,36849.54,43290.36
1-1-2007,CEU2023611801,20236118,236118,Residential remodelers,309.3,20.19,34.8,36535.82,42791.18
1-2-2007,CEU2023611801,20236118,236118,Residential remodelers,306,20.3,35.2,37157.12,43287.26
1-3-2007,CEU2023611801,20236118,236118,Residential remodelers,307.9,20.33,35.1,37106.32,42838
1-4-2007,CEU2023611801,20236118,236118,Residential remodelers,308.9,20.5,35,37310,42795.14
1-5-2007,CEU2023611801,20236118,236118,Residential remodelers,309.9,20.42,35.1,37270.59,42490.29
1-6-2007,CEU2023611801,20236118,236118,Residential remodelers,309.8,20.16,35.2,36900.86,41987.41
1-7-2007,CEU2023611801,20236118,236118,Residential remodelers,306.4,20.16,35.4,37110.53,42236.72
1-8-2007,CEU2023611801,20236118,236118,Residential remodelers,302.7,20.03,35.5,36975.38,42160.22
1-9-2007,CEU2023611801,20236118,236118,Residential remodelers,306.4,20.21,35.3,37097.48,42183.19
1-10-2007,CEU2023611801,20236118,236118,Residential remodelers,302.5,20.41,35.3,37464.6,42509.7
1-11-2007,CEU2023611801,20236118,236118,Residential remodelers,301.5,20.54,35.4,37810.03,42648.34
1-12-2007,CEU2023611801,20236118,236118,Residential remodelers,299.6,20.66,35.5,38138.36,43047.56
1-1-2008,CEU2023611801,20236118,236118,Residential remodelers,298.2,20.47,35.6,37894.06,42560.27
1-2-2008,CEU2023611801,20236118,236118,Residential remodelers,297.2,20.71,35.8,38553.73,43175.79
1-3-2008,CEU2023611801,20236118,236118,Residential remodelers,296.8,20.61,35.9,38474.75,42717.05
1-4-2008,CEU2023611801,20236118,236118,Residential remodelers,292,20.52,36.1,38520.14,42509.64
1-5-2008,CEU2023611801,20236118,236118,Residential remodelers,288.3,20.68,35.9,38605.43,42247.98
1-6-2008,CEU2023611801,20236118,236118,Residential remodelers,286.1,20.9,36,39124.8,42389.21
1-7-2008,CEU2023611801,20236118,236118,Residential remodelers,283,20.99,35.7,38965.84,41996.45
1-8-2008,CEU2023611801,20236118,236118,Residential remodelers,282.3,21.18,35.6,39208.41,42427.25
1-9-2008,CEU2023611801,20236118,236118,Residential remodelers,275.7,21.43,35.5,39559.78,42866.75
1-10-2008,CEU2023611801,20236118,236118,Residential remodelers,274,21.17,35.5,39079.82,42778.79
1-11-2008,CEU2023611801,20236118,236118,Residential remodelers,268.6,21.33,35.4,39264.27,43819.98
1-12-2008,CEU2023611801,20236118,236118,Residential remodelers,266.3,21.51,34.5,38588.94,43516.36
1-1-2009,CEU2023611801,20236118,236118,Residential remodelers,265.8,20.86,35.1,38073.67,42749.23
1-2-2009,CEU2023611801,20236118,236118,Residential remodelers,263.1,21.09,34.8,38164.46,42639.13
1-3-2009,CEU2023611801,20236118,236118,Residential remodelers,252.1,21.09,35.1,38493.47,42902.39
1-4-2009,CEU2023611801,20236118,236118,Residential remodelers,250.9,21.22,34.5,38068.68,42323.29
1-5-2009,CEU2023611801,20236118,236118,Residential remodelers,248.1,21.3,34.4,38101.44,42237.7
1-6-2009,CEU2023611801,20236118,236118,Residential remodelers,247.3,21.42,33.9,37759.18,41501.78
1-7-2009,CEU2023611801,20236118,236118,Residential remodelers,247,21.24,34.4,37994.11,41826.32
1-8-2009,CEU2023611801,20236118,236118,Residential remodelers,245.6,21.34,34.4,38172.99,41929.2
1-9-2009,CEU2023611801,20236118,236118,Residential remodelers,242.8,21.29,34,37640.72,41318.71
1-10-2009,CEU2023611801,20236118,236118,Residential remodelers,239.8,21.46,33.7,37606.5,41241.43
1-11-2009,CEU2023611801,20236118,236118,Residential remodelers,238.9,21.33,34.6,38376.94,42056.57
1-12-2009,CEU2023611801,20236118,236118,Residential remodelers,236,21.31,33.5,37122.02,40753.1
1-1-2010,CEU2023611801,20236118,236118,Residential remodelers,234.2,21.53,33.6,37617.21,41156.09
1-2-2010,CEU2023611801,20236118,236118,Residential remodelers,228.7,21.31,33.2,36789.59,40240.57
1-3-2010,CEU2023611801,20236118,236118,Residential remodelers,232.9,21.54,33.1,37074.65,40386.53
1-4-2010,CEU2023611801,20236118,236118,Residential remodelers,235.5,20.95,33.6,36603.84,39804.53
1-5-2010,CEU2023611801,20236118,236118,Residential remodelers,236.2,21.25,33.3,36796.5,39983.04
1-6-2010,CEU2023611801,20236118,236118,Residential remodelers,236.2,21.11,34.5,37871.34,41191.18
1-7-2010,CEU2023611801,20236118,236118,Residential remodelers,233.6,21.35,33.5,37191.7,40443.42
1-8-2010,CEU2023611801,20236118,236118,Residential remodelers,234.9,21.12,34.3,37669.63,40906.66
1-9-2010,CEU2023611801,20236118,236118,Residential remodelers,237.6,21,34.3,37455.6,40650.59
1-10-2010,CEU2023611801,20236118,236118,Residential remodelers,235.7,20.96,34.4,37493.25,40640.84
1-11-2010,CEU2023611801,20236118,236118,Residential remodelers,235.1,20.91,34.1,37077.61,40173.41
1-12-2010,CEU2023611801,20236118,236118,Residential remodelers,235.5,21.01,34.6,37801.19,40887.14
1-1-2011,CEU2023611801,20236118,236118,Residential remodelers,234.2,21.21,34.2,37719.86,40605.76
1-2-2011,CEU2023611801,20236118,236118,Residential remodelers,234.2,21.44,35.1,39132.29,41919.54
1-3-2011,CEU2023611801,20236118,236118,Residential remodelers,237.6,21.23,34.4,37976.22,40288.27
1-4-2011,CEU2023611801,20236118,236118,Residential remodelers,238.6,21.5,34.4,38459.2,40539.6
1-5-2011,CEU2023611801,20236118,236118,Residential remodelers,239.6,21.08,35.4,38804.06,40711.6
1-6-2011,CEU2023611801,20236118,236118,Residential remodelers,240.1,20.99,34.7,37874.36,39778.79
1-7-2011,CEU2023611801,20236118,236118,Residential remodelers,240.2,21.15,34.7,38163.06,40046.54
1-8-2011,CEU2023611801,20236118,236118,Residential remodelers,238.7,21.17,34.6,38089.06,39858.97
1-9-2011,CEU2023611801,20236118,236118,Residential remodelers,241.4,21.26,35,38693.2,40429.79
1-10-2011,CEU2023611801,20236118,236118,Residential remodelers,246.8,21.05,35.4,38748.84,40571.61
1-11-2011,CEU2023611801,20236118,236118,Residential remodelers,247.3,21.23,35.3,38969.79,40837.4
1-12-2011,CEU2023611801,20236118,236118,Residential remodelers,248.5,21.2,35.4,39024.96,40996.34
1-1-2012,CEU2023611801,20236118,236118,Residential remodelers,249.2,20.76,36,38862.72,40647.05
1-2-2012,CEU2023611801,20236118,236118,Residential remodelers,250.8,21.11,35.5,38969.06,40579.6
1-3-2012,CEU2023611801,20236118,236118,Residential remodelers,249.7,21.26,35.9,39688.17,41016.92
1-4-2012,CEU2023611801,20236118,236118,Residential remodelers,249.2,21.34,35.8,39726.54,40932.92
1-5-2012,CEU2023611801,20236118,236118,Residential remodelers,250.2,21.26,36,39798.72,41055.46
1-6-2012,CEU2023611801,20236118,236118,Residential remodelers,250.4,21.43,35.6,39671.21,40984.04
1-7-2012,CEU2023611801,20236118,236118,Residential remodelers,252.5,21.2,36.2,39906.88,41294.8
1-8-2012,CEU2023611801,20236118,236118,Residential remodelers,252.5,21.24,35.7,39429.94,40575.46
1-9-2012,CEU2023611801,20236118,236118,Residential remodelers,253.9,21.18,36,39648.96,40619.59
1-10-2012,CEU2023611801,20236118,236118,Residential remodelers,254.3,21.32,36.3,40243.63,41244.87
1-11-2012,CEU2023611801,20236118,236118,Residential remodelers,255.3,21.4,36.5,40617.2,41825.9
1-12-2012,CEU2023611801,20236118,236118,Residential remodelers,257.4,21.66,36.5,41110.68,42448.38
1-1-2013,CEU2023611801,20236118,236118,Residential remodelers,257.7,21.69,36.6,41280.41,42497.95
1-2-2013,CEU2023611801,20236118,236118,Residential remodelers,259.6,21.6,37,41558.4,42436.59
1-3-2013,CEU2023611801,20236118,236118,Residential remodelers,260.9,21.85,36.8,41812.16,42584.37
1-4-2013,CEU2023611801,20236118,236118,Residential remodelers,263.7,22.05,36.8,42194.88,43018.89
1-5-2013,CEU2023611801,20236118,236118,Residential remodelers,264.4,22.2,36.8,42481.92,43234.56
1-6-2013,CEU2023611801,20236118,236118,Residential remodelers,265.7,22.21,36.9,42616.55,43267.74
1-7-2013,CEU2023611801,20236118,236118,Residential remodelers,268.2,22.48,36.4,42550.14,43183.31
1-8-2013,CEU2023611801,20236118,236118,Residential remodelers,268.7,22.63,36.8,43304.77,43896.36
1-9-2013,CEU2023611801,20236118,236118,Residential remodelers,268.6,22.59,37.2,43698.1,44243.6
1-10-2013,CEU2023611801,20236118,236118,Residential remodelers,271.4,22.71,36.3,42867.39,43514.59
1-11-2013,CEU2023611801,20236118,236118,Residential remodelers,274.6,22.41,36.7,42767.24,43501.78
1-12-2013,CEU2023611801,20236118,236118,Residential remodelers,274.4,22.51,36.4,42606.93,43342.43
1-1-2014,CEU2023611801,20236118,236118,Residential remodelers,280.4,22.41,36.1,42068.05,42635.63
1-2-2014,CEU2023611801,20236118,236118,Residential remodelers,280.3,22.75,35.8,42351.4,42764.66
1-3-2014,CEU2023611801,20236118,236118,Residential remodelers,280.6,22.53,35.8,41941.85,42080.12
1-3-2006,CEU2023620001,20236200,2362,Nonresidential building,789.5,24.31,39,49300.68,58497.55
1-4-2006,CEU2023620001,20236200,2362,Nonresidential building,800.4,24.95,39,50598.6,59531.07
1-5-2006,CEU2023620001,20236200,2362,Nonresidential building,798.6,24.93,39.3,50946.95,59644.91
1-6-2006,CEU2023620001,20236200,2362,Nonresidential building,796.8,25.03,39.2,51021.15,59614.03
1-7-2006,CEU2023620001,20236200,2362,Nonresidential building,807.6,25,39.4,51220,59669.92
1-8-2006,CEU2023620001,20236200,2362,Nonresidential building,798.3,25.09,39.5,51534.86,59918.94
1-9-2006,CEU2023620001,20236200,2362,Nonresidential building,799.9,25.45,39.4,52141.96,60923.6
1-10-2006,CEU2023620001,20236200,2362,Nonresidential building,798.7,25.84,39.4,52940.99,62194.39
1-11-2006,CEU2023620001,20236200,2362,Nonresidential building,798.5,25.42,39.5,52212.68,61430.09
1-12-2006,CEU2023620001,20236200,2362,Nonresidential building,800.5,25.5,40.6,53835.6,63245.36
1-1-2007,CEU2023620001,20236200,2362,Nonresidential building,814.8,25.7,40.8,54525.12,63860.46
1-2-2007,CEU2023620001,20236200,2362,Nonresidential building,812.8,25.71,40.1,53610.49,62455.08
1-3-2007,CEU2023620001,20236200,2362,Nonresidential building,822.6,25.85,40.2,54036.84,62383.72
1-4-2007,CEU2023620001,20236200,2362,Nonresidential building,818.6,25.96,40.5,54671.76,62709.35
1-5-2007,CEU2023620001,20236200,2362,Nonresidential building,820.2,26.1,40.3,54695.16,62355.15
1-6-2007,CEU2023620001,20236200,2362,Nonresidential building,829.8,26.07,40.3,54632.29,62163
1-7-2007,CEU2023620001,20236200,2362,Nonresidential building,830.3,26.17,40.3,54841.85,62417.33
1-8-2007,CEU2023620001,20236200,2362,Nonresidential building,822.1,26.16,40.1,54548.83,62197.9
1-9-2007,CEU2023620001,20236200,2362,Nonresidential building,832.8,25.99,40.2,54329.5,61777.56
1-10-2007,CEU2023620001,20236200,2362,Nonresidential building,832.4,26.07,40.3,54632.29,61989.25
1-11-2007,CEU2023620001,20236200,2362,Nonresidential building,834.1,26.26,40.2,54893.9,61918.32
1-12-2007,CEU2023620001,20236200,2362,Nonresidential building,833.6,26.3,40.1,54840.76,61899.91
1-1-2008,CEU2023620001,20236200,2362,Nonresidential building,838.8,26.18,39.7,54045.99,60701.12
1-2-2008,CEU2023620001,20236200,2362,Nonresidential building,841.6,26.46,39.6,54486.43,61018.59
1-3-2008,CEU2023620001,20236200,2362,Nonresidential building,847.2,26.45,39.8,54740.92,60776.76
1-4-2008,CEU2023620001,20236200,2362,Nonresidential building,838.3,26.46,39.5,54348.84,59977.7
1-5-2008,CEU2023620001,20236200,2362,Nonresidential building,831.6,26.61,39.6,54795.31,59965.45
1-6-2008,CEU2023620001,20236200,2362,Nonresidential building,827.4,26.75,39.6,55083.6,59679.54
1-7-2008,CEU2023620001,20236200,2362,Nonresidential building,829.8,26.85,39.4,55010.28,59288.78
1-8-2008,CEU2023620001,20236200,2362,Nonresidential building,829.2,27.03,39.5,55519.62,60077.54
1-9-2008,CEU2023620001,20236200,2362,Nonresidential building,817.5,27.28,39.3,55749.41,60409.73
1-10-2008,CEU2023620001,20236200,2362,Nonresidential building,812.3,27.31,39.1,55526.69,60782.39
1-11-2008,CEU2023620001,20236200,2362,Nonresidential building,800.2,27.46,38.8,55403.3,61831.57
1-12-2008,CEU2023620001,20236200,2362,Nonresidential building,797.9,27.62,39,56013.36,63165.7
1-1-2009,CEU2023620001,20236200,2362,Nonresidential building,783.4,27.75,38.2,55122.6,61891.82
1-2-2009,CEU2023620001,20236200,2362,Nonresidential building,769.3,27.75,39.7,57287.1,64003.84
1-3-2009,CEU2023620001,20236200,2362,Nonresidential building,753.1,28.01,39.3,57241.23,63797.46
1-4-2009,CEU2023620001,20236200,2362,Nonresidential building,736.6,28.19,39.4,57755.67,64210.53
1-5-2009,CEU2023620001,20236200,2362,Nonresidential building,733.8,28.13,39.2,57340.19,63564.98
1-6-2009,CEU2023620001,20236200,2362,Nonresidential building,721.4,28.36,39.4,58103.97,63863.11
1-7-2009,CEU2023620001,20236200,2362,Nonresidential building,709.7,28.6,39.5,58744.4,64669.55
1-8-2009,CEU2023620001,20236200,2362,Nonresidential building,702.4,28.68,39.7,59206.99,65032.94
1-9-2009,CEU2023620001,20236200,2362,Nonresidential building,692.6,28.72,39.5,58990.88,64755.06
1-10-2009,CEU2023620001,20236200,2362,Nonresidential building,684,28.82,39.5,59196.28,64918.01
1-11-2009,CEU2023620001,20236200,2362,Nonresidential building,678.9,28.82,39.6,59346.14,65036.33
1-12-2009,CEU2023620001,20236200,2362,Nonresidential building,666.6,28.85,39.3,58957.86,64724.81
1-1-2010,CEU2023620001,20236200,2362,Nonresidential building,657.8,28.84,39.3,58937.43,64482.01
1-2-2010,CEU2023620001,20236200,2362,Nonresidential building,646.2,29.07,38.9,58802.8,64318.68
1-3-2010,CEU2023620001,20236200,2362,Nonresidential building,657.2,28.87,39.4,59148.86,64432.63
1-4-2010,CEU2023620001,20236200,2362,Nonresidential building,665.6,28.72,39.5,58990.88,64149.12
1-5-2010,CEU2023620001,20236200,2362,Nonresidential building,662.6,28.88,39.5,59319.52,64456.53
1-6-2010,CEU2023620001,20236200,2362,Nonresidential building,659.2,28.94,38.9,58539.83,63671.49
1-7-2010,CEU2023620001,20236200,2362,Nonresidential building,659.7,28.78,39.1,58515.5,63631.58
1-8-2010,CEU2023620001,20236200,2362,Nonresidential building,657.5,28.81,39,58426.68,63447.4
1-9-2010,CEU2023620001,20236200,2362,Nonresidential building,655.6,28.81,39.1,58576.49,63573.11
1-10-2010,CEU2023620001,20236200,2362,Nonresidential building,653.8,28.93,39,58670.04,63595.45
1-11-2010,CEU2023620001,20236200,2362,Nonresidential building,655.5,28.95,39,58710.6,63612.65
1-12-2010,CEU2023620001,20236200,2362,Nonresidential building,652.5,29.06,39,58933.68,63744.82
1-1-2011,CEU2023620001,20236200,2362,Nonresidential building,648.4,29.04,38,57383.04,61773.34
1-2-2011,CEU2023620001,20236200,2362,Nonresidential building,642.5,29.08,38.6,58369.38,62526.8
1-3-2011,CEU2023620001,20236200,2362,Nonresidential building,649.1,29.16,38.6,58529.95,62093.34
1-4-2011,CEU2023620001,20236200,2362,Nonresidential building,650.1,29.19,38.5,58438.38,61599.53
1-5-2011,CEU2023620001,20236200,2362,Nonresidential building,651,29.17,38.8,58853.39,61746.52
1-6-2011,CEU2023620001,20236200,2362,Nonresidential building,654.3,29.25,38.7,58862.7,61822.5
1-7-2011,CEU2023620001,20236200,2362,Nonresidential building,657.2,29.37,38.8,59256.91,62181.44
1-8-2011,CEU2023620001,20236200,2362,Nonresidential building,662.2,29.42,38.7,59204.81,61955.91
1-9-2011,CEU2023620001,20236200,2362,Nonresidential building,670.5,29.45,39,59724.6,62405.1
1-10-2011,CEU2023620001,20236200,2362,Nonresidential building,664.7,29.55,39.1,60081.06,62907.31
1-11-2011,CEU2023620001,20236200,2362,Nonresidential building,659.7,29.59,38.8,59700.79,62561.92
1-12-2011,CEU2023620001,20236200,2362,Nonresidential building,654.8,29.54,39,59907.12,62933.38
1-1-2012,CEU2023620001,20236200,2362,Nonresidential building,660.1,29.6,39.1,60182.72,62945.92
1-2-2012,CEU2023620001,20236200,2362,Nonresidential building,659,29.59,39.2,60316.26,62809.05
1-3-2012,CEU2023620001,20236200,2362,Nonresidential building,658.5,29.65,39.1,60284.38,62302.69
1-4-2012,CEU2023620001,20236200,2362,Nonresidential building,658.4,29.66,39.3,60613.18,62453.82
1-5-2012,CEU2023620001,20236200,2362,Nonresidential building,659.2,29.84,39.2,60825.86,62746.59
1-6-2012,CEU2023620001,20236200,2362,Nonresidential building,658.3,29.75,39.4,60951.8,62968.85
1-7-2012,CEU2023620001,20236200,2362,Nonresidential building,655.7,29.7,39.5,61003.8,63125.45
1-8-2012,CEU2023620001,20236200,2362,Nonresidential building,658.8,29.75,39.4,60951.8,62722.58
1-9-2012,CEU2023620001,20236200,2362,Nonresidential building,656.8,29.88,39.6,61528.89,63035.16
1-10-2012,CEU2023620001,20236200,2362,Nonresidential building,660.5,29.72,39.7,61353.97,62880.41
1-11-2012,CEU2023620001,20236200,2362,Nonresidential building,664,29.76,39.8,61591.3,63424.15
1-12-2012,CEU2023620001,20236200,2362,Nonresidential building,667.9,29.79,39.9,61808.29,63819.47
1-1-2013,CEU2023620001,20236200,2362,Nonresidential building,668.2,29.85,39.7,61622.34,63439.86
1-2-2013,CEU2023620001,20236200,2362,Nonresidential building,672.8,29.94,39.9,62119.51,63432.18
1-3-2013,CEU2023620001,20236200,2362,Nonresidential building,674,29.97,39.9,62181.76,63330.17
1-4-2013,CEU2023620001,20236200,2362,Nonresidential building,670.6,30.12,39.5,61866.48,63074.65
1-5-2013,CEU2023620001,20236200,2362,Nonresidential building,671.3,30.03,39.7,61993.93,63092.26
1-6-2013,CEU2023620001,20236200,2362,Nonresidential building,671.7,29.92,39.7,61766.85,62710.66
1-7-2013,CEU2023620001,20236200,2362,Nonresidential building,673.3,30.08,39.6,61940.73,62862.44
1-8-2013,CEU2023620001,20236200,2362,Nonresidential building,671,30.08,39.9,62409.98,63262.57
1-9-2013,CEU2023620001,20236200,2362,Nonresidential building,676.1,30.2,39.8,62501.92,63282.16
1-10-2013,CEU2023620001,20236200,2362,Nonresidential building,676.8,30.24,39.5,62112.96,63050.72
1-11-2013,CEU2023620001,20236200,2362,Nonresidential building,682.6,30.22,39.7,62386.17,63457.66
1-12-2013,CEU2023620001,20236200,2362,Nonresidential building,681.9,30.47,39.8,63060.71,64149.29
1-1-2014,CEU2023620001,20236200,2362,Nonresidential building,688.6,30.84,39.3,63024.63,63874.95
1-2-2014,CEU2023620001,20236200,2362,Nonresidential building,686,30.92,39.3,63188.11,63804.7
1-3-2014,CEU2023620001,20236200,2362,Nonresidential building,686.9,30.86,39.7,63707.38,63917.41
1-3-2006,CEU2023621001,20236210,23621,Industrial building,176.7,21.71,40,45156.8,53580.65
1-4-2006,CEU2023621001,20236210,23621,Industrial building,182.3,22.54,40.5,47469.24,55849.27
1-5-2006,CEU2023621001,20236210,23621,Industrial building,178.2,22.84,40.4,47982.27,56174.09
1-6-2006,CEU2023621001,20236210,23621,Industrial building,179.1,23.74,40.1,49502.65,57839.78
1-7-2006,CEU2023621001,20236210,23621,Industrial building,180.3,23.13,40.7,48952.33,57028.14
1-8-2006,CEU2023621001,20236210,23621,Industrial building,180.4,23.01,40.5,48459.06,56342.74
1-9-2006,CEU2023621001,20236210,23621,Industrial building,180.7,23.72,40.4,49830.98,58223.41
1-10-2006,CEU2023621001,20236210,23621,Industrial building,179.1,24.13,40.5,50817.78,59700.07
1-11-2006,CEU2023621001,20236210,23621,Industrial building,178.7,23.97,41.6,51851.9,61005.63
1-12-2006,CEU2023621001,20236210,23621,Industrial building,179,24.14,42.9,53851.51,63264.05
1-1-2007,CEU2023621001,20236210,23621,Industrial building,185.4,24.52,46.1,58779.34,68843.05
1-2-2007,CEU2023621001,20236210,23621,Industrial building,181.2,23.08,43.9,52687.02,61379.26
1-3-2007,CEU2023621001,20236210,23621,Industrial building,184.3,24.81,44,56765.28,65533.62
1-4-2007,CEU2023621001,20236210,23621,Industrial building,183.7,24.54,44.5,56785.56,65133.91
1-5-2007,CEU2023621001,20236210,23621,Industrial building,188.9,24.57,43.7,55832.87,63652.19
1-6-2007,CEU2023621001,20236210,23621,Industrial building,189,24.53,44.3,56507.31,64296.48
1-7-2007,CEU2023621001,20236210,23621,Industrial building,187.8,24.47,44.8,57005.31,64879.64
1-8-2007,CEU2023621001,20236210,23621,Industrial building,182.9,24.33,44.7,56552.65,64482.7
1-9-2007,CEU2023621001,20236210,23621,Industrial building,190.9,24.36,44.1,55862.35,63520.55
1-10-2007,CEU2023621001,20236210,23621,Industrial building,189.9,24.33,44.5,56299.62,63881.11
1-11-2007,CEU2023621001,20236210,23621,Industrial building,189.4,24.51,46.2,58882.82,66417.68
1-12-2007,CEU2023621001,20236210,23621,Industrial building,185.9,24.36,43.6,55228.99,62338.11
1-1-2008,CEU2023621001,20236210,23621,Industrial building,190.3,24.6,42.6,54493.92,61204.2
1-2-2008,CEU2023621001,20236210,23621,Industrial building,189.4,24.69,42.4,54436.51,60962.68
1-3-2008,CEU2023621001,20236210,23621,Industrial building,189.4,24.68,42.4,54414.46,60414.31
1-4-2008,CEU2023621001,20236210,23621,Industrial building,190.9,25,41.9,54470,60111.41
1-5-2008,CEU2023621001,20236210,23621,Industrial building,187.8,24.97,42.2,54794.17,59964.19
1-6-2008,CEU2023621001,20236210,23621,Industrial building,187.9,25.03,42.3,55055.99,59649.63
1-7-2008,CEU2023621001,20236210,23621,Industrial building,187.7,25.32,41.7,54903.89,59174.11
1-8-2008,CEU2023621001,20236210,23621,Industrial building,188.6,25.74,41.6,55680.77,60251.92
1-9-2008,CEU2023621001,20236210,23621,Industrial building,184.6,26.15,41.3,56159.74,60854.37
1-10-2008,CEU2023621001,20236210,23621,Industrial building,184.1,25.91,41,55240.12,60468.69
1-11-2008,CEU2023621001,20236210,23621,Industrial building,178.4,26.02,41.1,55609.95,62062.2
1-12-2008,CEU2023621001,20236210,23621,Industrial building,179.3,26.52,41,56540.64,63760.31
1-1-2009,CEU2023621001,20236210,23621,Industrial building,176.3,26.73,41.4,57544.34,64610.96
1-2-2009,CEU2023621001,20236210,23621,Industrial building,177.4,26.74,42.8,59512.54,66490.21
1-3-2009,CEU2023621001,20236210,23621,Industrial building,173.4,27,42.2,59248.8,66034.97
1-4-2009,CEU2023621001,20236210,23621,Industrial building,169.6,27.97,45.1,65595.24,72926.26
1-5-2009,CEU2023621001,20236210,23621,Industrial building,166.9,28.16,41.6,60915.71,67528.66
1-6-2009,CEU2023621001,20236210,23621,Industrial building,166.5,28.41,42.1,62195.17,68359.82
1-7-2009,CEU2023621001,20236210,23621,Industrial building,160.9,28.59,42.5,63183.9,69556.83
1-8-2009,CEU2023621001,20236210,23621,Industrial building,161.5,28.53,42.6,63199.66,69418.48
1-9-2009,CEU2023621001,20236210,23621,Industrial building,158.5,28.42,43,63547.12,69756.51
1-10-2009,CEU2023621001,20236210,23621,Industrial building,157.1,28.72,43.1,64367.27,70588.8
1-11-2009,CEU2023621001,20236210,23621,Industrial building,158.7,28.81,43.1,64568.97,70759.93
1-12-2009,CEU2023621001,20236210,23621,Industrial building,154.2,28.82,43.5,65190.84,71567.47
1-1-2010,CEU2023621001,20236210,23621,Industrial building,152.5,28.88,43.3,65026.21,71143.6
1-2-2010,CEU2023621001,20236210,23621,Industrial building,148.5,28.96,42.5,64001.6,70005.16
1-3-2010,CEU2023621001,20236210,23621,Industrial building,154.1,28.78,42.1,63005.18,68633.43
1-4-2010,CEU2023621001,20236210,23621,Industrial building,159,28.35,42.9,63243.18,68773.25
1-5-2010,CEU2023621001,20236210,23621,Industrial building,159.4,28.27,43.4,63799.73,69324.73
1-6-2010,CEU2023621001,20236210,23621,Industrial building,155.2,28.43,41.7,61647.61,67051.7
1-7-2010,CEU2023621001,20236210,23621,Industrial building,157.9,28.35,41.3,60884.46,66207.67
1-8-2010,CEU2023621001,20236210,23621,Industrial building,154.8,28.22,41.2,60458.53,65653.85
1-9-2010,CEU2023621001,20236210,23621,Industrial building,156.4,28.21,38.5,56476.42,61293.9
1-10-2010,CEU2023621001,20236210,23621,Industrial building,155.6,28.21,41.2,60437.11,65510.86
1-11-2010,CEU2023621001,20236210,23621,Industrial building,155.1,28.34,41,60420.88,65465.73
1-12-2010,CEU2023621001,20236210,23621,Industrial building,153.4,28.15,41.5,60747.7,65706.92
1-1-2011,CEU2023621001,20236210,23621,Industrial building,151.9,28.29,38.7,56930.8,61286.5
1-2-2011,CEU2023621001,20236210,23621,Industrial building,148.1,28.31,39.9,58737.59,62921.25
1-3-2011,CEU2023621001,20236210,23621,Industrial building,147.5,28.27,40,58801.6,62381.53
1-4-2011,CEU2023621001,20236210,23621,Industrial building,148.2,28.3,40.4,59452.64,62668.66
1-5-2011,CEU2023621001,20236210,23621,Industrial building,147.6,28.41,40.9,60422.39,63392.64
1-6-2011,CEU2023621001,20236210,23621,Industrial building,149.6,28.55,40.4,59977.84,62993.71
1-7-2011,CEU2023621001,20236210,23621,Industrial building,151.5,28.68,40.5,60400.08,63381.02
1-8-2011,CEU2023621001,20236210,23621,Industrial building,153,28.81,40.5,60673.86,63493.22
1-9-2011,CEU2023621001,20236210,23621,Industrial building,157.1,28.84,40.7,61036.98,63776.38
1-10-2011,CEU2023621001,20236210,23621,Industrial building,154.6,28.97,40.8,61462.75,64354
1-11-2011,CEU2023621001,20236210,23621,Industrial building,153.4,28.94,40.8,61399.11,64341.64
1-12-2011,CEU2023621001,20236210,23621,Industrial building,153.1,28.97,40.4,60860.18,63934.57
1-1-2012,CEU2023621001,20236210,23621,Industrial building,154.7,28.72,40.8,60932.35,63729.97
1-2-2012,CEU2023621001,20236210,23621,Industrial building,154.9,28.55,41.4,61462.44,64002.6
1-3-2012,CEU2023621001,20236210,23621,Industrial building,155.8,28.64,41.1,61209.41,63258.68
1-4-2012,CEU2023621001,20236210,23621,Industrial building,154.4,29.07,41.4,62581.89,64482.32
1-5-2012,CEU2023621001,20236210,23621,Industrial building,154.9,29.48,41.5,63617.84,65626.73
1-6-2012,CEU2023621001,20236210,23621,Industrial building,153.1,29.85,41.7,64726.74,66868.71
1-7-2012,CEU2023621001,20236210,23621,Industrial building,151.7,29.67,41.4,63873.57,66095.03
1-8-2012,CEU2023621001,20236210,23621,Industrial building,152.6,29.67,41.1,63410.72,65252.94
1-9-2012,CEU2023621001,20236210,23621,Industrial building,150.3,29.73,42.2,65239.51,66836.62
1-10-2012,CEU2023621001,20236210,23621,Industrial building,151.2,29.5,42.4,65041.6,66659.8
1-11-2012,CEU2023621001,20236210,23621,Industrial building,153,29.49,42.6,65326.25,67270.25
1-12-2012,CEU2023621001,20236210,23621,Industrial building,154.7,29.77,42.7,66101.3,68252.17
1-1-2013,CEU2023621001,20236210,23621,Industrial building,153.2,29.61,42.8,65900.02,67843.7
1-2-2013,CEU2023621001,20236210,23621,Industrial building,155.7,29.68,42.8,66055.8,67451.66
1-3-2013,CEU2023621001,20236210,23621,Industrial building,155.8,29.91,43,66878.76,68113.91
1-4-2013,CEU2023621001,20236210,23621,Industrial building,154.5,30.67,42.3,67461.73,68779.17
1-5-2013,CEU2023621001,20236210,23621,Industrial building,153.7,29.85,42.3,65658.06,66821.3
1-6-2013,CEU2023621001,20236210,23621,Industrial building,153.8,29.7,42.7,65945.88,66953.55
1-7-2013,CEU2023621001,20236210,23621,Industrial building,153.5,29.7,43.1,66563.64,67554.13
1-8-2013,CEU2023621001,20236210,23621,Industrial building,153.3,30.02,42.6,66500.3,67408.77
1-9-2013,CEU2023621001,20236210,23621,Industrial building,154.8,30.28,42.4,66761.34,67594.76
1-10-2013,CEU2023621001,20236210,23621,Industrial building,155.8,30.63,41.6,66258.81,67259.16
1-11-2013,CEU2023621001,20236210,23621,Industrial building,158.5,30.64,41.8,66599.1,67742.95
1-12-2013,CEU2023621001,20236210,23621,Industrial building,159.6,30.55,42.3,67197.78,68357.78
1-1-2014,CEU2023621001,20236210,23621,Industrial building,161.2,31.47,41.4,67748.62,68662.68
1-2-2014,CEU2023621001,20236210,23621,Industrial building,159.9,30.81,41.3,66167.55,66813.22
1-3-2014,CEU2023621001,20236210,23621,Industrial building,159.1,30.53,41.2,65407.47,65623.1
1-3-2006,CEU2023622001,20236220,23622,Commercial building,612.8,25.13,38.7,50571.61,60005.57
1-4-2006,CEU2023622001,20236220,23622,Commercial building,618.1,25.7,39,52119.6,61320.59
1-5-2006,CEU2023622001,20236220,23622,Commercial building,620.4,25.52,38.9,51621.86,60435.05
1-6-2006,CEU2023622001,20236220,23622,Commercial building,617.7,25.46,39,51632.88,60328.78
1-7-2006,CEU2023622001,20236220,23622,Commercial building,627.3,25.54,39,51795.12,60339.92
1-8-2006,CEU2023622001,20236220,23622,Commercial building,617.9,25.66,39.1,52171.91,60659.63
1-9-2006,CEU2023622001,20236220,23622,Commercial building,619.3,26.03,39,52788.84,61679.43
1-10-2006,CEU2023622001,20236220,23622,Commercial building,619.6,26.34,39.1,53554.49,62915.11
1-11-2006,CEU2023622001,20236220,23622,Commercial building,619.8,25.87,39.2,52733.41,62042.75
1-12-2006,CEU2023622001,20236220,23622,Commercial building,621.5,25.88,39.8,53561.25,62923.05
1-1-2007,CEU2023622001,20236220,23622,Commercial building,629.4,26.2,39.4,53678.56,62868.96
1-2-2007,CEU2023622001,20236220,23622,Commercial building,631.6,26.51,38.7,53348.72,62150.13
1-3-2007,CEU2023622001,20236220,23622,Commercial building,638.3,26.2,39,53133.6,61340.96
1-4-2007,CEU2023622001,20236220,23622,Commercial building,634.9,26.49,39.3,54134.96,62093.63
1-5-2007,CEU2023622001,20236220,23622,Commercial building,631.3,26.58,39.2,54180.67,61768.61
1-6-2007,CEU2023622001,20236220,23622,Commercial building,640.8,26.64,39.1,54164.45,61630.67
1-7-2007,CEU2023622001,20236220,23622,Commercial building,642.5,26.73,39,54208.44,61696.43
1-8-2007,CEU2023622001,20236220,23622,Commercial building,639.2,26.76,38.8,53990.98,61561.82
1-9-2007,CEU2023622001,20236220,23622,Commercial building,641.9,26.49,39.1,53859.47,61243.09
1-10-2007,CEU2023622001,20236220,23622,Commercial building,642.5,26.64,39,54025.92,61301.23
1-11-2007,CEU2023622001,20236220,23622,Commercial building,644.7,26.88,38.7,54093.31,61015.29
1-12-2007,CEU2023622001,20236220,23622,Commercial building,647.6,26.9,38.9,54413.32,61417.45
1-1-2008,CEU2023622001,20236220,23622,Commercial building,648.6,26.79,38.9,54190.81,60863.77
1-2-2008,CEU2023622001,20236220,23622,Commercial building,652.2,26.95,38.6,54094.04,60579.15
1-3-2008,CEU2023622001,20236220,23622,Commercial building,657.8,27.02,39.1,54937.06,60994.53
1-4-2008,CEU2023622001,20236220,23622,Commercial building,647.4,27,38.7,54334.8,59962.2
1-5-2008,CEU2023622001,20236220,23622,Commercial building,643.7,27.06,38.7,54455.54,59593.62
1-6-2008,CEU2023622001,20236220,23622,Commercial building,639.5,27.3,38.8,55080.48,59676.16
1-7-2008,CEU2023622001,20236220,23622,Commercial building,642.1,27.31,38.7,54958.64,59233.13
1-8-2008,CEU2023622001,20236220,23622,Commercial building,640.6,27.43,38.9,55485.4,60040.51
1-9-2008,CEU2023622001,20236220,23622,Commercial building,632.9,27.57,38.7,55481.87,60119.83
1-10-2008,CEU2023622001,20236220,23622,Commercial building,628.2,27.75,38.6,55699.8,60971.88
1-11-2008,CEU2023622001,20236220,23622,Commercial building,621.8,27.87,38.2,55360.97,61784.33
1-12-2008,CEU2023622001,20236220,23622,Commercial building,618.6,27.95,38.3,55665.22,62773.11
1-1-2009,CEU2023622001,20236220,23622,Commercial building,607,28.08,38.1,55632.1,62463.88
1-2-2009,CEU2023622001,20236220,23622,Commercial building,591.9,28.08,38.6,56362.18,62970.47
1-3-2009,CEU2023622001,20236220,23622,Commercial building,579.6,28.34,38.5,56736.68,63235.12
1-4-2009,CEU2023622001,20236220,23622,Commercial building,567,28.3,38.3,56362.28,62661.41
1-5-2009,CEU2023622001,20236220,23622,Commercial building,566.8,28.1,38.4,56110.08,62201.33
1-6-2009,CEU2023622001,20236220,23622,Commercial building,554.9,28.35,38.6,56904.12,62544.33
1-7-2009,CEU2023622001,20236220,23622,Commercial building,548.8,28.62,38.5,57297.24,63076.42
1-8-2009,CEU2023622001,20236220,23622,Commercial building,540.9,28.71,38.7,57776,63461.14
1-9-2009,CEU2023622001,20236220,23622,Commercial building,534,28.77,38.1,56999.13,62568.69
1-10-2009,CEU2023622001,20236220,23622,Commercial building,526.9,28.85,38.4,57607.68,63175.86
1-11-2009,CEU2023622001,20236220,23622,Commercial building,520.1,28.81,38.5,57677.62,63207.83
1-12-2009,CEU2023622001,20236220,23622,Commercial building,512.3,28.87,38,57047.12,62627.17
1-1-2010,CEU2023622001,20236220,23622,Commercial building,505.3,28.83,38.8,58167.41,63639.55
1-2-2010,CEU2023622001,20236220,23622,Commercial building,497.7,29.11,37.8,57218.62,62585.91
1-3-2010,CEU2023622001,20236220,23622,Commercial building,503.1,28.88,38.5,57817.76,62982.63
1-4-2010,CEU2023622001,20236220,23622,Commercial building,506.5,28.9,38.5,57857.8,62916.96
1-5-2010,CEU2023622001,20236220,23622,Commercial building,503.3,29.09,38.3,57935.64,62952.81
1-6-2010,CEU2023622001,20236220,23622,Commercial building,503.9,29.1,38.1,57652.92,62706.83
1-7-2010,CEU2023622001,20236220,23622,Commercial building,501.8,28.95,38.1,57355.74,62370.43
1-8-2010,CEU2023622001,20236220,23622,Commercial building,502.7,29,38.3,57756.4,62719.52
1-9-2010,CEU2023622001,20236220,23622,Commercial building,499.2,29.04,38.6,58289.09,63261.19
1-10-2010,CEU2023622001,20236220,23622,Commercial building,498.2,29.17,38.2,57943.29,62807.69
1-11-2010,CEU2023622001,20236220,23622,Commercial building,500.4,29.14,38.4,58186.75,63045.07
1-12-2010,CEU2023622001,20236220,23622,Commercial building,499,29.39,38.2,58380.3,63146.25
1-1-2011,CEU2023622001,20236220,23622,Commercial building,496.5,29.31,37.8,57611.73,62019.54
1-2-2011,CEU2023622001,20236220,23622,Commercial building,494.4,29.33,38.2,58261.11,62410.83
1-3-2011,CEU2023622001,20236220,23622,Commercial building,501.5,29.41,38.2,58420.02,61976.72
1-4-2011,CEU2023622001,20236220,23622,Commercial building,501.9,29.51,38.1,58465.21,61627.81
1-5-2011,CEU2023622001,20236220,23622,Commercial building,503.4,29.38,38.3,58513.21,61389.61
1-6-2011,CEU2023622001,20236220,23622,Commercial building,504.8,29.52,38.2,58638.53,61587.05
1-7-2011,CEU2023622001,20236220,23622,Commercial building,505.7,29.55,38.3,58851.78,61756.32
1-8-2011,CEU2023622001,20236220,23622,Commercial building,509.1,29.6,38,58489.6,61207.47
1-9-2011,CEU2023622001,20236220,23622,Commercial building,513.4,29.68,38.2,58956.35,61602.37
1-10-2011,CEU2023622001,20236220,23622,Commercial building,510,29.74,38.5,59539.48,62340.26
1-11-2011,CEU2023622001,20236220,23622,Commercial building,506.3,29.79,38.3,59329.77,62173.13
1-12-2011,CEU2023622001,20236220,23622,Commercial building,501.7,29.75,38.6,59714.2,62730.71
1-1-2012,CEU2023622001,20236220,23622,Commercial building,505.4,29.9,38.7,60170.76,62933.42
1-2-2012,CEU2023622001,20236220,23622,Commercial building,504.1,29.88,38.6,59975.14,62453.83
1-3-2012,CEU2023622001,20236220,23622,Commercial building,502.7,29.95,38.4,59804.16,61806.39
1-4-2012,CEU2023622001,20236220,23622,Commercial building,504,29.92,38.6,60055.43,61879.13
1-5-2012,CEU2023622001,20236220,23622,Commercial building,504.3,29.93,38.5,59919.86,61811.98
1-6-2012,CEU2023622001,20236220,23622,Commercial building,505.2,29.79,38.7,59949.39,61933.27
1-7-2012,CEU2023622001,20236220,23622,Commercial building,504,29.7,38.7,59768.28,61846.96
1-8-2012,CEU2023622001,20236220,23622,Commercial building,506.2,29.8,38.7,59969.52,61711.76
1-9-2012,CEU2023622001,20236220,23622,Commercial building,506.5,29.86,38.8,60245.54,61720.39
1-10-2012,CEU2023622001,20236220,23622,Commercial building,509.3,29.8,38.9,60279.44,61779.15
1-11-2012,CEU2023622001,20236220,23622,Commercial building,511.1,29.87,39.1,60731.68,62538.96
1-12-2012,CEU2023622001,20236220,23622,Commercial building,513.2,29.83,39.1,60650.36,62623.86
1-1-2013,CEU2023622001,20236220,23622,Commercial building,514.9,29.94,38.9,60562.63,62348.9
1-2-2013,CEU2023622001,20236220,23622,Commercial building,517.1,29.97,39.1,60935,62222.64
1-3-2013,CEU2023622001,20236220,23622,Commercial building,518.2,29.95,38.8,60427.12,61543.13
1-4-2013,CEU2023622001,20236220,23622,Commercial building,516.1,29.97,38.7,60311.63,61489.43
1-5-2013,CEU2023622001,20236220,23622,Commercial building,517.5,30,38.9,60684,61759.12
1-6-2013,CEU2023622001,20236220,23622,Commercial building,517.9,30.05,38.8,60628.88,61555.3
1-7-2013,CEU2023622001,20236220,23622,Commercial building,519.8,30.19,38.5,60440.38,61339.76
1-8-2013,CEU2023622001,20236220,23622,Commercial building,517.7,30.12,38.9,60926.73,61759.05
1-9-2013,CEU2023622001,20236220,23622,Commercial building,521.3,30.12,39,61083.36,61845.89
1-10-2013,CEU2023622001,20236220,23622,Commercial building,521,30.11,38.8,60749.94,61667.12
1-11-2013,CEU2023622001,20236220,23622,Commercial building,524.1,30.13,39.1,61260.32,62312.47
1-12-2013,CEU2023622001,20236220,23622,Commercial building,522.4,30.46,39,61772.88,62839.23
1-1-2014,CEU2023622001,20236220,23622,Commercial building,527.3,30.57,39.1,62154.93,62993.52
1-2-2014,CEU2023622001,20236220,23622,Commercial building,526.1,30.91,38.6,62042.55,62647.96
1-3-2014,CEU2023622001,20236220,23622,Commercial building,527.9,30.93,39.2,63047.71,63255.56
1-3-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,982,22.34,41.4,48093.55,57065.24
1-4-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,983.8,22.51,42.4,49630.05,58391.54
1-5-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,982.9,22.52,41.1,48129.74,56346.74
1-6-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,976.4,22.82,41.5,49245.56,57539.39
1-7-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,979.4,22.63,41.8,49188.57,57303.35
1-8-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,980.8,22.7,41.4,48868.56,56818.86
1-9-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,988.5,22.88,40.8,48542.21,56717.59
1-10-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,993.1,23.09,41.6,49948.29,58678.6
1-11-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,995.8,22.82,41.1,48770.9,57380.72
1-12-2006,CEU2023700001,20237000,237,Heavy and civil engineering construction,999.6,22.72,42.4,50093.05,58848.66
1-1-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1010.1,22.67,41.5,48921.86,57297.86
1-2-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,991.1,22.64,41.1,48386.21,56368.9
1-3-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1006.9,22.67,41.5,48921.86,56478.65
1-4-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1010.1,22.92,40.8,48627.07,55776
1-5-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1008.1,23.01,41.4,49535.93,56473.38
1-6-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1011.4,23.18,40.8,49178.69,55957.66
1-7-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1006.9,23.49,40.9,49958.53,56859.46
1-8-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1002.5,23.42,41.2,50175.01,57210.76
1-9-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,999.2,23.46,41.3,50382.7,57289.69
1-10-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1002.9,23.41,41.1,50031.85,56769.3
1-11-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1008,23.41,41.6,50640.51,57120.65
1-12-2007,CEU2023700001,20237000,237,Heavy and civil engineering construction,1006.2,23.59,41.2,50539.21,57044.66
1-1-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,1000.8,23.72,41.7,51434.45,57768
1-2-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,1002.6,23.67,41.7,51326.03,57479.3
1-3-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,989.3,23.83,41.4,51301.22,56957.79
1-4-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,976,23.78,41.1,50822.62,56086.27
1-5-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,975.5,23.97,40.5,50480.82,55243.87
1-6-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,972.9,23.92,40.7,50624.29,54848.16
1-7-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,964.8,23.97,40.3,50231.53,54138.36
1-8-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,956.9,24.33,40.4,51112.46,55308.57
1-9-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,950.3,24.13,40,50190.4,54386.02
1-10-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,942.9,24.14,40.7,51089.89,55925.64
1-11-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,924.9,24.35,39.2,49635.04,55394.04
1-12-2008,CEU2023700001,20237000,237,Heavy and civil engineering construction,917.3,24.52,39.8,50746.59,57226.43
1-1-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,905.6,24.35,39.2,49635.04,55730.37
1-2-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,908.5,24.53,40.1,51149.96,57147.14
1-3-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,887.4,24.87,39.4,50953.66,56789.72
1-4-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,865.6,24.77,39,50233.56,55847.73
1-5-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,859.3,24.78,39.7,51155.83,56709.26
1-6-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,844.8,24.82,39.7,51238.41,56317.04
1-7-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,839.5,24.83,39.8,51388.17,56571.34
1-8-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,833.6,24.82,40.3,52012.79,57130.83
1-9-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,823.4,24.77,39.1,50362.36,55283.43
1-10-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,812.5,25.18,38.8,50803.17,55713.64
1-11-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,814.4,25.32,39.8,52402.27,57426.67
1-12-2009,CEU2023700001,20237000,237,Heavy and civil engineering construction,809.7,25.08,39.2,51123.07,56123.66
1-1-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,809.9,25.33,40,52686.4,57642.91
1-2-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,808.9,25.56,39.6,52633.15,57570.31
1-3-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,814.5,25.38,40.1,52922.38,57649.93
1-4-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,826.7,25.31,41.5,54618.98,59394.94
1-5-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,819.6,25.36,40.7,53671.9,58319.84
1-6-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,822.9,25.42,41,54195.44,58946.26
1-7-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,823.5,25.57,41,54515.24,59281.58
1-8-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,833.6,25.52,41.4,54939.46,59660.52
1-9-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,834.4,25.54,42.1,55912.17,60681.52
1-10-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,836.2,25.76,42.5,56929.6,61708.9
1-11-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,842.4,25.69,42.1,56240.55,60936.36
1-12-2010,CEU2023700001,20237000,237,Heavy and civil engineering construction,824.2,25.77,42,56281.68,60876.32
1-1-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,816.8,26,41.2,55702.4,59964.12
1-2-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,824.9,25.97,41.7,56313.35,60324.34
1-3-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,824.5,25.99,41.5,56086.42,59501.05
1-4-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,834.2,26.05,42.1,57028.66,60113.55
1-5-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,838.8,26.02,42.9,58045.41,60898.82
1-6-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,835,26.09,42.5,57658.9,60558.16
1-7-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,835.5,26.15,42.8,58199.44,61071.78
1-8-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,834.4,26.32,42.2,57756.61,60440.42
1-9-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,841.6,26.28,42.6,58215.46,60828.22
1-10-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,847.1,26.22,42,57264.48,59958.24
1-11-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,850.5,26.24,42.2,57581.05,60340.61
1-12-2011,CEU2023700001,20237000,237,Heavy and civil engineering construction,858.1,26.3,42.5,58123,61059.13
1-1-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,859.2,26.08,42.7,57908.03,60566.8
1-2-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,861.2,26.38,42.5,58299.8,60709.25
1-3-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,865.8,26.65,43.1,59727.98,61727.66
1-4-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,873.7,26.39,43.4,59556.95,61365.52
1-5-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,858.8,26.42,42.7,58662.97,60515.4
1-6-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,857.8,26.44,42.9,58982.35,60934.23
1-7-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,869.4,26.66,42.4,58779.97,60824.27
1-8-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,874.1,26.43,43,59097.48,60814.39
1-9-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,873.3,26.51,43.1,59414.21,60868.71
1-10-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,874.8,26.49,43.3,59644.88,61128.81
1-11-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,874.8,26.53,43.2,59596.99,61370.5
1-12-2012,CEU2023700001,20237000,237,Heavy and civil engineering construction,877.2,26.6,43.6,60307.52,62269.87
1-1-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,880,26.64,42.9,59428.51,61181.33
1-2-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,889.8,26.78,43.3,60297.85,61572.02
1-3-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,882.1,26.52,43.1,59436.63,60534.34
1-4-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,879.9,26.69,42.6,59123.69,60278.29
1-5-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,882.1,26.74,43.1,59929.69,60991.44
1-6-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,887.4,26.79,42.6,59345.21,60252.02
1-7-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,884.7,26.74,42.7,59373.5,60257
1-8-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,887.3,26.86,43,60058.96,60879.43
1-9-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,889.3,26.91,43.2,60450.63,61205.26
1-10-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,889.7,26.92,43,60193.12,61101.89
1-11-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,889.8,26.83,43.1,60131.39,61164.16
1-12-2013,CEU2023700001,20237000,237,Heavy and civil engineering construction,880,27.02,41.9,58871.18,59887.44
1-1-2014,CEU2023700001,20237000,237,Heavy and civil engineering construction,890,26.99,42.3,59367.2,60168.18
1-2-2014,CEU2023700001,20237000,237,Heavy and civil engineering construction,902.4,27.22,42.4,60014.66,60600.28
1-3-2014,CEU2023700001,20237000,237,Heavy and civil engineering construction,904.3,27.26,43.4,61520.37,61723.18
1-3-2006,CEU2023710001,20237100,2371,Utility system construction,423.2,21.2,42.7,47072.48,55853.69
1-4-2006,CEU2023710001,20237100,2371,Utility system construction,429.5,21.37,43.8,48672.31,57264.73
1-5-2006,CEU2023710001,20237100,2371,Utility system construction,429.2,21.63,42.5,47802.3,55963.39
1-6-2006,CEU2023710001,20237100,2371,Utility system construction,426.8,21.87,42.9,48787.6,57004.3
1-7-2006,CEU2023710001,20237100,2371,Utility system construction,430.2,21.99,43.1,49283.99,57414.52
1-8-2006,CEU2023710001,20237100,2371,Utility system construction,431.3,21.99,42.7,48826.6,56770.08
1-9-2006,CEU2023710001,20237100,2371,Utility system construction,437.3,22.18,42.3,48787.13,57003.76
1-10-2006,CEU2023710001,20237100,2371,Utility system construction,434.6,22.34,42.8,49719.9,58410.29
1-11-2006,CEU2023710001,20237100,2371,Utility system construction,436,22.3,41.6,48239.36,56755.34
1-12-2006,CEU2023710001,20237100,2371,Utility system construction,439.5,22.21,43.3,50008.04,58748.79
1-1-2007,CEU2023710001,20237100,2371,Utility system construction,442.4,22.42,42.3,49315.03,57758.34
1-2-2007,CEU2023710001,20237100,2371,Utility system construction,443.4,22.3,42.2,48935.12,57008.38
1-3-2007,CEU2023710001,20237100,2371,Utility system construction,448.5,22.3,42.6,49398.96,57029.45
1-4-2007,CEU2023710001,20237100,2371,Utility system construction,452.3,22.58,41.8,49079.89,56295.38
1-5-2007,CEU2023710001,20237100,2371,Utility system construction,454.2,22.61,41.8,49145.1,56027.81
1-6-2007,CEU2023710001,20237100,2371,Utility system construction,457.3,22.92,41.4,49342.18,56143.68
1-7-2007,CEU2023710001,20237100,2371,Utility system construction,454.4,22.94,41.6,49623.81,56478.5
1-8-2007,CEU2023710001,20237100,2371,Utility system construction,453,23.07,41.7,50024.99,57039.7
1-9-2007,CEU2023710001,20237100,2371,Utility system construction,452.2,23.12,41.9,50373.86,57279.64
1-10-2007,CEU2023710001,20237100,2371,Utility system construction,454.5,22.94,41.8,49862.38,56577.01
1-11-2007,CEU2023710001,20237100,2371,Utility system construction,459.6,22.96,42.2,50383.43,56830.67
1-12-2007,CEU2023710001,20237100,2371,Utility system construction,461.3,23.22,42.2,50953.97,57512.8
1-1-2008,CEU2023710001,20237100,2371,Utility system construction,460.5,23.17,42.4,51085.21,57375.75
1-2-2008,CEU2023710001,20237100,2371,Utility system construction,465,23.1,42,50450.4,56498.69
1-3-2008,CEU2023710001,20237100,2371,Utility system construction,458,23.39,41.8,50840.5,56446.27
1-4-2008,CEU2023710001,20237100,2371,Utility system construction,447.4,23.36,41.6,50532.35,55765.94
1-5-2008,CEU2023710001,20237100,2371,Utility system construction,450.3,23.64,41.1,50523.41,55290.47
1-6-2008,CEU2023710001,20237100,2371,Utility system construction,451.1,23.49,41.2,50324.98,54523.88
1-7-2008,CEU2023710001,20237100,2371,Utility system construction,449.7,23.6,40.9,50192.48,54096.27
1-8-2008,CEU2023710001,20237100,2371,Utility system construction,447.4,23.9,41,50954.8,55137.97
1-9-2008,CEU2023710001,20237100,2371,Utility system construction,444.2,23.93,41.2,51267.63,55553.31
1-10-2008,CEU2023710001,20237100,2371,Utility system construction,440.4,23.88,40.6,50415.46,55187.37
1-11-2008,CEU2023710001,20237100,2371,Utility system construction,433.2,24.16,39.5,49624.64,55382.43
1-12-2008,CEU2023710001,20237100,2371,Utility system construction,427.2,24.55,39.7,50681.02,57152.48
1-1-2009,CEU2023710001,20237100,2371,Utility system construction,423.3,24.17,39.3,49393.81,55459.52
1-2-2009,CEU2023710001,20237100,2371,Utility system construction,421.9,24.41,39.8,50518.94,56442.13
1-3-2009,CEU2023710001,20237100,2371,Utility system construction,413.7,24.58,39.1,49976.05,55700.15
1-4-2009,CEU2023710001,20237100,2371,Utility system construction,404.7,24.54,39.2,50022.34,55612.91
1-5-2009,CEU2023710001,20237100,2371,Utility system construction,400.9,24.45,39.8,50601.72,56094.99
1-6-2009,CEU2023710001,20237100,2371,Utility system construction,395,24.38,40,50710.4,55736.7
1-7-2009,CEU2023710001,20237100,2371,Utility system construction,392.1,24.32,40,50585.6,55687.83
1-8-2009,CEU2023710001,20237100,2371,Utility system construction,391,24.38,40.5,51344.28,56396.54
1-9-2009,CEU2023710001,20237100,2371,Utility system construction,386.3,24.37,39.4,49929.26,54808
1-10-2009,CEU2023710001,20237100,2371,Utility system construction,381.5,24.82,39.3,50722.15,55624.8
1-11-2009,CEU2023710001,20237100,2371,Utility system construction,380.4,24.93,39.9,51724.77,56684.21
1-12-2009,CEU2023710001,20237100,2371,Utility system construction,378.6,24.91,39.4,51035.61,56027.65
1-1-2010,CEU2023710001,20237100,2371,Utility system construction,377.9,25.23,40.1,52609.6,57558.89
1-2-2010,CEU2023710001,20237100,2371,Utility system construction,375.7,25.24,40,52499.2,57423.79
1-3-2010,CEU2023710001,20237100,2371,Utility system construction,378.8,25.17,40.4,52877.14,57600.66
1-4-2010,CEU2023710001,20237100,2371,Utility system construction,385.9,25.12,41.5,54208.96,58949.06
1-5-2010,CEU2023710001,20237100,2371,Utility system construction,386.7,25.28,40.7,53502.59,58135.86
1-6-2010,CEU2023710001,20237100,2371,Utility system construction,387.2,25.49,41,54344.68,59108.58
1-7-2010,CEU2023710001,20237100,2371,Utility system construction,389.7,25.65,41.1,54819.18,59612.09
1-8-2010,CEU2023710001,20237100,2371,Utility system construction,391,25.59,41.3,54957.09,59679.66
1-9-2010,CEU2023710001,20237100,2371,Utility system construction,395.2,25.61,42.5,56598.1,61425.96
1-10-2010,CEU2023710001,20237100,2371,Utility system construction,398.6,26.06,42.2,57186.06,61986.89
1-11-2010,CEU2023710001,20237100,2371,Utility system construction,404.3,25.96,42.3,57101.62,61869.32
1-12-2010,CEU2023710001,20237100,2371,Utility system construction,399,25.95,42.6,57484.44,62177.27
1-1-2011,CEU2023710001,20237100,2371,Utility system construction,393.8,26.09,42.2,57251.89,61632.16
1-2-2011,CEU2023710001,20237100,2371,Utility system construction,393.4,26.09,42.2,57251.89,61329.73
1-3-2011,CEU2023710001,20237100,2371,Utility system construction,397.6,26.23,42,57286.32,60774
1-4-2011,CEU2023710001,20237100,2371,Utility system construction,403.4,26.26,42.9,58580.81,61749.66
1-5-2011,CEU2023710001,20237100,2371,Utility system construction,408.2,26.18,43.6,59355.3,62273.1
1-6-2011,CEU2023710001,20237100,2371,Utility system construction,411,26.27,43.6,59559.34,62554.17
1-7-2011,CEU2023710001,20237100,2371,Utility system construction,408.1,26.3,43.4,59353.84,62283.15
1-8-2011,CEU2023710001,20237100,2371,Utility system construction,408.1,26.67,43.3,60050.17,62840.55
1-9-2011,CEU2023710001,20237100,2371,Utility system construction,410,26.4,43.2,59304.96,61966.63
1-10-2011,CEU2023710001,20237100,2371,Utility system construction,413.9,25.98,42.9,57956.18,60682.48
1-11-2011,CEU2023710001,20237100,2371,Utility system construction,416.4,26.09,43.4,58879.91,61701.71
1-12-2011,CEU2023710001,20237100,2371,Utility system construction,417.9,26.25,43.3,59104.5,62090.21
1-1-2012,CEU2023710001,20237100,2371,Utility system construction,419.8,26.03,44.1,59692,62432.67
1-2-2012,CEU2023710001,20237100,2371,Utility system construction,421.7,26.3,43.9,60037.64,62518.92
1-3-2012,CEU2023710001,20237100,2371,Utility system construction,425.2,27.02,44.4,62383.78,64472.38
1-4-2012,CEU2023710001,20237100,2371,Utility system construction,429.7,26.56,44.6,61597.95,63468.5
1-5-2012,CEU2023710001,20237100,2371,Utility system construction,425.8,26.61,44.4,61437.17,63377.21
1-6-2012,CEU2023710001,20237100,2371,Utility system construction,427.4,26.33,44.2,60516.87,62519.53
1-7-2012,CEU2023710001,20237100,2371,Utility system construction,433.3,26.47,44.1,60701,62812.12
1-8-2012,CEU2023710001,20237100,2371,Utility system construction,435.6,26.31,44.8,61291.78,63072.43
1-9-2012,CEU2023710001,20237100,2371,Utility system construction,435.8,26.38,44.5,61043.32,62537.7
1-10-2012,CEU2023710001,20237100,2371,Utility system construction,438.6,26.18,45,61261.2,62785.34
1-11-2012,CEU2023710001,20237100,2371,Utility system construction,438.2,26.28,45,61495.2,63325.2
1-12-2012,CEU2023710001,20237100,2371,Utility system construction,439.5,26.29,45,61518.6,63520.36
1-1-2013,CEU2023710001,20237100,2371,Utility system construction,441.3,26.26,44.3,60492.54,62276.73
1-2-2013,CEU2023710001,20237100,2371,Utility system construction,448,26.5,45,62010,63320.36
1-3-2013,CEU2023710001,20237100,2371,Utility system construction,445.8,26.18,44.6,60716.66,61838.01
1-4-2013,CEU2023710001,20237100,2371,Utility system construction,444.5,26.25,44.1,60196.5,61372.05
1-5-2013,CEU2023710001,20237100,2371,Utility system construction,443.7,26.22,44.3,60400.39,61470.48
1-6-2013,CEU2023710001,20237100,2371,Utility system construction,444.5,26.59,43.8,60561.38,61486.78
1-7-2013,CEU2023710001,20237100,2371,Utility system construction,442.1,26.47,43.8,60288.07,61185.18
1-8-2013,CEU2023710001,20237100,2371,Utility system construction,442.9,26.59,43.9,60699.65,61528.87
1-9-2013,CEU2023710001,20237100,2371,Utility system construction,443.4,26.63,44.3,61344.87,62110.66
1-10-2013,CEU2023710001,20237100,2371,Utility system construction,441.4,26.75,43.8,60925.8,61845.64
1-11-2013,CEU2023710001,20237100,2371,Utility system construction,440.6,26.7,43.9,60950.76,61997.6
1-12-2013,CEU2023710001,20237100,2371,Utility system construction,439.6,26.91,43.3,60590.55,61636.5
1-1-2014,CEU2023710001,20237100,2371,Utility system construction,440.4,26.99,43.4,60911.03,61732.84
1-2-2014,CEU2023710001,20237100,2371,Utility system construction,444,27.23,43.3,61311.07,61909.34
1-3-2014,CEU2023710001,20237100,2371,Utility system construction,445.5,27.27,44.2,62677.37,62884
1-3-2006,CEU2023711001,20237110,23711,Water and sewer system construction,207.2,20.82,40.5,43846.92,52026.41
1-4-2006,CEU2023711001,20237110,23711,Water and sewer system construction,209.9,20.96,42.8,46648.57,54883.73
1-5-2006,CEU2023711001,20237110,23711,Water and sewer system construction,209.2,21.1,41,44985.2,52665.34
1-6-2006,CEU2023711001,20237110,23711,Water and sewer system construction,210.5,21.76,41.6,47071.23,54998.87
1-7-2006,CEU2023711001,20237110,23711,Water and sewer system construction,210.8,21.6,41.4,46500.48,54171.8
1-8-2006,CEU2023711001,20237110,23711,Water and sewer system construction,211.1,21.62,41.1,46206.27,53723.45
1-9-2006,CEU2023711001,20237110,23711,Water and sewer system construction,212.3,21.55,40.8,45720.48,53420.63
1-10-2006,CEU2023711001,20237110,23711,Water and sewer system construction,211,21.63,41,46115.16,54175.49
1-11-2006,CEU2023711001,20237110,23711,Water and sewer system construction,212,21.57,39.9,44753.44,52654.03
1-12-2006,CEU2023711001,20237110,23711,Water and sewer system construction,211.6,21.29,41.8,46275.95,54364.38
1-1-2007,CEU2023711001,20237110,23711,Water and sewer system construction,215.1,21.65,40.7,45820.06,53664.99
1-2-2007,CEU2023711001,20237110,23711,Water and sewer system construction,208.5,21.59,39.9,44794.93,52185.14
1-3-2007,CEU2023711001,20237110,23711,Water and sewer system construction,211.3,21.69,40.5,45679.14,52735.04
1-4-2007,CEU2023711001,20237110,23711,Water and sewer system construction,213.6,22.04,40.2,46072.41,52845.77
1-5-2007,CEU2023711001,20237110,23711,Water and sewer system construction,216.7,22.34,40.6,47164.21,53769.5
1-6-2007,CEU2023711001,20237110,23711,Water and sewer system construction,213.1,22.73,39.6,46805.62,53257.47
1-7-2007,CEU2023711001,20237110,23711,Water and sewer system construction,212.7,22.32,40,46425.6,52838.52
1-8-2007,CEU2023711001,20237110,23711,Water and sewer system construction,205.7,22.47,40.3,47088.13,53691.03
1-9-2007,CEU2023711001,20237110,23711,Water and sewer system construction,206.2,22.63,40.5,47658.78,54192.35
1-10-2007,CEU2023711001,20237110,23711,Water and sewer system construction,204.5,22.47,40.5,47321.82,53694.33
1-11-2007,CEU2023711001,20237110,23711,Water and sewer system construction,202.6,22.5,41.3,48321,54504.33
1-12-2007,CEU2023711001,20237110,23711,Water and sewer system construction,202.5,22.61,40.8,47969.38,54144.03
1-1-2008,CEU2023711001,20237110,23711,Water and sewer system construction,200.6,22.3,40.6,47079.76,52877.08
1-2-2008,CEU2023711001,20237110,23711,Water and sewer system construction,200.1,22.84,40.5,48101.04,53867.68
1-3-2008,CEU2023711001,20237110,23711,Water and sewer system construction,200.1,23.17,40.3,48555.05,53908.82
1-4-2008,CEU2023711001,20237110,23711,Water and sewer system construction,196.4,23.4,39.9,48550.32,53578.63
1-5-2008,CEU2023711001,20237110,23711,Water and sewer system construction,195.4,23.67,39.4,48495.1,53070.78
1-6-2008,CEU2023711001,20237110,23711,Water and sewer system construction,192.6,23.69,39.5,48659.26,52719.18
1-7-2008,CEU2023711001,20237110,23711,Water and sewer system construction,191.4,24.02,39.3,49087.27,52905.1
1-8-2008,CEU2023711001,20237110,23711,Water and sewer system construction,192.6,24.3,39,49280.4,53326.1
1-9-2008,CEU2023711001,20237110,23711,Water and sewer system construction,193,24.37,38.6,48915.46,53004.52
1-10-2008,CEU2023711001,20237110,23711,Water and sewer system construction,187.8,24.57,39.3,50211.25,54963.84
1-11-2008,CEU2023711001,20237110,23711,Water and sewer system construction,182.3,24.98,37.5,48711,54362.79
1-12-2008,CEU2023711001,20237110,23711,Water and sewer system construction,181.7,25.35,38.1,50223.42,56636.45
1-1-2009,CEU2023711001,20237110,23711,Water and sewer system construction,180.5,25.28,37.9,49821.82,55940.09
1-2-2009,CEU2023711001,20237110,23711,Water and sewer system construction,177.2,25.6,38.8,51650.56,57706.43
1-3-2009,CEU2023711001,20237110,23711,Water and sewer system construction,171.6,25.54,38.5,51131.08,56987.46
1-4-2009,CEU2023711001,20237110,23711,Water and sewer system construction,164.7,25.52,38.1,50560.22,56210.91
1-5-2009,CEU2023711001,20237110,23711,Water and sewer system construction,164.4,25.51,38.7,51336.32,56909.34
1-6-2009,CEU2023711001,20237110,23711,Water and sewer system construction,162,25.66,38.4,51237.89,56316.47
1-7-2009,CEU2023711001,20237110,23711,Water and sewer system construction,161.4,25.32,38.5,50690.64,55803.46
1-8-2009,CEU2023711001,20237110,23711,Water and sewer system construction,159.7,25.58,38.7,51477.19,56542.53
1-9-2009,CEU2023711001,20237110,23711,Water and sewer system construction,157.8,25.52,37.7,50029.41,54917.93
1-10-2009,CEU2023711001,20237110,23711,Water and sewer system construction,156.5,26.1,37.3,50623.56,55516.68
1-11-2009,CEU2023711001,20237110,23711,Water and sewer system construction,157.9,26.08,37.7,51127.23,56029.38
1-12-2009,CEU2023711001,20237110,23711,Water and sewer system construction,153.7,26.09,37.6,51011.17,56000.82
1-1-2010,CEU2023711001,20237110,23711,Water and sewer system construction,152.7,26.24,38.1,51986.69,56877.38
1-2-2010,CEU2023711001,20237110,23711,Water and sewer system construction,150.6,26.14,36.8,50021.5,54713.68
1-3-2010,CEU2023711001,20237110,23711,Water and sewer system construction,155.8,26.26,38,51889.76,56525.08
1-4-2010,CEU2023711001,20237110,23711,Water and sewer system construction,158,25.82,39.8,53437.07,58109.68
1-5-2010,CEU2023711001,20237110,23711,Water and sewer system construction,158.6,25.71,38.8,51872.5,56364.6
1-6-2010,CEU2023711001,20237110,23711,Water and sewer system construction,158.5,25.86,39.2,52713.02,57333.89
1-7-2010,CEU2023711001,20237110,23711,Water and sewer system construction,158.4,26.04,39,52809.12,57426.29
1-8-2010,CEU2023711001,20237110,23711,Water and sewer system construction,158,25.99,39.1,52842.87,57383.76
1-9-2010,CEU2023711001,20237110,23711,Water and sewer system construction,157.3,26.3,39.9,54567.24,59221.86
1-10-2010,CEU2023711001,20237110,23711,Water and sewer system construction,158.1,26.69,40.1,55653.99,60326.2
1-11-2010,CEU2023711001,20237110,23711,Water and sewer system construction,157.9,26.34,39.7,54376.3,58916.45
1-12-2010,CEU2023711001,20237110,23711,Water and sewer system construction,155.1,26.15,40.1,54527.98,58979.45
1-1-2011,CEU2023711001,20237110,23711,Water and sewer system construction,148.2,26.13,38.8,52719.89,56753.42
1-2-2011,CEU2023711001,20237110,23711,Water and sewer system construction,149.9,26.03,39.6,53600.98,57418.77
1-3-2011,CEU2023711001,20237110,23711,Water and sewer system construction,151.2,26.01,39,52748.28,55959.68
1-4-2011,CEU2023711001,20237110,23711,Water and sewer system construction,151.1,26.12,39.6,53786.3,56695.8
1-5-2011,CEU2023711001,20237110,23711,Water and sewer system construction,151.4,25.94,39.8,53685.43,56324.5
1-6-2011,CEU2023711001,20237110,23711,Water and sewer system construction,151.3,25.7,39.9,53322.36,56003.57
1-7-2011,CEU2023711001,20237110,23711,Water and sewer system construction,150.4,25.83,40,53726.4,56377.98
1-8-2011,CEU2023711001,20237110,23711,Water and sewer system construction,150.8,25.73,39.9,53384.61,55865.26
1-9-2011,CEU2023711001,20237110,23711,Water and sewer system construction,152.5,25.46,40.1,53089.19,55471.89
1-10-2011,CEU2023711001,20237110,23711,Water and sewer system construction,154.5,25.1,39.8,51946.96,54390.58
1-11-2011,CEU2023711001,20237110,23711,Water and sewer system construction,153.7,24.93,40.8,52891.49,55426.29
1-12-2011,CEU2023711001,20237110,23711,Water and sewer system construction,156.4,24.92,40.2,52092.77,54724.28
1-1-2012,CEU2023711001,20237110,23711,Water and sewer system construction,152.7,24.71,41.1,52810.21,55234.92
1-2-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151.7,24.68,40.7,52232.75,54391.46
1-3-2012,CEU2023711001,20237110,23711,Water and sewer system construction,152.1,24.69,40.9,52510.69,54268.74
1-4-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151.8,24.64,41.1,52660.61,54259.75
1-5-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151.3,24.61,40.5,51828.66,53465.29
1-6-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151.4,24.52,40.8,52021.63,53743.16
1-7-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151.8,24.42,40.8,51809.47,53611.35
1-8-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151.5,24.27,41.2,51996.05,53506.64
1-9-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151.7,24.33,41.5,52504.14,53789.48
1-10-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151,24.05,42.2,52775.32,54088.34
1-11-2012,CEU2023711001,20237110,23711,Water and sewer system construction,151.4,23.95,41.6,51808.64,53350.38
1-12-2012,CEU2023711001,20237110,23711,Water and sewer system construction,152.8,23.96,42.1,52453.23,54160.01
1-1-2013,CEU2023711001,20237110,23711,Water and sewer system construction,154.5,24.11,41.6,52154.75,53693.04
1-2-2013,CEU2023711001,20237110,23711,Water and sewer system construction,154.7,24.13,41.5,52072.54,53172.91
1-3-2013,CEU2023711001,20237110,23711,Water and sewer system construction,153.7,24.05,42.6,53275.56,54259.48
1-4-2013,CEU2023711001,20237110,23711,Water and sewer system construction,152.9,24.07,41.5,51943.06,52957.43
1-5-2013,CEU2023711001,20237110,23711,Water and sewer system construction,152.9,23.99,42.2,52643.66,53576.32
1-6-2013,CEU2023711001,20237110,23711,Water and sewer system construction,152.9,24.42,40.9,51936.46,52730.06
1-7-2013,CEU2023711001,20237110,23711,Water and sewer system construction,152.3,24.01,41.4,51688.73,52457.88
1-8-2013,CEU2023711001,20237110,23711,Water and sewer system construction,151.8,24.05,41.3,51649.78,52355.37
1-9-2013,CEU2023711001,20237110,23711,Water and sewer system construction,151,23.94,41.4,51538.03,52181.41
1-10-2013,CEU2023711001,20237110,23711,Water and sewer system construction,151.7,24.13,40.5,50817.78,51585.01
1-11-2013,CEU2023711001,20237110,23711,Water and sewer system construction,152.9,23.99,41.7,52019.91,52913.37
1-12-2013,CEU2023711001,20237110,23711,Water and sewer system construction,150.2,24.31,40.5,51196.86,52080.64
1-1-2014,CEU2023711001,20237110,23711,Water and sewer system construction,153.1,24.32,40.4,51091.46,51780.78
1-2-2014,CEU2023711001,20237110,23711,Water and sewer system construction,153.5,24.64,39.7,50866.82,51363.18
1-3-2014,CEU2023711001,20237110,23711,Water and sewer system construction,154.7,24.42,40.6,51555.5,51725.47
1-3-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,80.6,21.87,47,53450.28,63421.25
1-4-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,82.3,21.48,47.5,53055.6,62421.82
1-5-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,84.4,22.12,48.5,55786.64,65310.87
1-6-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,82.9,22.4,48.1,56026.88,65462.81
1-7-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,86.9,22.7,51.4,60672.56,70681.89
1-8-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,84.1,22.82,47.4,56246.73,65397.38
1-9-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,88.9,23.5,47.2,57678.4,67392.48
1-10-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,88.2,23.77,47.4,58588.3,68828.77
1-11-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,89.6,23.57,46.8,57359.95,67486.05
1-12-2006,CEU2023712001,20237120,23712,Oil and gas pipeline construction,91.4,23.43,47.6,57993.94,68130.52
1-1-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,89.7,23.72,45.3,55874.83,65441.26
1-2-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,92.1,23.63,47,57751.72,67279.52
1-3-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,93.9,23.95,47.6,59281.04,68437.98
1-4-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,96.3,24.14,45.2,56738.66,65080.11
1-5-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,96.1,23.54,44.5,54471.56,62100.23
1-6-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,100.7,24.24,42.9,54074.59,61528.43
1-7-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,99.4,24.34,44.9,56829.03,64679
1-8-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,102.6,24.36,44.4,56242.37,64128.91
1-9-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,103,24.19,44.4,55849.87,63506.36
1-10-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,103.9,23.55,44.7,54739.62,62111.04
1-11-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,106.8,23.59,44.9,55077.93,62125.9
1-12-2007,CEU2023712001,20237120,23712,Oil and gas pipeline construction,108.3,23.84,45.4,56281.47,63526.07
1-1-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,110.1,23.6,45.1,55346.72,62162.01
1-2-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,110.7,23.65,44.7,54972.06,61562.43
1-3-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,109.8,23.62,45.5,55884.92,62046.9
1-4-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,105.6,23.67,45.5,56003.22,61803.42
1-5-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,109.5,23.89,45.2,56151.05,61449.11
1-6-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,109,23.66,45.7,56225.63,60916.86
1-7-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,109.1,23,44.5,53222,57361.41
1-8-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,107.8,23.99,45.6,56885.09,61555.11
1-9-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,106.2,24.12,45.6,57193.34,61974.38
1-10-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,110.3,24.23,44.7,56320.21,61651.02
1-11-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,112.2,24.72,43.8,56302.27,62834.85
1-12-2008,CEU2023712001,20237120,23712,Oil and gas pipeline construction,108.6,25.06,42.5,55382.6,62454.4
1-1-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,108.9,24.29,42.8,54059.82,60698.53
1-2-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,108,24.54,42.2,53850.57,60164.39
1-3-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,106.9,24.76,41.6,53560.83,59695.52
1-4-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,104,24.58,42,53682.72,59682.38
1-5-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,103.7,24.49,41.6,52976.77,58727.88
1-6-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,98.4,23.74,42.2,52095.05,57258.6
1-7-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,101.7,23.39,42.1,51205.39,56370.13
1-8-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,100.3,23.58,44,53951.04,59259.8
1-9-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,98.4,23.19,42,50646.96,55595.83
1-10-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,94,23.68,42.2,51963.39,56986.01
1-11-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,92.4,23.71,42.7,52645.68,57693.42
1-12-2009,CEU2023712001,20237120,23712,Oil and gas pipeline construction,92,23.57,42.7,52334.83,57453.95
1-1-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,92,24.17,43.1,54169.8,59265.87
1-2-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,91.8,24.14,45.7,57366.3,62747.44
1-3-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,89.8,23.97,44.8,55840.51,60828.75
1-4-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,90.9,24.14,44,55232.32,60061.91
1-5-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,89.1,23.9,44.1,54807.48,59553.75
1-6-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,90.1,24.74,43.6,56090.53,61007.47
1-7-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,90.3,24.63,44.3,56737.67,61698.32
1-8-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,93.8,24.25,44.4,55988.4,60799.59
1-9-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,95.3,24.35,46.2,58498.44,63488.4
1-10-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,98.5,25,46,59800,64820.27
1-11-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,103.7,25.12,46.8,61132.03,66236.26
1-12-2010,CEU2023712001,20237120,23712,Oil and gas pipeline construction,103.4,25.04,48.2,62760.26,67883.78
1-1-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,103.2,25.24,48.8,64049.02,68949.34
1-2-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,100.4,25.17,46.8,61253.71,65616.59
1-3-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,103.3,24.98,47.2,61310.91,65043.61
1-4-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,108.5,24.89,48.1,62254.87,65622.46
1-5-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,113.5,25.44,48.7,64424.26,67591.24
1-6-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,116.4,26.02,49,66298.96,69632.68
1-7-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,116,25.82,49.1,65923.63,69177.18
1-8-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,115.5,26.62,48.7,67412.48,70544.98
1-9-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,115.9,26.08,47.8,64824.45,67733.84
1-10-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,116.4,25.65,48.4,64555.92,67592.68
1-11-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,116,25.24,48.3,63392.79,66430.86
1-12-2011,CEU2023712001,20237120,23712,Oil and gas pipeline construction,115.4,25.68,47.9,63963.74,67194.92
1-1-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,117.7,25.57,49,65152.36,68143.73
1-2-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,119,26,48.4,65436.8,68141.22
1-3-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,122.9,26.93,50,70018,72362.19
1-4-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,125.5,26.85,49.6,69251.52,71354.48
1-5-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,126.1,26.81,50.2,69984.82,72194.77
1-6-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,125.9,26.58,49.2,68002.27,70252.64
1-7-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,128.9,27.06,47.6,66978.91,69308.37
1-8-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,129.5,27.18,49.8,70385.33,72430.17
1-9-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,130.8,27.28,48.4,68658.3,70339.11
1-10-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,132.5,27.39,49,69789.72,71526.04
1-11-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,132.6,27.32,49.7,70605.8,72706.91
1-12-2012,CEU2023712001,20237120,23712,Oil and gas pipeline construction,132.8,27.56,49.4,70796.13,73099.76
1-1-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,130.3,27.51,48.5,69380.22,71426.55
1-2-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,133.6,27.83,50.3,72792.15,74330.35
1-3-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,133.5,27.03,48.8,68591.33,69858.12
1-4-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,133.9,27.23,49.2,69665.23,71025.7
1-5-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,133.9,27.01,49.1,68961.93,70183.7
1-6-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,134.6,27.2,48.4,68456.96,69503
1-7-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,132.7,27.75,48.9,70562.7,71612.7
1-8-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,133.3,27.6,48.5,69607.2,70558.11
1-9-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,133.2,27.7,49.5,71299.8,72189.87
1-10-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,132.7,27.55,49.1,70340.66,71402.63
1-11-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,128.8,27.82,48.1,69583.38,70778.49
1-12-2013,CEU2023712001,20237120,23712,Oil and gas pipeline construction,132.6,27.95,47.6,69181.84,70376.09
1-1-2014,CEU2023712001,20237120,23712,Oil and gas pipeline construction,132.1,28,47.9,69742.4,70683.36
1-2-2014,CEU2023712001,20237120,23712,Oil and gas pipeline construction,134.4,28.42,48.7,71970.8,72673.09
1-3-2014,CEU2023712001,20237120,23712,Oil and gas pipeline construction,135.2,28.55,49.1,72893.86,73134.17
1-3-2006,CEU2023713001,20237130,23713,Power and communication system construction,135.8,21.14,43.1,47378.97,56217.35
1-4-2006,CEU2023713001,20237130,23713,Power and communication system construction,137.5,22.09,42.8,49163.5,57842.63
1-5-2006,CEU2023713001,20237130,23713,Power and communication system construction,135.7,22.15,41.2,47454.16,55555.82
1-6-2006,CEU2023713001,20237130,23713,Power and communication system construction,133.4,22.18,41,47287.76,55251.87
1-7-2006,CEU2023713001,20237130,23713,Power and communication system construction,131.8,21.95,40.9,46683.26,54384.74
1-8-2006,CEU2023713001,20237130,23713,Power and communication system construction,134.7,22.03,41.6,47655.3,55408.22
1-9-2006,CEU2023713001,20237130,23713,Power and communication system construction,136.4,22.28,41.2,47732.67,55771.71
1-10-2006,CEU2023713001,20237130,23713,Power and communication system construction,136.2,22.35,42.4,49277.28,57890.3
1-11-2006,CEU2023713001,20237130,23713,Power and communication system construction,135.6,22.44,41.8,48775.59,57386.23
1-12-2006,CEU2023713001,20237130,23713,Power and communication system construction,137,22.37,42.7,49670.35,58352.07
1-1-2007,CEU2023713001,20237130,23713,Power and communication system construction,139,22.51,42.3,49513,57990.2
1-2-2007,CEU2023713001,20237130,23713,Power and communication system construction,140.4,22.24,42.3,48919.11,56989.72
1-3-2007,CEU2023713001,20237130,23713,Power and communication system construction,143.8,21.79,42.3,47929.29,55332.75
1-4-2007,CEU2023713001,20237130,23713,Power and communication system construction,143.7,22.41,42,48943.44,56138.88
1-5-2007,CEU2023713001,20237130,23713,Power and communication system construction,141.4,22.44,42,49008.96,55872.61
1-6-2007,CEU2023713001,20237130,23713,Power and communication system construction,142.4,22.66,42.3,49842.94,56713.47
1-7-2007,CEU2023713001,20237130,23713,Power and communication system construction,141.8,22.71,42.1,49716.73,56584.26
1-8-2007,CEU2023713001,20237130,23713,Power and communication system construction,143.8,22.97,41.6,49688.7,56656.26
1-9-2007,CEU2023713001,20237130,23713,Power and communication system construction,143.3,22.96,41.7,49786.46,56611.72
1-10-2007,CEU2023713001,20237130,23713,Power and communication system construction,145.4,23.1,41.3,49609.56,56290.14
1-11-2007,CEU2023713001,20237130,23713,Power and communication system construction,148.7,23.16,42.2,50822.3,57325.71
1-12-2007,CEU2023713001,20237130,23713,Power and communication system construction,150.3,23.26,41.6,50316.03,56792.75
1-1-2008,CEU2023713001,20237130,23713,Power and communication system construction,151.5,23.79,42.4,52452.19,58911.06
1-2-2008,CEU2023713001,20237130,23713,Power and communication system construction,152.5,22.97,41.6,49688.7,55645.68
1-3-2008,CEU2023713001,20237130,23713,Power and communication system construction,149.5,23.36,41.2,50046.46,55564.68
1-4-2008,CEU2023713001,20237130,23713,Power and communication system construction,146.2,23.26,41.1,49711.27,54859.82
1-5-2008,CEU2023713001,20237130,23713,Power and communication system construction,147.7,23.4,40.9,49767.12,54462.82
1-6-2008,CEU2023713001,20237130,23713,Power and communication system construction,148.5,23.25,39.5,47755.5,51740.02
1-7-2008,CEU2023713001,20237130,23713,Power and communication system construction,148.9,23.41,40.6,49423.19,53267.14
1-8-2008,CEU2023713001,20237130,23713,Power and communication system construction,146.1,23.25,40.1,48480.9,52460.97
1-9-2008,CEU2023713001,20237130,23713,Power and communication system construction,144.8,23.14,40.9,49214.15,53328.17
1-10-2008,CEU2023713001,20237130,23713,Power and communication system construction,141.8,22.72,39.6,46785.02,51213.3
1-11-2008,CEU2023713001,20237130,23713,Power and communication system construction,138.3,22.65,38.9,45816.42,51132.36
1-12-2008,CEU2023713001,20237130,23713,Power and communication system construction,137.3,23.01,39.6,47382.19,53432.42
1-1-2009,CEU2023713001,20237130,23713,Power and communication system construction,135.2,22.74,38.5,45525.48,51116.14
1-2-2009,CEU2023713001,20237130,23713,Power and communication system construction,135.3,22.8,39.2,46475.52,51924.63
1-3-2009,CEU2023713001,20237130,23713,Power and communication system construction,135.8,23.19,38.2,46064.62,51340.71
1-4-2009,CEU2023713001,20237130,23713,Power and communication system construction,135.3,23.28,38.5,46606.56,51815.38
1-5-2009,CEU2023713001,20237130,23713,Power and communication system construction,135,23.22,39.9,48176.86,53406.89
1-6-2009,CEU2023713001,20237130,23713,Power and communication system construction,134.5,23.42,39.8,48470.03,53274.27
1-7-2009,CEU2023713001,20237130,23713,Power and communication system construction,130.4,23.55,39.8,48739.08,53655.06
1-8-2009,CEU2023713001,20237130,23713,Power and communication system construction,131.8,23.56,39.6,48514.75,53288.59
1-9-2009,CEU2023713001,20237130,23713,Power and communication system construction,131.1,23.89,39.1,48573.15,53319.38
1-10-2009,CEU2023713001,20237130,23713,Power and communication system construction,131.1,24.42,40,50793.6,55703.16
1-11-2009,CEU2023713001,20237130,23713,Power and communication system construction,131.3,24.63,40.7,52126.93,57124.93
1-12-2009,CEU2023713001,20237130,23713,Power and communication system construction,132.1,24.57,39.1,49955.72,54842.13
1-1-2010,CEU2023713001,20237130,23713,Power and communication system construction,132.8,25.07,40.5,52797.42,57764.38
1-2-2010,CEU2023713001,20237130,23713,Power and communication system construction,130.6,25.14,39.9,52160.47,57053.29
1-3-2010,CEU2023713001,20237130,23713,Power and communication system construction,133.1,24.8,40.7,52486.72,57175.36
1-4-2010,CEU2023713001,20237130,23713,Power and communication system construction,136.1,24.94,41.9,54339.27,59090.77
1-5-2010,CEU2023713001,20237130,23713,Power and communication system construction,140.7,25.73,41,54856.36,59606.86
1-6-2010,CEU2023713001,20237130,23713,Power and communication system construction,138.9,25.55,40.9,54339.74,59103.21
1-7-2010,CEU2023713001,20237130,23713,Power and communication system construction,142,25.74,41.2,55145.38,59966.81
1-8-2010,CEU2023713001,20237130,23713,Power and communication system construction,139.9,26.09,41.5,56302.22,61140.38
1-9-2010,CEU2023713001,20237130,23713,Power and communication system construction,142.9,25.91,42.4,57126.37,61999.29
1-10-2010,CEU2023713001,20237130,23713,Power and communication system construction,143.2,26.42,42,57701.28,62545.36
1-11-2010,CEU2023713001,20237130,23713,Power and communication system construction,143.5,26.31,41.9,57324.23,62110.52
1-12-2010,CEU2023713001,20237130,23713,Power and communication system construction,142.2,26.51,41.2,56795.02,61431.57
1-1-2011,CEU2023713001,20237130,23713,Power and communication system construction,139.5,26.7,40.8,56646.72,60980.69
1-2-2011,CEU2023713001,20237130,23713,Power and communication system construction,141.7,26.78,41.9,58348.27,62504.19
1-3-2011,CEU2023713001,20237130,23713,Power and communication system construction,142.6,27.25,41.9,59372.3,62986.98
1-4-2011,CEU2023713001,20237130,23713,Power and communication system construction,142.7,27.4,42.5,60554,63829.59
1-5-2011,CEU2023713001,20237130,23713,Power and communication system construction,144.2,27,43.7,61354.8,64370.89
1-6-2011,CEU2023713001,20237130,23713,Power and communication system construction,143.6,27.2,42.9,60677.76,63728.82
1-7-2011,CEU2023713001,20237130,23713,Power and communication system construction,142.3,27.29,42.4,60168.99,63138.54
1-8-2011,CEU2023713001,20237130,23713,Power and communication system construction,142.9,27.67,42.1,60575.16,63389.94
1-9-2011,CEU2023713001,20237130,23713,Power and communication system construction,141.9,27.79,42.1,60837.87,63568.33
1-10-2011,CEU2023713001,20237130,23713,Power and communication system construction,144.3,27.39,41.8,59534.9,62335.46
1-11-2011,CEU2023713001,20237130,23713,Power and communication system construction,147.5,28.06,42.1,61428.95,64372.91
1-12-2011,CEU2023713001,20237130,23713,Power and communication system construction,148.3,28.03,42.9,62529.32,65688.04
1-1-2012,CEU2023713001,20237130,23713,Power and communication system construction,147.4,27.65,43.2,62112.96,64964.79
1-2-2012,CEU2023713001,20237130,23713,Power and communication system construction,147.9,28.24,43.3,63585.18,66213.08
1-3-2012,CEU2023713001,20237130,23713,Power and communication system construction,149.6,28.88,43.9,65927.27,68134.5
1-4-2012,CEU2023713001,20237130,23713,Power and communication system construction,151.2,28.23,43.8,64296.65,66249.15
1-5-2012,CEU2023713001,20237130,23713,Power and communication system construction,148.8,28.25,43.3,63607.7,65616.27
1-6-2012,CEU2023713001,20237130,23713,Power and communication system construction,150.3,27.98,43.3,62999.77,65084.59
1-7-2012,CEU2023713001,20237130,23713,Power and communication system construction,152.8,28.02,44.5,64838.28,67093.29
1-8-2012,CEU2023713001,20237130,23713,Power and communication system construction,154.3,27.35,44.3,63003.46,64833.85
1-9-2012,CEU2023713001,20237130,23713,Power and communication system construction,154,27.57,43.9,62936.8,64477.54
1-10-2012,CEU2023713001,20237130,23713,Power and communication system construction,156.3,27.15,44.4,62683.92,64243.46
1-11-2012,CEU2023713001,20237130,23713,Power and communication system construction,154.3,27.34,44,62553.92,64415.42
1-12-2012,CEU2023713001,20237130,23713,Power and communication system construction,153.7,27.25,43.7,61922.9,63937.81
1-1-2013,CEU2023713001,20237130,23713,Power and communication system construction,154.9,27.06,43.5,61209.72,63015.07
1-2-2013,CEU2023713001,20237130,23713,Power and communication system construction,157.2,27.52,43.8,62679.55,64004.06
1-3-2013,CEU2023713001,20237130,23713,Power and communication system construction,158.2,26.94,43.4,60798.19,61921.05
1-4-2013,CEU2023713001,20237130,23713,Power and communication system construction,156.6,27.49,42.5,60752.9,61939.32
1-5-2013,CEU2023713001,20237130,23713,Power and communication system construction,156.5,27.53,42.6,60984.46,62064.9
1-6-2013,CEU2023713001,20237130,23713,Power and communication system construction,157.1,27.86,43.1,62439.83,63393.93
1-7-2013,CEU2023713001,20237130,23713,Power and communication system construction,157.4,27.82,42.2,61048.21,61956.63
1-8-2013,CEU2023713001,20237130,23713,Power and communication system construction,157.6,28.07,42.8,62472.59,63326.04
1-9-2013,CEU2023713001,20237130,23713,Power and communication system construction,159.9,28.26,42.5,62454.6,63234.25
1-10-2013,CEU2023713001,20237130,23713,Power and communication system construction,158.5,28.51,42.5,63007.1,63958.36
1-11-2013,CEU2023713001,20237130,23713,Power and communication system construction,159,28.16,42.6,62380.03,63451.42
1-12-2013,CEU2023713001,20237130,23713,Power and communication system construction,156.9,28.36,42.5,62675.6,63757.54
1-1-2014,CEU2023713001,20237130,23713,Power and communication system construction,156.1,28.3,42.7,62837.32,63685.12
1-2-2014,CEU2023713001,20237130,23713,Power and communication system construction,156.6,28.33,42.9,63198.56,63815.25
1-3-2014,CEU2023713001,20237130,23713,Power and communication system construction,156,28.36,43.4,64002.85,64213.85
1-3-2006,CEU2023720001,20237200,2372,Land subdivision,97,27.87,33.8,48984.31,58122.17
1-4-2006,CEU2023720001,20237200,2372,Land subdivision,96.4,27.76,34.4,49657.09,58423.35
1-5-2006,CEU2023720001,20237200,2372,Land subdivision,95.5,28.08,33.8,49353.41,57779.31
1-6-2006,CEU2023720001,20237200,2372,Land subdivision,95.1,28.13,34.1,49880.12,58280.82
1-7-2006,CEU2023720001,20237200,2372,Land subdivision,94.7,28.49,34.4,50962.91,59370.41
1-8-2006,CEU2023720001,20237200,2372,Land subdivision,94.5,28.05,33.7,49154.82,57151.7
1-9-2006,CEU2023720001,20237200,2372,Land subdivision,94,28.53,33.8,50144.33,58589.53
1-10-2006,CEU2023720001,20237200,2372,Land subdivision,95.3,29.05,33.9,51209.34,60160.06
1-11-2006,CEU2023720001,20237200,2372,Land subdivision,96,27.92,33.7,48927.01,57564.38
1-12-2006,CEU2023720001,20237200,2372,Land subdivision,94.9,28.06,33.6,49026.43,57595.61
1-1-2007,CEU2023720001,20237200,2372,Land subdivision,95.4,27.94,33.9,49252.63,57685.26
1-2-2007,CEU2023720001,20237200,2372,Land subdivision,94.9,27.54,33.8,48404.3,56389.98
1-3-2007,CEU2023720001,20237200,2372,Land subdivision,95.2,27.19,33.7,47647.76,55007.74
1-4-2007,CEU2023720001,20237200,2372,Land subdivision,97,27.68,34.2,49226.11,56463.11
1-5-2007,CEU2023720001,20237200,2372,Land subdivision,96.1,27.65,34,48885.2,55731.51
1-6-2007,CEU2023720001,20237200,2372,Land subdivision,94.1,27.37,34.5,49101.78,55870.15
1-7-2007,CEU2023720001,20237200,2372,Land subdivision,93.7,28.33,34.3,50529.39,57509.17
1-8-2007,CEU2023720001,20237200,2372,Land subdivision,92.1,27.62,34.4,49406.66,56334.66
1-9-2007,CEU2023720001,20237200,2372,Land subdivision,90.9,27.81,34.1,49312.69,56073
1-10-2007,CEU2023720001,20237200,2372,Land subdivision,90.2,27.3,32.9,46704.84,52994.27
1-11-2007,CEU2023720001,20237200,2372,Land subdivision,88.9,27.28,33.8,47947.33,54082.84
1-12-2007,CEU2023720001,20237200,2372,Land subdivision,88.5,27.2,35,49504,55876.19
1-1-2008,CEU2023720001,20237200,2372,Land subdivision,86.8,28.13,33.2,48563.63,54543.67
1-2-2008,CEU2023720001,20237200,2372,Land subdivision,84.6,26.41,36.1,49576.85,55520.42
1-3-2008,CEU2023720001,20237200,2372,Land subdivision,83.5,27.76,33.8,48790.98,54170.76
1-4-2008,CEU2023720001,20237200,2372,Land subdivision,82.2,27.08,33,46469.28,51282.06
1-5-2008,CEU2023720001,20237200,2372,Land subdivision,81.7,26.82,33.2,46302.05,50670.81
1-6-2008,CEU2023720001,20237200,2372,Land subdivision,80.8,26.95,33.6,47087.04,51015.78
1-7-2008,CEU2023720001,20237200,2372,Land subdivision,79.7,26.33,32.3,44223.87,47663.44
1-8-2008,CEU2023720001,20237200,2372,Land subdivision,79.3,27.16,32.3,45617.94,49362.97
1-9-2008,CEU2023720001,20237200,2372,Land subdivision,76.7,26.73,31.4,43644.74,47293.19
1-10-2008,CEU2023720001,20237200,2372,Land subdivision,75,27.39,32.5,46289.1,50670.45
1-11-2008,CEU2023720001,20237200,2372,Land subdivision,72.8,27.73,33,47584.68,53105.78
1-12-2008,CEU2023720001,20237200,2372,Land subdivision,71.1,28.12,33,48253.92,54415.46
1-1-2009,CEU2023720001,20237200,2372,Land subdivision,68.8,28.02,33,48082.32,53986.97
1-2-2009,CEU2023720001,20237200,2372,Land subdivision,67.8,28.67,33.7,50241.31,56131.95
1-3-2009,CEU2023720001,20237200,2372,Land subdivision,65.5,28.46,33.8,50021.3,55750.57
1-4-2009,CEU2023720001,20237200,2372,Land subdivision,63.6,28.71,32.8,48967.78,54440.49
1-5-2009,CEU2023720001,20237200,2372,Land subdivision,62.3,28.73,33.3,49748.87,55149.55
1-6-2009,CEU2023720001,20237200,2372,Land subdivision,61.3,29.16,33.1,50190.19,55164.93
1-7-2009,CEU2023720001,20237200,2372,Land subdivision,60.3,28.91,33.5,50361.22,55440.81
1-8-2009,CEU2023720001,20237200,2372,Land subdivision,58.6,28.99,34,51254.32,56297.73
1-9-2009,CEU2023720001,20237200,2372,Land subdivision,57.8,28.3,34.1,50181.56,55084.95
1-10-2009,CEU2023720001,20237200,2372,Land subdivision,56.6,29.19,33.6,51000.77,55930.35
1-11-2009,CEU2023720001,20237200,2372,Land subdivision,56,29.39,33.9,51808.69,56776.18
1-12-2009,CEU2023720001,20237200,2372,Land subdivision,54.8,29,33.7,50819.6,55790.51
1-1-2010,CEU2023720001,20237200,2372,Land subdivision,54.6,29.18,34.4,52197.18,57107.68
1-2-2010,CEU2023720001,20237200,2372,Land subdivision,53,28.82,33.6,50354.3,55077.7
1-3-2010,CEU2023720001,20237200,2372,Land subdivision,53.1,28.91,33.6,50511.55,55023.75
1-4-2010,CEU2023720001,20237200,2372,Land subdivision,52.2,28.91,34.5,51864.54,56399.64
1-5-2010,CEU2023720001,20237200,2372,Land subdivision,51.5,29.29,35.8,54526.27,59248.18
1-6-2010,CEU2023720001,20237200,2372,Land subdivision,50.5,28.68,34.6,51601.05,56124.45
1-7-2010,CEU2023720001,20237200,2372,Land subdivision,49.4,29.43,35.1,53715.64,58412.07
1-8-2010,CEU2023720001,20237200,2372,Land subdivision,49,30.11,35.1,54956.77,59679.32
1-9-2010,CEU2023720001,20237200,2372,Land subdivision,49,29.65,34.4,53037.92,57562.09
1-10-2010,CEU2023720001,20237200,2372,Land subdivision,48.6,29.55,35.1,53934.66,58462.53
1-11-2010,CEU2023720001,20237200,2372,Land subdivision,48.4,29.15,35,53053,57482.67
1-12-2010,CEU2023720001,20237200,2372,Land subdivision,48.1,29.54,35.1,53916.41,58317.95
1-1-2011,CEU2023720001,20237200,2372,Land subdivision,45.8,29.78,34.7,53735.03,57846.23
1-2-2011,CEU2023720001,20237200,2372,Land subdivision,47.2,29.32,35.2,53667.33,57489.85
1-3-2011,CEU2023720001,20237200,2372,Land subdivision,46,30.13,35.6,55776.66,59172.42
1-4-2011,CEU2023720001,20237200,2372,Land subdivision,46.7,30.35,36,56815.2,59888.54
1-5-2011,CEU2023720001,20237200,2372,Land subdivision,45.7,30.61,36.2,57620.27,60452.77
1-6-2011,CEU2023720001,20237200,2372,Land subdivision,45.6,30.59,36.1,57423.55,60310.98
1-7-2011,CEU2023720001,20237200,2372,Land subdivision,45.2,30.43,35.9,56806.72,59610.32
1-8-2011,CEU2023720001,20237200,2372,Land subdivision,45.4,30.12,35.8,56071.39,58676.89
1-9-2011,CEU2023720001,20237200,2372,Land subdivision,44.6,30.08,36.4,56935.43,59490.74
1-10-2011,CEU2023720001,20237200,2372,Land subdivision,44,31.09,36.5,59008.82,61784.64
1-11-2011,CEU2023720001,20237200,2372,Land subdivision,43.5,30.5,35.1,55668.6,58336.5
1-12-2011,CEU2023720001,20237200,2372,Land subdivision,42.8,30.62,36.3,57798.31,60718.04
1-1-2012,CEU2023720001,20237200,2372,Land subdivision,42.3,29.93,37.5,58363.5,61043.18
1-2-2012,CEU2023720001,20237200,2372,Land subdivision,42.2,30.94,36.4,58563.23,60983.57
1-3-2012,CEU2023720001,20237200,2372,Land subdivision,42.5,30.75,35.8,57244.2,59160.72
1-4-2012,CEU2023720001,20237200,2372,Land subdivision,42.1,30.89,36,57826.08,59582.08
1-5-2012,CEU2023720001,20237200,2372,Land subdivision,41.7,30.67,35.4,56457.34,58240.12
1-6-2012,CEU2023720001,20237200,2372,Land subdivision,41.3,31.26,35.6,57868.51,59783.52
1-7-2012,CEU2023720001,20237200,2372,Land subdivision,41.1,31.61,36.5,59995.78,62082.37
1-8-2012,CEU2023720001,20237200,2372,Land subdivision,41.3,31.65,35.9,59084.22,60800.74
1-9-2012,CEU2023720001,20237200,2372,Land subdivision,40.5,32.16,36.3,60705.21,62191.32
1-10-2012,CEU2023720001,20237200,2372,Land subdivision,40.6,32.15,35,58513,59968.77
1-11-2012,CEU2023720001,20237200,2372,Land subdivision,40.6,32.39,35.3,59455.09,61224.37
1-12-2012,CEU2023720001,20237200,2372,Land subdivision,40.9,31.97,36.3,60346.57,62310.19
1-1-2013,CEU2023720001,20237200,2372,Land subdivision,41,31.13,36.1,58437.23,60160.81
1-2-2013,CEU2023720001,20237200,2372,Land subdivision,41.3,31.97,35.7,59349.11,60603.24
1-3-2013,CEU2023720001,20237200,2372,Land subdivision,41.1,32.14,35.9,59998.95,61107.05
1-4-2013,CEU2023720001,20237200,2372,Land subdivision,41.4,31.6,35.3,58004.96,59137.72
1-5-2013,CEU2023720001,20237200,2372,Land subdivision,41.8,31.38,36.2,59069.71,60116.23
1-6-2013,CEU2023720001,20237200,2372,Land subdivision,42,30.74,36.6,58504.37,59398.33
1-7-2013,CEU2023720001,20237200,2372,Land subdivision,42.2,30.13,36,56403.36,57242.66
1-8-2013,CEU2023720001,20237200,2372,Land subdivision,42.1,30.51,36.3,57590.68,58377.42
1-9-2013,CEU2023720001,20237200,2372,Land subdivision,42.2,30.34,36.1,56954.25,57665.23
1-10-2013,CEU2023720001,20237200,2372,Land subdivision,41.8,29.77,36.4,56348.66,57199.39
1-11-2013,CEU2023720001,20237200,2372,Land subdivision,43.4,29.39,37.2,56852.02,57828.46
1-12-2013,CEU2023720001,20237200,2372,Land subdivision,43.3,29.59,37.4,57546.63,58540.03
1-1-2014,CEU2023720001,20237200,2372,Land subdivision,43.5,29.56,37.1,57027.15,57796.56
1-2-2014,CEU2023720001,20237200,2372,Land subdivision,44,30.06,36.6,57210.19,57768.45
1-3-2014,CEU2023720001,20237200,2372,Land subdivision,43.9,30.52,37.5,59514,59710.2
1-3-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",350.1,22.51,42.4,49630.05,58888.36
1-4-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",349.9,22.66,43.6,51374.75,60444.25
1-5-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",346.6,22.52,41.7,48832.37,57169.32
1-6-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",344.6,23.03,42.1,50417.28,58908.45
1-7-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",345.1,21.93,42.3,48237.23,56195.07
1-8-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",344.5,22.32,41.7,48398.69,56272.55
1-9-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",345.2,22.54,41.2,48289.7,56422.55
1-10-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",349.3,22.63,42.1,49541.6,58200.82
1-11-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",348,22.58,41.9,49197.3,57882.4
1-12-2006,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",351.3,22.49,43.8,51223.22,60176.37
1-1-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",356.2,21.45,42.5,47404.5,55520.71
1-2-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",346.7,21.29,42.1,46608.07,54297.41
1-3-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",348.8,21.8,42.2,47837.92,55227.28
1-4-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",346.4,21.91,41.3,47053.91,53971.56
1-5-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",345,22.22,42.7,49337.29,56246.91
1-6-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",343,22.6,42.1,49475.92,56295.86
1-7-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",340.9,22.66,42,49489.44,56325.57
1-8-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",340.3,22.76,42.2,49944.54,56947.98
1-9-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",340.5,22.89,42.7,50824.96,57792.58
1-10-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",342.1,23.05,41.9,50221.34,56984.31
1-11-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",343.2,23.21,41.8,50449.26,56904.92
1-12-2007,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",341.2,23.38,41.3,50210.89,56674.07
1-1-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",341.3,23.33,42.3,51316.67,57635.71
1-2-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",341.2,23.31,42.4,51393.89,57555.29
1-3-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",335.9,23.54,42,51411.36,57080.07
1-4-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",333.9,23.61,42.1,51687.01,57040.18
1-5-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",331.3,23.69,41.1,50630.27,55407.41
1-6-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",331.3,23.84,41.2,51074.82,55336.29
1-7-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",327.9,24.05,41.1,51399.66,55397.34
1-8-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",324.8,24.37,41.2,52210.29,56496.52
1-9-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",323,23.96,40.8,50833.54,55082.93
1-10-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",318.7,23.68,42.7,52579.07,57555.77
1-11-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",308,23.91,39.6,49235.47,54948.11
1-12-2008,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",309,24.23,41.5,52288.34,58965.04
1-1-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",304.3,24.36,40.2,50922.14,57175.54
1-2-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",310.3,23.46,42.6,51968.59,58061.75
1-3-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",302.1,24.9,40.6,52568.88,58589.95
1-4-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",291.3,24.92,40.2,52092.77,57914.73
1-5-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",291.1,24.89,40.6,52547.77,58252.3
1-6-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",288.1,24.83,40.6,52421.1,57616.96
1-7-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",288.6,24.92,40.7,52740.69,58060.28
1-8-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",285.7,24.96,41.3,53604.1,58878.72
1-9-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",284.5,24.81,39.6,51088.75,56080.8
1-10-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",279.2,25.19,38.9,50954.33,55879.42
1-11-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",281.5,25.46,40.3,53353.98,58469.63
1-12-2009,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",283,25.35,39.5,52068.9,57162.01
1-1-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",284.1,25.45,40.8,53994.72,59074.32
1-2-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",283,25.51,40.1,53193.45,58183.17
1-3-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",285.4,25.5,40.2,53305.2,58066.96
1-4-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",290.5,25.37,42.6,56199.63,61113.79
1-5-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",288,25.25,40.6,53307.8,57924.2
1-6-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",289.4,25.29,41.3,54312.8,59073.91
1-7-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",284.7,25.23,41,53790.36,58493.32
1-8-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",292.7,25.5,41.3,54763.8,59469.77
1-9-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",290.5,25.6,42.1,56043.52,60824.07
1-10-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",287.7,25.52,42.8,56797.31,61565.5
1-11-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",288.1,25.44,42.1,55693.25,60343.36
1-12-2010,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",278,25.38,41.6,54902.02,59384.02
1-1-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",277.8,26.47,40.4,55608.18,59862.69
1-2-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",283.3,25.56,41.1,54626.83,58517.7
1-3-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",284.9,25.68,41.2,55016.83,58366.34
1-4-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",283.6,25.79,41.7,55923.04,58948.12
1-5-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",285.7,25.85,42.5,57128.5,59936.84
1-6-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",283.5,25.87,41.7,56096.51,58917.21
1-7-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",282.9,25.87,42.5,57172.7,59994.36
1-8-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",283.3,25.91,41.5,55913.78,58511.96
1-9-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",287,26,42,56784,59332.52
1-10-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",289.3,26.2,41.2,56130.88,58771.32
1-11-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",291.2,26.14,41.6,56546.05,59256
1-12-2011,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",296.7,25.8,41.8,56078.88,58911.75
1-1-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",297,25.89,41.4,55735.99,58295.03
1-2-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",296.8,26.09,41.4,56166.55,58487.84
1-3-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",296.1,25.88,42.1,56656.5,58553.34
1-4-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",296.3,25.61,43.2,57530.3,59277.33
1-5-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",292,25.76,41.4,55456.13,57207.3
1-6-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",292,26.36,41.9,57433.17,59333.77
1-7-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",294.2,26.39,41.3,56675.16,58646.27
1-8-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",293.4,26.03,42,56849.52,58501.12
1-9-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",292.7,26.06,42.2,57186.06,58586.02
1-10-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",294.9,26.18,42.5,57857.8,59297.27
1-11-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",293.3,26.22,42,57264.48,58968.57
1-12-2012,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",295.9,26.57,42.9,59272.36,61201.02
1-1-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",296.6,26.81,42.4,59110.69,60854.13
1-2-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",299.7,26.46,43,59164.56,60414.79
1-3-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",293.1,26.29,42.5,58100.9,59173.94
1-4-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",289.2,26.27,41.9,57237.07,58354.84
1-5-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",294.1,26.3,42.7,58396.52,59431.11
1-6-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",301.3,26.23,42.1,57422.71,58300.15
1-7-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",297.1,26.21,42.2,57515.22,58371.07
1-8-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",298.4,26.31,42.5,58145.1,58939.42
1-9-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",298.1,26.21,42.6,58060.39,58785.19
1-10-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",297,26.13,42,57067.92,57929.51
1-11-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",299.4,26.04,42.3,57277.59,58261.34
1-12-2013,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",293.2,26.06,40.1,54340.31,55278.36
1-1-2014,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",300.6,25.93,41.7,56226.61,56985.22
1-2-2014,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",304,25.74,41.3,55279.22,55818.64
1-3-2014,CEU2023730001,20237300,2373,"Highway, street, and bridge construction",306,26.01,42.7,57752.61,57943
1-3-2006,CEU2023790001,20237900,2379,Other heavy construction,111.4,22.25,39.9,46164.3,54776.09
1-4-2006,CEU2023790001,20237900,2379,Other heavy construction,109.4,22.81,40.2,47682.02,56099.62
1-5-2006,CEU2023790001,20237900,2379,Other heavy construction,110.4,22.51,39.9,46703.75,54677.29
1-6-2006,CEU2023790001,20237900,2379,Other heavy construction,108.9,22.81,40.3,47800.64,55851.12
1-7-2006,CEU2023790001,20237900,2379,Other heavy construction,108.4,23.19,40.9,49320.49,57457.04
1-8-2006,CEU2023790001,20237900,2379,Other heavy construction,110.7,23.22,41.2,49746.53,57839.67
1-9-2006,CEU2023790001,20237900,2379,Other heavy construction,112.6,23.59,40.6,49803.21,58190.96
1-10-2006,CEU2023790001,20237900,2379,Other heavy construction,113.4,23.35,41.1,49903.62,58626.12
1-11-2006,CEU2023790001,20237900,2379,Other heavy construction,113.8,22.99,40.5,48416.94,56964.27
1-12-2006,CEU2023790001,20237900,2379,Other heavy construction,113.7,22.92,41.8,49818.91,58526.61
1-1-2007,CEU2023790001,20237900,2379,Other heavy construction,115.1,23.1,40.7,48888.84,57259.18
1-2-2007,CEU2023790001,20237900,2379,Other heavy construction,114,22.97,40.3,48135.93,56077.34
1-3-2007,CEU2023790001,20237900,2379,Other heavy construction,113.8,23.4,40,48672,56190.2
1-4-2007,CEU2023790001,20237900,2379,Other heavy construction,114,23.84,40.5,50207.04,57588.24
1-5-2007,CEU2023790001,20237900,2379,Other heavy construction,112.3,24.33,41.9,53010.2,60434.21
1-6-2007,CEU2023790001,20237900,2379,Other heavy construction,116.8,23.99,40.3,50273.45,57203.32
1-7-2007,CEU2023790001,20237900,2379,Other heavy construction,117.2,25.05,39.5,51452.7,58560.02
1-8-2007,CEU2023790001,20237900,2379,Other heavy construction,117.5,23.93,40.7,50645.45,57747.17
1-9-2007,CEU2023790001,20237900,2379,Other heavy construction,116.7,23.94,41.1,51164.57,58178.75
1-10-2007,CEU2023790001,20237900,2379,Other heavy construction,114.4,23.94,41.4,51538.03,58478.31
1-11-2007,CEU2023790001,20237900,2379,Other heavy construction,114.2,24.14,42.3,53098.34,59893
1-12-2007,CEU2023790001,20237900,2379,Other heavy construction,114.1,24.29,42.1,53175.67,60020.48
1-1-2008,CEU2023790001,20237900,2379,Other heavy construction,111.4,24.28,42.9,54163.82,60833.46
1-2-2008,CEU2023790001,20237900,2379,Other heavy construction,111.3,24.35,43.8,55459.56,62108.38
1-3-2008,CEU2023790001,20237900,2379,Other heavy construction,111.7,23.95,42.7,53178.58,59042.15
1-4-2008,CEU2023790001,20237900,2379,Other heavy construction,114.7,23.95,42,52306.8,57724.16
1-5-2008,CEU2023790001,20237900,2379,Other heavy construction,111.9,23.86,41.9,51986.17,56891.25
1-6-2008,CEU2023790001,20237900,2379,Other heavy construction,110.4,23.88,42.1,52278.1,56639.96
1-7-2008,CEU2023790001,20237900,2379,Other heavy construction,107.7,23.69,41.3,50876.64,54833.64
1-8-2008,CEU2023790001,20237900,2379,Other heavy construction,105.5,23.92,40.6,50499.9,54645.72
1-9-2008,CEU2023790001,20237900,2379,Other heavy construction,106.7,24,39.7,49545.6,53687.33
1-10-2008,CEU2023790001,20237900,2379,Other heavy construction,108.4,24.28,40.7,51386.19,56249.98
1-11-2008,CEU2023790001,20237900,2379,Other heavy construction,109.7,24.33,40.3,50985.95,56901.69
1-12-2008,CEU2023790001,20237900,2379,Other heavy construction,110.3,24.16,40.3,50629.7,57094.6
1-1-2009,CEU2023790001,20237900,2379,Other heavy construction,109.6,23.8,40.1,49627.76,55722.2
1-2-2009,CEU2023790001,20237900,2379,Other heavy construction,108.7,23.83,40.2,49814.23,55654.8
1-3-2009,CEU2023790001,20237900,2379,Other heavy construction,105.7,23.97,40.4,50356.18,56123.81
1-4-2009,CEU2023790001,20237900,2379,Other heavy construction,104.8,23.63,40,49150.4,54643.52
1-5-2009,CEU2023790001,20237900,2379,Other heavy construction,105.4,23.89,40.4,50188.11,55636.48
1-6-2009,CEU2023790001,20237900,2379,Other heavy construction,101.6,24.04,40.1,50128.21,55096.8
1-7-2009,CEU2023790001,20237900,2379,Other heavy construction,98.8,23.79,39.7,49112.07,54065.68
1-8-2009,CEU2023790001,20237900,2379,Other heavy construction,98.6,24.07,39.8,49815.27,54717.08
1-9-2009,CEU2023790001,20237900,2379,Other heavy construction,96.5,24.13,39.8,49939.45,54819.19
1-10-2009,CEU2023790001,20237900,2379,Other heavy construction,95.4,24,39.6,49420.8,54197.66
1-11-2009,CEU2023790001,20237900,2379,Other heavy construction,94.9,24.19,40.6,51069.93,55966.58
1-12-2009,CEU2023790001,20237900,2379,Other heavy construction,92.2,24.14,40.3,50587.79,55536.02
1-1-2010,CEU2023790001,20237900,2379,Other heavy construction,93.6,24.45,40.3,51237.42,56057.63
1-2-2010,CEU2023790001,20237900,2379,Other heavy construction,95.4,24.24,40.4,50923.39,55700.16
1-3-2010,CEU2023790001,20237900,2379,Other heavy construction,96.6,24.3,41.7,52692.12,57399.11
1-4-2010,CEU2023790001,20237900,2379,Other heavy construction,96.5,24.53,41.8,53318.41,57980.64
1-5-2010,CEU2023790001,20237900,2379,Other heavy construction,94.2,24.26,41.9,52857.69,57435.11
1-6-2010,CEU2023790001,20237900,2379,Other heavy construction,98,23.98,42.2,52621.71,57234.58
1-7-2010,CEU2023790001,20237900,2379,Other heavy construction,100.2,24.15,43.4,54501.72,59266.88
1-8-2010,CEU2023790001,20237900,2379,Other heavy construction,101.4,23.72,44,54271.36,58935.01
1-9-2010,CEU2023790001,20237900,2379,Other heavy construction,100.4,23.41,43.7,53196.88,57734.61
1-10-2010,CEU2023790001,20237900,2379,Other heavy construction,101.1,23.69,44.6,54941.85,59554.27
1-11-2010,CEU2023790001,20237900,2379,Other heavy construction,100.6,23.6,43.2,53015.04,57441.54
1-12-2010,CEU2023790001,20237900,2379,Other heavy construction,99.2,23.8,43.4,53711.84,58096.68
1-1-2011,CEU2023790001,20237900,2379,Other heavy construction,99.8,23.78,42.8,52924.77,56973.98
1-2-2011,CEU2023790001,20237900,2379,Other heavy construction,98.1,24.15,44.7,56134.26,60132.49
1-3-2011,CEU2023790001,20237900,2379,Other heavy construction,95.5,24.28,42.9,54163.82,57461.4
1-4-2011,CEU2023790001,20237900,2379,Other heavy construction,98.2,24.29,43.5,54943.98,57916.11
1-5-2011,CEU2023790001,20237900,2379,Other heavy construction,100.3,24.12,43.6,54684.86,57373.07
1-6-2011,CEU2023790001,20237900,2379,Other heavy construction,98.5,24.76,43.2,55620.86,58417.65
1-7-2011,CEU2023790001,20237900,2379,Other heavy construction,99.9,24.86,44.6,57655.31,60500.8
1-8-2011,CEU2023790001,20237900,2379,Other heavy construction,98.3,25.02,42.8,55684.51,58272.04
1-9-2011,CEU2023790001,20237900,2379,Other heavy construction,100.4,25.18,43.1,56433.41,58966.2
1-10-2011,CEU2023790001,20237900,2379,Other heavy construction,99.6,25.24,41.9,54992.91,57579.82
1-11-2011,CEU2023790001,20237900,2379,Other heavy construction,98.6,25.23,42.1,55233.52,57880.56
1-12-2011,CEU2023790001,20237900,2379,Other heavy construction,100.7,25.42,42.3,55913.83,58738.36
1-1-2012,CEU2023790001,20237900,2379,Other heavy construction,100.4,25.87,42.5,57172.7,59797.7
1-2-2012,CEU2023790001,20237900,2379,Other heavy construction,100.7,25.77,43.5,58291.74,60700.86
1-3-2012,CEU2023790001,20237900,2379,Other heavy construction,101.1,25.94,42.9,57866.95,59804.33
1-4-2012,CEU2023790001,20237900,2379,Other heavy construction,103.2,25.62,42.9,57153.1,58888.67
1-5-2012,CEU2023790001,20237900,2379,Other heavy construction,100.9,26,42.2,57054.4,58856.04
1-6-2012,CEU2023790001,20237900,2379,Other heavy construction,101.1,26.05,42.9,58112.34,60035.42
1-7-2012,CEU2023790001,20237900,2379,Other heavy construction,101.5,26.45,41.8,57491.72,59491.22
1-8-2012,CEU2023790001,20237900,2379,Other heavy construction,105,26.41,41.4,56855.45,58507.22
1-9-2012,CEU2023790001,20237900,2379,Other heavy construction,105,26.35,42.3,57959.46,59378.35
1-10-2012,CEU2023790001,20237900,2379,Other heavy construction,99.9,26.61,40.6,56179.03,57576.73
1-11-2012,CEU2023790001,20237900,2379,Other heavy construction,101.9,26.87,41,57286.84,58991.6
1-12-2012,CEU2023790001,20237900,2379,Other heavy construction,100.1,26.98,41.5,58222.84,60117.35
1-1-2013,CEU2023790001,20237900,2379,Other heavy construction,101.4,27.05,41.2,57951.92,59661.19
1-2-2013,CEU2023790001,20237900,2379,Other heavy construction,101,27.2,40.2,56858.88,58060.39
1-3-2013,CEU2023790001,20237900,2379,Other heavy construction,101.1,27.42,40.1,57176.18,58232.15
1-4-2013,CEU2023790001,20237900,2379,Other heavy construction,102.1,27.57,40.6,58205.79,59342.46
1-5-2013,CEU2023790001,20237900,2379,Other heavy construction,103.6,27.84,41.4,59933.95,60995.78
1-6-2013,CEU2023790001,20237900,2379,Other heavy construction,103.6,27.9,41.2,59772.96,60686.3
1-7-2013,CEU2023790001,20237900,2379,Other heavy construction,104,28.14,41.8,61165.11,62075.27
1-8-2013,CEU2023790001,20237900,2379,Other heavy construction,104.8,28.37,43,63435.32,64301.91
1-9-2013,CEU2023790001,20237900,2379,Other heavy construction,106,28.85,42.7,64058.54,64858.21
1-10-2013,CEU2023790001,20237900,2379,Other heavy construction,108.3,28.62,43.6,64887.27,65866.91
1-11-2013,CEU2023790001,20237900,2379,Other heavy construction,105.5,28.72,43.1,64367.27,65472.79
1-12-2013,CEU2023790001,20237900,2379,Other heavy construction,104.5,29.16,42.5,64443.6,65556.05
1-1-2014,CEU2023790001,20237900,2379,Other heavy construction,105.4,29.44,42,64296.96,65164.45
1-2-2014,CEU2023790001,20237900,2379,Other heavy construction,108.1,29.48,43.4,66530.46,67179.66
1-3-2014,CEU2023790001,20237900,2379,Other heavy construction,107.4,29.6,43.3,66647.36,66867.08
1-3-2006,CEU2023800001,20238000,238,Specialty trade contractors,4899.9,21.33,37.1,41149.84,48826.2
1-4-2006,CEU2023800001,20238000,238,Specialty trade contractors,4919.3,21.35,37.7,41854.54,49243.37
1-5-2006,CEU2023800001,20238000,238,Specialty trade contractors,4914.7,21.36,36.9,40985.57,47982.87
1-6-2006,CEU2023800001,20238000,238,Specialty trade contractors,4918.3,21.55,37.2,41686.32,48707.04
1-7-2006,CEU2023800001,20238000,238,Specialty trade contractors,4917.5,21.66,37.2,41899.11,48811.33
1-8-2006,CEU2023800001,20238000,238,Specialty trade contractors,4931.3,21.62,37.2,41821.73,48625.6
1-9-2006,CEU2023800001,20238000,238,Specialty trade contractors,4917.7,21.73,37.1,41921.52,48981.85
1-10-2006,CEU2023800001,20238000,238,Specialty trade contractors,4884.4,21.79,37.5,42490.5,49917.29
1-11-2006,CEU2023800001,20238000,238,Specialty trade contractors,4875.2,21.81,37.3,42302.68,49770.62
1-12-2006,CEU2023800001,20238000,238,Specialty trade contractors,4895.4,21.91,37.9,43180.23,50727.57
1-1-2007,CEU2023800001,20238000,238,Specialty trade contractors,4917.2,21.95,37.4,42688.36,49997.11
1-2-2007,CEU2023800001,20238000,238,Specialty trade contractors,4845.1,22.09,37.1,42616.03,49646.77
1-3-2007,CEU2023800001,20238000,238,Specialty trade contractors,4903.6,22.16,37.6,43327.23,50019.84
1-4-2007,CEU2023800001,20238000,238,Specialty trade contractors,4890,22.29,37.3,43233.68,49589.7
1-5-2007,CEU2023800001,20238000,238,Specialty trade contractors,4879.9,22.47,37.6,43933.34,50086.15
1-6-2007,CEU2023800001,20238000,238,Specialty trade contractors,4882.1,22.55,37.4,43855.24,49900.4
1-7-2007,CEU2023800001,20238000,238,Specialty trade contractors,4868.4,22.63,37.4,44010.82,50090.18
1-8-2007,CEU2023800001,20238000,238,Specialty trade contractors,4843.2,22.66,37.3,43951.34,50114.38
1-9-2007,CEU2023800001,20238000,238,Specialty trade contractors,4808.9,22.77,37.7,44638.31,50757.8
1-10-2007,CEU2023800001,20238000,238,Specialty trade contractors,4808.1,22.77,37.5,44401.5,50380.75
1-11-2007,CEU2023800001,20238000,238,Specialty trade contractors,4786,22.9,37.7,44893.16,50637.85
1-12-2007,CEU2023800001,20238000,238,Specialty trade contractors,4753.5,23.02,37.7,45128.41,50937.37
1-1-2008,CEU2023800001,20238000,238,Specialty trade contractors,4750,23.06,37.8,45326.73,50908.19
1-2-2008,CEU2023800001,20238000,238,Specialty trade contractors,4734.6,23.13,37.6,45223.78,50645.47
1-3-2008,CEU2023800001,20238000,238,Specialty trade contractors,4701.7,23.21,37.6,45380.19,50383.9
1-4-2008,CEU2023800001,20238000,238,Specialty trade contractors,4657.8,23.36,37.6,45673.47,50403.83
1-5-2008,CEU2023800001,20238000,238,Specialty trade contractors,4625.9,23.49,37.3,45561.2,49860.07
1-6-2008,CEU2023800001,20238000,238,Specialty trade contractors,4587.6,23.58,37.5,45981,49817.46
1-7-2008,CEU2023800001,20238000,238,Specialty trade contractors,4552.2,23.71,37.3,45987.91,49564.68
1-8-2008,CEU2023800001,20238000,238,Specialty trade contractors,4528,23.91,37.5,46624.5,50452.17
1-9-2008,CEU2023800001,20238000,238,Specialty trade contractors,4493.7,23.92,37.1,46146.46,50004.04
1-10-2008,CEU2023800001,20238000,238,Specialty trade contractors,4445.4,23.98,37.4,46636.3,51050.51
1-11-2008,CEU2023800001,20238000,238,Specialty trade contractors,4340.1,24.17,36.9,46377.39,51758.42
1-12-2008,CEU2023800001,20238000,238,Specialty trade contractors,4253,24.24,36.8,46385.66,52308.65
1-1-2009,CEU2023800001,20238000,238,Specialty trade contractors,4165.4,24.25,36.7,46278.7,51961.86
1-2-2009,CEU2023800001,20238000,238,Specialty trade contractors,4079.2,24.23,36.8,46366.53,51802.86
1-3-2009,CEU2023800001,20238000,238,Specialty trade contractors,3983.5,24.36,36.7,46488.63,51813.28
1-4-2009,CEU2023800001,20238000,238,Specialty trade contractors,3896.2,24.35,36.5,46216.3,51381.5
1-5-2009,CEU2023800001,20238000,238,Specialty trade contractors,3862.7,24.35,36.6,46342.92,51373.86
1-6-2009,CEU2023800001,20238000,238,Specialty trade contractors,3808.6,24.37,36.6,46380.98,50978.16
1-7-2009,CEU2023800001,20238000,238,Specialty trade contractors,3754,24.39,36.7,46545.88,51240.64
1-8-2009,CEU2023800001,20238000,238,Specialty trade contractors,3698.6,24.43,36.6,46495.18,51070.29
1-9-2009,CEU2023800001,20238000,238,Specialty trade contractors,3657.7,24.4,36.3,46057.44,50557.86
1-10-2009,CEU2023800001,20238000,238,Specialty trade contractors,3613.4,24.49,36.1,45972.63,50416.2
1-11-2009,CEU2023800001,20238000,238,Specialty trade contractors,3600.3,24.48,36.9,46972.22,51475.98
1-12-2009,CEU2023800001,20238000,238,Specialty trade contractors,3581.4,24.44,36.5,46387.12,50924.47
1-1-2010,CEU2023800001,20238000,238,Specialty trade contractors,3530.9,24.51,36.7,46774.88,51175.27
1-2-2010,CEU2023800001,20238000,238,Specialty trade contractors,3476.2,24.64,35.6,45613.57,49892.26
1-3-2010,CEU2023800001,20238000,238,Specialty trade contractors,3485,24.65,36.9,47298.42,51523.59
1-4-2010,CEU2023800001,20238000,238,Specialty trade contractors,3482,24.61,37.5,47989.5,52185.77
1-5-2010,CEU2023800001,20238000,238,Specialty trade contractors,3462.7,24.63,37,47388.12,51491.88
1-6-2010,CEU2023800001,20238000,238,Specialty trade contractors,3452.8,24.63,37.1,47516.2,51681.51
1-7-2010,CEU2023800001,20238000,238,Specialty trade contractors,3449.5,24.66,36.9,47317.61,51454.65
1-8-2010,CEU2023800001,20238000,238,Specialty trade contractors,3464.8,24.7,37.2,47779.68,51885.48
1-9-2010,CEU2023800001,20238000,238,Specialty trade contractors,3444.4,24.74,37.5,48243,52358.16
1-10-2010,CEU2023800001,20238000,238,Specialty trade contractors,3453.1,24.84,37.4,48308.83,52364.41
1-11-2010,CEU2023800001,20238000,238,Specialty trade contractors,3444.5,24.86,37.5,48477,52524.59
1-12-2010,CEU2023800001,20238000,238,Specialty trade contractors,3425.8,24.88,37.3,48257.25,52196.8
1-1-2011,CEU2023800001,20238000,238,Specialty trade contractors,3409.9,24.95,37,48003.8,51676.51
1-2-2011,CEU2023800001,20238000,238,Specialty trade contractors,3438.5,24.96,37.1,48152.83,51582.58
1-3-2011,CEU2023800001,20238000,238,Specialty trade contractors,3439.1,24.87,37.4,48367.18,51311.84
1-4-2011,CEU2023800001,20238000,238,Specialty trade contractors,3447.2,24.93,37.5,48613.5,51243.18
1-5-2011,CEU2023800001,20238000,238,Specialty trade contractors,3469.2,24.91,37.8,48963.1,51370.04
1-6-2011,CEU2023800001,20238000,238,Specialty trade contractors,3467.6,24.89,37.7,48794.36,51247.89
1-7-2011,CEU2023800001,20238000,238,Specialty trade contractors,3492,24.91,37.8,48963.1,51379.59
1-8-2011,CEU2023800001,20238000,238,Specialty trade contractors,3492.1,25.01,37.5,48769.5,51035.7
1-9-2011,CEU2023800001,20238000,238,Specialty trade contractors,3510.8,25.04,37.6,48958.21,51155.5
1-10-2011,CEU2023800001,20238000,238,Specialty trade contractors,3499.4,24.99,37.6,48860.45,51158.88
1-11-2011,CEU2023800001,20238000,238,Specialty trade contractors,3502.6,24.92,37.6,48723.59,51058.64
1-12-2011,CEU2023800001,20238000,238,Specialty trade contractors,3516.9,25.01,37.8,49159.66,51643
1-1-2012,CEU2023800001,20238000,238,Specialty trade contractors,3534,25.03,37.9,49329.13,51594
1-2-2012,CEU2023800001,20238000,238,Specialty trade contractors,3526.1,25.07,38,49538.32,51585.67
1-3-2012,CEU2023800001,20238000,238,Specialty trade contractors,3529.8,25.13,37.8,49395.53,51049.28
1-4-2012,CEU2023800001,20238000,238,Specialty trade contractors,3526.1,25.18,37.9,49624.74,51131.7
1-5-2012,CEU2023800001,20238000,238,Specialty trade contractors,3520.3,25.18,37.8,49493.81,51056.7
1-6-2012,CEU2023800001,20238000,238,Specialty trade contractors,3527.3,25.18,37.7,49362.87,50996.41
1-7-2012,CEU2023800001,20238000,238,Specialty trade contractors,3525.6,25.21,37.8,49552.78,51276.17
1-8-2012,CEU2023800001,20238000,238,Specialty trade contractors,3529.3,25.24,37.8,49611.74,51053.07
1-9-2012,CEU2023800001,20238000,238,Specialty trade contractors,3532.2,25.39,38.1,50302.67,51534.11
1-10-2012,CEU2023800001,20238000,238,Specialty trade contractors,3546.8,25.37,38,50131.12,51378.35
1-11-2012,CEU2023800001,20238000,238,Specialty trade contractors,3559.2,25.42,38.2,50494.29,51996.91
1-12-2012,CEU2023800001,20238000,238,Specialty trade contractors,3584.1,25.43,38.4,50778.63,52430.91
1-1-2013,CEU2023800001,20238000,238,Specialty trade contractors,3600.7,25.45,38.1,50421.54,51908.7
1-2-2013,CEU2023800001,20238000,238,Specialty trade contractors,3628.1,25.45,38.4,50818.56,51892.43
1-3-2013,CEU2023800001,20238000,238,Specialty trade contractors,3654.5,25.47,38.4,50858.5,51797.78
1-4-2013,CEU2023800001,20238000,238,Specialty trade contractors,3650.8,25.46,38.4,50838.53,51831.34
1-5-2013,CEU2023800001,20238000,238,Specialty trade contractors,3653.7,25.5,38.5,51051,51955.45
1-6-2013,CEU2023800001,20238000,238,Specialty trade contractors,3660,25.58,38.4,51078.14,51858.63
1-7-2013,CEU2023800001,20238000,238,Specialty trade contractors,3658.8,25.59,38.2,50831.98,51588.38
1-8-2013,CEU2023800001,20238000,238,Specialty trade contractors,3662.3,25.55,38.4,51018.24,51715.2
1-9-2013,CEU2023800001,20238000,238,Specialty trade contractors,3665.8,25.5,38.4,50918.4,51554.04
1-10-2013,CEU2023800001,20238000,238,Specialty trade contractors,3671.6,25.51,38.1,50540.41,51303.45
1-11-2013,CEU2023800001,20238000,238,Specialty trade contractors,3694,25.58,38.4,51078.14,51955.42
1-12-2013,CEU2023800001,20238000,238,Specialty trade contractors,3681.1,25.68,37.8,50476.61,51347.96
1-1-2014,CEU2023800001,20238000,238,Specialty trade contractors,3703.8,25.7,37.8,50515.92,51197.48
1-2-2014,CEU2023800001,20238000,238,Specialty trade contractors,3713.7,25.85,37.4,50273.08,50763.64
1-3-2014,CEU2023800001,20238000,238,Specialty trade contractors,3724.4,25.77,38.3,51323.53,51492.73
1-3-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1140.8,20.39,35.4,37533.91,44535.73
1-4-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1143.5,20.1,36.5,38149.8,44884.61
1-5-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1146.7,20.06,35.2,36717.82,42986.51
1-6-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1142,20.25,36.3,38223.9,44661.49
1-7-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1141.5,20.23,36.3,38186.15,44485.83
1-8-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1149.3,20.42,36.2,38438.61,44692.09
1-9-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1133.1,20.5,36.1,38482.6,44963.76
1-10-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1111.7,20.56,36.6,39129.79,45969.17
1-11-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1103,20.72,36,38787.84,45635.29
1-12-2006,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1102.8,20.56,37.8,40412.73,47476.35
1-1-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1104.6,20.73,36.6,39453.34,46208.21
1-2-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1061,20.85,35.4,38380.68,44712.68
1-3-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1106.4,20.93,36.8,40051.65,46238.29
1-4-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1098.1,21.11,36.2,39737.46,45579.48
1-5-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1095.6,21.55,36.8,41238.08,47013.42
1-6-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1098.5,21.64,36.5,41072.72,46734.33
1-7-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1087.3,21.58,36.6,41071.05,46744.33
1-8-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1078,21.54,36.5,40882.92,46615.7
1-9-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1064.8,21.61,36.8,41352.89,47021.98
1-10-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1059,21.66,36.7,41335.95,46902.38
1-11-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1050.8,21.7,37,41750.8,47093.38
1-12-2007,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1044.5,21.84,36.6,41565.89,46916.28
1-1-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1041.5,21.9,36.9,42021.72,47196.2
1-2-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1025.5,21.96,36.3,41451.7,46421.17
1-3-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1017.8,22.01,36.7,42003.88,46635.31
1-4-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,1009,22.18,36.3,41866.97,46203.09
1-5-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,997.1,22.53,35.8,41941.85,45899.21
1-6-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,985.8,22.4,35.9,41816.32,45305.3
1-7-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,971.7,22.45,35.8,41792.92,45043.42
1-8-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,967,22.69,36,42475.68,45962.75
1-9-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,962,22.46,35.7,41694.74,45180.18
1-10-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,943.5,22.26,36.5,42249.48,46248.46
1-11-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,918,22.59,35.2,41348.73,46146.3
1-12-2008,CEU2023810001,20238100,2381,Building foundation and exterior contractors,894.5,22.82,35.4,42007.05,47370.93
1-1-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,861.9,22.93,34.9,41613.36,46723.61
1-2-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,859.8,22.9,35.7,42511.56,47495.91
1-3-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,819.9,23.08,35,42005.6,46816.79
1-4-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,793,23.04,34.8,41693.18,46352.88
1-5-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,787.6,22.95,35.1,41888.34,46435.7
1-6-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,777.8,22.81,35,41514.2,45628.99
1-7-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,763.9,22.81,35.1,41632.81,45832.03
1-8-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,748.6,22.8,35,41496,45579.19
1-9-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,743.2,22.93,34.1,40659.48,44632.44
1-10-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,732.1,23.1,33.6,40360.32,44261.43
1-11-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,725.9,23,34.8,41620.8,45611.46
1-12-2009,CEU2023810001,20238100,2381,Building foundation and exterior contractors,720,22.95,33.9,40456.26,44413.48
1-1-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,710.2,22.96,34.8,41548.41,45457.11
1-2-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,692,23.02,33.7,40340.25,44124.29
1-3-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,693.6,22.88,35,41641.6,45361.45
1-4-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,689.9,22.83,35.6,42262.89,45958.42
1-5-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,678.8,22.94,34.8,41512.22,45107.14
1-6-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,680.6,23,35.2,42099.2,45789.65
1-7-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,678.7,23,35,41860,45519.88
1-8-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,681.5,23.06,35.3,42328.94,45966.35
1-9-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,674.4,23.13,35.8,43058.81,46731.75
1-10-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,670.2,23.13,35.5,42697.98,46282.52
1-11-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,663.3,23.17,35.9,43253.76,46865.24
1-12-2010,CEU2023810001,20238100,2381,Building foundation and exterior contractors,654.8,23.13,35.5,42697.98,46183.69
1-1-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,646.8,23.59,35.3,43301.8,46614.77
1-2-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,659,23.13,35.6,42818.26,45868.04
1-3-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,663.2,23.22,35.7,43105.61,45729.94
1-4-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,664,23.2,35.8,43189.12,45525.38
1-5-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,671.7,23.06,36.4,43647.97,45793.63
1-6-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,668,22.99,36.1,43156.83,45326.89
1-7-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,671.2,23.21,36.1,43569.81,45720.13
1-8-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,670.4,23.28,35.6,43095.94,45098.5
1-9-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,673.1,23.34,35.7,43328.38,45273
1-10-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,675.1,23.44,35.6,43392.13,45433.32
1-11-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,679.3,23.42,35.5,43233.32,45305.26
1-12-2011,CEU2023810001,20238100,2381,Building foundation and exterior contractors,685.5,23.33,36.4,44159.02,46389.75
1-1-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,688.2,23.13,36.3,43660.19,45664.78
1-2-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,690.4,23.17,36.7,44217.63,46045.09
1-3-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,688.7,23.42,36.1,43964.02,45435.93
1-4-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,683.7,23.54,36.7,44923.73,46287.93
1-5-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,679.8,23.7,36,44366.4,45767.38
1-6-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,682.8,23.61,36.1,44320.69,45787.38
1-7-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,675.8,23.67,36.6,45048.74,46615.49
1-8-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,682.9,23.8,36.4,45048.64,46357.4
1-9-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,689.5,23.8,36.9,45667.44,46785.41
1-10-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,694.1,23.78,37.2,46000.03,47144.48
1-11-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,699.1,23.75,36.9,45571.5,46927.63
1-12-2012,CEU2023810001,20238100,2381,Building foundation and exterior contractors,705.4,23.78,37.3,46123.69,47624.51
1-1-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,706.1,24.03,36.6,45733.89,47082.79
1-2-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,706.3,23.92,36.9,45897.7,46867.58
1-3-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,708,23.65,36.7,45133.66,45967.21
1-4-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,709.5,23.75,36.8,45448,46335.54
1-5-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,706.4,23.76,37,45714.24,46524.14
1-6-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,706.3,23.84,36.9,45744.19,46443.18
1-7-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,708.6,23.87,36.7,45553.51,46231.36
1-8-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,710.2,23.81,37.3,46181.88,46812.77
1-9-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,708.1,23.73,37.3,46026.71,46601.28
1-10-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,710.3,23.68,36.8,45314.05,45998.18
1-11-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,720.3,23.75,37,45695,46479.82
1-12-2013,CEU2023810001,20238100,2381,Building foundation and exterior contractors,710.7,23.72,36.2,44650.53,45421.3
1-1-2014,CEU2023810001,20238100,2381,Building foundation and exterior contractors,716.3,23.72,36.2,44650.53,45252.95
1-2-2014,CEU2023810001,20238100,2381,Building foundation and exterior contractors,718.1,23.72,35.1,43293.74,43716.2
1-3-2014,CEU2023810001,20238100,2381,Building foundation and exterior contractors,724.2,24.02,37,46214.48,46366.84
1-3-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,252.6,19.81,38.1,39247.57,46569.07
1-4-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,254.4,19.58,39,39708.24,46718.17
1-5-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,251.8,19.63,38.4,39197.18,45889.16
1-6-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,253.3,19.56,38.9,39565.97,46229.59
1-7-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,253.9,19.57,38.1,38772.09,45168.43
1-8-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,251.7,19.69,38.7,39624.16,46070.51
1-9-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,250.3,19.68,38.2,39092.35,45676.2
1-10-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,246.2,19.8,38.7,39845.52,46810
1-11-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,247.6,20.22,37.1,39008.43,45894.82
1-12-2006,CEU2023811001,20238110,23811,Poured concrete structure contractors,246.6,20.02,39.3,40912.87,48063.91
1-1-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,247.7,20.46,38.2,40641.74,47600.09
1-2-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,234.7,20.21,37.7,39619.68,46156.09
1-3-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,248.3,20.41,38.3,40648.55,46927.39
1-4-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,245.8,20.5,37.9,40401.4,46341.02
1-5-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,247.5,20.83,38.1,41268.39,47047.98
1-6-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,244.5,21.1,37.9,41583.88,47315.95
1-7-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,239.1,21.11,38.3,42042.68,47850.16
1-8-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,237.3,21.01,38.5,42062.02,47960.13
1-9-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,238.9,21.17,38.3,42162.17,47942.21
1-10-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,239.2,21.39,37.9,42155.41,47832.2
1-11-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,236.1,21.17,38.4,42272.26,47681.57
1-12-2007,CEU2023811001,20238110,23811,Poured concrete structure contractors,231.8,21.71,36.8,41544.26,46891.87
1-1-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,232.2,21.42,38.1,42437.3,47662.96
1-2-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,229.5,21.91,38.1,43408.09,48612.11
1-3-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,226.8,21.82,37.4,42435.54,47114.56
1-4-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,224.8,22.16,36.6,42174.91,46542.93
1-5-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,223.4,22.2,35.9,41442.96,45353.25
1-6-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,221.2,22.27,36.1,41805.24,45293.29
1-7-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,220.2,22.21,35.9,41461.63,44686.36
1-8-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,222.2,22.54,35.1,41140.01,44517.42
1-9-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,221.7,22.56,35.2,41293.82,44745.75
1-10-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,214.1,22.4,35.8,41699.84,45646.8
1-11-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,205.6,22.65,34.4,40516.32,45217.3
1-12-2008,CEU2023811001,20238110,23811,Poured concrete structure contractors,200,22.6,35.1,41249.52,46516.67
1-1-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,188.6,22.78,33.8,40038.13,44954.93
1-2-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,185.1,23.18,35.8,43151.89,48211.32
1-3-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,176.3,22.99,34.4,41124.51,45834.78
1-4-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,171.4,22.76,34.2,40476.38,45000.08
1-5-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,169.8,22.83,35,41550.6,46061.29
1-6-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,169.5,22.55,34.4,40337.44,44335.6
1-7-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,167.3,22.78,34.4,40748.86,44858.93
1-8-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,163.3,22.49,35.2,41165.7,45216.39
1-9-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,158.9,22.51,34.1,39914.73,43814.92
1-10-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,155.8,22.7,34,40133.6,44012.79
1-11-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,154.3,22.5,34.9,40833,44748.12
1-12-2009,CEU2023811001,20238110,23811,Poured concrete structure contractors,152.6,22.95,33.9,40456.26,44413.48
1-1-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,151.6,22.57,35.3,41429.49,45327
1-2-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,146.5,22.43,34,39656.24,43376.12
1-3-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,147.3,22.34,34.7,40310.3,43911.22
1-4-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,145.9,21.79,35.3,39997.72,43495.18
1-5-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,142.6,22.02,35,40076.4,43546.97
1-6-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,144.7,22.23,36,41614.56,45262.53
1-7-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,144.6,21.8,36,40809.6,44377.64
1-8-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,149.9,21.72,36.2,40885.73,44399.12
1-9-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,145.4,21.77,37,41885.48,45458.34
1-10-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,145.3,21.72,36.5,41224.56,44685.4
1-11-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,144.7,21.85,36.9,41925.78,45426.38
1-12-2010,CEU2023811001,20238110,23811,Poured concrete structure contractors,142.5,21.59,37.4,41988.23,45416
1-1-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,141.1,21.54,36.8,41218.95,44372.55
1-2-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,142.9,21.29,37.8,41847.63,44828.27
1-3-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,141.5,21.23,38.1,42060.88,44621.61
1-4-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,141.5,21.62,38,42721.12,45032.07
1-5-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,143,21.39,38.4,42711.55,44811.18
1-6-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,138.2,21.42,37.5,41769,43869.27
1-7-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,140.3,22.1,37.3,42865.16,44980.7
1-8-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,138.4,22.28,36.1,41824.02,43767.48
1-9-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,141.1,22.26,36.8,42596.73,44508.52
1-10-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,138.2,22.19,36.8,42462.79,44460.27
1-11-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,140.6,22.12,36.5,41983.76,43995.82
1-12-2011,CEU2023811001,20238110,23811,Poured concrete structure contractors,143.6,22.06,36.8,42214.02,44346.49
1-1-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,147.4,21.69,37.7,42521.07,44473.37
1-2-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,149.7,21.94,38.1,43467.53,45263.98
1-3-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,151.7,22.61,36.7,43148.93,44593.54
1-4-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,151.4,22.79,37.8,44796.02,46156.34
1-5-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,151.4,22.79,37.2,44084.98,45477.07
1-6-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,151.5,22.78,37.6,44539.46,46013.38
1-7-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,150.9,22.49,38.1,44557.19,46106.84
1-8-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,151.5,22.68,38.2,45051.55,46360.39
1-9-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,153.3,22.62,38.7,45520.49,46634.86
1-10-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,158,22.82,40.2,47702.93,48889.75
1-11-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,158.8,22.72,39,46076.16,47447.31
1-12-2012,CEU2023811001,20238110,23811,Poured concrete structure contractors,162.1,22.36,38.9,45229.81,46701.54
1-1-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,161.2,22.81,37.1,44005.05,45302.96
1-2-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,159.8,23.23,37.8,45660.89,46625.77
1-3-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,161.4,22.73,38.2,45150.87,45984.75
1-4-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,163.5,22.66,37.7,44422.66,45290.18
1-5-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,163.2,22.74,38.6,45643.73,46452.38
1-6-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,167,22.66,38.2,45011.82,45699.62
1-7-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,167.7,23.16,38.4,46245.89,46934.04
1-8-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,170.8,22.78,38.8,45960.93,46588.8
1-9-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,170.9,22.87,39.4,46856.05,47440.98
1-10-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,172,22.6,37.8,44422.56,45093.23
1-11-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,178.3,22.52,38.8,45436.35,46216.73
1-12-2013,CEU2023811001,20238110,23811,Poured concrete structure contractors,174.6,22.46,38.1,44497.75,45265.89
1-1-2014,CEU2023811001,20238110,23811,Poured concrete structure contractors,177.1,22.49,38.1,44557.19,45158.35
1-2-2014,CEU2023811001,20238110,23811,Poured concrete structure contractors,176,22.82,37,43905.68,44334.11
1-3-2014,CEU2023811001,20238110,23811,Poured concrete structure contractors,177.7,23.14,38.4,46205.95,46358.28
1-3-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,93.7,23.48,38.8,47373.25,56210.56
1-4-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,94.7,23.65,39.9,49069.02,57731.46
1-5-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,95.9,23.49,35.9,43851.13,51337.66
1-6-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,96.2,24.55,39,49787.4,58172.49
1-7-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,99.1,23.61,39.1,48003.85,55923.19
1-8-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,102,23.92,39.2,48758.53,56690.93
1-9-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,102.5,23.94,39.4,49048.27,57308.88
1-10-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,102,24.42,39.1,49650.74,58329.04
1-11-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,99.5,23.51,38.7,47311.52,55663.71
1-12-2006,CEU2023812001,20238120,23812,Steel and precast concrete contractors,99.7,23.07,39.3,47145.85,55386.33
1-1-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,101.1,23.06,39.7,47605.06,55755.61
1-2-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,98.5,23.24,37.6,45438.85,52935.29
1-3-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,100.6,23.02,39.7,47522.49,54863.12
1-4-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,98,23.21,39.3,47431.96,54405.18
1-5-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,100.1,23.94,40.5,50417.64,57478.57
1-6-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,103.7,23.99,40.7,50772.44,57771.09
1-7-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,103.1,24.41,40.1,50899.73,57930.67
1-8-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,102.6,24.31,38.8,49047.86,55925.55
1-9-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,100.4,24.31,40.7,51449.68,58502.95
1-10-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,102.2,24.24,38.9,49032.67,55635.57
1-11-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,103.5,24.86,38.8,50157.54,56575.87
1-12-2007,CEU2023812001,20238120,23812,Steel and precast concrete contractors,104.2,25.13,38.2,49918.23,56343.74
1-1-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,104.5,24.93,37.8,49002.41,55036.47
1-2-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,106.3,24.91,37.5,48574.5,54397.9
1-3-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,104.1,24.91,37.8,48963.1,54361.86
1-4-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,105.2,25.05,37.9,49368.54,54481.59
1-5-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,104.3,24.86,37.2,48089.18,52626.57
1-6-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,102.6,24.65,37.9,48580.22,52633.55
1-7-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,100.2,24.78,37.7,48578.71,52356.98
1-8-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,100.5,24.69,38.2,49044.21,53070.53
1-9-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,99.6,24.91,37.7,48833.56,52915.77
1-10-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,97.4,24.34,38.3,48475.54,53063.84
1-11-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,97.1,24.8,38.2,49262.72,54978.52
1-12-2008,CEU2023812001,20238120,23812,Steel and precast concrete contractors,94,25.19,38.3,50168.4,56574.4
1-1-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,89.9,26.35,37.5,51382.5,57692.42
1-2-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,88,25.43,37.4,49456.27,55254.86
1-3-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,85.9,25.75,36.5,48873.5,54471.31
1-4-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,83.4,25.85,36.1,48525.62,53948.91
1-5-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,79.1,25.55,36.1,47962.46,53169.22
1-6-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,76.5,25.54,36.2,48076.5,52841.73
1-7-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,74.3,25.83,36.2,48622.39,53526.6
1-8-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.8,25.87,35.6,47890.54,52602.96
1-9-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.9,26.18,35.4,48192.14,52901.15
1-10-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,70.3,27.19,35.1,49627.19,54424
1-11-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,68.3,26.56,36.1,49858.43,54638.93
1-12-2009,CEU2023812001,20238120,23812,Steel and precast concrete contractors,69,26.41,34.9,47928.87,52617.02
1-1-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,68.2,25.92,35.4,47713.54,52202.22
1-2-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,67.1,26.92,34.8,48714.43,53284
1-3-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,65.6,26.61,36.5,50505.78,55017.46
1-4-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,65.4,26.45,37,50889.8,55339.67
1-5-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,65.9,26.77,35.2,48999.81,53243.14
1-6-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,65.2,27.19,34.9,49344.41,53669.98
1-7-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,64.6,26.68,35.3,48973.81,53255.65
1-8-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,64.4,26.9,35.7,49937.16,54228.36
1-9-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,65.2,26.29,36.8,50308.54,54599.89
1-10-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,63.6,26.07,36.9,50023.12,54222.61
1-11-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,60.2,26.41,35.9,49302.19,53418.68
1-12-2010,CEU2023812001,20238120,23812,Steel and precast concrete contractors,61.3,26.14,36.6,49749.65,53811.03
1-1-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,60.3,26.91,36.7,51355.04,55284.15
1-2-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,61.4,26.22,37.2,50719.97,54332.56
1-3-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,64.3,26.07,38.4,52056.57,55225.86
1-4-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,61,25.56,37.9,50373.65,53098.55
1-5-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,62.1,24.96,38.5,49969.92,52426.36
1-6-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,65.4,24.67,37.9,48619.64,51064.38
1-7-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,63.7,24.8,38,49004.8,51423.35
1-8-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,65.2,24.81,37.5,48379.5,50627.58
1-9-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,65,25.19,37.7,49382.48,51598.81
1-10-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,66.4,25.3,38.1,50124.36,52482.25
1-11-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,67.3,25.18,37.9,49624.74,52002.99
1-12-2011,CEU2023812001,20238120,23812,Steel and precast concrete contractors,67.3,25.45,38.1,50421.54,52968.62
1-1-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,68.3,25.08,38.3,49949.33,52242.68
1-2-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,68.6,25.27,38.1,50064.93,52134.04
1-3-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,69.2,25.77,37.2,49849.49,51518.44
1-4-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,69.4,25.95,37.8,51007.32,52556.26
1-5-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,70.7,26.55,36.9,50944.14,52552.83
1-6-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,70.1,26.56,37.6,51930.11,53648.61
1-7-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.1,26.32,39.5,54061.28,55941.48
1-8-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.2,26.32,39,53376.96,54927.68
1-9-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.2,26.18,38.9,52956.9,54253.32
1-10-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,69,25.81,39.2,52611.11,53920.04
1-11-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.7,25.56,39.8,52898.98,54473.16
1-12-2012,CEU2023812001,20238120,23812,Steel and precast concrete contractors,72.7,25.56,40,53164.8,54894.73
1-1-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.8,25.85,39.5,53095.9,54661.94
1-2-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,72.1,25.53,40.2,53367.91,54495.65
1-3-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71,25.25,40.1,52651.3,53623.7
1-4-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.2,25.4,40,52832,53863.74
1-5-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,70.5,25.49,40.3,53416.84,54363.21
1-6-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,70.3,26.04,39.8,53892.38,54715.87
1-7-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71.2,25.43,38.8,51307.57,52071.04
1-8-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,69.6,25.32,39.6,52138.95,52851.22
1-9-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,69.7,25.17,39.9,52222.71,52874.64
1-10-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,69.8,25.56,39,51835.68,52618.27
1-11-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,68.1,26.73,38.8,53930.45,54856.71
1-12-2013,CEU2023812001,20238120,23812,Steel and precast concrete contractors,67.7,26.86,38,53075.36,53991.57
1-1-2014,CEU2023812001,20238120,23812,Steel and precast concrete contractors,67.6,27.31,38,53964.56,54692.65
1-2-2014,CEU2023812001,20238120,23812,Steel and precast concrete contractors,68.4,27.46,35.9,51262.33,51762.55
1-3-2014,CEU2023812001,20238120,23812,Steel and precast concrete contractors,71,28.27,39.8,58507.59,58700.48
1-3-2006,CEU2023813001,20238130,23813,Framing contractors,176.6,20.86,31.9,34602.57,41057.55
1-4-2006,CEU2023813001,20238130,23813,Framing contractors,175.6,20.74,32.2,34727.05,40857.63
1-5-2006,CEU2023813001,20238130,23813,Framing contractors,172.8,20.54,33,35246.64,41264.16
1-6-2006,CEU2023813001,20238130,23813,Framing contractors,170.3,20.77,33.3,35965.33,42022.54
1-7-2006,CEU2023813001,20238130,23813,Framing contractors,167.3,21.05,34.1,37325.86,43483.62
1-8-2006,CEU2023813001,20238130,23813,Framing contractors,163.5,21.09,34.1,37396.79,43480.78
1-9-2006,CEU2023813001,20238130,23813,Framing contractors,154.1,21.2,33.8,37261.12,43536.56
1-10-2006,CEU2023813001,20238130,23813,Framing contractors,146,21.14,34.5,37925.16,44553.98
1-11-2006,CEU2023813001,20238130,23813,Framing contractors,141.6,21.01,34,37145.68,43703.23
1-12-2006,CEU2023813001,20238130,23813,Framing contractors,140.1,21.52,34,38047.36,44697.54
1-1-2007,CEU2023813001,20238130,23813,Framing contractors,141.1,21.25,34.5,38122.5,44649.52
1-2-2007,CEU2023813001,20238130,23813,Framing contractors,141.5,21.41,34.9,38854.87,45265.09
1-3-2007,CEU2023813001,20238130,23813,Framing contractors,143.4,21.49,34.9,39000.05,45024.25
1-4-2007,CEU2023813001,20238130,23813,Framing contractors,140.2,21.97,34.5,39414.18,45208.67
1-5-2007,CEU2023813001,20238130,23813,Framing contractors,140.5,22.15,33.8,38930.84,44383.05
1-6-2007,CEU2023813001,20238130,23813,Framing contractors,142.9,22.27,33.9,39257.55,44668.96
1-7-2007,CEU2023813001,20238130,23813,Framing contractors,138,22.12,33.9,38993.14,44379.38
1-8-2007,CEU2023813001,20238130,23813,Framing contractors,131.9,22.12,33.9,38993.14,44460.92
1-9-2007,CEU2023813001,20238130,23813,Framing contractors,126.5,22.49,34.9,40814.85,46410.18
1-10-2007,CEU2023813001,20238130,23813,Framing contractors,122.6,22.62,34.7,40815.53,46311.88
1-11-2007,CEU2023813001,20238130,23813,Framing contractors,121.4,22.45,35.2,41092.48,46350.82
1-12-2007,CEU2023813001,20238130,23813,Framing contractors,118.6,22.32,35,40622.4,45851.34
1-1-2008,CEU2023813001,20238130,23813,Framing contractors,118.2,22.68,34.7,40923.79,45963.07
1-2-2008,CEU2023813001,20238130,23813,Framing contractors,110.1,22.25,34.5,39916.5,44701.93
1-3-2008,CEU2023813001,20238130,23813,Framing contractors,106.5,22.22,34.3,39631.59,44001.45
1-4-2008,CEU2023813001,20238130,23813,Framing contractors,104.9,22.33,33.9,39363.32,43440.14
1-5-2008,CEU2023813001,20238130,23813,Framing contractors,102.1,22.88,34.5,41046.72,44919.62
1-6-2008,CEU2023813001,20238130,23813,Framing contractors,98.1,23.2,34.5,41620.8,45093.46
1-7-2008,CEU2023813001,20238130,23813,Framing contractors,95.1,22.7,34.3,40487.72,43636.7
1-8-2008,CEU2023813001,20238130,23813,Framing contractors,93.1,23.21,34.3,41397.36,44795.9
1-9-2008,CEU2023813001,20238130,23813,Framing contractors,92.4,22.3,34.2,39658.32,42973.53
1-10-2008,CEU2023813001,20238130,23813,Framing contractors,89.9,22.37,34.2,39782.81,43548.32
1-11-2008,CEU2023813001,20238130,23813,Framing contractors,84.2,22.59,33.6,39469.25,44048.74
1-12-2008,CEU2023813001,20238130,23813,Framing contractors,80.8,22.48,32.3,37757.41,42578.65
1-1-2009,CEU2023813001,20238130,23813,Framing contractors,74.7,22.84,33.4,39668.51,44539.92
1-2-2009,CEU2023813001,20238130,23813,Framing contractors,72.7,22.78,33.8,40038.13,44732.48
1-3-2009,CEU2023813001,20238130,23813,Framing contractors,69.3,22.57,34.3,40255.85,44866.63
1-4-2009,CEU2023813001,20238130,23813,Framing contractors,68,21.94,34.5,39360.36,43759.33
1-5-2009,CEU2023813001,20238130,23813,Framing contractors,67.4,21.92,34.3,39096.51,43340.79
1-6-2009,CEU2023813001,20238130,23813,Framing contractors,65.7,21.57,33.9,38023.6,41792.41
1-7-2009,CEU2023813001,20238130,23813,Framing contractors,65.9,21.28,33.4,36959.11,40686.92
1-8-2009,CEU2023813001,20238130,23813,Framing contractors,64.4,21.45,33.7,37588.98,41287.72
1-9-2009,CEU2023813001,20238130,23813,Framing contractors,63.9,21.45,32.6,36362.04,39915.09
1-10-2009,CEU2023813001,20238130,23813,Framing contractors,62.6,21.6,33,37065.6,40648.25
1-11-2009,CEU2023813001,20238130,23813,Framing contractors,63.3,21.51,34.3,38365.23,42043.75
1-12-2009,CEU2023813001,20238130,23813,Framing contractors,63.1,21.02,34.1,37272.66,40918.48
1-1-2010,CEU2023813001,20238130,23813,Framing contractors,64.2,21.07,33.9,37142.2,40636.38
1-2-2010,CEU2023813001,20238130,23813,Framing contractors,59.6,21.28,33.6,37180.41,40668.05
1-3-2010,CEU2023813001,20238130,23813,Framing contractors,57.8,21.35,33.7,37413.74,40755.91
1-4-2010,CEU2023813001,20238130,23813,Framing contractors,56.3,21.25,34,37570,40855.17
1-5-2010,CEU2023813001,20238130,23813,Framing contractors,56.2,20.64,33.8,36276.86,39418.4
1-6-2010,CEU2023813001,20238130,23813,Framing contractors,56,20.59,33.6,35974.85,39128.43
1-7-2010,CEU2023813001,20238130,23813,Framing contractors,54.1,20.92,34,36986.56,40220.34
1-8-2010,CEU2023813001,20238130,23813,Framing contractors,54.6,20.84,33.5,36303.28,39422.89
1-9-2010,CEU2023813001,20238130,23813,Framing contractors,53.3,21.23,34.6,38197.02,41455.25
1-10-2010,CEU2023813001,20238130,23813,Framing contractors,52.7,21.35,33.4,37080.68,40193.64
1-11-2010,CEU2023813001,20238130,23813,Framing contractors,54.3,21.58,33.5,37592.36,40731.14
1-12-2010,CEU2023813001,20238130,23813,Framing contractors,53,21.82,33.2,37670.05,40745.3
1-1-2011,CEU2023813001,20238130,23813,Framing contractors,50.9,22.81,35.9,42581.71,45839.58
1-2-2011,CEU2023813001,20238130,23813,Framing contractors,50.2,22.13,34,39125.84,41912.63
1-3-2011,CEU2023813001,20238130,23813,Framing contractors,51.1,22.19,32.6,37616.49,39906.64
1-4-2011,CEU2023813001,20238130,23813,Framing contractors,49,22.46,31.6,36906.27,38902.67
1-5-2011,CEU2023813001,20238130,23813,Framing contractors,51.4,22.46,32.6,38074.19,39945.85
1-6-2011,CEU2023813001,20238130,23813,Framing contractors,50.6,22.97,33.5,40013.74,42025.75
1-7-2011,CEU2023813001,20238130,23813,Framing contractors,52.7,22.56,33.7,39534.14,41485.29
1-8-2011,CEU2023813001,20238130,23813,Framing contractors,52.4,22.23,33.7,38955.85,40766.04
1-9-2011,CEU2023813001,20238130,23813,Framing contractors,53.2,21.3,33.6,37215.36,38885.62
1-10-2011,CEU2023813001,20238130,23813,Framing contractors,54.4,21.08,34.5,37817.52,39596.48
1-11-2011,CEU2023813001,20238130,23813,Framing contractors,53.9,20.52,33.6,35852.54,37570.76
1-12-2011,CEU2023813001,20238130,23813,Framing contractors,51.4,20.46,34.4,36598.85,38447.67
1-1-2012,CEU2023813001,20238130,23813,Framing contractors,54.5,19.88,35.2,36388.35,38059.07
1-2-2012,CEU2023813001,20238130,23813,Framing contractors,55.4,19.97,34.9,36241.55,37739.37
1-3-2012,CEU2023813001,20238130,23813,Framing contractors,53.9,19.73,34.9,35806,37004.78
1-4-2012,CEU2023813001,20238130,23813,Framing contractors,52.8,19.59,34.6,35246.33,36316.65
1-5-2012,CEU2023813001,20238130,23813,Framing contractors,51.9,20.18,35.1,36832.54,37995.62
1-6-2012,CEU2023813001,20238130,23813,Framing contractors,53.2,19.54,34.4,34953.15,36109.84
1-7-2012,CEU2023813001,20238130,23813,Framing contractors,51.5,19.98,34,35324.64,36553.2
1-8-2012,CEU2023813001,20238130,23813,Framing contractors,51.6,19.94,34.1,35357.61,36384.82
1-9-2012,CEU2023813001,20238130,23813,Framing contractors,53,20.34,34.7,36701.5,37599.97
1-10-2012,CEU2023813001,20238130,23813,Framing contractors,54,19.84,32.2,33220.1,34046.59
1-11-2012,CEU2023813001,20238130,23813,Framing contractors,54.6,20.44,32.9,34968.75,36009.37
1-12-2012,CEU2023813001,20238130,23813,Framing contractors,55.2,20.25,33.5,35275.5,36423.33
1-1-2013,CEU2023813001,20238130,23813,Framing contractors,56.9,19.64,33,33702.24,34696.27
1-2-2013,CEU2023813001,20238130,23813,Framing contractors,57.2,19.74,33.6,34489.73,35218.54
1-3-2013,CEU2023813001,20238130,23813,Framing contractors,60.9,19.84,32.9,33942.27,34569.14
1-4-2013,CEU2023813001,20238130,23813,Framing contractors,62.7,20.4,34.2,36279.36,36987.84
1-5-2013,CEU2023813001,20238130,23813,Framing contractors,61.9,19.95,33.9,35167.86,35790.91
1-6-2013,CEU2023813001,20238130,23813,Framing contractors,63,19.85,34.2,35301.24,35840.65
1-7-2013,CEU2023813001,20238130,23813,Framing contractors,63.2,19.63,34.1,34807.91,35325.87
1-8-2013,CEU2023813001,20238130,23813,Framing contractors,63.8,19.52,34.4,34917.38,35394.38
1-9-2013,CEU2023813001,20238130,23813,Framing contractors,62.1,19.61,33.6,34262.59,34690.31
1-10-2013,CEU2023813001,20238130,23813,Framing contractors,62.3,20.13,34.3,35903.87,36445.93
1-11-2013,CEU2023813001,20238130,23813,Framing contractors,65.3,20.09,35.2,36772.73,37404.31
1-12-2013,CEU2023813001,20238130,23813,Framing contractors,65.9,20.61,34.9,37403.03,38048.7
1-1-2014,CEU2023813001,20238130,23813,Framing contractors,65.5,20,34.6,35984,36469.5
1-2-2014,CEU2023813001,20238130,23813,Framing contractors,63.9,19.97,34.4,35722.34,36070.91
1-3-2014,CEU2023813001,20238130,23813,Framing contractors,64.5,20.05,34.9,36386.74,36506.7
1-3-2006,CEU2023814001,20238140,23814,Masonry contractors,255.5,20.02,33.2,34562.53,41010.05
1-4-2006,CEU2023814001,20238140,23814,Masonry contractors,255,19.74,34.8,35721.5,42027.63
1-5-2006,CEU2023814001,20238140,23814,Masonry contractors,257.5,19.32,33.4,33554.98,39283.68
1-6-2006,CEU2023814001,20238140,23814,Masonry contractors,256.9,19.96,33.7,34977.9,40868.81
1-7-2006,CEU2023814001,20238140,23814,Masonry contractors,259.1,19.89,34.5,35682.66,41569.34
1-8-2006,CEU2023814001,20238140,23814,Masonry contractors,262.7,20.37,34.3,36331.93,42242.69
1-9-2006,CEU2023814001,20238140,23814,Masonry contractors,257.2,20.65,33.9,36401.82,42532.54
1-10-2006,CEU2023814001,20238140,23814,Masonry contractors,255,20.85,34.3,37188.06,43688.05
1-11-2006,CEU2023814001,20238140,23814,Masonry contractors,251.8,21.17,34.5,37978.98,44683.64
1-12-2006,CEU2023814001,20238140,23814,Masonry contractors,252.3,20.92,36.4,39597.38,46518.48
1-1-2007,CEU2023814001,20238140,23814,Masonry contractors,252.8,21.13,34.8,38236.85,44783.45
1-2-2007,CEU2023814001,20238140,23814,Masonry contractors,234.5,21.11,34.7,38090.88,44375.07
1-3-2007,CEU2023814001,20238140,23814,Masonry contractors,247,21.34,34.8,38616.86,44581.88
1-4-2007,CEU2023814001,20238140,23814,Masonry contractors,246.3,21.39,34.7,38596.12,44270.34
1-5-2007,CEU2023814001,20238140,23814,Masonry contractors,243,21.75,35.2,39811.2,45386.71
1-6-2007,CEU2023814001,20238140,23814,Masonry contractors,239.7,22.14,35.1,40409.93,45980.18
1-7-2007,CEU2023814001,20238140,23814,Masonry contractors,240.5,21.91,34.7,39534.4,44995.41
1-8-2007,CEU2023814001,20238140,23814,Masonry contractors,241.3,21.53,34.5,38624.82,44040.96
1-9-2007,CEU2023814001,20238140,23814,Masonry contractors,235.3,21.61,35.3,39667.32,45105.33
1-10-2007,CEU2023814001,20238140,23814,Masonry contractors,236.9,21.49,35.6,39782.29,45139.5
1-11-2007,CEU2023814001,20238140,23814,Masonry contractors,234.3,21.38,35.8,39801.01,44894.09
1-12-2007,CEU2023814001,20238140,23814,Masonry contractors,231.9,21.66,36.1,40660.15,45893.96
1-1-2008,CEU2023814001,20238140,23814,Masonry contractors,228.1,21.76,36,40734.72,45750.72
1-2-2008,CEU2023814001,20238140,23814,Masonry contractors,222.8,22.13,35.1,40391.68,45234.07
1-3-2008,CEU2023814001,20238140,23814,Masonry contractors,222.3,22.16,34.7,39985.5,44394.38
1-4-2008,CEU2023814001,20238140,23814,Masonry contractors,214.2,22.4,34.3,39952.64,44090.5
1-5-2008,CEU2023814001,20238140,23814,Masonry contractors,217.6,22.55,34.3,40220.18,44015.1
1-6-2008,CEU2023814001,20238140,23814,Masonry contractors,216.8,22.71,34.3,40505.55,43885.17
1-7-2008,CEU2023814001,20238140,23814,Masonry contractors,213.4,22.89,34.3,40826.61,44001.95
1-8-2008,CEU2023814001,20238140,23814,Masonry contractors,209.7,23.07,34.7,41627.51,45044.95
1-9-2008,CEU2023814001,20238140,23814,Masonry contractors,206.8,22.77,34.9,41323,44777.36
1-10-2008,CEU2023814001,20238140,23814,Masonry contractors,202.7,22.75,35.4,41878.2,45842.04
1-11-2008,CEU2023814001,20238140,23814,Masonry contractors,199.7,23.14,33.9,40791.19,45524.07
1-12-2008,CEU2023814001,20238140,23814,Masonry contractors,193.8,23.81,34.2,42343.7,47750.57
1-1-2009,CEU2023814001,20238140,23814,Masonry contractors,190.5,23.55,33.3,40779.18,45786.98
1-2-2009,CEU2023814001,20238140,23814,Masonry contractors,187.5,23.34,36.4,44177.95,49357.68
1-3-2009,CEU2023814001,20238140,23814,Masonry contractors,174.3,23.79,34.7,42926.68,47843.36
1-4-2009,CEU2023814001,20238140,23814,Masonry contractors,167.1,23.79,34.3,42431.84,47174.09
1-5-2009,CEU2023814001,20238140,23814,Masonry contractors,167.4,23.79,34.8,43050.38,47723.89
1-6-2009,CEU2023814001,20238140,23814,Masonry contractors,162.9,23.79,34.6,42802.97,47045.5
1-7-2009,CEU2023814001,20238140,23814,Masonry contractors,157.6,23.77,34.8,43014.19,47352.74
1-8-2009,CEU2023814001,20238140,23814,Masonry contractors,152,23.83,35,43370.6,47638.25
1-9-2009,CEU2023814001,20238140,23814,Masonry contractors,150.8,24.08,33.7,42197.79,46321.07
1-10-2009,CEU2023814001,20238140,23814,Masonry contractors,148.8,24.08,33.4,41822.14,45864.54
1-11-2009,CEU2023814001,20238140,23814,Masonry contractors,143.5,24.05,34.7,43395.82,47556.67
1-12-2009,CEU2023814001,20238140,23814,Masonry contractors,140.1,24.25,34,42874,47067.71
1-1-2010,CEU2023814001,20238140,23814,Masonry contractors,135.9,24.25,35.6,44891.6,49114.82
1-2-2010,CEU2023814001,20238140,23814,Masonry contractors,126.2,24.55,34.6,44170.36,48313.68
1-3-2010,CEU2023814001,20238140,23814,Masonry contractors,134.8,24.02,35.6,44465.82,48437.96
1-4-2010,CEU2023814001,20238140,23814,Masonry contractors,137.6,24.24,36.3,45755.43,49756.34
1-5-2010,CEU2023814001,20238140,23814,Masonry contractors,134.4,24.22,35,44080.4,47897.71
1-6-2010,CEU2023814001,20238140,23814,Masonry contractors,132.6,24.36,35.2,44588.54,48497.21
1-7-2010,CEU2023814001,20238140,23814,Masonry contractors,132,24.44,34.8,44226.63,48093.42
1-8-2010,CEU2023814001,20238140,23814,Masonry contractors,132.9,24.36,34.9,44208.53,48007.46
1-9-2010,CEU2023814001,20238140,23814,Masonry contractors,131.5,24.56,35.6,45465.47,49343.71
1-10-2010,CEU2023814001,20238140,23814,Masonry contractors,130.2,24.72,35.1,45118.95,48906.73
1-11-2010,CEU2023814001,20238140,23814,Masonry contractors,128.3,24.8,35.1,45264.96,49044.36
1-12-2010,CEU2023814001,20238140,23814,Masonry contractors,123,24.42,34,43174.56,46699.18
1-1-2011,CEU2023814001,20238140,23814,Masonry contractors,121,25.39,33.4,44097.35,47471.18
1-2-2011,CEU2023814001,20238140,23814,Masonry contractors,123.7,24.45,34,43227.6,46306.54
1-3-2011,CEU2023814001,20238140,23814,Masonry contractors,128.5,24.54,34.1,43514.33,46163.55
1-4-2011,CEU2023814001,20238140,23814,Masonry contractors,128.2,24.15,34.3,43073.94,45403.97
1-5-2011,CEU2023814001,20238140,23814,Masonry contractors,131.1,24.19,34.6,43522.65,45662.14
1-6-2011,CEU2023814001,20238140,23814,Masonry contractors,131.6,23.77,34.5,42643.38,44787.62
1-7-2011,CEU2023814001,20238140,23814,Masonry contractors,131,24.18,34.3,43127.45,45255.93
1-8-2011,CEU2023814001,20238140,23814,Masonry contractors,129.4,24.63,33.5,42905.46,44899.17
1-9-2011,CEU2023814001,20238140,23814,Masonry contractors,127.7,24.85,33.5,43288.7,45231.54
1-10-2011,CEU2023814001,20238140,23814,Masonry contractors,127.8,25.06,33.3,43393.89,45435.17
1-11-2011,CEU2023814001,20238140,23814,Masonry contractors,128.3,25.61,33.3,44346.28,46471.55
1-12-2011,CEU2023814001,20238140,23814,Masonry contractors,127.3,25.46,34.6,45807.63,48121.64
1-1-2012,CEU2023814001,20238140,23814,Masonry contractors,126.8,24.88,33.7,43599.71,45601.53
1-2-2012,CEU2023814001,20238140,23814,Masonry contractors,127.6,25.08,35.1,45776.02,47667.88
1-3-2012,CEU2023814001,20238140,23814,Masonry contractors,127.4,25.58,34.1,45358.46,46877.05
1-4-2012,CEU2023814001,20238140,23814,Masonry contractors,127.8,25.81,34.5,46303.14,47709.23
1-5-2012,CEU2023814001,20238140,23814,Masonry contractors,126.6,25.93,33.2,44765.55,46179.14
1-6-2012,CEU2023814001,20238140,23814,Masonry contractors,128.2,25.67,34.2,45651.53,47162.25
1-7-2012,CEU2023814001,20238140,23814,Masonry contractors,129.5,25.87,34.5,46410.78,48024.9
1-8-2012,CEU2023814001,20238140,23814,Masonry contractors,130.9,25.64,34.6,46131.49,47471.71
1-9-2012,CEU2023814001,20238140,23814,Masonry contractors,131.9,25.8,34.7,46553.52,47693.18
1-10-2012,CEU2023814001,20238140,23814,Masonry contractors,131.2,25.28,35.2,46272.51,47423.74
1-11-2012,CEU2023814001,20238140,23814,Masonry contractors,131.2,25.23,35,45918.6,47285.06
1-12-2012,CEU2023814001,20238140,23814,Masonry contractors,133.4,24.98,35.4,45983.18,47479.43
1-1-2013,CEU2023814001,20238140,23814,Masonry contractors,132.1,25.13,35.5,46389.98,47758.23
1-2-2013,CEU2023814001,20238140,23814,Masonry contractors,130.5,25.13,35.7,46651.33,47637.14
1-3-2013,CEU2023814001,20238140,23814,Masonry contractors,128.9,24.73,34.7,44622.81,45446.93
1-4-2013,CEU2023814001,20238140,23814,Masonry contractors,128.8,24.42,35.2,44698.37,45571.27
1-5-2013,CEU2023814001,20238140,23814,Masonry contractors,127.8,24.62,35.3,45192.47,45993.13
1-6-2013,CEU2023814001,20238140,23814,Masonry contractors,126.1,24.93,35.3,45761.51,46460.75
1-7-2013,CEU2023814001,20238140,23814,Masonry contractors,126.6,25.13,35.3,46128.63,46815.04
1-8-2013,CEU2023814001,20238140,23814,Masonry contractors,126.1,24.99,36.1,46911.23,47552.08
1-9-2013,CEU2023814001,20238140,23814,Masonry contractors,127.2,24.52,36.4,46411.46,46990.83
1-10-2013,CEU2023814001,20238140,23814,Masonry contractors,128.2,24.71,35.8,46000.14,46694.63
1-11-2013,CEU2023814001,20238140,23814,Masonry contractors,127.6,24.74,36.1,46441.93,47239.58
1-12-2013,CEU2023814001,20238140,23814,Masonry contractors,121.2,24.78,34.5,44455.32,45222.73
1-1-2014,CEU2023814001,20238140,23814,Masonry contractors,122.6,24.6,34.3,43876.56,44468.54
1-2-2014,CEU2023814001,20238140,23814,Masonry contractors,123.7,24.63,33.1,42393.16,42806.83
1-3-2014,CEU2023814001,20238140,23814,Masonry contractors,125.6,24.53,34.3,43751.71,43895.95
1-3-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,58.5,21.39,37.7,41932.96,49755.41
1-4-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,58.5,20.96,38.4,41852.93,49241.48
1-5-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,59.1,21.01,38.2,41734.27,48859.39
1-6-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,58.8,21.19,38.2,42091.82,49180.83
1-7-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,59.8,21.14,38.2,41992.5,48920.13
1-8-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,59.9,21.14,38.2,41992.5,48824.15
1-9-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,58.8,21.09,38.3,42002.84,49076.88
1-10-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,61,21.21,38.6,42572.71,50013.86
1-11-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,61.1,21.51,38.6,43174.87,50796.79
1-12-2006,CEU2023815001,20238150,23815,Glass and glazing contractors,61.3,21.62,39,43845.36,51508.95
1-1-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,61.8,22.2,39.1,45137.04,52865.03
1-2-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,62.6,22.97,37.5,44791.5,52181.14
1-3-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,62.9,22.49,40.3,47130.04,54410.05
1-4-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,63.4,22.41,38.8,45214.41,51861.63
1-5-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,63.9,22.52,38.9,45553.46,51933.16
1-6-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,63.7,22.77,38.5,45585.54,51869.21
1-7-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,63.7,23.06,38.7,46405.95,52816.14
1-8-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,64.4,22.84,38.6,45844.45,52272.95
1-9-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,65.2,23.13,38.3,46065.71,52380.88
1-10-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,65.3,22.85,37.7,44795.14,50827.4
1-11-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,65.6,22.64,38.2,44972.1,50726.89
1-12-2007,CEU2023815001,20238150,23815,Glass and glazing contractors,65,22.77,38,44993.52,50785.12
1-1-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,66.3,22.95,38.2,45587.88,51201.49
1-2-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,66.1,22.94,38.5,45925.88,51431.75
1-3-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,66,23.03,38.4,45986.3,51056.84
1-4-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,66,23.39,38,46218.64,51005.46
1-5-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,64.4,23.49,38.1,46538.39,50929.45
1-6-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,64.5,23.16,38.5,46366.32,50234.93
1-7-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,63.5,23.28,37.4,45274.95,48796.26
1-8-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,63.7,23.91,38.4,47743.49,51663.02
1-9-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,64.4,23.26,38.2,46203.66,50066.02
1-10-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,63.9,22.91,39,46461.48,50859.14
1-11-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,62.6,23.58,38.4,47084.54,52547.62
1-12-2008,CEU2023815001,20238150,23815,Glass and glazing contractors,63,23.56,39,47779.68,53880.66
1-1-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,62.1,23.05,38.1,45666.66,51274.66
1-2-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,61.2,23.06,37.5,44967,50239.25
1-3-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,60,22.65,37,43578.6,48569.95
1-4-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,60.6,23.31,36.7,44484.8,49456.49
1-5-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,61.5,23.18,37,44598.32,49439.87
1-6-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,61.5,23.45,36.7,44751.98,49187.7
1-7-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,60.4,23.4,36.7,44656.56,49160.76
1-8-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,59.1,23.34,36.6,44420.69,48791.67
1-9-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,57,23.4,35.9,43683.12,47951.54
1-10-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,56.2,23.71,35.5,43768.66,47999.2
1-11-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,55.7,23.73,35.3,43558.79,47735.27
1-12-2009,CEU2023815001,20238150,23815,Glass and glazing contractors,54.1,23.89,34.8,43231.34,47460.01
1-1-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,52.4,24.52,35.2,44881.41,49103.66
1-2-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,51,24.21,34.5,43432.74,47506.87
1-3-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,50.3,23.5,36.7,44847.4,48853.62
1-4-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,47.8,23.93,36,44796.96,48714.07
1-5-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,48,24.66,36.3,46548.21,50579.24
1-6-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,48.4,24.47,36,45807.84,49823.4
1-7-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,48.6,24.82,36,46463.04,50525.36
1-8-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,47.7,25.28,35.9,47192.7,51248.07
1-9-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,47.3,25.08,36.7,47862.67,51945.39
1-10-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,46.6,25.2,36.5,47829.6,51844.95
1-11-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,46.8,25.53,37.4,49650.74,53796.34
1-12-2010,CEU2023815001,20238150,23815,Glass and glazing contractors,46.2,25.62,36.6,48759.98,52740.57
1-1-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,46.9,25.65,36.2,48283.56,51977.67
1-2-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,47.4,25.56,36.9,49044.53,52537.79
1-3-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,47,25.65,36.3,48416.94,51364.64
1-4-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,47.8,25.28,37.2,48901.63,51546.9
1-5-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,47.7,25.19,36.8,48203.59,50573.19
1-6-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,47.7,25.54,37.1,49271.77,51749.3
1-7-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,48,25.29,37.1,48789.47,51197.39
1-8-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,47.8,25.32,36.8,48452.35,50703.81
1-9-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,48.4,26.06,36.7,49732.9,51964.96
1-10-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,49.1,25.86,36.8,49485.7,51813.54
1-11-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,48.6,25.45,36.2,47907.08,50203.01
1-12-2011,CEU2023815001,20238150,23815,Glass and glazing contractors,49.3,25.45,37.3,49362.82,51856.42
1-1-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,48.7,25.57,37,49196.68,51455.48
1-2-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,49.9,25.87,37.5,50446.5,52531.39
1-3-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,48.3,26.5,37.5,51675,53405.07
1-4-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,47.7,26.74,38,52838.24,54442.78
1-5-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,48.5,26.39,37.1,50911.59,52519.25
1-6-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,48.6,26.31,38.3,52399,54133.01
1-7-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,48.8,26.08,38,51534.08,53326.38
1-8-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,49.1,26.26,38.2,52162.86,53678.3
1-9-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,48.1,26.69,39.3,54543.68,55878.95
1-10-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,49.3,26.97,40,56097.6,57493.27
1-11-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,49.9,26.92,39.7,55573.65,57227.43
1-12-2012,CEU2023815001,20238150,23815,Glass and glazing contractors,50.1,26.66,38.9,53927.85,55682.61
1-1-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,50.7,26.52,39.7,54747.89,56362.65
1-2-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,49.9,26.34,38.9,53280.55,54406.44
1-3-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,50.1,26.22,39.5,53855.88,54850.52
1-4-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,49.5,26.41,38.4,52735.49,53765.34
1-5-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,49.1,26.01,38.3,51801.52,52719.27
1-6-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,48.3,25.99,38.1,51491.39,52278.19
1-7-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,48.2,26.08,38.4,52076.54,52851.46
1-8-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,47.7,26.01,38.5,52072.02,52783.38
1-9-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,47.7,25.83,38.2,51308.71,51949.22
1-10-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,46.7,25.18,38,49755.68,50506.87
1-11-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,47.5,25.08,37.7,49166.83,50011.28
1-12-2013,CEU2023815001,20238150,23815,Glass and glazing contractors,47.2,25.29,37.5,49315.5,50166.81
1-1-2014,CEU2023815001,20238150,23815,Glass and glazing contractors,47.7,24.99,37.3,48470.61,49124.57
1-2-2014,CEU2023815001,20238150,23815,Glass and glazing contractors,48.1,24.72,36.8,47304.19,47765.79
1-3-2014,CEU2023815001,20238150,23815,Glass and glazing contractors,48.3,24.39,38,48194.64,48353.53
1-3-2006,CEU2023816001,20238160,23816,Roofing contractors,203.4,19.09,35,34743.8,41225.14
1-4-2006,CEU2023816001,20238160,23816,Roofing contractors,207.1,19.08,36.2,35916.19,42256.69
1-5-2006,CEU2023816001,20238160,23816,Roofing contractors,207.1,19.1,34.6,34364.72,40231.67
1-6-2006,CEU2023816001,20238160,23816,Roofing contractors,204.8,19.4,36.1,36417.68,42551.07
1-7-2006,CEU2023816001,20238160,23816,Roofing contractors,200.7,19.4,35.1,35408.88,41250.39
1-8-2006,CEU2023816001,20238160,23816,Roofing contractors,203.9,19.46,34.8,35214.82,40943.83
1-9-2006,CEU2023816001,20238160,23816,Roofing contractors,202.9,19.62,35.4,36116.5,42199.16
1-10-2006,CEU2023816001,20238160,23816,Roofing contractors,199.7,19.57,35.4,36024.46,42321.06
1-11-2006,CEU2023816001,20238160,23816,Roofing contractors,202.7,19.71,34.9,35769.71,42084.35
1-12-2006,CEU2023816001,20238160,23816,Roofing contractors,204.7,19.7,37.8,38722.32,45490.48
1-1-2007,CEU2023816001,20238160,23816,Roofing contractors,206,19.51,35.8,36319.82,42538.2
1-2-2007,CEU2023816001,20238160,23816,Roofing contractors,198.6,20,33.3,34632,40345.54
1-3-2007,CEU2023816001,20238160,23816,Roofing contractors,206,19.68,36.2,37045.63,42767.94
1-4-2007,CEU2023816001,20238160,23816,Roofing contractors,202,20.3,34.8,36734.88,42135.47
1-5-2007,CEU2023816001,20238160,23816,Roofing contractors,199.8,20.63,37,39692.12,45250.95
1-6-2007,CEU2023816001,20238160,23816,Roofing contractors,199.8,20.68,34.9,37530.06,42703.34
1-7-2007,CEU2023816001,20238160,23816,Roofing contractors,197.6,20.56,36,38488.32,43804.83
1-8-2007,CEU2023816001,20238160,23816,Roofing contractors,195.2,20.34,35.9,37970.71,43295.13
1-9-2007,CEU2023816001,20238160,23816,Roofing contractors,193.2,20.71,35.8,38553.73,43839.09
1-10-2007,CEU2023816001,20238160,23816,Roofing contractors,192.8,20.97,36.1,39364.88,44665.89
1-11-2007,CEU2023816001,20238160,23816,Roofing contractors,191.2,21.07,36.4,39881.3,44984.65
1-12-2007,CEU2023816001,20238160,23816,Roofing contractors,192.1,20.98,36.2,39492.75,44576.29
1-1-2008,CEU2023816001,20238160,23816,Roofing contractors,192.4,21.11,37.3,40944.96,45986.84
1-2-2008,CEU2023816001,20238160,23816,Roofing contractors,192.6,20.9,36.9,40102.92,44910.7
1-3-2008,CEU2023816001,20238160,23816,Roofing contractors,195.8,21.13,37,40654.12,45136.72
1-4-2008,CEU2023816001,20238160,23816,Roofing contractors,195.1,21.31,36.9,40889.63,45124.53
1-5-2008,CEU2023816001,20238160,23816,Roofing contractors,193.1,21.45,36.3,40489.02,44309.3
1-6-2008,CEU2023816001,20238160,23816,Roofing contractors,192.5,21.35,35.8,39745.16,43061.33
1-7-2008,CEU2023816001,20238160,23816,Roofing contractors,192.4,21.35,35.6,39523.12,42597.08
1-8-2008,CEU2023816001,20238160,23816,Roofing contractors,190.7,21.42,36,40098.24,43390.13
1-9-2008,CEU2023816001,20238160,23816,Roofing contractors,192,21.25,35.7,39448.5,42746.16
1-10-2008,CEU2023816001,20238160,23816,Roofing contractors,190.9,21.28,36.5,40389.44,44212.37
1-11-2008,CEU2023816001,20238160,23816,Roofing contractors,183.9,21.35,33.5,37191.7,41506.94
1-12-2008,CEU2023816001,20238160,23816,Roofing contractors,181.3,21.73,35,39548.6,44598.56
1-1-2009,CEU2023816001,20238160,23816,Roofing contractors,180.6,21.72,34.1,38513.9,43243.52
1-2-2009,CEU2023816001,20238160,23816,Roofing contractors,178.7,21.78,34.5,39073.32,43654.55
1-3-2009,CEU2023816001,20238160,23816,Roofing contractors,175,22.11,33.5,38515.62,42927.07
1-4-2009,CEU2023816001,20238160,23816,Roofing contractors,166.7,22.04,33.5,38393.68,42684.61
1-5-2009,CEU2023816001,20238160,23816,Roofing contractors,169.6,22.14,33.8,38913.27,43137.65
1-6-2009,CEU2023816001,20238160,23816,Roofing contractors,170,22.11,33.6,38630.59,42459.57
1-7-2009,CEU2023816001,20238160,23816,Roofing contractors,167.8,22.28,33.8,39159.33,43109.06
1-8-2009,CEU2023816001,20238160,23816,Roofing contractors,168.8,22.17,33,38043.72,41787.21
1-9-2009,CEU2023816001,20238160,23816,Roofing contractors,167.8,22.44,32.6,38040.29,41757.32
1-10-2009,CEU2023816001,20238160,23816,Roofing contractors,165.6,22.42,31.3,36490.79,40017.88
1-11-2009,CEU2023816001,20238160,23816,Roofing contractors,168.3,22.45,32.9,38407.46,42090.02
1-12-2009,CEU2023816001,20238160,23816,Roofing contractors,170.7,22.03,32.2,36887.03,40495.13
1-1-2010,CEU2023816001,20238160,23816,Roofing contractors,164.2,22.24,32.8,37932.54,41501.08
1-2-2010,CEU2023816001,20238160,23816,Roofing contractors,158.2,22.23,31.1,35950.36,39322.61
1-3-2010,CEU2023816001,20238160,23816,Roofing contractors,165.3,22.23,32.9,38031.09,41428.41
1-4-2010,CEU2023816001,20238160,23816,Roofing contractors,168.2,22.09,34.5,39629.46,43094.71
1-5-2010,CEU2023816001,20238160,23816,Roofing contractors,168.9,22.15,33,38009.4,41300.97
1-6-2010,CEU2023816001,20238160,23816,Roofing contractors,170,22.29,33.7,39061,42485.12
1-7-2010,CEU2023816001,20238160,23816,Roofing contractors,173,22.33,33,38318.28,41668.5
1-8-2010,CEU2023816001,20238160,23816,Roofing contractors,172.2,22.68,33.8,39862.37,43287.82
1-9-2010,CEU2023816001,20238160,23816,Roofing contractors,171.4,22.72,34.1,40287.11,43723.63
1-10-2010,CEU2023816001,20238160,23816,Roofing contractors,171.3,22.66,34.7,40887.7,44320.27
1-11-2010,CEU2023816001,20238160,23816,Roofing contractors,169.1,22.62,34.7,40815.53,44223.43
1-12-2010,CEU2023816001,20238160,23816,Roofing contractors,163.5,22.75,33.7,39867.1,43121.71
1-1-2011,CEU2023816001,20238160,23816,Roofing contractors,161.2,22.95,33.4,39859.56,42909.16
1-2-2011,CEU2023816001,20238160,23816,Roofing contractors,160,23.08,33.8,40565.41,43454.73
1-3-2011,CEU2023816001,20238160,23816,Roofing contractors,165.4,22.85,34.2,40636.44,43110.45
1-4-2011,CEU2023816001,20238160,23816,Roofing contractors,170.5,23.19,34.1,41120.51,43344.87
1-5-2011,CEU2023816001,20238160,23816,Roofing contractors,172.7,23.22,34.7,41898.17,43957.81
1-6-2011,CEU2023816001,20238160,23816,Roofing contractors,171.8,23.07,35,41987.4,44098.65
1-7-2011,CEU2023816001,20238160,23816,Roofing contractors,173.3,23.11,35.2,42300.54,44388.22
1-8-2011,CEU2023816001,20238160,23816,Roofing contractors,172.9,22.93,34.8,41494.13,43422.26
1-9-2011,CEU2023816001,20238160,23816,Roofing contractors,171,22.9,34.7,41320.76,43175.28
1-10-2011,CEU2023816001,20238160,23816,Roofing contractors,171.6,23.06,34.6,41489.55,43441.25
1-11-2011,CEU2023816001,20238160,23816,Roofing contractors,171.8,23.17,34.5,41566.98,43559.06
1-12-2011,CEU2023816001,20238160,23816,Roofing contractors,173.6,22.88,36.1,42950.34,45120
1-1-2012,CEU2023816001,20238160,23816,Roofing contractors,171.2,22.74,35.5,41978.04,43905.4
1-2-2012,CEU2023816001,20238160,23816,Roofing contractors,168.7,22.73,35.9,42432.36,44186.04
1-3-2012,CEU2023816001,20238160,23816,Roofing contractors,168.6,22.62,35.4,41638.89,43032.96
1-4-2012,CEU2023816001,20238160,23816,Roofing contractors,164.9,22.29,35.9,41610.97,42874.57
1-5-2012,CEU2023816001,20238160,23816,Roofing contractors,163.7,22.52,35.5,41571.92,42884.66
1-6-2012,CEU2023816001,20238160,23816,Roofing contractors,163.6,22.64,35.4,41675.71,43054.86
1-7-2012,CEU2023816001,20238160,23816,Roofing contractors,157.1,22.92,35.5,42310.32,43781.83
1-8-2012,CEU2023816001,20238160,23816,Roofing contractors,160.2,22.94,34.4,41035.07,42227.23
1-9-2012,CEU2023816001,20238160,23816,Roofing contractors,163.9,22.9,35.4,42154.32,43186.29
1-10-2012,CEU2023816001,20238160,23816,Roofing contractors,165.4,23.05,35.3,42310.58,43363.24
1-11-2012,CEU2023816001,20238160,23816,Roofing contractors,166,23.01,35.3,42237.16,43494.06
1-12-2012,CEU2023816001,20238160,23816,Roofing contractors,166.2,23.35,35.6,43225.52,44632.04
1-1-2013,CEU2023816001,20238160,23816,Roofing contractors,166.2,23.58,35.2,43160.83,44433.84
1-2-2013,CEU2023816001,20238160,23816,Roofing contractors,167.6,23.28,35.2,42611.71,43512.16
1-3-2013,CEU2023816001,20238160,23816,Roofing contractors,167.9,23.02,35.6,42614.63,43401.66
1-4-2013,CEU2023816001,20238160,23816,Roofing contractors,164.9,23.34,35.6,43207.01,44050.78
1-5-2013,CEU2023816001,20238160,23816,Roofing contractors,166.3,23.35,35.5,43104.1,43867.76
1-6-2013,CEU2023816001,20238160,23816,Roofing contractors,165.3,23.67,35.2,43325.57,43987.59
1-7-2013,CEU2023816001,20238160,23816,Roofing contractors,165.2,23.27,35,42351.4,42981.61
1-8-2013,CEU2023816001,20238160,23816,Roofing contractors,165.3,23.39,35.6,43299.57,43891.08
1-9-2013,CEU2023816001,20238160,23816,Roofing contractors,163,23.41,35.4,43093.13,43631.08
1-10-2013,CEU2023816001,20238160,23816,Roofing contractors,162.4,23.18,35.4,42669.74,43313.95
1-11-2013,CEU2023816001,20238160,23816,Roofing contractors,163.6,23.33,35.1,42581.91,43313.27
1-12-2013,CEU2023816001,20238160,23816,Roofing contractors,163.8,23.12,34.6,41597.5,42315.58
1-1-2014,CEU2023816001,20238160,23816,Roofing contractors,166.2,23.48,34.4,42001.02,42567.7
1-2-2014,CEU2023816001,20238160,23816,Roofing contractors,164.1,23.5,34.1,41670.2,42076.82
1-3-2014,CEU2023816001,20238160,23816,Roofing contractors,167.7,23.72,36,44403.84,44550.23
1-3-2006,CEU2023817001,20238170,23817,Siding contractors,50.1,17.6,33.6,30750.72,36487.16
1-4-2006,CEU2023817001,20238170,23817,Siding contractors,50,17.67,34.5,31699.98,37296.17
1-5-2006,CEU2023817001,20238170,23817,Siding contractors,49.8,17.29,34.6,31108.17,36419.14
1-6-2006,CEU2023817001,20238170,23817,Siding contractors,49.2,17.54,35.2,32105.22,37512.31
1-7-2006,CEU2023817001,20238170,23817,Siding contractors,48.2,17.83,35.6,33006.89,38452.14
1-8-2006,CEU2023817001,20238170,23817,Siding contractors,48.7,17.48,34.2,31086.43,36143.81
1-9-2006,CEU2023817001,20238170,23817,Siding contractors,48.5,17.22,35.3,31609.03,36932.56
1-10-2006,CEU2023817001,20238170,23817,Siding contractors,47.8,17.36,37.6,33942.27,39874.94
1-11-2006,CEU2023817001,20238170,23817,Siding contractors,47,17.31,36.2,32584.34,38336.65
1-12-2006,CEU2023817001,20238170,23817,Siding contractors,46.7,17.54,36.4,33199.71,39002.59
1-1-2007,CEU2023817001,20238170,23817,Siding contractors,48,17.53,35.3,32178.07,37687.33
1-2-2007,CEU2023817001,20238170,23817,Siding contractors,46.6,17.72,33.8,31144.67,36282.88
1-3-2007,CEU2023817001,20238170,23817,Siding contractors,47.5,18.25,34.2,32455.8,37469.14
1-4-2007,CEU2023817001,20238170,23817,Siding contractors,47.3,18.59,33.9,32770.45,37588.21
1-5-2007,CEU2023817001,20238170,23817,Siding contractors,47.4,19.05,34.3,33977.58,38736.09
1-6-2007,CEU2023817001,20238170,23817,Siding contractors,48.2,19.02,33.4,33033.94,37587.45
1-7-2007,CEU2023817001,20238170,23817,Siding contractors,48.2,18.82,33.3,32588.71,37090.3
1-8-2007,CEU2023817001,20238170,23817,Siding contractors,46.3,18.86,32.6,31971.47,36454.65
1-9-2007,CEU2023817001,20238170,23817,Siding contractors,47,19.03,33.3,32952.35,37469.8
1-10-2007,CEU2023817001,20238170,23817,Siding contractors,46.6,18.93,33.9,33369.8,37863.49
1-11-2007,CEU2023817001,20238170,23817,Siding contractors,46.2,19.38,34.5,34767.72,39216.72
1-12-2007,CEU2023817001,20238170,23817,Siding contractors,46,19.12,35.5,35295.52,39838.79
1-1-2008,CEU2023817001,20238170,23817,Siding contractors,44.7,19.27,35.6,35672.63,40065.29
1-2-2008,CEU2023817001,20238170,23817,Siding contractors,44.7,19,35.7,35271.6,39500.17
1-3-2008,CEU2023817001,20238170,23817,Siding contractors,43.2,19,37.3,36852.4,40915.82
1-4-2008,CEU2023817001,20238170,23817,Siding contractors,43.1,18.68,38.4,37300.22,41163.37
1-5-2008,CEU2023817001,20238170,23817,Siding contractors,41.6,19.55,36.6,37207.56,40718.22
1-6-2008,CEU2023817001,20238170,23817,Siding contractors,41.3,20.16,36.5,38263.68,41456.24
1-7-2008,CEU2023817001,20238170,23817,Siding contractors,41,20.46,36.8,39152.26,42197.38
1-8-2008,CEU2023817001,20238170,23817,Siding contractors,40,19.9,37.8,39115.44,42326.65
1-9-2008,CEU2023817001,20238170,23817,Siding contractors,37.8,21.71,36.6,41318.47,44772.46
1-10-2008,CEU2023817001,20238170,23817,Siding contractors,38.3,21.44,36.1,40247.17,44056.63
1-11-2008,CEU2023817001,20238170,23817,Siding contractors,37.1,20.61,35.7,38260.4,42699.64
1-12-2008,CEU2023817001,20238170,23817,Siding contractors,36.3,20.21,34.2,35941.46,40530.83
1-1-2009,CEU2023817001,20238170,23817,Siding contractors,35.7,20.66,34.2,36741.74,41253.74
1-2-2009,CEU2023817001,20238170,23817,Siding contractors,34.8,21.15,34.5,37943.1,42391.82
1-3-2009,CEU2023817001,20238170,23817,Siding contractors,34.5,20.82,33.6,36376.7,40543.17
1-4-2009,CEU2023817001,20238170,23817,Siding contractors,34,20.36,33.5,35467.12,39430.98
1-5-2009,CEU2023817001,20238170,23817,Siding contractors,33.7,20.03,33.4,34788.11,38564.67
1-6-2009,CEU2023817001,20238170,23817,Siding contractors,32.4,19.77,33.9,34850.55,38304.86
1-7-2009,CEU2023817001,20238170,23817,Siding contractors,33,19.65,35.3,36069.54,39707.63
1-8-2009,CEU2023817001,20238170,23817,Siding contractors,34.1,20.46,34.5,36705.24,40317.02
1-9-2009,CEU2023817001,20238170,23817,Siding contractors,33.6,20.48,33.4,35569.66,39045.29
1-10-2009,CEU2023817001,20238170,23817,Siding contractors,33.3,20.53,33.5,35763.26,39220.03
1-11-2009,CEU2023817001,20238170,23817,Siding contractors,32.9,20.9,33,35864.4,39303.13
1-12-2009,CEU2023817001,20238170,23817,Siding contractors,32.5,20.89,32.1,34869.59,38280.35
1-1-2010,CEU2023817001,20238170,23817,Siding contractors,32.2,21.28,33,36516.48,39951.8
1-2-2010,CEU2023817001,20238170,23817,Siding contractors,31.9,21.17,33,36327.72,39735.38
1-3-2010,CEU2023817001,20238170,23817,Siding contractors,31.6,21.09,34.2,37506.46,40856.91
1-4-2010,CEU2023817001,20238170,23817,Siding contractors,31.2,21.36,34.6,38430.91,41791.36
1-5-2010,CEU2023817001,20238170,23817,Siding contractors,30.3,21.73,34.9,39435.61,42850.69
1-6-2010,CEU2023817001,20238170,23817,Siding contractors,30.7,21.57,35.1,39369.56,42820.73
1-7-2010,CEU2023817001,20238170,23817,Siding contractors,30.1,21.94,34.3,39132.18,42553.56
1-8-2010,CEU2023817001,20238170,23817,Siding contractors,29.4,20.82,34.4,37242.82,40443.17
1-9-2010,CEU2023817001,20238170,23817,Siding contractors,29.5,21.95,34.8,39720.72,43108.92
1-10-2010,CEU2023817001,20238170,23817,Siding contractors,30.5,22.19,34.1,39347.31,42650.55
1-11-2010,CEU2023817001,20238170,23817,Siding contractors,29.7,21.86,34.2,38875.82,42121.77
1-12-2010,CEU2023817001,20238170,23817,Siding contractors,29.5,21.96,35,39967.2,43229.98
1-1-2011,CEU2023817001,20238170,23817,Siding contractors,29.4,21.47,36.3,40526.77,43627.43
1-2-2011,CEU2023817001,20238170,23817,Siding contractors,29.8,20.71,35.6,38338.35,41069.05
1-3-2011,CEU2023817001,20238170,23817,Siding contractors,30.1,21.65,35.2,39628.16,42040.78
1-4-2011,CEU2023817001,20238170,23817,Siding contractors,29.9,21.26,35.9,39688.17,41835.05
1-5-2011,CEU2023817001,20238170,23817,Siding contractors,31.6,20.97,36.2,39473.93,41414.4
1-6-2011,CEU2023817001,20238170,23817,Siding contractors,31,21.05,36.3,39733.98,41731.93
1-7-2011,CEU2023817001,20238170,23817,Siding contractors,31.5,20.62,37,39672.88,41630.87
1-8-2011,CEU2023817001,20238170,23817,Siding contractors,31.6,20.17,37.2,39016.85,40829.86
1-9-2011,CEU2023817001,20238170,23817,Siding contractors,31.7,20.29,37.7,39776.52,41561.73
1-10-2011,CEU2023817001,20238170,23817,Siding contractors,31.5,20.04,37.7,39286.41,41134.47
1-11-2011,CEU2023817001,20238170,23817,Siding contractors,31.6,20.45,37.7,40090.18,42011.49
1-12-2011,CEU2023817001,20238170,23817,Siding contractors,31.7,20.38,38,40270.88,42305.2
1-1-2012,CEU2023817001,20238170,23817,Siding contractors,31.3,21.26,38.7,42783.63,44747.97
1-2-2012,CEU2023817001,20238170,23817,Siding contractors,30.8,21.26,38.3,42341.41,44091.33
1-3-2012,CEU2023817001,20238170,23817,Siding contractors,30.8,21.26,38.1,42120.31,43530.49
1-4-2012,CEU2023817001,20238170,23817,Siding contractors,30.8,21.51,37.5,41944.5,43218.23
1-5-2012,CEU2023817001,20238170,23817,Siding contractors,30.7,21.65,37,41654.6,42969.95
1-6-2012,CEU2023817001,20238170,23817,Siding contractors,30.4,21.37,37.4,41560.38,42935.71
1-7-2012,CEU2023817001,20238170,23817,Siding contractors,29.9,21.48,37,41327.52,42764.85
1-8-2012,CEU2023817001,20238170,23817,Siding contractors,30.2,21.89,36.2,41205.73,42402.85
1-9-2012,CEU2023817001,20238170,23817,Siding contractors,30,21.75,37.7,42638.7,43682.52
1-10-2012,CEU2023817001,20238170,23817,Siding contractors,29.4,22.04,37.6,43092.61,44164.73
1-11-2012,CEU2023817001,20238170,23817,Siding contractors,29.6,21.89,38.4,43709.95,45010.69
1-12-2012,CEU2023817001,20238170,23817,Siding contractors,30,22.37,37.6,43737.82,45161.01
1-1-2013,CEU2023817001,20238170,23817,Siding contractors,29.9,22.27,36.7,42500.07,43753.59
1-2-2013,CEU2023817001,20238170,23817,Siding contractors,30.2,22.41,37.2,43349.9,44265.95
1-3-2013,CEU2023817001,20238170,23817,Siding contractors,30.1,22.73,36.1,42668.76,43456.79
1-4-2013,CEU2023817001,20238170,23817,Siding contractors,29.9,22.64,35.1,41322.53,42129.5
1-5-2013,CEU2023817001,20238170,23817,Siding contractors,30,22.95,36.1,43081.74,43845
1-6-2013,CEU2023817001,20238170,23817,Siding contractors,30.1,23.53,35.3,43191.67,43851.65
1-7-2013,CEU2023817001,20238170,23817,Siding contractors,30.3,23.35,36,43711.2,44361.64
1-8-2013,CEU2023817001,20238170,23817,Siding contractors,30.2,23.22,35.5,42864.12,43449.69
1-9-2013,CEU2023817001,20238170,23817,Siding contractors,30.1,22.93,35.3,42090.31,42615.74
1-10-2013,CEU2023817001,20238170,23817,Siding contractors,30.7,23.37,35.4,43019.5,43668.99
1-11-2013,CEU2023817001,20238170,23817,Siding contractors,30.4,23.55,35.1,42983.46,43721.71
1-12-2013,CEU2023817001,20238170,23817,Siding contractors,30.1,23.78,32.3,39940.89,40630.36
1-1-2014,CEU2023817001,20238170,23817,Siding contractors,30,23.15,32.2,38762.36,39285.34
1-2-2014,CEU2023817001,20238170,23817,Siding contractors,30.3,22.72,32.2,38042.37,38413.59
1-3-2014,CEU2023817001,20238170,23817,Siding contractors,29.8,23.41,35.3,42971.39,43113.06
1-3-2006,CEU2023819001,20238190,23819,Other building exterior contractors,49.4,22.36,40,46508.8,55184.86
1-4-2006,CEU2023819001,20238190,23819,Other building exterior contractors,49.9,20.83,40.7,44084.61,51867.13
1-5-2006,CEU2023819001,20238190,23819,Other building exterior contractors,51.7,20.58,38.6,41308.18,48360.55
1-6-2006,CEU2023819001,20238190,23819,Other building exterior contractors,52.8,20.12,40.3,42163.47,49264.56
1-7-2006,CEU2023819001,20238190,23819,Other building exterior contractors,52.8,20.9,40.4,43906.72,51150.14
1-8-2006,CEU2023819001,20238190,23819,Other building exterior contractors,54.7,20.73,39.9,43010.61,50007.89
1-9-2006,CEU2023819001,20238190,23819,Other building exterior contractors,58,20.98,39.3,42874.73,50095.6
1-10-2006,CEU2023819001,20238190,23819,Other building exterior contractors,56.1,20.56,39.8,42550.98,49988.33
1-11-2006,CEU2023819001,20238190,23819,Other building exterior contractors,54.5,20.17,40.3,42268.25,49730.12
1-12-2006,CEU2023819001,20238190,23819,Other building exterior contractors,54,20.06,42,43811.04,51468.64
1-1-2007,CEU2023819001,20238190,23819,Other building exterior contractors,54,19.55,40,40664,47626.15
1-2-2007,CEU2023819001,20238190,23819,Other building exterior contractors,52.5,19.62,38.1,38871.14,45284.06
1-3-2007,CEU2023819001,20238190,23819,Other building exterior contractors,53.1,19.97,40.2,41745.29,48193.54
1-4-2007,CEU2023819001,20238190,23819,Other building exterior contractors,53.3,20.13,39.6,41451.7,47545.73
1-5-2007,CEU2023819001,20238190,23819,Other building exterior contractors,53.4,20.24,41,43151.68,49195.02
1-6-2007,CEU2023819001,20238190,23819,Other building exterior contractors,54.9,20.15,40.5,42435.9,48285.41
1-7-2007,CEU2023819001,20238190,23819,Other building exterior contractors,55.4,20.11,40.6,42456.23,48320.84
1-8-2007,CEU2023819001,20238190,23819,Other building exterior contractors,54.6,20.31,39.7,41927.96,47807.28
1-9-2007,CEU2023819001,20238190,23819,Other building exterior contractors,55.5,19.94,40.9,42408.39,48222.18
1-10-2007,CEU2023819001,20238190,23819,Other building exterior contractors,54.3,20.56,39.9,42657.89,48402.34
1-11-2007,CEU2023819001,20238190,23819,Other building exterior contractors,53.7,20.43,39.6,42069.46,47452.81
1-12-2007,CEU2023819001,20238190,23819,Other building exterior contractors,55.9,20.53,37.4,39926.74,45066.14
1-1-2008,CEU2023819001,20238190,23819,Other building exterior contractors,56.4,20.39,38.3,40608.72,45609.21
1-2-2008,CEU2023819001,20238190,23819,Other building exterior contractors,57.4,20.36,35.9,38008.05,42564.68
1-3-2008,CEU2023819001,20238190,23819,Other building exterior contractors,54.3,19.92,40.2,41640.77,46232.16
1-4-2008,CEU2023819001,20238190,23819,Other building exterior contractors,54.1,20.24,39.9,41993.95,46343.23
1-5-2008,CEU2023819001,20238190,23819,Other building exterior contractors,52.5,20.39,39,41350.92,45252.53
1-6-2008,CEU2023819001,20238190,23819,Other building exterior contractors,48.6,20.11,36.6,38273.35,41466.72
1-7-2008,CEU2023819001,20238190,23819,Other building exterior contractors,48.6,21.2,37.9,41780.96,45030.53
1-8-2008,CEU2023819001,20238190,23819,Other building exterior contractors,47.5,20.51,39.1,41700.93,45124.4
1-9-2008,CEU2023819001,20238190,23819,Other building exterior contractors,46.7,20.45,38.9,41366.26,44824.24
1-10-2008,CEU2023819001,20238190,23819,Other building exterior contractors,46.5,20.26,40,42140.8,46129.5
1-11-2008,CEU2023819001,20238190,23819,Other building exterior contractors,46.6,20.65,38.8,41663.44,46497.52
1-12-2008,CEU2023819001,20238190,23819,Other building exterior contractors,44.7,20.82,38.9,42114.7,47492.32
1-1-2009,CEU2023819001,20238190,23819,Other building exterior contractors,42.5,20.79,39.8,43026.98,48310.82
1-2-2009,CEU2023819001,20238190,23819,Other building exterior contractors,43.6,21.37,39.2,43560.61,48667.96
1-3-2009,CEU2023819001,20238190,23819,Other building exterior contractors,43.4,21.65,38.8,43681.04,48684.13
1-4-2009,CEU2023819001,20238190,23819,Other building exterior contractors,42.6,22.09,38.7,44453.91,49422.15
1-5-2009,CEU2023819001,20238190,23819,Other building exterior contractors,42.2,20.9,39.9,43363.32,48070.8
1-6-2009,CEU2023819001,20238190,23819,Other building exterior contractors,42.7,21.2,40.3,44426.72,48830.2
1-7-2009,CEU2023819001,20238190,23819,Other building exterior contractors,40.7,20.49,41.1,43791.23,48208.15
1-8-2009,CEU2023819001,20238190,23819,Other building exterior contractors,38.5,20.26,40.5,42667.56,46866.03
1-9-2009,CEU2023819001,20238190,23819,Other building exterior contractors,39.5,20.48,39.9,42491.9,46643.92
1-10-2009,CEU2023819001,20238190,23819,Other building exterior contractors,40,21.15,38.9,42782.22,46917.42
1-11-2009,CEU2023819001,20238190,23819,Other building exterior contractors,40.2,20.52,39.3,41934.67,45955.43
1-12-2009,CEU2023819001,20238190,23819,Other building exterior contractors,39.8,19.93,39.1,40521.68,44485.3
1-1-2010,CEU2023819001,20238190,23819,Other building exterior contractors,39.7,20.24,38.5,40520.48,44332.48
1-2-2010,CEU2023819001,20238190,23819,Other building exterior contractors,38.4,19.89,38.9,40233.49,44007.52
1-3-2010,CEU2023819001,20238190,23819,Other building exterior contractors,36.8,19.59,39.6,40339.73,43943.28
1-4-2010,CEU2023819001,20238190,23819,Other building exterior contractors,36.1,19.92,41,42469.44,46183.03
1-5-2010,CEU2023819001,20238190,23819,Other building exterior contractors,35.9,20.19,39.8,41785.22,45403.78
1-6-2010,CEU2023819001,20238190,23819,Other building exterior contractors,36.6,20.62,40,42889.6,46649.34
1-7-2010,CEU2023819001,20238190,23819,Other building exterior contractors,35.2,21.44,40.1,44706.69,48615.45
1-8-2010,CEU2023819001,20238190,23819,Other building exterior contractors,34.2,21.07,40.5,44373.42,48186.52
1-9-2010,CEU2023819001,20238190,23819,Other building exterior contractors,33.5,20.86,40.1,43497.27,47207.62
1-10-2010,CEU2023819001,20238190,23819,Other building exterior contractors,32.3,20.92,40.5,44057.52,47756.19
1-11-2010,CEU2023819001,20238190,23819,Other building exterior contractors,31,20.72,41.3,44498.27,48213.66
1-12-2010,CEU2023819001,20238190,23819,Other building exterior contractors,30.9,21.29,41.7,46165.23,49934
1-1-2011,CEU2023819001,20238190,23819,Other building exterior contractors,31.3,21.75,41.5,46936.5,50527.55
1-2-2011,CEU2023819001,20238190,23819,Other building exterior contractors,31.9,21.74,40.5,45784.44,49045.5
1-3-2011,CEU2023819001,20238190,23819,Other building exterior contractors,32.9,21.97,39.3,44897.89,47631.34
1-4-2011,CEU2023819001,20238190,23819,Other building exterior contractors,33.8,21.25,40.3,44531.5,46940.38
1-5-2011,CEU2023819001,20238190,23819,Other building exterior contractors,34.5,22.05,42.3,48501.18,50885.41
1-6-2011,CEU2023819001,20238190,23819,Other building exterior contractors,33.4,22.04,40.2,46072.41,48389.08
1-7-2011,CEU2023819001,20238190,23819,Other building exterior contractors,33.1,22.39,40,46571.2,48869.64
1-8-2011,CEU2023819001,20238190,23819,Other building exterior contractors,34.6,22.86,39.6,47073.31,49260.7
1-9-2011,CEU2023819001,20238190,23819,Other building exterior contractors,36.7,23.1,40.4,48528.48,50706.49
1-10-2011,CEU2023819001,20238190,23819,Other building exterior contractors,37.1,24.48,39.2,49900.03,52247.36
1-11-2011,CEU2023819001,20238190,23819,Other building exterior contractors,37.1,23.53,39,47718.84,50005.75
1-12-2011,CEU2023819001,20238190,23819,Other building exterior contractors,37.7,23.28,38.8,46969.73,49342.44
1-1-2012,CEU2023819001,20238190,23819,Other building exterior contractors,38.7,22.9,39.2,46679.36,48822.57
1-2-2012,CEU2023819001,20238190,23819,Other building exterior contractors,38.4,22.78,40.3,47737.77,49710.71
1-3-2012,CEU2023819001,20238190,23819,Other building exterior contractors,38.2,22.07,40.9,46938.48,48509.97
1-4-2012,CEU2023819001,20238190,23819,Other building exterior contractors,36.8,22.55,39.9,46786.74,48207.51
1-5-2012,CEU2023819001,20238190,23819,Other building exterior contractors,37.9,23.25,38.6,46667.4,48141.04
1-6-2012,CEU2023819001,20238190,23819,Other building exterior contractors,38.2,23.54,37.3,45658.18,47169.13
1-7-2012,CEU2023819001,20238190,23819,Other building exterior contractors,39.1,22.69,38.8,45779.34,47371.5
1-8-2012,CEU2023819001,20238190,23819,Other building exterior contractors,39.4,23.12,39,46887.36,48249.54
1-9-2012,CEU2023819001,20238190,23819,Other building exterior contractors,38.7,23.48,39.5,48227.92,49408.57
1-10-2012,CEU2023819001,20238190,23819,Other building exterior contractors,38.1,23.73,41.7,51456.13,52736.33
1-11-2012,CEU2023819001,20238190,23819,Other building exterior contractors,38.8,24.14,40.8,51215.43,52739.51
1-12-2012,CEU2023819001,20238190,23819,Other building exterior contractors,38.4,24.83,41,52937.56,54660.09
1-1-2013,CEU2023819001,20238190,23819,Other building exterior contractors,36.7,25.44,41.2,54502.66,56110.19
1-2-2013,CEU2023819001,20238190,23819,Other building exterior contractors,38.2,25.69,41.6,55572.61,56746.94
1-3-2013,CEU2023819001,20238190,23819,Other building exterior contractors,38.1,26.23,39.8,54285.61,55288.19
1-4-2013,CEU2023819001,20238190,23819,Other building exterior contractors,38.1,26.66,39.9,55314.17,56394.38
1-5-2013,CEU2023819001,20238190,23819,Other building exterior contractors,37.4,26.35,40.1,54945.02,55918.46
1-6-2013,CEU2023819001,20238190,23819,Other building exterior contractors,37.6,26.59,40.7,56275.07,57134.97
1-7-2013,CEU2023819001,20238190,23819,Other building exterior contractors,37.7,26.84,41.4,57781.15,58640.96
1-8-2013,CEU2023819001,20238190,23819,Other building exterior contractors,38,26.53,41.7,57527.65,58313.54
1-9-2013,CEU2023819001,20238190,23819,Other building exterior contractors,37.9,26.95,41.3,57877.82,58600.34
1-10-2013,CEU2023819001,20238190,23819,Other building exterior contractors,38.5,26.44,42,57744.96,58616.77
1-11-2013,CEU2023819001,20238190,23819,Other building exterior contractors,40.8,26.06,40.7,55153.38,56100.65
1-12-2013,CEU2023819001,20238190,23819,Other building exterior contractors,39.3,25.69,38.8,51832.14,52726.89
1-1-2014,CEU2023819001,20238190,23819,Other building exterior contractors,39.2,25.8,40.2,53932.32,54659.97
1-2-2014,CEU2023819001,20238190,23819,Other building exterior contractors,38.6,25.72,38.7,51758.93,52263.99
1-3-2014,CEU2023819001,20238190,23819,Other building exterior contractors,38.8,25.93,40.2,54204.07,54382.77
1-3-2006,CEU2023820001,20238200,2382,Building equipment contractors,2007,22.45,37.8,44127.72,52359.59
1-4-2006,CEU2023820001,20238200,2382,Building equipment contractors,2006.9,22.57,38.4,45067.78,53023.86
1-5-2006,CEU2023820001,20238200,2382,Building equipment contractors,2005.4,22.55,37.7,44207.02,51754.3
1-6-2006,CEU2023820001,20238200,2382,Building equipment contractors,2011.1,22.76,37.8,44737.05,52271.58
1-7-2006,CEU2023820001,20238200,2382,Building equipment contractors,2018.4,22.91,38,45270.16,52738.52
1-8-2006,CEU2023820001,20238200,2382,Building equipment contractors,2021.3,22.58,37.8,44383.25,51603.85
1-9-2006,CEU2023820001,20238200,2382,Building equipment contractors,2029.9,22.93,37.9,45190.45,52801.33
1-10-2006,CEU2023820001,20238200,2382,Building equipment contractors,2026.8,22.92,38.3,45647.47,53626.05
1-11-2006,CEU2023820001,20238200,2382,Building equipment contractors,2026.8,22.91,38,45270.16,53261.97
1-12-2006,CEU2023820001,20238200,2382,Building equipment contractors,2033.5,23.21,38,45862.96,53879.21
1-1-2007,CEU2023820001,20238200,2382,Building equipment contractors,2042.1,23.31,38.1,46181.77,54088.63
1-2-2007,CEU2023820001,20238200,2382,Building equipment contractors,2044.8,23.43,38,46297.68,53935.81
1-3-2007,CEU2023820001,20238200,2382,Building equipment contractors,2055.4,23.53,38,46495.28,53677.25
1-4-2007,CEU2023820001,20238200,2382,Building equipment contractors,2057.1,23.62,37.9,46550.3,53393.9
1-5-2007,CEU2023820001,20238200,2382,Building equipment contractors,2058.4,23.78,38,46989.28,53570.07
1-6-2007,CEU2023820001,20238200,2382,Building equipment contractors,2066.2,23.91,38,47246.16,53758.74
1-7-2007,CEU2023820001,20238200,2382,Building equipment contractors,2064.3,23.97,38,47364.72,53907.36
1-8-2007,CEU2023820001,20238200,2382,Building equipment contractors,2056.4,24.05,38,47522.8,54186.65
1-9-2007,CEU2023820001,20238200,2382,Building equipment contractors,2057.6,24.13,38.1,47806.36,54360.16
1-10-2007,CEU2023820001,20238200,2382,Building equipment contractors,2063.2,24.22,38.2,48110.61,54589.34
1-11-2007,CEU2023820001,20238200,2382,Building equipment contractors,2060,24.33,38.3,48455.63,54656.18
1-12-2007,CEU2023820001,20238200,2382,Building equipment contractors,2057.9,24.38,38.4,48681.98,54948.37
1-1-2008,CEU2023820001,20238200,2382,Building equipment contractors,2057.1,24.52,38.5,49089.04,55133.77
1-2-2008,CEU2023820001,20238200,2382,Building equipment contractors,2054.6,24.57,38.4,49061.38,54943.14
1-3-2008,CEU2023820001,20238200,2382,Building equipment contractors,2049.7,24.67,38.2,49004.49,54407.82
1-4-2008,CEU2023820001,20238200,2382,Building equipment contractors,2042.6,24.75,38.3,49292.1,54397.24
1-5-2008,CEU2023820001,20238200,2382,Building equipment contractors,2042.1,24.8,38.4,49520.64,54193.09
1-6-2008,CEU2023820001,20238200,2382,Building equipment contractors,2034.7,24.89,38.3,49570.93,53706.91
1-7-2008,CEU2023820001,20238200,2382,Building equipment contractors,2027.4,24.96,38.2,49580.54,53436.73
1-8-2008,CEU2023820001,20238200,2382,Building equipment contractors,2024,25.13,38.3,50048.91,54157.7
1-9-2008,CEU2023820001,20238200,2382,Building equipment contractors,2016.1,25.26,38,49913.76,54086.26
1-10-2008,CEU2023820001,20238200,2382,Building equipment contractors,1997.6,25.38,37.8,49886.93,54608.81
1-11-2008,CEU2023820001,20238200,2382,Building equipment contractors,1960.4,25.41,37.9,50078.03,55888.43
1-12-2008,CEU2023820001,20238200,2382,Building equipment contractors,1929.7,25.5,37.6,49857.6,56223.92
1-1-2009,CEU2023820001,20238200,2382,Building equipment contractors,1897.1,25.53,37.4,49650.74,55748
1-2-2009,CEU2023820001,20238200,2382,Building equipment contractors,1863.8,25.57,37.6,49994.46,55856.16
1-3-2009,CEU2023820001,20238200,2382,Building equipment contractors,1830.6,25.61,37.7,50205.84,55956.26
1-4-2009,CEU2023820001,20238200,2382,Building equipment contractors,1794.3,25.65,37.7,50284.26,55904.11
1-5-2009,CEU2023820001,20238200,2382,Building equipment contractors,1779.2,25.72,37.5,50154,55598.67
1-6-2009,CEU2023820001,20238200,2382,Building equipment contractors,1756.4,25.82,37.4,50214.73,55191.91
1-7-2009,CEU2023820001,20238200,2382,Building equipment contractors,1733.6,25.8,37.6,50444.16,55532.12
1-8-2009,CEU2023820001,20238200,2382,Building equipment contractors,1714.2,25.84,37.5,50388,55346.16
1-9-2009,CEU2023820001,20238200,2382,Building equipment contractors,1694.5,25.64,37.2,49598.02,54444.39
1-10-2009,CEU2023820001,20238200,2382,Building equipment contractors,1678.8,25.94,37.4,50448.11,55324.27
1-11-2009,CEU2023820001,20238200,2382,Building equipment contractors,1672.7,25.98,37.6,50796.1,55666.5
1-12-2009,CEU2023820001,20238200,2382,Building equipment contractors,1671.8,25.99,37.6,50815.65,55786.17
1-1-2010,CEU2023820001,20238200,2382,Building equipment contractors,1651.5,26.05,37.7,51068.42,55872.72
1-2-2010,CEU2023820001,20238200,2382,Building equipment contractors,1639.9,26.09,36.7,49790.16,54460.63
1-3-2010,CEU2023820001,20238200,2382,Building equipment contractors,1637.1,26.23,37.9,51694.09,56311.92
1-4-2010,CEU2023820001,20238200,2382,Building equipment contractors,1631.2,26.31,38,51988.56,56534.51
1-5-2010,CEU2023820001,20238200,2382,Building equipment contractors,1630.4,26.27,38.1,52046.13,56553.27
1-6-2010,CEU2023820001,20238200,2382,Building equipment contractors,1624.5,26.18,37.9,51595.54,56118.46
1-7-2010,CEU2023820001,20238200,2382,Building equipment contractors,1625.3,26.23,37.8,51557.69,56065.45
1-8-2010,CEU2023820001,20238200,2382,Building equipment contractors,1629.3,26.18,38.1,51867.82,56324.92
1-9-2010,CEU2023820001,20238200,2382,Building equipment contractors,1627.4,26.31,38.4,52535.81,57017.15
1-10-2010,CEU2023820001,20238200,2382,Building equipment contractors,1630.4,26.5,38.2,52639.6,57058.75
1-11-2010,CEU2023820001,20238200,2382,Building equipment contractors,1631.4,26.44,38.1,52382.93,56756.65
1-12-2010,CEU2023820001,20238200,2382,Building equipment contractors,1646.5,26.49,37.9,52206.49,56468.45
1-1-2011,CEU2023820001,20238200,2382,Building equipment contractors,1643.5,26.44,37.6,51695.49,55650.64
1-2-2011,CEU2023820001,20238200,2382,Building equipment contractors,1650,26.5,37.8,52088.4,55798.46
1-3-2011,CEU2023820001,20238200,2382,Building equipment contractors,1641.2,26.49,37.9,52206.49,55384.9
1-4-2011,CEU2023820001,20238200,2382,Building equipment contractors,1644.7,26.56,37.9,52344.45,55175.96
1-5-2011,CEU2023820001,20238200,2382,Building equipment contractors,1643.2,26.62,38.2,52877.97,55477.36
1-6-2011,CEU2023820001,20238200,2382,Building equipment contractors,1641.9,26.69,38.4,53294.59,55974.41
1-7-2011,CEU2023820001,20238200,2382,Building equipment contractors,1656.4,26.74,38.5,53533.48,56175.54
1-8-2011,CEU2023820001,20238200,2382,Building equipment contractors,1651.5,26.82,38.4,53554.18,56042.71
1-9-2011,CEU2023820001,20238200,2382,Building equipment contractors,1664.5,26.73,38.6,53652.46,56060.43
1-10-2011,CEU2023820001,20238200,2382,Building equipment contractors,1659.8,26.67,38.6,53532.02,56050.21
1-11-2011,CEU2023820001,20238200,2382,Building equipment contractors,1662.7,26.64,38.4,53194.75,55744.09
1-12-2011,CEU2023820001,20238200,2382,Building equipment contractors,1666.6,26.64,38.4,53194.75,55881.93
1-1-2012,CEU2023820001,20238200,2382,Building equipment contractors,1669.6,26.77,38.7,53871.95,56345.4
1-2-2012,CEU2023820001,20238200,2382,Building equipment contractors,1669.8,26.76,38.7,53851.82,56077.45
1-3-2012,CEU2023820001,20238200,2382,Building equipment contractors,1673.2,26.73,38.5,53513.46,55305.08
1-4-2012,CEU2023820001,20238200,2382,Building equipment contractors,1673.8,26.82,38.5,53693.64,55324.16
1-5-2012,CEU2023820001,20238200,2382,Building equipment contractors,1679.8,26.77,38.5,53593.54,55285.89
1-6-2012,CEU2023820001,20238200,2382,Building equipment contractors,1680.5,26.74,38.5,53533.48,55305.04
1-7-2012,CEU2023820001,20238200,2382,Building equipment contractors,1677.1,26.83,38.5,53713.66,55581.77
1-8-2012,CEU2023820001,20238200,2382,Building equipment contractors,1680.1,26.84,38.5,53733.68,55294.76
1-9-2012,CEU2023820001,20238200,2382,Building equipment contractors,1681.7,26.91,38.7,54153.68,55479.4
1-10-2012,CEU2023820001,20238200,2382,Building equipment contractors,1690.2,26.91,38.7,54153.68,55500.99
1-11-2012,CEU2023820001,20238200,2382,Building equipment contractors,1692.3,26.97,39.1,54835.4,56467.21
1-12-2012,CEU2023820001,20238200,2382,Building equipment contractors,1696.9,27,39,54756,56537.71
1-1-2013,CEU2023820001,20238200,2382,Building equipment contractors,1705,26.98,38.8,54434.85,56040.38
1-2-2013,CEU2023820001,20238200,2382,Building equipment contractors,1719.5,27,39,54756,55913.07
1-3-2013,CEU2023820001,20238200,2382,Building equipment contractors,1736,27.03,39,54816.84,55829.23
1-4-2013,CEU2023820001,20238200,2382,Building equipment contractors,1739.3,26.97,39.1,54835.4,55906.26
1-5-2013,CEU2023820001,20238200,2382,Building equipment contractors,1738,27.01,39.2,55057.18,56032.61
1-6-2013,CEU2023820001,20238200,2382,Building equipment contractors,1742.1,27.07,39,54897.96,55736.82
1-7-2013,CEU2023820001,20238200,2382,Building equipment contractors,1742.2,27.11,38.9,54838.11,55654.13
1-8-2013,CEU2023820001,20238200,2382,Building equipment contractors,1747,27.09,38.9,54797.65,55546.25
1-9-2013,CEU2023820001,20238200,2382,Building equipment contractors,1749.1,27.03,39.1,54957.39,55643.45
1-10-2013,CEU2023820001,20238200,2382,Building equipment contractors,1750.2,27.14,39,55039.92,55870.89
1-11-2013,CEU2023820001,20238200,2382,Building equipment contractors,1758.8,27.24,39.1,55384.37,56335.61
1-12-2013,CEU2023820001,20238200,2382,Building equipment contractors,1760.8,27.37,38.9,55364.04,56319.75
1-1-2014,CEU2023820001,20238200,2382,Building equipment contractors,1760.6,27.42,38.5,54894.84,55635.48
1-2-2014,CEU2023820001,20238200,2382,Building equipment contractors,1775.7,27.53,38.3,54828.75,55363.77
1-3-2014,CEU2023820001,20238200,2382,Building equipment contractors,1781.5,27.41,39.1,55730.01,55913.74
1-3-2006,CEU2023821001,20238210,23821,Electrical contractors,905.1,23.21,37.7,45500.88,53988.92
1-4-2006,CEU2023821001,20238210,23821,Electrical contractors,901.2,23.38,37.8,45955.73,54068.57
1-5-2006,CEU2023821001,20238210,23821,Electrical contractors,899,23.13,37.7,45344.05,53085.46
1-6-2006,CEU2023821001,20238210,23821,Electrical contractors,901.6,23.41,37.9,46136.43,53906.63
1-7-2006,CEU2023821001,20238210,23821,Electrical contractors,904.2,23.5,38,46436,54096.69
1-8-2006,CEU2023821001,20238210,23821,Electrical contractors,907.1,23.29,38,46021.04,53508.09
1-9-2006,CEU2023821001,20238210,23821,Electrical contractors,911.4,23.6,38.2,46879.04,54774.31
1-10-2006,CEU2023821001,20238210,23821,Electrical contractors,908.5,23.55,38.3,46902.18,55100.07
1-11-2006,CEU2023821001,20238210,23821,Electrical contractors,908.8,23.5,38.1,46558.2,54777.39
1-12-2006,CEU2023821001,20238210,23821,Electrical contractors,912.3,23.87,38.3,47539.49,55848.77
1-1-2007,CEU2023821001,20238210,23821,Electrical contractors,918.4,23.92,38.3,47639.07,55795.44
1-2-2007,CEU2023821001,20238210,23821,Electrical contractors,920.4,24.04,38.2,47753.05,55631.29
1-3-2007,CEU2023821001,20238210,23821,Electrical contractors,922.9,24.25,38.1,48044.1,55465.3
1-4-2007,CEU2023821001,20238210,23821,Electrical contractors,927.6,24.25,38.1,48044.1,55107.32
1-5-2007,CEU2023821001,20238210,23821,Electrical contractors,928.3,24.35,38.3,48495.46,55287.19
1-6-2007,CEU2023821001,20238210,23821,Electrical contractors,931.1,24.39,38.4,48701.95,55415.21
1-7-2007,CEU2023821001,20238210,23821,Electrical contractors,928.8,24.48,38.1,48499.78,55199.21
1-8-2007,CEU2023821001,20238210,23821,Electrical contractors,924.2,24.66,38.1,48856.39,55707.24
1-9-2007,CEU2023821001,20238210,23821,Electrical contractors,924.4,24.78,38.2,49222.99,55971
1-10-2007,CEU2023821001,20238210,23821,Electrical contractors,929.9,24.87,38.3,49531.09,56201.11
1-11-2007,CEU2023821001,20238210,23821,Electrical contractors,928.2,24.92,38.3,49630.67,55981.59
1-12-2007,CEU2023821001,20238210,23821,Electrical contractors,927.2,24.8,38.5,49649.6,56040.54
1-1-2008,CEU2023821001,20238210,23821,Electrical contractors,927,25.1,38.7,50511.24,56731.1
1-2-2008,CEU2023821001,20238210,23821,Electrical contractors,924.2,25.16,38.7,50631.98,56702.05
1-3-2008,CEU2023821001,20238210,23821,Electrical contractors,922.9,25.17,38.5,50390.34,55946.48
1-4-2008,CEU2023821001,20238210,23821,Electrical contractors,919.3,25.23,38.6,50641.66,55886.56
1-5-2008,CEU2023821001,20238210,23821,Electrical contractors,916.4,25.43,38.5,50910.86,55714.48
1-6-2008,CEU2023821001,20238210,23821,Electrical contractors,907.3,25.56,38.4,51038.21,55296.62
1-7-2008,CEU2023821001,20238210,23821,Electrical contractors,906.7,25.67,38.5,51391.34,55388.37
1-8-2008,CEU2023821001,20238210,23821,Electrical contractors,904,25.86,38.5,51771.72,56021.95
1-9-2008,CEU2023821001,20238210,23821,Electrical contractors,899.7,25.96,38.4,51836.93,56170.2
1-10-2008,CEU2023821001,20238210,23821,Electrical contractors,894.7,26,38.3,51781.6,56682.82
1-11-2008,CEU2023821001,20238210,23821,Electrical contractors,879.4,26.12,38.2,51884.77,57904.8
1-12-2008,CEU2023821001,20238210,23821,Electrical contractors,865.8,26.1,38.2,51845.04,58465.13
1-1-2009,CEU2023821001,20238210,23821,Electrical contractors,852.3,26.16,38,51692.16,58040.11
1-2-2009,CEU2023821001,20238210,23821,Electrical contractors,836.4,26.18,38,51731.68,57797.06
1-3-2009,CEU2023821001,20238210,23821,Electrical contractors,820.4,26.19,38,51751.44,57678.88
1-4-2009,CEU2023821001,20238210,23821,Electrical contractors,809,26.13,37.9,51497,57252.38
1-5-2009,CEU2023821001,20238210,23821,Electrical contractors,800,26.25,37.7,51460.5,57047
1-6-2009,CEU2023821001,20238210,23821,Electrical contractors,787.7,26.37,37.8,51832.87,56970.43
1-7-2009,CEU2023821001,20238210,23821,Electrical contractors,779.3,26.37,37.9,51970,57211.86
1-8-2009,CEU2023821001,20238210,23821,Electrical contractors,768.9,26.26,37.7,51480.11,56545.73
1-9-2009,CEU2023821001,20238210,23821,Electrical contractors,761.8,26.1,37.6,51030.72,56017.09
1-10-2009,CEU2023821001,20238210,23821,Electrical contractors,750.8,26.36,37.5,51402,56370.36
1-11-2009,CEU2023821001,20238210,23821,Electrical contractors,747.1,26.38,37.6,51578.18,56523.56
1-12-2009,CEU2023821001,20238210,23821,Electrical contractors,740.3,26.47,37.4,51478.86,56514.25
1-1-2010,CEU2023821001,20238210,23821,Electrical contractors,731.5,26.54,37.3,51476.98,56319.72
1-2-2010,CEU2023821001,20238210,23821,Electrical contractors,726.6,26.62,36.3,50247.91,54961.32
1-3-2010,CEU2023821001,20238210,23821,Electrical contractors,721,26.74,37.7,52421.1,57103.88
1-4-2010,CEU2023821001,20238210,23821,Electrical contractors,717.2,26.85,38,53055.6,57694.86
1-5-2010,CEU2023821001,20238210,23821,Electrical contractors,717.8,26.94,37.9,53093.35,57691.18
1-6-2010,CEU2023821001,20238210,23821,Electrical contractors,717.5,26.77,37.7,52479.91,57080.34
1-7-2010,CEU2023821001,20238210,23821,Electrical contractors,715.9,26.74,37.8,52560.14,57155.55
1-8-2010,CEU2023821001,20238210,23821,Electrical contractors,715.5,26.83,38,53016.08,57571.86
1-9-2010,CEU2023821001,20238210,23821,Electrical contractors,710.8,26.78,38.8,54031.33,58640.24
1-10-2010,CEU2023821001,20238210,23821,Electrical contractors,711.9,27.07,38,53490.32,57980.89
1-11-2010,CEU2023821001,20238210,23821,Electrical contractors,709.6,26.99,38,53332.24,57785.22
1-12-2010,CEU2023821001,20238210,23821,Electrical contractors,714.8,27.01,37.8,53090.86,57425
1-1-2011,CEU2023821001,20238210,23821,Electrical contractors,714.2,27.01,37.5,52669.5,56699.18
1-2-2011,CEU2023821001,20238210,23821,Electrical contractors,718.3,27.08,37.9,53369.27,57170.56
1-3-2011,CEU2023821001,20238210,23821,Electrical contractors,716.5,27.07,37.8,53208.79,56448.22
1-4-2011,CEU2023821001,20238210,23821,Electrical contractors,718.2,27.15,37.9,53507.22,56401.63
1-5-2011,CEU2023821001,20238210,23821,Electrical contractors,714.1,27.14,38.1,53769.77,56413
1-6-2011,CEU2023821001,20238210,23821,Electrical contractors,709.2,27.26,38.3,54291.02,57020.93
1-7-2011,CEU2023821001,20238210,23821,Electrical contractors,719.6,27.21,38.2,54049.95,56717.49
1-8-2011,CEU2023821001,20238210,23821,Electrical contractors,719.3,27.5,38.3,54769,57313.98
1-9-2011,CEU2023821001,20238210,23821,Electrical contractors,725.3,27.23,38.5,54514.46,56961.13
1-10-2011,CEU2023821001,20238210,23821,Electrical contractors,720.1,27.19,38.6,54575.77,57143.05
1-11-2011,CEU2023821001,20238210,23821,Electrical contractors,720.8,27.18,38.3,54131.69,56725.93
1-12-2011,CEU2023821001,20238210,23821,Electrical contractors,722.8,27.29,38.7,54918.39,57692.64
1-1-2012,CEU2023821001,20238210,23821,Electrical contractors,726.7,27.41,39,55587.48,58139.7
1-2-2012,CEU2023821001,20238210,23821,Electrical contractors,727,27.38,38.8,55241.89,57524.96
1-3-2012,CEU2023821001,20238210,23821,Electrical contractors,730.8,27.32,38.6,54836.7,56672.63
1-4-2012,CEU2023821001,20238210,23821,Electrical contractors,729.6,27.53,38.4,54971.9,56641.23
1-5-2012,CEU2023821001,20238210,23821,Electrical contractors,736.9,27.6,38.4,55111.68,56851.97
1-6-2012,CEU2023821001,20238210,23821,Electrical contractors,735.3,27.59,38.5,55235.18,57063.05
1-7-2012,CEU2023821001,20238210,23821,Electrical contractors,732.2,27.76,38.8,56008.57,57956.49
1-8-2012,CEU2023821001,20238210,23821,Electrical contractors,734.5,27.73,38.8,55948.05,57573.46
1-9-2012,CEU2023821001,20238210,23821,Electrical contractors,734.2,27.79,38.7,55924.6,57293.67
1-10-2012,CEU2023821001,20238210,23821,Electrical contractors,740.5,27.78,38.7,55904.47,57295.34
1-11-2012,CEU2023821001,20238210,23821,Electrical contractors,743.7,27.9,38.9,56436.12,58115.57
1-12-2012,CEU2023821001,20238210,23821,Electrical contractors,744.1,27.87,39,56520.36,58359.48
1-1-2013,CEU2023821001,20238210,23821,Electrical contractors,746.9,27.76,38.8,56008.57,57660.52
1-2-2013,CEU2023821001,20238210,23821,Electrical contractors,752.4,27.84,39.1,56604.29,57800.42
1-3-2013,CEU2023821001,20238210,23821,Electrical contractors,759,27.97,39.1,56868.61,57918.89
1-4-2013,CEU2023821001,20238210,23821,Electrical contractors,758.5,27.83,39.3,56873.39,57984.05
1-5-2013,CEU2023821001,20238210,23821,Electrical contractors,756.5,27.79,39.4,56936.15,57944.87
1-6-2013,CEU2023821001,20238210,23821,Electrical contractors,757.8,27.77,39.3,56750.77,57617.94
1-7-2013,CEU2023821001,20238210,23821,Electrical contractors,759.2,27.8,39,56378.4,57217.33
1-8-2013,CEU2023821001,20238210,23821,Electrical contractors,761.5,27.82,39,56418.96,57189.7
1-9-2013,CEU2023821001,20238210,23821,Electrical contractors,762.9,27.89,39.1,56705.95,57413.84
1-10-2013,CEU2023821001,20238210,23821,Electrical contractors,761.3,27.95,39,56682.6,57538.38
1-11-2013,CEU2023821001,20238210,23821,Electrical contractors,768.6,28,38.9,56638.4,57611.18
1-12-2013,CEU2023821001,20238210,23821,Electrical contractors,764,28.08,38.7,56508.19,57483.66
1-1-2014,CEU2023821001,20238210,23821,Electrical contractors,767.1,28.16,38.8,56815.62,57582.17
1-2-2014,CEU2023821001,20238210,23821,Electrical contractors,771.2,28.37,38.4,56649.21,57202
1-3-2014,CEU2023821001,20238210,23821,Electrical contractors,771.2,28.06,39.2,57197.5,57386.07
1-3-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,984,21.87,37.8,42987.67,51006.88
1-4-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,988.9,21.88,38.1,43348.66,51001.25
1-5-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,986.1,22.13,37.6,43268.57,50655.64
1-6-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,987.8,22.23,37.7,43579.69,50919.29
1-7-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,990.4,22.28,37.8,43793.57,51018.32
1-8-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,991,22.2,37.6,43405.44,50466.96
1-9-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,992.4,22.27,37.5,43426.5,50740.3
1-10-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,992.1,22.33,37.8,43891.85,51563.57
1-11-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,992.1,22.35,37.5,43582.5,51276.38
1-12-2006,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,994.7,22.48,37.5,43836,51497.96
1-1-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,996.3,22.55,37.4,43855.24,51363.77
1-2-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1000.8,22.66,37.4,44069.17,51339.64
1-3-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1006.2,22.69,37.7,44481.48,51352.38
1-4-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1004.2,22.89,37.5,44635.5,51197.6
1-5-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1003.9,23.05,37.5,44947.5,51242.34
1-6-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1006,23.22,37.5,45279,51520.42
1-7-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1007.6,23.23,37.6,45419.3,51693.21
1-8-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1002.4,23.32,37.7,45716.53,52127.09
1-9-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1004.4,23.37,37.8,45936.07,52233.47
1-10-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1004.1,23.4,37.6,45751.68,51912.75
1-11-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1003,23.61,37.7,46285.04,52207.84
1-12-2007,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1000.9,23.65,37.9,46609.42,52609.02
1-1-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1002.5,23.74,37.8,46663.34,52409.38
1-2-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,1001.4,23.79,37.8,46761.63,52367.68
1-3-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,995.7,24.01,37.6,46944.35,52120.53
1-4-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,991.3,24.09,37.7,47226.04,52117.19
1-5-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,993.7,24.1,37.7,47245.64,51703.43
1-6-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,991.6,24.17,37.8,47508.55,51472.46
1-7-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,985.3,24.13,37.7,47304.45,50983.62
1-8-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,987.1,24.42,37.6,47745.98,51665.72
1-9-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,982.4,24.64,37.4,47919.87,51925.7
1-10-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,972.4,24.78,37.4,48192.14,52753.61
1-11-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,952.2,24.84,37.3,48179.66,53769.8
1-12-2008,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,934.4,24.86,37,47830.64,53938.13
1-1-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,918.5,25.04,36.7,47786.34,53654.64
1-2-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,899.8,25.13,37,48350.12,54019.03
1-3-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,884.2,25.18,37.3,48839.13,54433
1-4-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,862.6,25.27,36.9,48488.07,53907.17
1-5-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,856.4,25.39,37.1,48982.39,54299.87
1-6-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,847.5,25.43,36.9,48795.09,53631.55
1-7-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,837,25.34,37.3,49149.46,54106.84
1-8-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,825.5,25.54,37,49138.96,53974.22
1-9-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,812.6,25.41,36.9,48756.71,53520.88
1-10-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,805.6,25.6,37.2,49520.64,54307.15
1-11-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,805.5,25.82,37.2,49946.21,54735.12
1-12-2009,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,809,25.76,37.5,50232,55145.43
1-1-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,801.3,25.75,37.8,50614.2,55375.77
1-2-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,791.6,25.78,36.7,49198.55,53813.53
1-3-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,796.6,25.85,37.7,50676.34,55203.26
1-4-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,796.4,25.88,38.1,51273.46,55756.88
1-5-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,796.6,25.83,37.8,50771.45,55168.21
1-6-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,788.9,25.82,37.8,50751.79,55200.74
1-7-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,793.2,25.9,37.7,50774.36,55213.63
1-8-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,796.7,25.77,37.8,50653.51,55006.27
1-9-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,799,25.94,38,51257.44,55629.73
1-10-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,802.4,26.09,37.8,51282.5,55587.72
1-11-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,804.4,25.95,37.7,50872.38,55119.98
1-12-2010,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,810.4,26.05,37.7,51068.42,55237.46
1-1-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,808,25.98,37.3,50390.81,54246.15
1-2-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,810.1,26.03,37.6,50893.86,54518.83
1-3-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,804.5,26.05,37.7,51068.42,54177.54
1-4-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,809.2,26.04,37.9,51319.63,54095.7
1-5-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,812.7,26.19,38,51751.44,54295.45
1-6-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,812.1,26.25,38.2,52143,54764.91
1-7-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,820.6,26.36,38.5,52772.72,55377.23
1-8-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,816.9,26.37,38.2,52381.37,54815.4
1-9-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,821.5,26.32,38.2,52282.05,54628.52
1-10-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,820.3,26.28,38.1,52065.94,54515.16
1-11-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,821.5,26.24,38,51850.24,54335.14
1-12-2011,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,820.4,26.06,38,51494.56,54095.85
1-1-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,821.5,26.22,38.2,52083.41,54474.74
1-2-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,821.4,26.26,38.2,52162.86,54318.68
1-3-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,819.8,26.24,38.1,51986.69,53727.19
1-4-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,822.3,26.24,38.2,52123.14,53705.96
1-5-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,823.3,26.09,38.4,52096.51,53741.59
1-6-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,827,26.08,38.1,51669.7,53379.57
1-7-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,826.5,26.08,38,51534.08,53326.38
1-8-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,827.2,26.17,37.8,51439.75,52934.19
1-9-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,828.4,26.38,38.3,52538.41,53824.58
1-10-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,830.2,26.26,38.3,52299.41,53600.59
1-11-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,829.3,26.3,38.6,52789.36,54360.28
1-12-2012,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,832.5,26.31,38.6,52809.43,54527.8
1-1-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,838.9,26.37,38.5,52792.74,54349.84
1-2-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,844.5,26.36,38.4,52635.65,53747.91
1-3-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,852.4,26.33,38.3,52438.83,53407.3
1-4-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,856.5,26.25,38.3,52279.5,53300.45
1-5-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,858.4,26.42,38.3,52618.07,53550.29
1-6-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,860,26.48,38.2,52599.87,53403.61
1-7-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,861.5,26.5,38.3,52777.4,53562.75
1-8-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,863,26.45,38.4,52815.36,53536.87
1-9-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,864.7,26.4,38.4,52715.52,53373.59
1-10-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,867.5,26.45,38.5,52952.9,53752.36
1-11-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,869.8,26.55,38.9,53705.34,54627.74
1-12-2013,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,875.4,26.7,38.8,53869.92,54799.85
1-1-2014,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,875.3,26.8,38.3,53374.88,54095.01
1-2-2014,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,882.5,26.87,38.1,53234.84,53754.31
1-3-2014,CEU2023822001,20238220,23822,Plumbing and HVAC contractors,889.2,26.87,38.8,54212.91,54391.64
1-3-2006,CEU2023829001,20238290,23829,Other building equipment contractors,118.7,21.66,38.9,43813.85,51987.17
1-4-2006,CEU2023829001,20238290,23829,Other building equipment contractors,119.1,22.07,38.7,44413.67,52254.28
1-5-2006,CEU2023829001,20238290,23829,Other building equipment contractors,120.3,21.77,38.1,43130.72,50494.26
1-6-2006,CEU2023829001,20238290,23829,Other building equipment contractors,120.4,22.12,38.9,44744.34,52280.09
1-7-2006,CEU2023829001,20238290,23829,Other building equipment contractors,120.9,22.81,39.1,46377.29,54028.3
1-8-2006,CEU2023829001,20238290,23829,Other building equipment contractors,122.5,21.81,39.2,44457.5,51690.19
1-9-2006,CEU2023829001,20238290,23829,Other building equipment contractors,123,22.45,38.7,45178.38,52787.23
1-10-2006,CEU2023829001,20238290,23829,Other building equipment contractors,124.7,23.13,39.1,47027.91,55247.78
1-11-2006,CEU2023829001,20238290,23829,Other building equipment contractors,125.6,23.41,38.7,47110.29,55426.95
1-12-2006,CEU2023829001,20238290,23829,Other building equipment contractors,126.6,23.55,39.7,48616.62,57114.17
1-1-2007,CEU2023829001,20238290,23829,Other building equipment contractors,128.4,24.53,39.6,50512.18,59160.45
1-2-2007,CEU2023829001,20238290,23829,Other building equipment contractors,127.4,24.72,39.8,51160.51,59600.91
1-3-2007,CEU2023829001,20238290,23829,Other building equipment contractors,127.7,25.05,39.7,51713.22,59701.18
1-4-2007,CEU2023829001,20238290,23829,Other building equipment contractors,126.7,24.42,40.1,50920.59,58406.69
1-5-2007,CEU2023829001,20238290,23829,Other building equipment contractors,126.5,25.22,40,52457.6,59804.22
1-6-2007,CEU2023829001,20238290,23829,Other building equipment contractors,127.4,25.4,39.6,52303.68,59513.41
1-7-2007,CEU2023829001,20238290,23829,Other building equipment contractors,125.6,25.19,40.4,52919.15,60229.04
1-8-2007,CEU2023829001,20238290,23829,Other building equipment contractors,129.6,25.54,39.2,52060.73,59360.91
1-9-2007,CEU2023829001,20238290,23829,Other building equipment contractors,127.7,25.73,40.3,53919.79,61311.68
1-10-2007,CEU2023829001,20238290,23829,Other building equipment contractors,128.5,25.84,40.5,54419.04,61747.28
1-11-2007,CEU2023829001,20238290,23829,Other building equipment contractors,129.6,26.1,41,55645.2,62765.76
1-12-2007,CEU2023829001,20238290,23829,Other building equipment contractors,129.1,26.26,41.2,56259.43,63501.18
1-1-2008,CEU2023829001,20238290,23829,Other building equipment contractors,129.8,25.92,41.6,56070.14,62974.52
1-2-2008,CEU2023829001,20238290,23829,Other building equipment contractors,131.9,25.9,41.3,55622.84,62291.23
1-3-2008,CEU2023829001,20238290,23829,Other building equipment contractors,132.8,25.78,41.1,55097.02,61172.12
1-4-2008,CEU2023829001,20238290,23829,Other building equipment contractors,134.7,25.84,40.8,54822.14,60500.02
1-5-2008,CEU2023829001,20238290,23829,Other building equipment contractors,132.5,25.86,41.1,55267.99,60482.72
1-6-2008,CEU2023829001,20238290,23829,Other building equipment contractors,134.1,25.61,41.6,55399.55,60021.86
1-7-2008,CEU2023829001,20238290,23829,Other building equipment contractors,133.8,25.51,41.2,54652.63,58903.3
1-8-2008,CEU2023829001,20238290,23829,Other building equipment contractors,132.1,25.48,41.3,54720.85,59213.19
1-9-2008,CEU2023829001,20238290,23829,Other building equipment contractors,132.5,25.59,40.7,54158.68,58686.03
1-10-2008,CEU2023829001,20238290,23829,Other building equipment contractors,129.9,25.02,40,52041.6,56967.43
1-11-2008,CEU2023829001,20238290,23829,Other building equipment contractors,128.8,25.09,40.2,52448.14,58533.53
1-12-2008,CEU2023829001,20238290,23829,Other building equipment contractors,128.3,25.44,38.9,51460.03,58030.96
1-1-2009,CEU2023829001,20238290,23829,Other building equipment contractors,128.5,24.81,39.4,50830.73,57072.89
1-2-2009,CEU2023829001,20238290,23829,Other building equipment contractors,126.8,24.86,40.4,52225.89,58349.21
1-3-2009,CEU2023829001,20238290,23829,Other building equipment contractors,125.2,24.78,38.9,50124.98,55866.14
1-4-2009,CEU2023829001,20238290,23829,Other building equipment contractors,123.1,24.73,39.7,51052.61,56758.33
1-5-2009,CEU2023829001,20238290,23829,Other building equipment contractors,123.5,24.87,40,51729.6,57345.32
1-6-2009,CEU2023829001,20238290,23829,Other building equipment contractors,121.2,25.17,39.6,51830.06,56967.34
1-7-2009,CEU2023829001,20238290,23829,Other building equipment contractors,119.4,25.39,39.6,52283.09,57556.53
1-8-2009,CEU2023829001,20238290,23829,Other building equipment contractors,122.3,25.88,39.4,53022.95,58240.38
1-9-2009,CEU2023829001,20238290,23829,Other building equipment contractors,121.5,24.98,39.7,51568.71,56607.65
1-10-2009,CEU2023829001,20238290,23829,Other building equipment contractors,121.9,25.24,40.3,52892.95,58005.41
1-11-2009,CEU2023829001,20238290,23829,Other building equipment contractors,120.9,24.86,40.2,51967.34,56950.04
1-12-2009,CEU2023829001,20238290,23829,Other building equipment contractors,120.6,24.25,40.4,50944.4,55927.52
1-1-2010,CEU2023829001,20238290,23829,Other building equipment contractors,118.9,25.19,40.8,53443.11,58470.81
1-2-2010,CEU2023829001,20238290,23829,Other building equipment contractors,118,25.13,40.7,53185.13,58174.07
1-3-2010,CEU2023829001,20238290,23829,Other building equipment contractors,116.6,25.55,40.9,54339.74,59193.91
1-4-2010,CEU2023829001,20238290,23829,Other building equipment contractors,117.7,25.53,40.8,54164.45,58900.66
1-5-2010,CEU2023829001,20238290,23829,Other building equipment contractors,117.1,25.43,40.5,53555.58,58193.44
1-6-2010,CEU2023829001,20238290,23829,Other building equipment contractors,118.4,25.28,40.5,53239.68,57906.72
1-7-2010,CEU2023829001,20238290,23829,Other building equipment contractors,119.1,25.5,40.7,53968.2,58686.71
1-8-2010,CEU2023829001,20238290,23829,Other building equipment contractors,119.6,25.58,40.3,53605.45,58211.88
1-9-2010,CEU2023829001,20238290,23829,Other building equipment contractors,119.4,25.81,41,55026.92,59720.76
1-10-2010,CEU2023829001,20238290,23829,Other building equipment contractors,117.3,26.05,41.2,55809.52,60494.79
1-11-2010,CEU2023829001,20238290,23829,Other building equipment contractors,117.9,26.6,40.7,56296.24,60996.7
1-12-2010,CEU2023829001,20238290,23829,Other building equipment contractors,118.7,26.04,41.2,55788.1,60342.44
1-1-2011,CEU2023829001,20238290,23829,Other building equipment contractors,120.4,25.86,40.4,54326.69,58483.16
1-2-2011,CEU2023829001,20238290,23829,Other building equipment contractors,118.8,26.25,40.3,55009.5,58927.62
1-3-2011,CEU2023829001,20238290,23829,Other building equipment contractors,117.8,25.95,40.6,54785.64,58121.07
1-4-2011,CEU2023829001,20238290,23829,Other building equipment contractors,118,26.14,40.4,54914.91,57885.46
1-5-2011,CEU2023829001,20238290,23829,Other building equipment contractors,118,26.73,40.7,56571.37,59352.32
1-6-2011,CEU2023829001,20238290,23829,Other building equipment contractors,120.6,26.21,40.8,55607.14,58403.23
1-7-2011,CEU2023829001,20238290,23829,Other building equipment contractors,117.7,26.15,40.3,54799.94,57504.5
1-8-2011,CEU2023829001,20238290,23829,Other building equipment contractors,116.8,26.38,41,56242.16,58855.59
1-9-2011,CEU2023829001,20238290,23829,Other building equipment contractors,118.9,26.38,41,56242.16,58766.36
1-10-2011,CEU2023829001,20238290,23829,Other building equipment contractors,120.2,26.2,40.8,55585.92,58200.72
1-11-2011,CEU2023829001,20238290,23829,Other building equipment contractors,120.8,26.24,40.5,55261.44,57909.82
1-12-2011,CEU2023829001,20238290,23829,Other building equipment contractors,121.2,26.26,39.9,54484.25,57236.56
1-1-2012,CEU2023829001,20238290,23829,Other building equipment contractors,120.9,26.28,40.5,55345.68,57886.8
1-2-2012,CEU2023829001,20238290,23829,Other building equipment contractors,120.4,26.22,41.2,56173.73,58495.31
1-3-2012,CEU2023829001,20238290,23829,Other building equipment contractors,120.7,26.3,40.5,55387.8,57242.17
1-4-2012,CEU2023829001,20238290,23829,Other building equipment contractors,121.7,26.16,40.8,55501.05,57186.46
1-5-2012,CEU2023829001,20238290,23829,Other building equipment contractors,121.1,26.55,40.4,55776.24,57537.52
1-6-2012,CEU2023829001,20238290,23829,Other building equipment contractors,118.2,26.09,41,55623.88,57464.61
1-7-2012,CEU2023829001,20238290,23829,Other building equipment contractors,119.6,26.05,40.7,55132.22,57049.66
1-8-2012,CEU2023829001,20238290,23829,Other building equipment contractors,118.4,25.81,41.4,55563.77,57178.02
1-9-2012,CEU2023829001,20238290,23829,Other building equipment contractors,119.6,26,41.3,55837.6,57204.55
1-10-2012,CEU2023829001,20238290,23829,Other building equipment contractors,120.1,25.91,40.9,55105.39,56476.37
1-11-2012,CEU2023829001,20238290,23829,Other building equipment contractors,119.4,26.17,41.7,56747.03,58435.72
1-12-2012,CEU2023829001,20238290,23829,Other building equipment contractors,119.7,26.02,41.6,56286.46,58117.97
1-1-2013,CEU2023829001,20238290,23829,Other building equipment contractors,118.9,26.14,41.8,56817.9,58493.72
1-2-2013,CEU2023829001,20238290,23829,Other building equipment contractors,122.3,26.14,42.2,57361.62,58573.75
1-3-2013,CEU2023829001,20238290,23829,Other building equipment contractors,124,25.85,42.9,57666.18,58731.2
1-4-2013,CEU2023829001,20238290,23829,Other building equipment contractors,124.2,26.33,42.5,58189.3,59325.66
1-5-2013,CEU2023829001,20238290,23829,Other building equipment contractors,124.5,26.61,42.5,58808.1,59849.98
1-6-2013,CEU2023829001,20238290,23829,Other building equipment contractors,124.1,27.02,42.5,59714.2,60626.65
1-7-2013,CEU2023829001,20238290,23829,Other building equipment contractors,121.9,26.9,42.7,59728.76,60617.55
1-8-2013,CEU2023829001,20238290,23829,Other building equipment contractors,121.8,26.95,42.6,59699.64,60515.2
1-9-2013,CEU2023829001,20238290,23829,Other building equipment contractors,121.3,26.76,42.6,59278.75,60018.76
1-10-2013,CEU2023829001,20238290,23829,Other building equipment contractors,121.5,26.91,42.4,59331.17,60226.93
1-11-2013,CEU2023829001,20238290,23829,Other building equipment contractors,122,27.52,41.9,59960.57,60990.41
1-12-2013,CEU2023829001,20238290,23829,Other building equipment contractors,121.3,27.39,41.2,58680.34,59693.3
1-1-2014,CEU2023829001,20238290,23829,Other building equipment contractors,120.3,27.22,40.6,57466.86,58242.21
1-2-2014,CEU2023829001,20238290,23829,Other building equipment contractors,121.7,27.24,41,58075.68,58642.38
1-3-2014,CEU2023829001,20238290,23829,Other building equipment contractors,120.9,26.93,41.3,57834.87,58025.54
1-3-2006,CEU2023830001,20238300,2383,Building finishing contractors,1032.3,20.89,36,39106.08,46401.18
1-4-2006,CEU2023830001,20238300,2383,Building finishing contractors,1032.5,20.96,36.2,39455.11,46420.35
1-5-2006,CEU2023830001,20238300,2383,Building finishing contractors,1040.4,21.02,35.9,39240.14,45939.45
1-6-2006,CEU2023830001,20238300,2383,Building finishing contractors,1033.7,21.08,35.8,39242.53,45851.67
1-7-2006,CEU2023830001,20238300,2383,Building finishing contractors,1031.4,21.3,35.6,39430.56,45935.54
1-8-2006,CEU2023830001,20238300,2383,Building finishing contractors,1037.2,21.36,35.7,39652.7,46103.7
1-9-2006,CEU2023830001,20238300,2383,Building finishing contractors,1035.4,21.43,35.9,40005.52,46743.17
1-10-2006,CEU2023830001,20238300,2383,Building finishing contractors,1025,21.48,36,40210.56,47238.84
1-11-2006,CEU2023830001,20238300,2383,Building finishing contractors,1020.5,21.41,36.2,40302.18,47416.97
1-12-2006,CEU2023830001,20238300,2383,Building finishing contractors,1026.2,21.64,36.6,41185.25,48383.89
1-1-2007,CEU2023830001,20238300,2383,Building finishing contractors,1020.7,21.51,36.2,40490.43,47422.86
1-2-2007,CEU2023830001,20238300,2383,Building finishing contractors,1008.3,21.55,35.8,40117.48,46736.01
1-3-2007,CEU2023830001,20238300,2383,Building finishing contractors,1013.2,21.64,36.2,40735.14,47027.35
1-4-2007,CEU2023830001,20238300,2383,Building finishing contractors,1016.3,21.8,36.1,40922.96,46939.27
1-5-2007,CEU2023830001,20238300,2383,Building finishing contractors,1012.7,22.09,36.1,41467.35,47274.8
1-6-2007,CEU2023830001,20238300,2383,Building finishing contractors,1013.3,21.93,36.1,41167,46841.6
1-7-2007,CEU2023830001,20238300,2383,Building finishing contractors,1014.9,21.91,36,41015.52,46681.13
1-8-2007,CEU2023830001,20238300,2383,Building finishing contractors,1004,21.86,35.9,40808.25,46530.55
1-9-2007,CEU2023830001,20238300,2383,Building finishing contractors,989.1,21.97,36.1,41242.09,46895.99
1-10-2007,CEU2023830001,20238300,2383,Building finishing contractors,985.2,21.92,36.1,41148.22,46689.38
1-11-2007,CEU2023830001,20238300,2383,Building finishing contractors,976.9,22.22,36.2,41826.93,47179.25
1-12-2007,CEU2023830001,20238300,2383,Building finishing contractors,961.5,22.22,36.3,41942.47,47341.34
1-1-2008,CEU2023830001,20238300,2383,Building finishing contractors,954.9,22.28,36.6,42403.3,47624.76
1-2-2008,CEU2023830001,20238300,2383,Building finishing contractors,950.1,22.4,36.3,42282.24,47351.29
1-3-2008,CEU2023830001,20238300,2383,Building finishing contractors,944.4,22.35,36.3,42187.86,46839.57
1-4-2008,CEU2023830001,20238300,2383,Building finishing contractors,929.8,22.43,36.2,42222.23,46595.14
1-5-2008,CEU2023830001,20238300,2383,Building finishing contractors,917.1,22.5,36.3,42471,46478.29
1-6-2008,CEU2023830001,20238300,2383,Building finishing contractors,910.1,22.59,36.4,42758.35,46325.93
1-7-2008,CEU2023830001,20238300,2383,Building finishing contractors,897.4,22.72,36.5,43122.56,46476.47
1-8-2008,CEU2023830001,20238300,2383,Building finishing contractors,886,22.87,36.5,43407.26,46970.81
1-9-2008,CEU2023830001,20238300,2383,Building finishing contractors,878.2,22.91,36.3,43244.91,46859.94
1-10-2008,CEU2023830001,20238300,2383,Building finishing contractors,860.3,23.08,36.2,43445.79,47558.01
1-11-2008,CEU2023830001,20238300,2383,Building finishing contractors,840.4,23.3,35.7,43254.12,48272.76
1-12-2008,CEU2023830001,20238300,2383,Building finishing contractors,827.7,23.19,35.7,43049.91,48546.96
1-1-2009,CEU2023830001,20238300,2383,Building finishing contractors,809.3,23.26,36,43542.72,48889.89
1-2-2009,CEU2023830001,20238300,2383,Building finishing contractors,783.4,23.11,35.9,43141.75,48199.98
1-3-2009,CEU2023830001,20238300,2383,Building finishing contractors,764.4,23.26,35.6,43058.91,47990.74
1-4-2009,CEU2023830001,20238300,2383,Building finishing contractors,751.7,23.13,35.4,42577.7,47336.25
1-5-2009,CEU2023830001,20238300,2383,Building finishing contractors,739.2,23.17,35.5,42771.82,47415.09
1-6-2009,CEU2023830001,20238300,2383,Building finishing contractors,720.5,23.25,35.4,42798.6,47040.7
1-7-2009,CEU2023830001,20238300,2383,Building finishing contractors,714.9,23.31,35.5,43030.26,47370.43
1-8-2009,CEU2023830001,20238300,2383,Building finishing contractors,693.1,23.43,35.2,42886.27,47106.27
1-9-2009,CEU2023830001,20238300,2383,Building finishing contractors,686.3,23.42,35.2,42867.97,47056.73
1-10-2009,CEU2023830001,20238300,2383,Building finishing contractors,680.3,23.23,35.3,42640.99,46762.54
1-11-2009,CEU2023830001,20238300,2383,Building finishing contractors,674.4,22.96,35.9,42861.73,46971.37
1-12-2009,CEU2023830001,20238300,2383,Building finishing contractors,665.9,22.86,35.6,42318.43,46457.8
1-1-2010,CEU2023830001,20238300,2383,Building finishing contractors,659.6,22.95,35.4,42246.36,46220.72
1-2-2010,CEU2023830001,20238300,2383,Building finishing contractors,652,23.19,34.4,41482.27,45373.44
1-3-2010,CEU2023830001,20238300,2383,Building finishing contractors,647.3,23.2,35.4,42706.56,46521.54
1-4-2010,CEU2023830001,20238300,2383,Building finishing contractors,645.1,23.21,36.4,43931.89,47773.35
1-5-2010,CEU2023830001,20238300,2383,Building finishing contractors,635.8,23.27,35.6,43077.43,46807.89
1-6-2010,CEU2023830001,20238300,2383,Building finishing contractors,624.7,23.28,35.6,43095.94,46873.77
1-7-2010,CEU2023830001,20238300,2383,Building finishing contractors,624.6,23.27,35.6,43077.43,46843.74
1-8-2010,CEU2023830001,20238300,2383,Building finishing contractors,622.4,23.26,36.2,43784.63,47547.13
1-9-2010,CEU2023830001,20238300,2383,Building finishing contractors,621.3,23.29,36.1,43719.99,47449.33
1-10-2010,CEU2023830001,20238300,2383,Building finishing contractors,629.7,23.6,35.9,44056.48,47755.07
1-11-2010,CEU2023830001,20238300,2383,Building finishing contractors,633.9,23.64,36.1,44377.01,48082.27
1-12-2010,CEU2023830001,20238300,2383,Building finishing contractors,623.4,23.62,35.8,43970.99,47560.63
1-1-2011,CEU2023830001,20238300,2383,Building finishing contractors,621.5,23.69,35.9,44224.49,47608.05
1-2-2011,CEU2023830001,20238300,2383,Building finishing contractors,625.7,23.61,35.8,43952.38,47082.94
1-3-2011,CEU2023830001,20238300,2383,Building finishing contractors,622.1,23.52,36.2,44274.05,46969.52
1-4-2011,CEU2023830001,20238300,2383,Building finishing contractors,619.4,23.68,36.2,44575.23,46986.47
1-5-2011,CEU2023830001,20238300,2383,Building finishing contractors,620.5,23.71,36,44385.12,46567.02
1-6-2011,CEU2023830001,20238300,2383,Building finishing contractors,619.7,23.55,35.9,43963.14,46173.74
1-7-2011,CEU2023830001,20238300,2383,Building finishing contractors,624.9,23.29,36,43598.88,45750.63
1-8-2011,CEU2023830001,20238300,2383,Building finishing contractors,629.1,23.42,36,43842.24,45879.48
1-9-2011,CEU2023830001,20238300,2383,Building finishing contractors,633.3,23.53,35.9,43925.8,45897.24
1-10-2011,CEU2023830001,20238300,2383,Building finishing contractors,619.7,23.4,36.1,43926.48,45992.81
1-11-2011,CEU2023830001,20238300,2383,Building finishing contractors,619.8,23.31,35.9,43515.11,45600.55
1-12-2011,CEU2023830001,20238300,2383,Building finishing contractors,628.6,23.57,36.2,44368.17,46609.46
1-1-2012,CEU2023830001,20238300,2383,Building finishing contractors,634.9,23.75,36.1,44583.5,46630.49
1-2-2012,CEU2023830001,20238300,2383,Building finishing contractors,630.8,23.66,36.1,44414.55,46250.14
1-3-2012,CEU2023830001,20238300,2383,Building finishing contractors,628.1,23.68,35.7,43959.55,45431.31
1-4-2012,CEU2023830001,20238300,2383,Building finishing contractors,626.3,23.61,36,44197.92,45540.08
1-5-2012,CEU2023830001,20238300,2383,Building finishing contractors,621.6,23.49,36,43973.28,45361.85
1-6-2012,CEU2023830001,20238300,2383,Building finishing contractors,627,23.55,35.9,43963.14,45417.99
1-7-2012,CEU2023830001,20238300,2383,Building finishing contractors,631.2,23.5,35.7,43625.4,45142.64
1-8-2012,CEU2023830001,20238300,2383,Building finishing contractors,630.7,23.6,35.7,43811.04,45083.84
1-9-2012,CEU2023830001,20238300,2383,Building finishing contractors,631.1,23.67,36,44310.24,45394.98
1-10-2012,CEU2023830001,20238300,2383,Building finishing contractors,631.4,23.78,36.1,44639.82,45750.43
1-11-2012,CEU2023830001,20238300,2383,Building finishing contractors,636,23.78,36.3,44887.13,46222.89
1-12-2012,CEU2023830001,20238300,2383,Building finishing contractors,639.9,23.81,36.5,45191.38,46661.86
1-1-2013,CEU2023830001,20238300,2383,Building finishing contractors,646.4,23.86,36.5,45286.28,46621.98
1-2-2013,CEU2023830001,20238300,2383,Building finishing contractors,652.1,23.8,36.9,45667.44,46632.46
1-3-2013,CEU2023830001,20238300,2383,Building finishing contractors,657.7,23.86,36.9,45782.57,46628.11
1-4-2013,CEU2023830001,20238300,2383,Building finishing contractors,659.7,23.83,36.8,45601.09,46491.62
1-5-2013,CEU2023830001,20238300,2383,Building finishing contractors,662.9,23.92,37,46022.08,46837.43
1-6-2013,CEU2023830001,20238300,2383,Building finishing contractors,664.6,23.88,37.1,46069.3,46773.25
1-7-2013,CEU2023830001,20238300,2383,Building finishing contractors,660.5,23.93,37.1,46165.76,46852.72
1-8-2013,CEU2023830001,20238300,2383,Building finishing contractors,658.6,23.87,37.1,46050,46679.09
1-9-2013,CEU2023830001,20238300,2383,Building finishing contractors,661.6,23.57,36.9,45226.12,45790.7
1-10-2013,CEU2023830001,20238300,2383,Building finishing contractors,663.7,23.66,36.6,45029.71,45709.55
1-11-2013,CEU2023830001,20238300,2383,Building finishing contractors,668.3,23.65,36.7,45133.66,45908.84
1-12-2013,CEU2023830001,20238300,2383,Building finishing contractors,663.3,23.65,36.3,44641.74,45412.36
1-1-2014,CEU2023830001,20238300,2383,Building finishing contractors,674.9,23.56,36.2,44349.34,44947.7
1-2-2014,CEU2023830001,20238300,2383,Building finishing contractors,668.9,23.84,35.6,44132.61,44563.25
1-3-2014,CEU2023830001,20238300,2383,Building finishing contractors,665.3,23.86,36.4,45162.21,45311.09
1-3-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,374.5,22.15,35.3,40658.54,48243.25
1-4-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,373.7,22.33,35.7,41453.41,48771.43
1-5-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,376,22.63,35.6,41892.66,49044.82
1-6-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,374.4,22.73,35.8,42314.17,49440.63
1-7-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,371.8,22.65,35.9,42283.02,49258.58
1-8-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,379.8,23.02,35.6,42614.63,49547.49
1-9-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,373.6,23.12,35.9,43160.41,50429.4
1-10-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,367.3,23.12,36,43280.64,50845.53
1-11-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,366,23.12,36.1,43400.86,51062.68
1-12-2006,CEU2023831001,20238310,23831,Drywall and insulation contractors,366.4,23.34,36.1,43813.85,51471.93
1-1-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,363.4,23.42,35.9,43720.46,51205.91
1-2-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,356,23.58,35.8,43896.53,51138.52
1-3-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,358.1,23.6,36.2,44424.64,51286.76
1-4-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,358,23.78,36,44516.16,51060.72
1-5-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,355.7,24.18,36.1,45390.7,51747.61
1-6-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,357.1,23.7,35.9,44243.16,50341.8
1-7-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,354.5,23.9,35.1,43622.28,49647.96
1-8-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,360.6,24.05,35.7,44646.42,50906.93
1-9-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,349.2,23.99,36.3,45283.52,51491.47
1-10-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,344.4,23.92,36.2,45027.01,51090.49
1-11-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,339.5,24.44,36.1,45878.77,51749.58
1-12-2007,CEU2023831001,20238310,23831,Drywall and insulation contractors,330.5,24.27,36.3,45812.05,51709.01
1-1-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,332,23.82,37.8,46820.59,52586
1-2-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,327.3,24.32,37.2,47044.61,52684.6
1-3-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,326.1,24.51,36.7,46774.88,51932.37
1-4-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,321.7,24.61,36.8,47093.7,51971.14
1-5-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,317.7,24.56,36.6,46742.59,51152.92
1-6-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,315.3,24.74,36.6,47085.17,51013.75
1-7-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,309.4,24.94,36.7,47595.5,51297.3
1-8-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,302.8,24.81,36.9,47605.43,51513.63
1-9-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,302.8,24.93,36.5,47317.14,51272.58
1-10-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,294.5,25.14,36.6,47846.45,52375.2
1-11-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,284.5,25.19,36.1,47286.67,52773.19
1-12-2008,CEU2023831001,20238310,23831,Drywall and insulation contractors,281.7,25.06,36.2,47172.95,53196.46
1-1-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,275.3,25.02,35.8,46577.23,52297.05
1-2-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,270.1,24.94,35.9,46557.99,52016.78
1-3-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,260.7,24.92,36,46650.24,51993.41
1-4-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,254.9,24.65,35.9,46016.62,51159.5
1-5-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,247.8,24.69,36,46219.68,51237.24
1-6-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,242.9,24.96,36.1,46854.91,51499.06
1-7-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,237.8,24.96,36.1,46854.91,51580.85
1-8-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,228.5,25,35.8,46540,51119.52
1-9-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,222.1,24.96,35.8,46465.54,51005.83
1-10-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,220.1,24.88,35.7,46187.23,50651.55
1-11-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,219.3,25.02,36.2,47097.65,51613.43
1-12-2009,CEU2023831001,20238310,23831,Drywall and insulation contractors,207.9,24.65,36.2,46401.16,50939.88
1-1-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,213.1,24.55,36.4,46468.24,50839.77
1-2-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,206.9,24.95,34.9,45279.26,49526.6
1-3-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,206.6,24.92,36,46650.24,50817.51
1-4-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,203.3,24.93,36.8,47706.05,51877.53
1-5-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,198.4,25.02,36.4,47357.86,51459
1-6-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,193.4,25.01,36.5,47468.98,51630.16
1-7-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,191.5,25.01,36.5,47468.98,51619.25
1-8-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,193.5,24.94,37,47984.56,52107.97
1-9-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,189.5,25.05,37.1,48326.46,52448.74
1-10-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,197,25.36,37.1,48924.51,53031.77
1-11-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,198.8,25.12,37.1,48461.5,52507.8
1-12-2010,CEU2023831001,20238310,23831,Drywall and insulation contractors,195.2,25.31,36.8,48433.21,52387.13
1-1-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,192.1,25.57,36.3,48265.93,51958.7
1-2-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,192.9,25.28,36.7,48244.35,51680.62
1-3-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,193.5,24.94,36.4,47206.43,50080.43
1-4-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,195.4,25.2,36.3,47567.52,50140.63
1-5-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,197.6,25.32,36.6,48189.02,50557.91
1-6-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,198.1,24.82,36.6,47237.43,49612.67
1-7-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,200.4,24.24,36.4,45881.47,48145.88
1-8-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,202.1,24.26,36.5,46045.48,48185.1
1-9-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,202,24.74,36.4,46827.87,48929.55
1-10-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,198.7,24.28,36.4,45957.18,48119.04
1-11-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,197.4,24.2,36.4,45805.76,48000.98
1-12-2011,CEU2023831001,20238310,23831,Drywall and insulation contractors,197.3,24.46,36.6,46552.27,48903.9
1-1-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,197.8,24.59,37,47311.16,49483.38
1-2-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,197.1,24.52,37.9,48324.02,50321.18
1-3-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,195.3,24.7,36.5,46880.6,48450.16
1-4-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,194,24.8,36.4,46941.44,48366.91
1-5-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,192,24.61,36.3,46453.84,47920.73
1-6-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,197.4,24.88,36.3,46963.49,48517.63
1-7-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,197.4,25,36.4,47320,48965.74
1-8-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,195.2,25.29,35.7,46948.36,48312.3
1-9-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,192.5,25.26,36.5,47943.48,49117.17
1-10-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,192.6,25.4,36.5,48209.2,49408.61
1-11-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,194.7,25.41,36.3,47963.91,49391.24
1-12-2012,CEU2023831001,20238310,23831,Drywall and insulation contractors,196.2,25.43,36.2,47869.43,49427.06
1-1-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,200.1,25.39,36.5,48190.22,49611.57
1-2-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,203.3,25.33,36.6,48208.05,49226.76
1-3-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,205.1,25.39,36.7,48454.28,49349.16
1-4-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,205.4,25.43,36.8,48662.85,49613.17
1-5-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,205.6,25.52,36.9,48967.78,49835.32
1-6-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,206.7,25.42,36.8,48643.71,49387
1-7-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,205.8,25.49,36.7,48645.12,49368.98
1-8-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,204.7,25.42,36.8,48643.71,49308.23
1-9-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,206.2,25.35,36.5,48114.3,48714.93
1-10-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,207.8,25.16,36.4,47622.85,48341.84
1-11-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,208.1,25.41,36.3,47963.91,48787.7
1-12-2013,CEU2023831001,20238310,23831,Drywall and insulation contractors,208.4,25.6,35.8,47656.96,48479.64
1-1-2014,CEU2023831001,20238310,23831,Drywall and insulation contractors,212.5,25.54,35.8,47545.27,48186.75
1-2-2014,CEU2023831001,20238310,23831,Drywall and insulation contractors,208.4,25.76,35.2,47151.11,47611.21
1-3-2014,CEU2023831001,20238310,23831,Drywall and insulation contractors,208.9,25.81,36.2,48584.74,48744.91
1-3-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,247.7,18.21,36,34089.12,40448.33
1-4-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,246.1,18.16,36.2,34184.38,40219.16
1-5-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,247.9,18.25,35.9,34069.1,39885.58
1-6-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,243.3,18.28,35.7,33934.99,39650.25
1-7-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,243.8,18.76,35,34143.2,39775.91
1-8-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,244.5,18.82,35.9,35133.18,40848.91
1-9-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,245,19.36,36,36241.92,42345.71
1-10-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,244.3,19.32,36.2,36367.97,42724.61
1-11-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,240.7,19.13,36.7,36507.69,42952.61
1-12-2006,CEU2023832001,20238320,23832,Painting and wall covering contractors,246,19.09,36.4,36133.55,42449.22
1-1-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,248.2,19.03,36.2,35822.07,41955.23
1-2-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,247.4,18.92,36.4,35811.78,41719.96
1-3-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,247,19.03,36.1,35723.12,41241.14
1-4-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,246.1,19.03,36.5,36118.94,41428.98
1-5-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,240.2,19.16,36.7,36564.95,41685.82
1-6-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,243,19.23,36.7,36698.53,41757.19
1-7-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,244.3,19,36.8,36358.4,41380.7
1-8-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,237.4,18.58,36.7,35458.07,40430.15
1-9-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,234,18.98,36.4,35925.34,40850.37
1-10-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,235.5,19,36.3,35864.4,40694.02
1-11-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,235.7,19.15,36.9,36745.02,41447.04
1-12-2007,CEU2023832001,20238320,23832,Painting and wall covering contractors,236.4,19.76,36.6,37607.23,42448.06
1-1-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,237,19.45,37,37421.8,42029.86
1-2-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,236.4,19.42,36.5,36859.16,41278.05
1-3-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,232.7,19.2,37.1,37040.64,41124.81
1-4-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,228.3,19.37,36.7,36965.71,40794.21
1-5-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,224.6,19.26,36.6,36655.63,40114.22
1-6-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,223,19.35,37,37229.4,40335.66
1-7-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,218.8,19.38,36.7,36984.79,39861.33
1-8-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,217.7,19.54,36.2,36782.1,39801.75
1-9-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,212.4,19.29,36.2,36311.5,39346.93
1-10-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,210.2,19.28,36.3,36392.93,39837.58
1-11-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,206.5,19.63,35.7,36441.13,40669.29
1-12-2008,CEU2023832001,20238320,23832,Painting and wall covering contractors,201.7,19.62,35.2,35912.45,40498.11
1-1-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,196.6,19.64,36.4,37174.59,41739.75
1-2-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,192.5,19.61,36.4,37117.81,41469.76
1-3-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,187.6,19.89,35.9,37130.65,41383.48
1-4-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,185,19.81,35.7,36775.29,40885.34
1-5-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,183.7,19.94,35.6,36912.93,40920.16
1-6-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,180.7,20.08,35.4,36963.27,40626.98
1-7-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,179.2,20.22,35.6,37431.27,41206.7
1-8-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,176.2,20.47,35.6,37894.06,41622.82
1-9-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,174.6,20.83,36,38993.76,42803.96
1-10-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,174.2,20.27,35.8,37734.63,41381.95
1-11-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,172.4,19.52,37.4,37962.5,41602.39
1-12-2009,CEU2023832001,20238320,23832,Painting and wall covering contractors,169.5,19.66,35.9,36701.29,40291.22
1-1-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,162.8,19.56,34.7,35294.06,38614.38
1-2-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,165.3,19.66,34.6,35372.27,38690.3
1-3-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,165.2,19.29,35.7,35809.96,39008.86
1-4-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,166.4,19.56,36.9,37531.73,40813.55
1-5-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,165.1,19.74,35.9,36850.63,40041.86
1-6-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,162.5,19.95,36.4,37761.36,41071.55
1-7-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,162.7,19.98,36.3,37714.25,41011.65
1-8-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,162.8,19.77,36.8,37831.87,41082.84
1-9-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,163.3,20.25,36.6,38539.8,41827.27
1-10-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,165.3,20.55,36.9,39431.34,42741.64
1-11-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,162.8,20.99,36.7,40057.32,43401.91
1-12-2010,CEU2023832001,20238320,23832,Painting and wall covering contractors,162.4,20.78,35.8,38684.05,41842.07
1-1-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,158.7,20.89,36.7,39866.48,42916.61
1-2-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,163.2,21.1,37.1,40706.12,43605.46
1-3-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,163.1,21.5,37.3,41701.4,44240.24
1-4-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,161.7,21.46,36.7,40954.27,43169.63
1-5-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,162.6,21.43,36.8,41008.45,43024.35
1-6-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,163.8,21.32,36.4,40354.5,42383.64
1-7-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,166.3,21.1,36.9,40486.68,42484.83
1-8-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,164,21.57,36.7,41164.19,43076.98
1-9-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,164.3,21.65,36.8,41429.44,43288.84
1-10-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,159.1,21.83,36.5,41433.34,43382.39
1-11-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,157.9,21.92,36.5,41604.16,43598.02
1-12-2011,CEU2023832001,20238320,23832,Painting and wall covering contractors,165.8,22.44,36.5,42591.12,44742.64
1-1-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,165.1,22.52,36.2,42391.65,44338
1-2-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,165.1,22.45,35.5,41442.7,43155.47
1-3-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,165.5,22.34,35.8,41588.14,42980.51
1-4-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,166.2,22.36,36.4,42323.01,43608.23
1-5-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,166.5,22.23,36.8,42539.33,43882.62
1-6-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,167.5,22.11,37,42539.64,43947.38
1-7-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,167.9,21.9,35.9,40882.92,42304.79
1-8-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,167.5,21.98,36.2,41375.15,42577.19
1-9-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,167.8,22.22,36.4,42058.02,43087.63
1-10-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,167.7,22.1,36.7,42175.64,43224.94
1-11-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,167.9,22.19,37,42693.56,43964.05
1-12-2012,CEU2023832001,20238320,23832,Painting and wall covering contractors,168.9,22.13,37.3,42923.35,44320.03
1-1-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,168.6,22.19,36.8,42462.79,43715.2
1-2-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,171,22.36,37.8,43950.82,44879.56
1-3-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,173.2,22.44,37.8,44108.06,44922.68
1-4-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,174,22.33,37.8,43891.85,44749
1-5-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,174.3,22.35,37.8,43931.16,44709.47
1-6-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,174.2,22.18,37.7,43481.67,44146.08
1-7-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,174.3,22.28,37.8,43793.57,44445.23
1-8-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,174.8,21.98,38,43432.48,44025.81
1-9-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,175.2,21.66,37.5,42237,42764.27
1-10-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,175.1,21.81,36.5,41395.38,42020.35
1-11-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,174.7,21.71,37,41770.04,42487.45
1-12-2013,CEU2023832001,20238320,23832,Painting and wall covering contractors,175.3,21.49,36.6,40899.77,41605.8
1-1-2014,CEU2023832001,20238320,23832,Painting and wall covering contractors,176.2,21.48,36.2,40433.95,40979.49
1-2-2014,CEU2023832001,20238320,23832,Painting and wall covering contractors,176.9,21.89,35.9,40864.25,41263.01
1-3-2014,CEU2023832001,20238320,23832,Painting and wall covering contractors,172.5,21.6,36.6,41109.12,41244.65
1-3-2006,CEU2023833001,20238330,23833,Flooring contractors,87.5,25.05,36.6,47675.16,56568.8
1-4-2006,CEU2023833001,20238330,23833,Flooring contractors,86.2,25.49,38.2,50633.34,59571.94
1-5-2006,CEU2023833001,20238330,23833,Flooring contractors,85.8,25.14,36.8,48107.9,56321.17
1-6-2006,CEU2023833001,20238330,23833,Flooring contractors,85.3,24.81,36.3,46831.36,54718.59
1-7-2006,CEU2023833001,20238330,23833,Flooring contractors,85.7,24.66,34.8,44624.73,51986.61
1-8-2006,CEU2023833001,20238330,23833,Flooring contractors,84.4,24.72,35.6,45761.66,53206.52
1-9-2006,CEU2023833001,20238330,23833,Flooring contractors,85.4,24.09,35.5,44470.14,51959.71
1-10-2006,CEU2023833001,20238330,23833,Flooring contractors,84.8,23.98,36,44890.56,52736.84
1-11-2006,CEU2023833001,20238330,23833,Flooring contractors,85.9,23.58,36.4,44632.22,52511.41
1-12-2006,CEU2023833001,20238330,23833,Flooring contractors,85.7,22.75,36.9,43652.7,51282.62
1-1-2007,CEU2023833001,20238330,23833,Flooring contractors,86.9,22.9,36.5,43464.2,50905.78
1-2-2007,CEU2023833001,20238330,23833,Flooring contractors,86.5,23.55,36.5,44697.9,52072.1
1-3-2007,CEU2023833001,20238330,23833,Flooring contractors,87.3,23.35,37.1,45046.82,52005.05
1-4-2007,CEU2023833001,20238330,23833,Flooring contractors,87.5,22.82,36.8,43668.35,50088.27
1-5-2007,CEU2023833001,20238330,23833,Flooring contractors,88,23.68,36.1,44452.1,50677.56
1-6-2007,CEU2023833001,20238330,23833,Flooring contractors,87.3,23.81,36.2,44819.95,50998.09
1-7-2007,CEU2023833001,20238330,23833,Flooring contractors,86.8,24.54,36.4,46449.31,52865.5
1-8-2007,CEU2023833001,20238330,23833,Flooring contractors,86.5,23.58,35.6,43651.3,49772.27
1-9-2007,CEU2023833001,20238330,23833,Flooring contractors,85.7,23.74,35.6,43947.49,49972.27
1-10-2007,CEU2023833001,20238330,23833,Flooring contractors,86.1,23.35,36,43711.2,49597.49
1-11-2007,CEU2023833001,20238330,23833,Flooring contractors,85.1,23.12,37.1,44603.11,50310.68
1-12-2007,CEU2023833001,20238330,23833,Flooring contractors,85.2,23.83,35.3,43742.35,49372.89
1-1-2008,CEU2023833001,20238330,23833,Flooring contractors,84,23.86,35.3,43797.41,49190.55
1-2-2008,CEU2023833001,20238330,23833,Flooring contractors,84,23.44,35.3,43026.46,48184.73
1-3-2008,CEU2023833001,20238330,23833,Flooring contractors,82.3,23.5,34.6,42281.2,46943.21
1-4-2008,CEU2023833001,20238330,23833,Flooring contractors,81.7,23.07,34.9,41867.44,46203.61
1-5-2008,CEU2023833001,20238330,23833,Flooring contractors,80.4,23.06,35.3,42328.94,46322.82
1-6-2008,CEU2023833001,20238330,23833,Flooring contractors,80.1,22.63,36.2,42598.71,46152.97
1-7-2008,CEU2023833001,20238330,23833,Flooring contractors,78.6,23.12,35.8,43040.19,46387.7
1-8-2008,CEU2023833001,20238330,23833,Flooring contractors,77.5,23.29,36.4,44083.31,47702.36
1-9-2008,CEU2023833001,20238330,23833,Flooring contractors,77.1,23.33,36.2,43916.39,47587.55
1-10-2008,CEU2023833001,20238330,23833,Flooring contractors,75.9,23.53,35.7,43681.09,47815.58
1-11-2008,CEU2023833001,20238330,23833,Flooring contractors,74.2,24.04,34.6,43252.77,48271.25
1-12-2008,CEU2023833001,20238330,23833,Flooring contractors,74.5,23.94,34.2,42574.89,48011.28
1-1-2009,CEU2023833001,20238330,23833,Flooring contractors,72.1,23.8,34.1,42202.16,47384.71
1-2-2009,CEU2023833001,20238330,23833,Flooring contractors,67.6,23.57,34.4,42162.02,47105.39
1-3-2009,CEU2023833001,20238330,23833,Flooring contractors,68.4,23.27,35.1,42472.4,47337.05
1-4-2009,CEU2023833001,20238330,23833,Flooring contractors,68.1,23.18,34.3,41343.85,45964.5
1-5-2009,CEU2023833001,20238330,23833,Flooring contractors,66,22.96,35,41787.2,46323.58
1-6-2009,CEU2023833001,20238330,23833,Flooring contractors,65.6,22.94,34.6,41273.65,45364.6
1-7-2009,CEU2023833001,20238330,23833,Flooring contractors,64.9,22.31,34.9,40488.19,44571.96
1-8-2009,CEU2023833001,20238330,23833,Flooring contractors,65.3,22.46,34.2,39942.86,43873.23
1-9-2009,CEU2023833001,20238330,23833,Flooring contractors,65.1,22.75,33.7,39867.1,43762.64
1-10-2009,CEU2023833001,20238330,23833,Flooring contractors,63.5,22.75,34.8,41168.4,45147.61
1-11-2009,CEU2023833001,20238330,23833,Flooring contractors,62.2,22.51,36.4,42606.93,46692.14
1-12-2009,CEU2023833001,20238330,23833,Flooring contractors,61.8,22.19,35.9,41424.29,45476.2
1-1-2010,CEU2023833001,20238330,23833,Flooring contractors,61.5,22.85,35.7,42418.74,46409.32
1-2-2010,CEU2023833001,20238330,23833,Flooring contractors,61.2,23.1,35.2,42282.24,46248.45
1-3-2010,CEU2023833001,20238330,23833,Flooring contractors,60.9,23.55,34.9,42738.54,46556.38
1-4-2010,CEU2023833001,20238330,23833,Flooring contractors,60,23.48,35.8,43710.37,47532.46
1-5-2010,CEU2023833001,20238330,23833,Flooring contractors,60.1,23.4,34.2,41614.56,45218.34
1-6-2010,CEU2023833001,20238330,23833,Flooring contractors,58.9,23.57,33.8,41426.63,45058.13
1-7-2010,CEU2023833001,20238330,23833,Flooring contractors,58.8,24.09,33.6,42090.05,45770.04
1-8-2010,CEU2023833001,20238330,23833,Flooring contractors,58.1,23.54,34.6,42353.17,45992.66
1-9-2010,CEU2023833001,20238330,23833,Flooring contractors,57.4,23.46,34.7,42331.22,45942.11
1-10-2010,CEU2023833001,20238330,23833,Flooring contractors,58,23.28,34.2,41401.15,44876.82
1-11-2010,CEU2023833001,20238330,23833,Flooring contractors,58.2,23.34,34.6,41993.33,45499.57
1-12-2010,CEU2023833001,20238330,23833,Flooring contractors,58.4,23.45,35,42679,46163.16
1-1-2011,CEU2023833001,20238330,23833,Flooring contractors,57.9,23.05,35.7,42790.02,46063.83
1-2-2011,CEU2023833001,20238330,23833,Flooring contractors,57,23.42,35.5,43233.32,46312.67
1-3-2011,CEU2023833001,20238330,23833,Flooring contractors,56.6,23.57,35.4,43387.66,46029.16
1-4-2011,CEU2023833001,20238330,23833,Flooring contractors,55.6,23.87,35.4,43939.89,46316.77
1-5-2011,CEU2023833001,20238330,23833,Flooring contractors,55.2,24.6,35.1,44899.92,47107.12
1-6-2011,CEU2023833001,20238330,23833,Flooring contractors,54.8,25.12,34.1,44542.79,46782.54
1-7-2011,CEU2023833001,20238330,23833,Flooring contractors,54.9,25.18,34.3,44911.05,47127.56
1-8-2011,CEU2023833001,20238330,23833,Flooring contractors,55.5,25.43,34.9,46150.36,48294.86
1-9-2011,CEU2023833001,20238330,23833,Flooring contractors,55.8,25.6,34.4,45793.28,47848.53
1-10-2011,CEU2023833001,20238330,23833,Flooring contractors,54.9,25.65,34.9,46549.62,48739.35
1-11-2011,CEU2023833001,20238330,23833,Flooring contractors,56,25.45,35,46319,48538.82
1-12-2011,CEU2023833001,20238330,23833,Flooring contractors,55.1,25.28,34.5,45352.32,47643.33
1-1-2012,CEU2023833001,20238330,23833,Flooring contractors,55.1,26.39,34.2,46931.98,49086.79
1-2-2012,CEU2023833001,20238330,23833,Flooring contractors,55.7,25.79,34.6,46401.37,48319.07
1-3-2012,CEU2023833001,20238330,23833,Flooring contractors,56.7,25.96,34.2,46167.27,47712.94
1-4-2012,CEU2023833001,20238330,23833,Flooring contractors,57,25.83,35.2,47279.23,48714.96
1-5-2012,CEU2023833001,20238330,23833,Flooring contractors,56.1,25.78,34.8,46651.49,48124.63
1-6-2012,CEU2023833001,20238330,23833,Flooring contractors,57.9,25.68,35,46737.6,48284.27
1-7-2012,CEU2023833001,20238330,23833,Flooring contractors,58.1,25.81,34.8,46705.78,48330.16
1-8-2012,CEU2023833001,20238330,23833,Flooring contractors,59.2,25.62,34.4,45829.05,47160.49
1-9-2012,CEU2023833001,20238330,23833,Flooring contractors,57.7,25.69,34.3,45820.68,46942.41
1-10-2012,CEU2023833001,20238330,23833,Flooring contractors,58.1,26.12,34,46180.16,47329.09
1-11-2012,CEU2023833001,20238330,23833,Flooring contractors,57.4,26.63,33.7,46666.41,48055.13
1-12-2012,CEU2023833001,20238330,23833,Flooring contractors,58.5,26.23,34.5,47056.62,48587.8
1-1-2013,CEU2023833001,20238330,23833,Flooring contractors,57.7,26.44,34.5,47433.36,48832.38
1-2-2013,CEU2023833001,20238330,23833,Flooring contractors,59.3,26.33,34.5,47236.02,48234.18
1-3-2013,CEU2023833001,20238330,23833,Flooring contractors,59.5,26.19,35.1,47801.99,48684.82
1-4-2013,CEU2023833001,20238330,23833,Flooring contractors,61.1,26.5,33.8,46576.4,47485.97
1-5-2013,CEU2023833001,20238330,23833,Flooring contractors,61.4,26.36,35,47975.2,48825.16
1-6-2013,CEU2023833001,20238330,23833,Flooring contractors,62,26.51,35.8,49351.02,50105.11
1-7-2013,CEU2023833001,20238330,23833,Flooring contractors,60.7,26.01,35.8,48420.21,49140.73
1-8-2013,CEU2023833001,20238330,23833,Flooring contractors,59.8,26.91,36.1,50515.45,51205.55
1-9-2013,CEU2023833001,20238330,23833,Flooring contractors,59.7,26.4,35.3,48459.84,49064.79
1-10-2013,CEU2023833001,20238330,23833,Flooring contractors,60.1,26.57,36.3,50153.53,50910.73
1-11-2013,CEU2023833001,20238330,23833,Flooring contractors,60.1,26.6,37.3,51593.36,52479.48
1-12-2013,CEU2023833001,20238330,23833,Flooring contractors,59.3,26.36,35.3,48386.41,49221.68
1-1-2014,CEU2023833001,20238330,23833,Flooring contractors,60.6,26.73,36.6,50872.54,51558.91
1-2-2014,CEU2023833001,20238330,23833,Flooring contractors,61.4,26.25,37.3,50914.5,51411.32
1-3-2014,CEU2023833001,20238330,23833,Flooring contractors,61.3,26.42,35.1,48221.79,48380.76
1-3-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,77.4,19.62,36,36728.64,43580.24
1-4-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,78,19.41,37,37344.84,43937.55
1-5-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,79.2,18.79,36.4,35565.71,41637.7
1-6-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,79.5,19.49,37,37498.76,43814.23
1-7-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,79.1,19.59,36.6,37283.69,43434.49
1-8-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,79.7,19.51,36.9,37435.79,43526.13
1-9-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,77.4,19.29,37.2,37314.57,43599.02
1-10-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,77.7,18.85,35.8,35091.16,41224.64
1-11-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,77.3,19.05,36.9,36553.14,43006.09
1-12-2006,CEU2023834001,20238340,23834,Tile and terrazzo contractors,77.4,20.57,36.9,39469.71,46368.5
1-1-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,78.1,18.29,37.3,35475.29,41549.07
1-2-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,75.7,17.43,36.8,33354.05,38856.75
1-3-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,75.4,17.53,37.1,33818.88,39042.76
1-4-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,78,18.21,36.6,34657.27,39752.43
1-5-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,73.9,18.71,35.3,34344.07,39153.92
1-6-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,73.2,18.92,36.3,35713.39,40636.25
1-7-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,73.1,19.13,36.3,36109.79,41097.75
1-8-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,73,19.51,36.5,37029.98,42222.48
1-9-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,73.4,19.77,36.7,37729.07,42901.37
1-10-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,72.7,20.33,39,41229.24,46781.3
1-11-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,71.4,20.56,36.5,39022.88,44016.38
1-12-2007,CEU2023834001,20238340,23834,Tile and terrazzo contractors,69.4,20.82,37,40057.68,45213.93
1-1-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,69.3,20.88,36.5,39630.24,44510.23
1-2-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,67.8,21.13,36.3,39884.99,44666.64
1-3-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,68.2,21.42,36.8,40989.31,45508.87
1-4-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,64.5,21.93,36.4,41509.11,45808.16
1-5-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,62.6,21.98,37.4,42746.7,46780.01
1-6-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,63.4,21.63,37.6,42290.98,45819.56
1-7-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,62.2,21.77,38.3,43357.13,46729.29
1-8-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,60.7,22.3,38.1,44180.76,47807.81
1-9-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,58.8,22.14,38,43748.64,47405.77
1-10-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,56.8,22.01,38.8,44407.38,48610.61
1-11-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,56,21.97,36.9,42156.04,47047.27
1-12-2008,CEU2023834001,20238340,23834,Tile and terrazzo contractors,55.3,22.56,37.7,44226.63,49873.92
1-1-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,55.2,23.1,39.3,47207.16,53004.34
1-2-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,54.6,23.24,38.5,46526.48,51981.57
1-3-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,52.9,23.14,37,44521.36,49620.69
1-4-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,51.1,22.38,37.1,43175.5,48000.85
1-5-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,50.3,23.2,36.6,44154.24,48947.58
1-6-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,49.2,23.44,36.8,44854.79,49300.69
1-7-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,49,23.37,35.6,43262.54,47626.14
1-8-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,47,23.1,35.2,42282.24,46442.8
1-9-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,46.2,23.16,35.5,42753.36,46930.92
1-10-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,46.3,23.87,35.2,43691.65,47914.75
1-11-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,45.8,24.06,35.8,44790.1,49084.63
1-12-2009,CEU2023834001,20238340,23834,Tile and terrazzo contractors,44.9,23.54,35.6,43577.25,47839.75
1-1-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.7,23.08,34.7,41645.55,45563.39
1-2-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42,23.53,36.2,44292.87,48447.68
1-3-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41.7,23.6,36.8,45160.96,49195.19
1-4-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.3,23.23,35.9,43365.77,47157.73
1-5-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.3,23.17,36.8,44338.11,48177.75
1-6-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41.4,23.63,35.9,44112.48,47979.43
1-7-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,40.7,23.54,36.8,45046.14,48984.59
1-8-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.2,23.47,37,45156.28,49036.65
1-9-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41.4,23.58,37,45367.92,49237.84
1-10-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,40.9,23.38,36.8,44739.97,48495.93
1-11-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41,22.87,37.5,44596.5,48320.09
1-12-2010,CEU2023834001,20238340,23834,Tile and terrazzo contractors,40,22.95,36.9,44036.46,47631.44
1-1-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,39.1,23.1,36.4,43723.68,47068.93
1-2-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,39.7,23.12,35.6,42799.74,45848.21
1-3-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,39.9,23.45,36.3,44264.22,46959.09
1-4-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,39.8,24.07,37.2,46561.01,49079.66
1-5-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,39.7,23.69,37.1,45702.75,47949.41
1-6-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,38.7,23.48,36.2,44198.75,46421.2
1-7-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,37.7,23.44,36.9,44976.67,47196.42
1-8-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,37.6,23.11,36.6,43982.95,46026.73
1-9-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,38.6,23.05,35.9,43029.74,44960.96
1-10-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,39,23.68,37.6,46299.14,48477.08
1-11-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,38.7,24.01,35.7,44572.16,46708.27
1-12-2011,CEU2023834001,20238340,23834,Tile and terrazzo contractors,38.9,23.89,36.2,44970.54,47242.26
1-1-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,39.5,24.25,36.2,45648.2,47744.07
1-2-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41.5,24.09,36.1,45221.75,47090.7
1-3-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,40,22.87,37.3,44358.65,45843.77
1-4-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41.1,22.55,37.6,44089.76,45428.64
1-5-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,40.8,22.41,36.5,42534.18,43877.3
1-6-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.1,22.23,37.3,43117.31,44544.17
1-7-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.6,21.98,37.3,42632.41,44115.12
1-8-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41.8,21.89,37.3,42457.84,43691.34
1-9-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.5,21.88,37,42097.12,43127.69
1-10-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41.8,21.52,36.7,41068.77,42090.54
1-11-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,41.7,21.3,37.1,41091.96,42314.79
1-12-2012,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.7,21.37,37.9,42116,43486.41
1-1-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.9,21.19,37.9,41761.25,42992.98
1-2-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.8,21.04,38.7,42340.89,43235.62
1-3-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,43.5,21.2,37.2,41009.28,41766.67
1-4-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.8,21.67,37.3,42031.13,42851.94
1-5-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.8,21.04,37,40480.96,41198.15
1-6-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,42.7,20.99,37.9,41367.09,41999.19
1-7-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,43,21.19,36.6,40328.81,40928.92
1-8-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,43.8,21.27,36.9,40812.88,41370.42
1-9-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,43.4,20.94,37.8,41159.66,41673.48
1-10-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,44,20.39,37.3,39548.45,40145.53
1-11-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,45.1,20.56,36.8,39343.62,40019.35
1-12-2013,CEU2023834001,20238340,23834,Tile and terrazzo contractors,45.8,21.07,37,40538.68,41238.48
1-1-2014,CEU2023834001,20238340,23834,Tile and terrazzo contractors,47.6,20.66,36.1,38782.95,39306.21
1-2-2014,CEU2023834001,20238340,23834,Tile and terrazzo contractors,47,21.16,36.5,40161.68,40553.58
1-3-2014,CEU2023834001,20238340,23834,Tile and terrazzo contractors,47.4,20.77,36.4,39313.46,39443.06
1-3-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,176.3,20.3,36.3,38318.28,45466.43
1-4-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,178.6,20.28,36.8,38807.81,45658.78
1-5-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,178.5,20.36,35.9,38008.05,44497.01
1-6-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,177.7,20.24,35.7,37573.54,43901.59
1-7-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,176.1,20.79,35.1,37945.91,44205.96
1-8-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,175.7,20.59,35.8,38330.34,44566.21
1-9-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,175.2,20.69,36.1,38839.27,45380.5
1-10-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,175.8,20.57,36.5,39041.86,45865.87
1-11-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,176.3,20.43,36,38244.96,44996.57
1-12-2006,CEU2023835001,20238350,23835,Finish carpentry contractors,175.8,21.67,36.4,41016.98,48186.21
1-1-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,175.3,21.06,36.6,40081.39,46943.79
1-2-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,174.9,21.35,34.8,38634.96,45008.91
1-3-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,176.3,21.59,35.8,40191.95,46400.25
1-4-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,175.9,22.08,36,41333.76,47410.46
1-5-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,177.8,21.97,35.7,40785.11,46497.01
1-6-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,177.5,21.87,36.1,41054.36,46713.45
1-7-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,179.6,21.52,36.2,40509.25,46104.92
1-8-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,176.3,21.5,36,40248,45891.75
1-9-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,172.2,21.5,35.8,40024.4,45511.37
1-10-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,172.3,21.32,35.5,39356.72,44656.62
1-11-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,168.3,21.74,36,40697.28,45905.05
1-12-2007,CEU2023835001,20238350,23835,Finish carpentry contractors,170.1,21.51,35.6,39819.31,44944.88
1-1-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,168.2,21.85,35.3,40107.86,45046.67
1-2-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,165.9,21.81,35.5,40261.26,45088.02
1-3-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,163.8,21.41,36,40079.52,44498.77
1-4-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,162.6,21.22,35.7,39392.81,43472.68
1-5-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,158.4,21.65,36,40528.8,44352.84
1-6-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,155.1,22.35,35.9,41722.98,45204.17
1-7-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,155.6,22.63,35.7,42010.33,45277.74
1-8-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,154.3,22.81,35.8,42463.1,45949.13
1-9-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,153.1,23.32,36,43655.04,47304.35
1-10-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,150.1,23.7,35.9,44243.16,48430.85
1-11-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,146.2,24.15,36.6,45962.28,51295.14
1-12-2008,CEU2023835001,20238350,23835,Finish carpentry contractors,142.2,23.67,36.1,44433.32,50107.01
1-1-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,139.4,23.77,36.1,44621.04,50100.64
1-2-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,130.7,23.44,36.6,44611.01,49841.52
1-3-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,129.6,23.92,35.1,43658.79,48659.32
1-4-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,125.7,23.82,35.4,43847.86,48748.36
1-5-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,125.9,23.9,35.6,44243.68,49046.73
1-6-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,120.1,23.87,35.1,43567.52,47885.84
1-7-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,117.6,23.9,35.3,43870.84,48295.79
1-8-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,115,24.11,35.1,44005.57,48335.7
1-9-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,115.4,24.42,35,44444.4,48787.2
1-10-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,113,23.7,35.4,43626.96,47843.81
1-11-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,111.3,23.41,34.7,42241,46291.13
1-12-2009,CEU2023835001,20238350,23835,Finish carpentry contractors,114,23.77,34.8,43014.19,47221.62
1-1-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,109.5,23.72,34.7,42800.37,46826.85
1-2-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,112.1,23.93,34.1,42432.68,46413
1-3-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,110.7,24.02,34.9,43591.5,47485.53
1-4-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,113.3,23.95,35.2,43838.08,47671.34
1-5-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,111.7,24.03,35.3,44109.47,47929.3
1-6-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,112.5,23.67,35.4,43571.73,47391.27
1-7-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,111.7,24,35.2,43929.6,47770.43
1-8-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,109.8,23.92,35.7,44405.09,48220.91
1-9-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,107.6,23.74,35.4,43700.59,47428.29
1-10-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,108.2,24.15,35.2,44204.16,47915.14
1-11-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,111,24.04,35.4,44252.83,47947.73
1-12-2010,CEU2023835001,20238350,23835,Finish carpentry contractors,108.1,24.01,35,43698.2,47265.56
1-1-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,108.4,23.8,35.2,43563.52,46896.51
1-2-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,107.4,23.94,35.2,43819.78,46940.89
1-3-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,108,23.74,34.6,42713.01,45313.44
1-4-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,105.6,23.51,35.3,43154.96,45489.37
1-5-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,106,23.58,35.1,43038.21,45153.9
1-6-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,106,23.49,35.6,43484.69,45671.23
1-7-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,105.7,23.07,35.5,42587.22,44689.04
1-8-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,106.8,22.97,35.3,42163.73,44122.98
1-9-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,107.9,23.33,35,42460.6,44366.27
1-10-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,107,22.76,35.9,42488.37,44487.05
1-11-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,108.1,22.55,35.3,41392.78,43376.52
1-12-2011,CEU2023835001,20238350,23835,Finish carpentry contractors,108.5,22.65,35.8,42165.24,44295.25
1-1-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,108.6,22.73,35.8,42314.17,44256.96
1-2-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,105.1,22.65,35.4,41694.12,43417.29
1-3-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,107.1,23.03,35.3,42273.87,43689.19
1-4-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,105.7,22.9,35.2,41916.16,43189.03
1-5-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,104.2,22.73,34.8,41132.21,42431.06
1-6-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,105.7,22.92,34.6,41237.66,42602.32
1-7-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,107.6,22.86,34.3,40773.1,42191.14
1-8-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,108.8,23.14,35.1,42235.13,43462.15
1-9-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,108.1,23.36,35.4,43001.09,44053.79
1-10-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,109.7,23.53,35.4,43314.02,44391.65
1-11-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,109,23.7,35.7,43996.68,45305.95
1-12-2012,CEU2023835001,20238350,23835,Finish carpentry contractors,107.5,23.86,36.3,45038.14,46503.63
1-1-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,109.4,23.9,36.3,45113.64,46444.25
1-2-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,111.1,23.76,37.5,46332,47311.06
1-3-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,112.3,23.85,37.7,46755.54,47619.05
1-4-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,112.6,23.54,37.4,45780.59,46674.63
1-5-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,113.9,24.16,37.4,46986.37,47818.81
1-6-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,112.3,24.2,37.5,47190,47911.07
1-7-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,110.1,24.15,37.7,47343.66,48048.15
1-8-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,108.5,24.11,37,46387.64,47021.34
1-9-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,106.2,23.75,36.5,45077.5,45640.22
1-10-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,106.8,23.92,36.7,45648.93,46338.12
1-11-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,107.9,23.84,37.4,46364.03,47160.34
1-12-2013,CEU2023835001,20238350,23835,Finish carpentry contractors,108.3,23.74,37,45675.76,46464.24
1-1-2014,CEU2023835001,20238350,23835,Finish carpentry contractors,109.6,23.4,37.1,45143.28,45752.36
1-2-2014,CEU2023835001,20238350,23835,Finish carpentry contractors,108.4,23.96,35.8,44603.94,45039.18
1-3-2014,CEU2023835001,20238350,23835,Finish carpentry contractors,107.5,24.25,37.1,46783.1,46937.33
1-3-2006,CEU2023839001,20238390,23839,Other building finishing contractors,71.1,20.94,37.7,41050.78,48708.66
1-4-2006,CEU2023839001,20238390,23839,Other building finishing contractors,71.1,21.02,36.9,40333.18,47453.43
1-5-2006,CEU2023839001,20238390,23839,Other building finishing contractors,71.5,21.01,35.6,38893.71,45533.88
1-6-2006,CEU2023839001,20238390,23839,Other building finishing contractors,73.3,21.13,35.7,39225.73,45832.05
1-7-2006,CEU2023839001,20238390,23839,Other building finishing contractors,73.3,21.99,35.6,40707.89,47423.59
1-8-2006,CEU2023839001,20238390,23839,Other building finishing contractors,72.6,21.53,34.8,38960.69,45299.11
1-9-2006,CEU2023839001,20238390,23839,Other building finishing contractors,77.3,21.61,35,39330.2,45954.11
1-10-2006,CEU2023839001,20238390,23839,Other building finishing contractors,73.8,22.37,35.6,41411.34,48649.5
1-11-2006,CEU2023839001,20238390,23839,Other building finishing contractors,69.9,22.59,35.9,42171.01,49615.71
1-12-2006,CEU2023839001,20238390,23839,Other building finishing contractors,73.2,23.21,36.1,43569.81,51185.25
1-1-2007,CEU2023839001,20238390,23839,Other building finishing contractors,76.4,22.42,35.7,41620.49,48746.4
1-2-2007,CEU2023839001,20238390,23839,Other building finishing contractors,73.6,22.71,36.6,43221.67,50352.33
1-3-2007,CEU2023839001,20238390,23839,Other building finishing contractors,74.2,22.9,35.4,42154.32,48665.75
1-4-2007,CEU2023839001,20238390,23839,Other building finishing contractors,74.8,23.03,35,41914.6,48076.69
1-5-2007,CEU2023839001,20238390,23839,Other building finishing contractors,75.6,23.04,35.7,42771.46,48761.55
1-6-2007,CEU2023839001,20238390,23839,Other building finishing contractors,74.7,23.11,36.4,43742.61,49772.25
1-7-2007,CEU2023839001,20238390,23839,Other building finishing contractors,73.6,23.26,35.1,42454.15,48318.48
1-8-2007,CEU2023839001,20238390,23839,Other building finishing contractors,71.1,23.71,33.6,41426.11,47235.06
1-9-2007,CEU2023839001,20238390,23839,Other building finishing contractors,72.2,23.67,34.8,42833.23,48705.26
1-10-2007,CEU2023839001,20238390,23839,Other building finishing contractors,72.6,23.25,35.4,42798.6,48562
1-11-2007,CEU2023839001,20238390,23839,Other building finishing contractors,73.2,23.56,35.4,43369.25,48918.93
1-12-2007,CEU2023839001,20238390,23839,Other building finishing contractors,70.3,23.64,35,43024.8,48562.98
1-1-2008,CEU2023839001,20238390,23839,Other building finishing contractors,68.4,23.88,35.2,43709.95,49092.32
1-2-2008,CEU2023839001,20238390,23839,Other building finishing contractors,73.6,24.12,34.8,43647.55,48880.28
1-3-2008,CEU2023839001,20238390,23839,Other building finishing contractors,75.1,24.14,34.5,43307.16,48082.29
1-4-2008,CEU2023839001,20238390,23839,Other building finishing contractors,73.4,24.49,34.8,44317.11,48906.98
1-5-2008,CEU2023839001,20238390,23839,Other building finishing contractors,74.1,24.81,34.8,44896.18,49132.29
1-6-2008,CEU2023839001,20238390,23839,Other building finishing contractors,72.6,24.79,34.6,44602.17,48323.59
1-7-2008,CEU2023839001,20238390,23839,Other building finishing contractors,72.1,24.35,34.3,43430.66,46808.54
1-8-2008,CEU2023839001,20238390,23839,Other building finishing contractors,73.6,24.7,35.1,45082.44,48783.51
1-9-2008,CEU2023839001,20238390,23839,Other building finishing contractors,72.8,25.04,35.1,45703.01,49523.52
1-10-2008,CEU2023839001,20238390,23839,Other building finishing contractors,72.2,24.99,34,44182.32,48364.25
1-11-2008,CEU2023839001,20238390,23839,Other building finishing contractors,72.6,25,33.8,43940,49038.22
1-12-2008,CEU2023839001,20238390,23839,Other building finishing contractors,70.9,25.26,32.2,42295.34,47696.04
1-1-2009,CEU2023839001,20238390,23839,Other building finishing contractors,69,25.08,32.2,41993.95,47150.93
1-2-2009,CEU2023839001,20238390,23839,Other building finishing contractors,68.1,24.83,34.2,44157.67,49335.03
1-3-2009,CEU2023839001,20238390,23839,Other building finishing contractors,65.4,24.9,33.1,42857.88,47766.68
1-4-2009,CEU2023839001,20238390,23839,Other building finishing contractors,66.7,25.26,32.7,42952.11,47752.5
1-5-2009,CEU2023839001,20238390,23839,Other building finishing contractors,66.4,25.11,32.7,42697.04,47332.19
1-6-2009,CEU2023839001,20238390,23839,Other building finishing contractors,65.1,24.8,32.8,42298.88,46491.45
1-7-2009,CEU2023839001,20238390,23839,Other building finishing contractors,65.2,25.41,33.7,44528.48,49019.77
1-8-2009,CEU2023839001,20238390,23839,Other building finishing contractors,63.9,25.77,33,44221.32,48572.68
1-9-2009,CEU2023839001,20238390,23839,Other building finishing contractors,64.5,25.04,32.6,42447.81,46595.52
1-10-2009,CEU2023839001,20238390,23839,Other building finishing contractors,64.1,25.08,32.8,42776.45,46911.09
1-11-2009,CEU2023839001,20238390,23839,Other building finishing contractors,62.9,24.8,32.5,41912,45930.58
1-12-2009,CEU2023839001,20238390,23839,Other building finishing contractors,63.9,24.59,32.8,41940.7,46043.13
1-1-2010,CEU2023839001,20238390,23839,Other building finishing contractors,62,24.74,33.3,42839.79,46869.97
1-2-2010,CEU2023839001,20238390,23839,Other building finishing contractors,61.3,25.32,32.6,42922.46,46948.73
1-3-2010,CEU2023839001,20238390,23839,Other building finishing contractors,60.6,25.64,33.3,44398.22,48364.32
1-4-2010,CEU2023839001,20238390,23839,Other building finishing contractors,59.4,25.58,33.5,44560.36,48456.78
1-5-2010,CEU2023839001,20238390,23839,Other building finishing contractors,59.6,25.73,33.2,44420.27,48267.02
1-6-2010,CEU2023839001,20238390,23839,Other building finishing contractors,59.8,25.87,32.9,44258.39,48138.13
1-7-2010,CEU2023839001,20238390,23839,Other building finishing contractors,59.3,24.23,32.6,41074.7,44665.91
1-8-2010,CEU2023839001,20238390,23839,Other building finishing contractors,59.2,25.76,33,44204.16,48002.71
1-9-2010,CEU2023839001,20238390,23839,Other building finishing contractors,61.4,25.95,33.1,44665.14,48475.11
1-10-2010,CEU2023839001,20238390,23839,Other building finishing contractors,62.5,26.05,32.3,43753.58,47426.73
1-11-2010,CEU2023839001,20238390,23839,Other building finishing contractors,62,26.2,33,44959.2,48713.07
1-12-2010,CEU2023839001,20238390,23839,Other building finishing contractors,59.1,25.73,32.7,43751.29,47322.99
1-1-2011,CEU2023839001,20238390,23839,Other building finishing contractors,57.7,25.73,33.1,44286.48,47674.78
1-2-2011,CEU2023839001,20238390,23839,Other building finishing contractors,63.8,25.3,34,44730.4,47916.38
1-3-2011,CEU2023839001,20238390,23839,Other building finishing contractors,60.1,24.07,36.3,45434.53,48200.65
1-4-2011,CEU2023839001,20238390,23839,Other building finishing contractors,61.5,24.3,33.9,42836.04,45153.2
1-5-2011,CEU2023839001,20238390,23839,Other building finishing contractors,60.8,24.19,34.1,42893.71,45002.29
1-6-2011,CEU2023839001,20238390,23839,Other building finishing contractors,63.2,24.3,34.8,43973.28,46184.39
1-7-2011,CEU2023839001,20238390,23839,Other building finishing contractors,63.8,24.83,35,45190.6,47420.91
1-8-2011,CEU2023839001,20238390,23839,Other building finishing contractors,63.8,24.35,33.4,42291.08,44256.24
1-9-2011,CEU2023839001,20238390,23839,Other building finishing contractors,62.7,24.07,34.3,42931.25,44858.05
1-10-2011,CEU2023839001,20238390,23839,Other building finishing contractors,62.7,23.62,35.1,43111.22,45139.2
1-11-2011,CEU2023839001,20238390,23839,Other building finishing contractors,61.7,22.97,35.1,41924.84,43934.08
1-12-2011,CEU2023839001,20238390,23839,Other building finishing contractors,63.7,23.83,35.5,43990.18,46212.38
1-1-2012,CEU2023839001,20238390,23839,Other building finishing contractors,64,23.67,35.5,43694.82,45701
1-2-2012,CEU2023839001,20238390,23839,Other building finishing contractors,64.6,23.66,35,43061.2,44840.86
1-3-2012,CEU2023839001,20238390,23839,Other building finishing contractors,63.9,23.65,35,43043,44484.07
1-4-2012,CEU2023839001,20238390,23839,Other building finishing contractors,63.3,23.33,35.6,43188.5,44500
1-5-2012,CEU2023839001,20238390,23839,Other building finishing contractors,63.1,23.5,35.1,42892.2,44246.63
1-6-2012,CEU2023839001,20238390,23839,Other building finishing contractors,60.1,23.34,34.6,41993.33,43382.99
1-7-2012,CEU2023839001,20238390,23839,Other building finishing contractors,60.3,22.71,35,41332.2,42769.69
1-8-2012,CEU2023839001,20238390,23839,Other building finishing contractors,61.3,22.45,34.6,40392.04,41565.52
1-9-2012,CEU2023839001,20238390,23839,Other building finishing contractors,61.1,22.69,34.4,40587.87,41581.49
1-10-2012,CEU2023839001,20238390,23839,Other building finishing contractors,61.9,23,36.1,43175.6,44249.78
1-11-2012,CEU2023839001,20238390,23839,Other building finishing contractors,62.5,22.75,36.8,43534.4,44829.91
1-12-2012,CEU2023839001,20238390,23839,Other building finishing contractors,63.8,22.8,36.5,43274.4,44682.5
1-1-2013,CEU2023839001,20238390,23839,Other building finishing contractors,65,23.25,36,43524,44807.72
1-2-2013,CEU2023839001,20238390,23839,Other building finishing contractors,65.6,22.88,36.1,42950.34,43857.94
1-3-2013,CEU2023839001,20238390,23839,Other building finishing contractors,66.2,22.84,35.8,42518.95,43304.21
1-4-2013,CEU2023839001,20238390,23839,Other building finishing contractors,65.5,22.79,36,42662.88,43496.03
1-5-2013,CEU2023839001,20238390,23839,Other building finishing contractors,65.5,22.55,36.4,42682.64,43438.83
1-6-2013,CEU2023839001,20238390,23839,Other building finishing contractors,66.8,22.72,36.6,43240.7,43901.43
1-7-2013,CEU2023839001,20238390,23839,Other building finishing contractors,67.8,22.92,36.5,43502.16,44149.49
1-8-2013,CEU2023839001,20238390,23839,Other building finishing contractors,67.9,22.62,36.4,42815.14,43400.04
1-9-2013,CEU2023839001,20238390,23839,Other building finishing contractors,68.5,22.29,36.8,42654.14,43186.62
1-10-2013,CEU2023839001,20238390,23839,Other building finishing contractors,68.8,22.8,36.1,42800.16,43446.34
1-11-2013,CEU2023839001,20238390,23839,Other building finishing contractors,68.2,22.79,35.2,41714.82,42431.28
1-12-2013,CEU2023839001,20238390,23839,Other building finishing contractors,67.3,22.47,35.1,41012.24,41720.21
1-1-2014,CEU2023839001,20238390,23839,Other building finishing contractors,68.6,22.59,36.2,42523.41,43097.14
1-2-2014,CEU2023839001,20238390,23839,Other building finishing contractors,71.1,22.86,35.6,42318.43,42731.38
1-3-2014,CEU2023839001,20238390,23839,Other building finishing contractors,69,22.85,36.4,43250.48,43393.07
1-3-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,716.8,20.43,39.2,41644.51,49413.15
1-4-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,729.1,20.54,40,42723.2,50265.38
1-5-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,726.3,20.7,38.8,41764.32,48894.57
1-6-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,737,20.84,38.9,42155.15,49254.84
1-7-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,733.7,20.73,38.7,41717.05,48599.24
1-8-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,730,20.67,38.8,41703.79,48488.48
1-9-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,727.3,20.6,38.5,41241.2,48186.96
1-10-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,724.9,20.77,39.2,42337.57,49737.62
1-11-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,726.4,20.81,38.9,42094.47,49525.66
1-12-2006,CEU2023890001,20238900,2389,Other specialty trade contractors,729.6,20.71,39.4,42430.65,49846.97
1-1-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,740.3,20.75,39,42081,49285.76
1-2-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,716,20.91,38.8,42188.02,49148.14
1-3-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,719.3,20.93,39.2,42663.71,49253.82
1-4-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,716,20.94,38.7,42139.66,48334.83
1-5-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,713.8,20.92,39.3,42752.11,48739.49
1-6-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,708.1,21.01,39,42608.28,48481.56
1-7-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,708.9,21.18,39,42953.04,48886.28
1-8-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,706.7,21.19,38.4,42312.19,48245.39
1-9-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,702.8,21.36,39.5,43873.44,49888.08
1-10-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,703.8,21.27,38.9,43024.96,48818.84
1-11-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,699,21.29,39.4,43618.95,49200.59
1-12-2007,CEU2023890001,20238900,2389,Other specialty trade contractors,683.1,21.69,38.9,43874.53,49522.09
1-1-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,691.8,21.62,39,43845.36,49244.4
1-2-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,688.4,21.61,39,43825.08,49079.09
1-3-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,684.2,21.77,38.9,44036.36,48891.89
1-4-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,672.9,22.02,38.7,44313.05,48902.51
1-5-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,667.6,22.38,38,44222.88,48395.46
1-6-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,659.7,22.54,38.2,44773.46,48509.16
1-7-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,656,22.77,38.1,45111.93,48620.57
1-8-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,649.7,23.06,38.1,45686.47,49437.13
1-9-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,640.5,22.73,37.5,44323.5,48028.69
1-10-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,649.2,23.23,37.4,45177.7,49453.85
1-11-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,620.2,23.32,37.1,44988.95,50208.87
1-12-2008,CEU2023890001,20238900,2389,Other specialty trade contractors,604.4,23.5,37.1,45336.2,51125.18
1-1-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,592.4,23.27,37.5,45376.5,50948.87
1-2-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,578,22.98,38.1,45527.98,50866
1-3-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,570.6,23.46,36.9,45015.05,50170.93
1-4-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,556.3,23.48,36.8,44931.33,49952.92
1-5-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,552.8,23.43,37.2,45322.99,50243.21
1-6-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,547.7,23.23,37.4,45177.7,49655.62
1-7-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,536.8,23.22,37.8,45641.23,50244.75
1-8-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,532.5,23.13,37.7,45344.05,49805.89
1-9-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,530.7,23.15,37.2,44781.36,49157.09
1-10-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,527.6,23.19,35.2,42446.98,46549.77
1-11-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,525.1,23.4,38.2,46481.76,50938.5
1-12-2009,CEU2023890001,20238900,2389,Other specialty trade contractors,526.3,23.15,37.4,45022.12,49425.95
1-1-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,517.6,23.39,37.4,45488.87,49768.27
1-2-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,510.2,23.49,36.9,45072.61,49300.57
1-3-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,515.6,23.45,37.7,45971.38,50078
1-4-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,518,23.11,39,46867.08,50965.2
1-5-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,512.5,23.19,38.1,45944.03,49922.73
1-6-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,515.2,23.31,38.3,46424.2,50493.78
1-7-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,513.7,23.37,38.1,46300.64,50348.77
1-8-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,520.7,23.63,38.4,47184.38,51239.03
1-9-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,517.5,23.33,39.3,47677.19,51744.09
1-10-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,517.6,23.28,39.5,47817.12,51831.42
1-11-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,514,23.26,39,47171.28,51109.86
1-12-2010,CEU2023890001,20238900,2389,Other specialty trade contractors,512.4,23.23,39.1,47231.23,51087.02
1-1-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,512.5,23.46,38.4,46844.93,50428.98
1-2-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,517.9,23.51,38.8,47433.78,50812.31
1-3-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,517.9,23.21,38.7,46707.8,49551.45
1-4-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,521.1,23.31,39.1,47393.89,49957.6
1-5-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,528.7,23.27,39.8,48159.59,50527.04
1-6-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,530.8,23.14,39.7,47770.21,50172.25
1-7-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,531.1,23.16,39.8,47931.94,50297.54
1-8-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,536,23.27,39.1,47312.56,49511.06
1-9-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,539.2,23.39,39.5,48043.06,50199.28
1-10-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,542.1,23.48,39.1,47739.54,49985.24
1-11-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,540.5,23.13,39.4,47388.74,49659.83
1-12-2011,CEU2023890001,20238900,2389,Other specialty trade contractors,545,23.63,39.3,48290.27,50729.69
1-1-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,548.3,23.56,39.8,48759.78,50998.51
1-2-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,537.9,23.7,39.7,48926.28,50948.34
1-3-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,540.9,23.83,39.9,49442.48,51097.81
1-4-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,544.7,23.87,39.8,49401.35,50901.52
1-5-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,534.9,23.84,39.3,48719.43,50257.87
1-6-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,531.7,23.98,39.2,48880.83,50498.42
1-7-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,535.2,23.92,39.4,49007.3,50711.72
1-8-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,531.1,23.94,39.8,49546.22,50985.64
1-9-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,530.4,24.19,39.8,50063.63,51289.22
1-10-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,530.9,24.33,39.3,49720.79,50957.81
1-11-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,535,24.29,39.8,50270.59,51766.55
1-12-2012,CEU2023890001,20238900,2389,Other specialty trade contractors,540.1,24.3,40.2,50796.72,52449.59
1-1-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,546.5,24.47,40.2,51152.09,52660.8
1-2-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,549.2,24.42,40.3,51174.55,52255.94
1-3-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,549.9,24.55,40.2,51319.32,52267.12
1-4-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,543,24.62,40.1,51337.63,52340.18
1-5-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,544.4,24.65,40.1,51400.18,52310.82
1-6-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,545.1,24.92,39.5,51185.68,51967.81
1-7-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,544.1,24.8,39.3,50681.28,51435.44
1-8-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,545.2,24.82,39.3,50722.15,51415.07
1-9-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,549.3,24.75,39.2,50450.4,51080.2
1-10-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,549.3,24.73,39.3,50538.23,51301.23
1-11-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,547.7,24.69,40.3,51740.36,52629.02
1-12-2013,CEU2023890001,20238900,2389,Other specialty trade contractors,544.2,24.84,38.7,49988.02,50850.93
1-1-2014,CEU2023890001,20238900,2389,Other specialty trade contractors,547.5,24.86,38.7,50028.27,50703.25
1-2-2014,CEU2023890001,20238900,2389,Other specialty trade contractors,549.8,25.12,38.8,50682.11,51176.67
1-3-2014,CEU2023890001,20238900,2389,Other specialty trade contractors,551.9,24.84,40.1,51796.37,51967.13
1-3-2006,CEU2023891001,20238910,23891,Site preparation contractors,377.2,20.09,40.5,42309.54,50202.24
1-4-2006,CEU2023891001,20238910,23891,Site preparation contractors,384.5,20.45,41.5,44131.1,51921.83
1-5-2006,CEU2023891001,20238910,23891,Site preparation contractors,385.4,20.64,40.1,43038.53,50386.32
1-6-2006,CEU2023891001,20238910,23891,Site preparation contractors,388.9,21.1,40.4,44326.88,51792.32
1-7-2006,CEU2023891001,20238910,23891,Site preparation contractors,389.6,20.66,40.6,43617.39,50813.08
1-8-2006,CEU2023891001,20238910,23891,Site preparation contractors,385.6,20.72,40.5,43636.32,50735.41
1-9-2006,CEU2023891001,20238910,23891,Site preparation contractors,383.6,20.71,40.1,43184.49,50457.54
1-10-2006,CEU2023891001,20238910,23891,Site preparation contractors,384.4,21.05,40.4,44221.84,51951.24
1-11-2006,CEU2023891001,20238910,23891,Site preparation contractors,385.1,21.05,40.1,43893.46,51642.23
1-12-2006,CEU2023891001,20238910,23891,Site preparation contractors,387.5,21.01,41.1,44902.57,52750.95
1-1-2007,CEU2023891001,20238910,23891,Site preparation contractors,389.7,20.84,40.3,43672.3,51149.52
1-2-2007,CEU2023891001,20238910,23891,Site preparation contractors,377.8,21.02,40.4,44158.82,51444.08
1-3-2007,CEU2023891001,20238910,23891,Site preparation contractors,384,21.23,40.3,44489.59,51361.74
1-4-2007,CEU2023891001,20238910,23891,Site preparation contractors,380,21.16,39.9,43902.77,50357.15
1-5-2007,CEU2023891001,20238910,23891,Site preparation contractors,379.6,21.28,40.9,45258.3,51596.67
1-6-2007,CEU2023891001,20238910,23891,Site preparation contractors,379.4,21.21,40.2,44337.38,50449.01
1-7-2007,CEU2023891001,20238910,23891,Site preparation contractors,379.3,21.43,40,44574.4,50731.6
1-8-2007,CEU2023891001,20238910,23891,Site preparation contractors,374.5,21.47,40,44657.6,50919.68
1-9-2007,CEU2023891001,20238910,23891,Site preparation contractors,373.4,21.6,40.9,45938.88,52236.66
1-10-2007,CEU2023891001,20238910,23891,Site preparation contractors,372.8,21.55,40.1,44936.06,50987.29
1-11-2007,CEU2023891001,20238910,23891,Site preparation contractors,368.8,21.49,40.9,45704.93,51553.5
1-12-2007,CEU2023891001,20238910,23891,Site preparation contractors,363.6,22,39.9,45645.6,51521.14
1-1-2008,CEU2023891001,20238910,23891,Site preparation contractors,360.5,22.18,40.7,46941.75,52722.08
1-2-2008,CEU2023891001,20238910,23891,Site preparation contractors,360.3,22.28,40.2,46574.11,52157.7
1-3-2008,CEU2023891001,20238910,23891,Site preparation contractors,360,22.35,40.9,47533.98,52775.17
1-4-2008,CEU2023891001,20238910,23891,Site preparation contractors,355.4,22.69,40.4,47667.15,52603.99
1-5-2008,CEU2023891001,20238910,23891,Site preparation contractors,351.7,22.85,39.7,47171.54,51622.34
1-6-2008,CEU2023891001,20238910,23891,Site preparation contractors,348.1,22.96,39.9,47637.41,51612.07
1-7-2008,CEU2023891001,20238910,23891,Site preparation contractors,344.6,23.23,39.7,47956.01,51685.85
1-8-2008,CEU2023891001,20238910,23891,Site preparation contractors,346.2,23.53,40.2,49187.11,53225.16
1-9-2008,CEU2023891001,20238910,23891,Site preparation contractors,339.9,23.09,39.2,47066.66,51001.16
1-10-2008,CEU2023891001,20238910,23891,Site preparation contractors,348.1,23.82,39.9,49421.73,54099.59
1-11-2008,CEU2023891001,20238910,23891,Site preparation contractors,331.4,23.98,38.6,48132.66,53717.34
1-12-2008,CEU2023891001,20238910,23891,Site preparation contractors,317.8,24.37,38.8,49168.91,55447.29
1-1-2009,CEU2023891001,20238910,23891,Site preparation contractors,310,24.19,38.3,48176.8,54093.06
1-2-2009,CEU2023891001,20238910,23891,Site preparation contractors,301,23.59,39.6,48576.53,54271.98
1-3-2009,CEU2023891001,20238910,23891,Site preparation contractors,295,24.16,38,47740.16,53208.16
1-4-2009,CEU2023891001,20238910,23891,Site preparation contractors,286.4,24.17,38.2,48011.29,53377.1
1-5-2009,CEU2023891001,20238910,23891,Site preparation contractors,284.5,24.11,38.7,48518.96,53786.14
1-6-2009,CEU2023891001,20238910,23891,Site preparation contractors,281.3,23.92,38.7,48136.61,52907.8
1-7-2009,CEU2023891001,20238910,23891,Site preparation contractors,274.7,23.79,39.1,48369.83,53248.57
1-8-2009,CEU2023891001,20238910,23891,Site preparation contractors,273.6,23.48,39,47617.44,52302.98
1-9-2009,CEU2023891001,20238910,23891,Site preparation contractors,272.3,23.47,38.3,46742.85,51310.24
1-10-2009,CEU2023891001,20238910,23891,Site preparation contractors,269.8,23.44,37.6,45829.89,50259.66
1-11-2009,CEU2023891001,20238910,23891,Site preparation contractors,268.6,23.64,39.5,48556.56,53212.23
1-12-2009,CEU2023891001,20238910,23891,Site preparation contractors,272.5,23.3,38.6,46767.76,51342.34
1-1-2010,CEU2023891001,20238910,23891,Site preparation contractors,266.5,23.14,39.4,47409.23,51869.29
1-2-2010,CEU2023891001,20238910,23891,Site preparation contractors,259.5,23.3,38.6,46767.76,51154.73
1-3-2010,CEU2023891001,20238910,23891,Site preparation contractors,263.5,23.25,39.1,47271.9,51494.7
1-4-2010,CEU2023891001,20238910,23891,Site preparation contractors,266.3,23.1,40.5,48648.6,52902.5
1-5-2010,CEU2023891001,20238910,23891,Site preparation contractors,264.6,23.03,39,46704.84,50749.43
1-6-2010,CEU2023891001,20238910,23891,Site preparation contractors,265.2,23.16,39.1,47088.91,51216.77
1-7-2010,CEU2023891001,20238910,23891,Site preparation contractors,263.1,23.17,38.8,46747.79,50835.02
1-8-2010,CEU2023891001,20238910,23891,Site preparation contractors,270,23.72,38.9,47980.82,52103.91
1-9-2010,CEU2023891001,20238910,23891,Site preparation contractors,265,23.15,39.8,47911.24,51998.1
1-10-2010,CEU2023891001,20238910,23891,Site preparation contractors,266.5,22.9,39.8,47393.84,51372.6
1-11-2010,CEU2023891001,20238910,23891,Site preparation contractors,267.1,22.79,39.4,46692.15,50590.72
1-12-2010,CEU2023891001,20238910,23891,Site preparation contractors,265.7,22.69,39.8,46959.22,50792.8
1-1-2011,CEU2023891001,20238910,23891,Site preparation contractors,263.4,22.91,38.8,46223.21,49759.7
1-2-2011,CEU2023891001,20238910,23891,Site preparation contractors,266.3,23.08,39.3,47166.29,50525.77
1-3-2011,CEU2023891001,20238910,23891,Site preparation contractors,263.2,22.56,38.9,45634.37,48412.66
1-4-2011,CEU2023891001,20238910,23891,Site preparation contractors,261.4,22.47,39.3,45919.69,48403.66
1-5-2011,CEU2023891001,20238910,23891,Site preparation contractors,265.1,22.35,40.7,47301.54,49626.8
1-6-2011,CEU2023891001,20238910,23891,Site preparation contractors,266.7,22.4,40.1,46708.48,49057.13
1-7-2011,CEU2023891001,20238910,23891,Site preparation contractors,268.1,22.44,40.3,47025.27,49346.12
1-8-2011,CEU2023891001,20238910,23891,Site preparation contractors,270.9,22.51,39.9,46703.75,48873.95
1-9-2011,CEU2023891001,20238910,23891,Site preparation contractors,272.2,22.63,40,47070.4,49182.96
1-10-2011,CEU2023891001,20238910,23891,Site preparation contractors,271.2,22.84,39.8,47269.66,49493.26
1-11-2011,CEU2023891001,20238910,23891,Site preparation contractors,269.9,22.62,40.1,47167.22,49427.7
1-12-2011,CEU2023891001,20238910,23891,Site preparation contractors,272.5,23.16,39.8,47931.94,50353.26
1-1-2012,CEU2023891001,20238910,23891,Site preparation contractors,279,23.18,40.6,48937.62,51184.52
1-2-2012,CEU2023891001,20238910,23891,Site preparation contractors,273.2,23.42,40.6,49444.3,51487.77
1-3-2012,CEU2023891001,20238910,23891,Site preparation contractors,273.6,23.71,40.4,49809.97,51477.6
1-4-2012,CEU2023891001,20238910,23891,Site preparation contractors,275.1,23.84,40.4,50083.07,51603.95
1-5-2012,CEU2023891001,20238910,23891,Site preparation contractors,269.3,23.82,39.6,49050.14,50599.03
1-6-2012,CEU2023891001,20238910,23891,Site preparation contractors,267.3,23.99,39.9,49774.45,51421.61
1-7-2012,CEU2023891001,20238910,23891,Site preparation contractors,266.6,23.87,40,49649.6,51376.36
1-8-2012,CEU2023891001,20238910,23891,Site preparation contractors,264.4,23.86,40.1,49752.87,51198.3
1-9-2012,CEU2023891001,20238910,23891,Site preparation contractors,264,24.05,40.4,50524.24,51761.11
1-10-2012,CEU2023891001,20238910,23891,Site preparation contractors,265.4,24.49,39.4,50175.11,51423.44
1-11-2012,CEU2023891001,20238910,23891,Site preparation contractors,267.2,24.3,40.1,50670.36,52178.23
1-12-2012,CEU2023891001,20238910,23891,Site preparation contractors,270.5,23.96,40.9,50958.13,52616.26
1-1-2013,CEU2023891001,20238910,23891,Site preparation contractors,273.3,24.3,40.4,51049.44,52555.12
1-2-2013,CEU2023891001,20238910,23891,Site preparation contractors,275.2,24.19,40.8,51321.5,52406
1-3-2013,CEU2023891001,20238910,23891,Site preparation contractors,276.4,24.25,41.4,52205.4,53169.56
1-4-2013,CEU2023891001,20238910,23891,Site preparation contractors,272.5,24.39,40.5,51365.34,52368.43
1-5-2013,CEU2023891001,20238910,23891,Site preparation contractors,271.2,24.65,40.8,52297.44,53223.98
1-6-2013,CEU2023891001,20238910,23891,Site preparation contractors,272.1,25.16,40.1,52463.63,53265.29
1-7-2013,CEU2023891001,20238910,23891,Site preparation contractors,272.1,24.82,39.8,51367.47,52131.84
1-8-2013,CEU2023891001,20238910,23891,Site preparation contractors,271.3,24.95,39.6,51377.04,52078.9
1-9-2013,CEU2023891001,20238910,23891,Site preparation contractors,273.4,24.92,39.8,51574.43,52218.26
1-10-2013,CEU2023891001,20238910,23891,Site preparation contractors,271.5,24.68,39.4,50564.38,51327.79
1-11-2013,CEU2023891001,20238910,23891,Site preparation contractors,269.7,24.6,40.8,52191.36,53087.76
1-12-2013,CEU2023891001,20238910,23891,Site preparation contractors,267.6,24.6,39.1,50016.72,50880.13
1-1-2014,CEU2023891001,20238910,23891,Site preparation contractors,267.6,24.67,39.4,50543.89,51225.83
1-2-2014,CEU2023891001,20238910,23891,Site preparation contractors,267.7,24.74,39.3,50558.66,51052.02
1-3-2014,CEU2023891001,20238910,23891,Site preparation contractors,271.5,24.69,41,52639.08,52812.61
1-3-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,340.5,20.82,37.7,40815.53,48429.52
1-4-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,346.7,20.66,38.1,40931.59,48157.49
1-5-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,339.3,20.76,37.2,40158.14,47014.18
1-6-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,344.1,20.54,37,39518.96,46174.66
1-7-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,341.7,20.68,36.5,39250.64,45725.94
1-8-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,341.2,20.55,37,39538.2,45970.57
1-9-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,340.9,20.47,36.5,38852.06,45395.44
1-10-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,337.4,20.47,37.6,40022.95,47018.43
1-11-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,341.7,20.52,37.3,39800.59,46826.83
1-12-2006,CEU2023899001,20238990,23899,All other specialty trade contractors,344.4,20.55,37.4,39965.64,46951.11
1-1-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,343.6,20.62,37.4,40101.78,46967.67
1-2-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,335.3,20.79,36.8,39783.74,46347.21
1-3-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,335.6,20.55,38,40606.8,46879.19
1-4-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,334.9,20.68,36.9,39680.79,45514.47
1-5-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,334.7,20.46,37.5,39897,45484.52
1-6-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,328,20.77,37.4,40393.5,45961.48
1-7-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,329.7,20.76,37.6,40589.95,46196.77
1-8-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,334.1,20.79,36.9,39891.85,45485.66
1-9-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,330.4,21.04,37.9,41465.63,47150.18
1-10-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,329.4,20.95,37.3,40634.62,46106.61
1-11-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,330.8,21.03,37.5,41008.5,46256.09
1-12-2007,CEU2023899001,20238990,23899,All other specialty trade contractors,325.2,21.49,37.6,42017.25,47425.74
1-1-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,328.7,20.87,37.1,40262.4,45220.24
1-2-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,332.5,20.83,37.5,40618.5,45488.09
1-3-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,323,21.02,36.6,40005.27,44416.32
1-4-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,317.5,21.23,36.5,40294.54,44467.8
1-5-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,314.7,21.75,36.1,40829.1,44681.47
1-6-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,311.4,22.02,36.3,41564.95,45032.96
1-7-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,310.7,22.16,36.3,41829.21,45082.54
1-8-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,304.7,22.4,35.9,41816.32,45249.26
1-9-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,300.7,22.3,35.6,41281.76,44732.68
1-10-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,297.1,22.48,37,43251.52,47345.35
1-11-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,291.5,22.45,35.3,41209.22,45990.6
1-12-2008,CEU2023899001,20238990,23899,All other specialty trade contractors,286.7,22.48,35.1,41030.5,46269.68
1-1-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,283.7,22.01,36.7,42003.88,47162.09
1-2-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,280,22.23,36.7,42423.73,47397.79
1-3-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,275.4,22.61,35.7,41973.2,46780.68
1-4-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,269.9,22.68,35.3,41631.41,46284.19
1-5-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,267.4,22.68,35.6,41985.21,46543.09
1-6-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,266.1,22.5,36,42120,46294.84
1-7-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,262.9,22.59,36.2,42523.41,46812.46
1-8-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,260.4,22.72,36.3,42886.27,47106.27
1-9-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,258.4,22.83,35.6,42262.89,46392.54
1-10-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,251.6,22.92,35.2,41952.77,46007.8
1-11-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,257.7,23.15,36.7,44179.46,48415.45
1-12-2009,CEU2023899001,20238990,23899,All other specialty trade contractors,255.4,23.04,35.8,42891.27,47086.67
1-1-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,252.8,23.55,35.3,43228.38,47295.13
1-2-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,253.1,23.71,35.2,43398.79,47469.73
1-3-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,252.1,23.66,36.2,44537.59,48516.13
1-4-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,251.3,23.09,37.3,44785.36,48701.45
1-5-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,247.3,23.36,37,44944.64,48836.8
1-6-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,250.1,23.49,37.2,45439.05,49422.29
1-7-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,251.3,23.57,37.2,45593.81,49580.14
1-8-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,251.8,23.56,37.7,46187.02,50155.97
1-9-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,252.4,23.59,38.2,46859.18,50856.3
1-10-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,250.4,23.76,39.1,48308.83,52364.41
1-11-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,247.4,23.87,38.5,47787.74,51777.78
1-12-2010,CEU2023899001,20238990,23899,All other specialty trade contractors,243.1,23.86,38.3,47519.57,51398.9
1-1-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,248,24.01,37.8,47194.05,50804.81
1-2-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,253.6,23.97,38.3,47738.65,51138.9
1-3-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,255.1,23.87,38.6,47911.86,50828.81
1-4-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,259,24.08,38.7,48458.59,51079.9
1-5-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,263.3,24.17,38.9,48891.07,51294.47
1-6-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,264.7,23.95,39.1,48695.14,51143.68
1-7-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,263.5,23.96,39.3,48964.66,51381.23
1-8-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,265.9,24.11,38.1,47766.73,49986.33
1-9-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,267,24.2,38.9,48951.76,51148.77
1-10-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,270,24.21,38.4,48342.53,50616.59
1-11-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,270.6,23.76,38.6,47691.07,49976.65
1-12-2011,CEU2023899001,20238990,23899,All other specialty trade contractors,269,24.05,38.6,48273.16,50711.71
1-1-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,268.9,23.93,39,48530.04,50758.23
1-2-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,266,23.95,38.6,48072.44,50059.21
1-3-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,268.1,23.92,39.4,49007.3,50648.05
1-4-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,268.4,23.86,39.1,48512.15,49985.32
1-5-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,265.7,23.89,39,48448.92,49978.82
1-6-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,265.1,24.05,38.5,48148.1,49741.44
1-7-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,268.9,24.04,38.6,48253.09,49931.28
1-8-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,266.9,24.09,39.5,49480.86,50918.38
1-9-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,266.3,24.29,39.3,49639.04,50854.24
1-10-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,264.5,24.25,39.1,49305.1,50531.78
1-11-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,266,24.38,39.3,49822.97,51305.62
1-12-2012,CEU2023899001,20238990,23899,All other specialty trade contractors,271.9,24.55,39.2,50042.72,51671.06
1-1-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,273.3,24.61,40.1,51316.77,52830.34
1-2-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,275.2,24.64,39.6,50738.69,51810.87
1-3-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,274.6,24.82,39.1,50464.02,51396.02
1-4-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,269.2,24.83,39.4,50871.7,51865.16
1-5-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,273.4,24.7,39.4,50605.36,51501.92
1-6-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,273.5,24.78,38.8,49996.13,50760.08
1-7-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,272.4,24.8,38.7,49907.52,50650.16
1-8-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,273.8,24.76,38.9,50084.53,50768.73
1-9-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,275.7,24.56,38.7,49424.54,50041.53
1-10-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,276.6,24.86,39.2,50674.63,51439.69
1-11-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,278.2,24.81,39.5,50959.74,51834.98
1-12-2013,CEU2023899001,20238990,23899,All other specialty trade contractors,278.6,25.02,38.2,49699.73,50557.67
1-1-2014,CEU2023899001,20238990,23899,All other specialty trade contractors,282.4,24.99,38.4,49900.03,50573.28
1-2-2014,CEU2023899001,20238990,23899,All other specialty trade contractors,284.2,25.45,38.6,51083.24,51581.71
1-3-2014,CEU2023899001,20238990,23899,All other specialty trade contractors,281.5,24.91,38.9,50387.95,50554.07
1-3-2006,CEU3000000001,30000000,-,Manufacturing,14214,20.69,39.8,42820.02,50807.95
1-4-2006,CEU3000000001,30000000,-,Manufacturing,14226,20.83,39.8,43109.77,50720.2
1-5-2006,CEU3000000001,30000000,-,Manufacturing,14202,20.73,40,43118.4,50479.83
1-6-2006,CEU3000000001,30000000,-,Manufacturing,14212,20.83,40.1,43434.71,50749.9
1-7-2006,CEU3000000001,30000000,-,Manufacturing,14188,20.95,40.1,43684.94,50891.78
1-8-2006,CEU3000000001,30000000,-,Manufacturing,14158,20.94,39.9,43446.31,50514.48
1-9-2006,CEU3000000001,30000000,-,Manufacturing,14125,21.04,40,43763.2,51133.71
1-10-2006,CEU3000000001,30000000,-,Manufacturing,14074,21.18,40,44054.4,51754.53
1-11-2006,CEU3000000001,30000000,-,Manufacturing,14041,21.1,39.9,43778.28,51506.72
1-12-2006,CEU3000000001,30000000,-,Manufacturing,14014,21.27,39.9,44131,51844.52
1-1-2007,CEU3000000001,30000000,-,Manufacturing,14008,21.19,40,44075.2,51621.39
1-2-2007,CEU3000000001,30000000,-,Manufacturing,13997,21.28,39.9,44151.74,51435.84
1-3-2007,CEU3000000001,30000000,-,Manufacturing,13970,21.28,40,44262.4,51099.46
1-4-2007,CEU3000000001,30000000,-,Manufacturing,13945,21.42,40,44553.6,51103.66
1-5-2007,CEU3000000001,30000000,-,Manufacturing,13928,21.43,40,44574.4,50816.99
1-6-2007,CEU3000000001,30000000,-,Manufacturing,13910,21.56,40.1,44956.91,51153.93
1-7-2007,CEU3000000001,30000000,-,Manufacturing,13889,21.58,40.1,44998.62,51214.42
1-8-2007,CEU3000000001,30000000,-,Manufacturing,13829,21.61,40,44948.8,51251.71
1-9-2007,CEU3000000001,30000000,-,Manufacturing,13790,21.66,40.1,45165.43,51357.19
1-10-2007,CEU3000000001,30000000,-,Manufacturing,13763,21.57,39.9,44753.44,50780.08
1-11-2007,CEU3000000001,30000000,-,Manufacturing,13757,21.66,40.1,45165.43,50944.96
1-12-2007,CEU3000000001,30000000,-,Manufacturing,13746,21.76,40.1,45373.95,51214.52
1-1-2008,CEU3000000001,30000000,-,Manufacturing,13725,21.7,40,45136,50693.96
1-2-2008,CEU3000000001,30000000,-,Manufacturing,13697,21.82,40.1,45499.06,50953.76
1-3-2008,CEU3000000001,30000000,-,Manufacturing,13659,21.97,40.2,45926.09,50989.99
1-4-2008,CEU3000000001,30000000,-,Manufacturing,13598,21.86,39.9,45355.13,50052.52
1-5-2008,CEU3000000001,30000000,-,Manufacturing,13564,22.01,40,45780.8,50100.38
1-6-2008,CEU3000000001,30000000,-,Manufacturing,13504,22.18,40.1,46249.73,50108.62
1-7-2008,CEU3000000001,30000000,-,Manufacturing,13430,22.12,39.8,45779.55,49340.12
1-8-2008,CEU3000000001,30000000,-,Manufacturing,13358,22.23,39.9,46122.8,49909.29
1-9-2008,CEU3000000001,30000000,-,Manufacturing,13275,22.27,39.6,45858.38,49691.88
1-10-2008,CEU3000000001,30000000,-,Manufacturing,13149,22.46,39.6,46249.63,50627.24
1-11-2008,CEU3000000001,30000000,-,Manufacturing,13036,22.61,39.4,46323.37,51698.12
1-12-2008,CEU3000000001,30000000,-,Manufacturing,12851,22.61,39,45853.08,51708.05
1-1-2009,CEU3000000001,30000000,-,Manufacturing,12560,22.79,38.8,45981.11,51627.72
1-2-2009,CEU3000000001,30000000,-,Manufacturing,12381,22.91,39,46461.48,51908.95
1-3-2009,CEU3000000001,30000000,-,Manufacturing,12207,23.01,38.6,46185.67,51475.63
1-4-2009,CEU3000000001,30000000,-,Manufacturing,12029,23.04,38.7,46365.7,51547.59
1-5-2009,CEU3000000001,30000000,-,Manufacturing,11862,23.02,38.5,46086.04,51089.09
1-6-2009,CEU3000000001,30000000,-,Manufacturing,11726,23.02,38.7,46325.45,50917.13
1-7-2009,CEU3000000001,30000000,-,Manufacturing,11666,23.09,38.9,46706.45,51417.42
1-8-2009,CEU3000000001,30000000,-,Manufacturing,11625,23.13,39.2,47148.19,51787.55
1-9-2009,CEU3000000001,30000000,-,Manufacturing,11590,23.14,39.1,47048.25,51645.48
1-10-2009,CEU3000000001,30000000,-,Manufacturing,11540,23.13,39.2,47148.19,51705.39
1-11-2009,CEU3000000001,30000000,-,Manufacturing,11511,23.2,39.6,47773.44,52354.02
1-12-2009,CEU3000000001,30000000,-,Manufacturing,11477,23.11,39.7,47708.29,52374.86
1-1-2010,CEU3000000001,30000000,-,Manufacturing,11462,23.17,39.9,48073.12,52595.63
1-2-2010,CEU3000000001,30000000,-,Manufacturing,11453,23.22,39.7,47935.37,52431.86
1-3-2010,CEU3000000001,30000000,-,Manufacturing,11458,23.18,40,48214.4,52521.39
1-4-2010,CEU3000000001,30000000,-,Manufacturing,11493,23.22,40.1,48418.34,52652.11
1-5-2010,CEU3000000001,30000000,-,Manufacturing,11527,23.32,40.4,48990.66,53233.2
1-6-2010,CEU3000000001,30000000,-,Manufacturing,11543,23.23,40.1,48439.2,52685.42
1-7-2010,CEU3000000001,30000000,-,Manufacturing,11571,23.36,40.2,48831.74,53101.16
1-8-2010,CEU3000000001,30000000,-,Manufacturing,11550,23.44,40.3,49120.86,53341.92
1-9-2010,CEU3000000001,30000000,-,Manufacturing,11557,23.44,40.5,49364.64,53575.48
1-10-2010,CEU3000000001,30000000,-,Manufacturing,11557,23.47,40.4,49305.78,53445.05
1-11-2010,CEU3000000001,30000000,-,Manufacturing,11581,23.41,40.4,49179.73,53286
1-12-2010,CEU3000000001,30000000,-,Manufacturing,11592,23.5,40.5,49491,53531.27
1-1-2011,CEU3000000001,30000000,-,Manufacturing,11620,23.63,40.3,49519.03,53307.67
1-2-2011,CEU3000000001,30000000,-,Manufacturing,11653,23.5,40.5,49491,53016.06
1-3-2011,CEU3000000001,30000000,-,Manufacturing,11675,23.55,40.5,49596.3,52615.8
1-4-2011,CEU3000000001,30000000,-,Manufacturing,11704,23.61,40.4,49599.89,52282.93
1-5-2011,CEU3000000001,30000000,-,Manufacturing,11711,23.71,40.5,49933.26,52387.89
1-6-2011,CEU3000000001,30000000,-,Manufacturing,11723,23.69,40.4,49767.95,52270.44
1-7-2011,CEU3000000001,30000000,-,Manufacturing,11755,23.76,40.4,49915.01,52378.48
1-8-2011,CEU3000000001,30000000,-,Manufacturing,11763,23.7,40.4,49788.96,52102.53
1-9-2011,CEU3000000001,30000000,-,Manufacturing,11766,23.75,40.4,49894,52133.29
1-10-2011,CEU3000000001,30000000,-,Manufacturing,11773,23.89,40.7,50560.8,52939.21
1-11-2011,CEU3000000001,30000000,-,Manufacturing,11771,23.74,40.4,49872.99,52263.14
1-12-2011,CEU3000000001,30000000,-,Manufacturing,11798,23.85,40.6,50352.12,52895.7
1-1-2012,CEU3000000001,30000000,-,Manufacturing,11837,23.87,40.9,50766.71,53097.6
1-2-2012,CEU3000000001,30000000,-,Manufacturing,11859,23.84,40.8,50578.95,52669.3
1-3-2012,CEU3000000001,30000000,-,Manufacturing,11901,23.88,40.7,50539.63,52231.69
1-4-2012,CEU3000000001,30000000,-,Manufacturing,11916,23.92,40.8,50748.67,52289.76
1-5-2012,CEU3000000001,30000000,-,Manufacturing,11928,23.83,40.6,50309.89,51898.56
1-6-2012,CEU3000000001,30000000,-,Manufacturing,11939,23.92,40.7,50624.29,52299.57
1-7-2012,CEU3000000001,30000000,-,Manufacturing,11979,23.95,40.8,50812.32,52579.52
1-8-2012,CEU3000000001,30000000,-,Manufacturing,11956,23.9,40.5,50333.4,51795.69
1-9-2012,CEU3000000001,30000000,-,Manufacturing,11942,23.95,40.6,50563.24,51801.06
1-10-2012,CEU3000000001,30000000,-,Manufacturing,11947,23.92,40.5,50375.52,51628.83
1-11-2012,CEU3000000001,30000000,-,Manufacturing,11951,23.99,40.7,50772.44,52283.34
1-12-2012,CEU3000000001,30000000,-,Manufacturing,11965,24.05,40.8,51024.48,52684.77
1-1-2013,CEU3000000001,30000000,-,Manufacturing,11982,24.03,40.6,50732.14,52228.46
1-2-2013,CEU3000000001,30000000,-,Manufacturing,12004,24.13,40.9,51319.68,52404.14
1-3-2013,CEU3000000001,30000000,-,Manufacturing,12007,24.15,40.8,51236.64,52182.91
1-4-2013,CEU3000000001,30000000,-,Manufacturing,12001,24.18,40.7,51174.55,52173.92
1-5-2013,CEU3000000001,30000000,-,Manufacturing,11994,24.26,40.8,51470.02,52381.89
1-6-2013,CEU3000000001,30000000,-,Manufacturing,11991,24.39,40.9,51872.65,52665.28
1-7-2013,CEU3000000001,30000000,-,Manufacturing,11982,24.36,40.7,51555.5,52322.67
1-8-2013,CEU3000000001,30000000,-,Manufacturing,11990,24.42,40.9,51936.46,52645.96
1-9-2013,CEU3000000001,30000000,-,Manufacturing,11993,24.49,40.9,52085.33,52735.54
1-10-2013,CEU3000000001,30000000,-,Manufacturing,12011,24.5,40.9,52106.6,52893.29
1-11-2013,CEU3000000001,30000000,-,Manufacturing,12046,24.58,41,52404.56,53304.62
1-12-2013,CEU3000000001,30000000,-,Manufacturing,12053,24.6,40.9,52319.28,53222.44
1-1-2014,CEU3000000001,30000000,-,Manufacturing,12061,24.65,40.7,52169.26,52873.13
1-2-2014,CEU3000000001,30000000,-,Manufacturing,12081,24.71,40.8,52424.73,52936.29
1-3-2014,CEU3000000001,30000000,-,Manufacturing,12088,24.75,41,52767,52940.96
1-4-2014,CEU3000000001,30000000,-,Manufacturing,12100,24.7,40.8,52403.52,52403.52
1-3-2006,CEU3100000001,31000000,-,Durable goods,9000,21.62,40.3,45306.87,53758.71
1-4-2006,CEU3100000001,31000000,-,Durable goods,9020,21.74,40.3,45558.34,53601.03
1-5-2006,CEU3100000001,31000000,-,Durable goods,9016,21.63,40.4,45440.3,53198.14
1-6-2006,CEU3100000001,31000000,-,Durable goods,9027,21.77,40.4,45734.41,53436.91
1-7-2006,CEU3100000001,31000000,-,Durable goods,9008,21.91,40.5,46142.46,53754.72
1-8-2006,CEU3100000001,31000000,-,Durable goods,8991,21.91,40.3,45914.6,53384.33
1-9-2006,CEU3100000001,31000000,-,Durable goods,8972,22.04,40.4,46301.63,54099.66
1-10-2006,CEU3100000001,31000000,-,Durable goods,8944,22.13,40.4,46490.7,54616.67
1-11-2006,CEU3100000001,31000000,-,Durable goods,8918,22.14,40.3,46396.59,54587.25
1-12-2006,CEU3100000001,31000000,-,Durable goods,8912,22.23,40.3,46585.19,54727.67
1-1-2007,CEU3100000001,31000000,-,Durable goods,8890,22.2,40.3,46522.32,54487.49
1-2-2007,CEU3100000001,31000000,-,Durable goods,8889,22.28,40.1,46458.26,54122.88
1-3-2007,CEU3100000001,31000000,-,Durable goods,8871,22.27,40.3,46669.01,53877.81
1-4-2007,CEU3100000001,31000000,-,Durable goods,8860,22.41,40.4,47078.93,54000.25
1-5-2007,CEU3100000001,31000000,-,Durable goods,8845,22.44,40.3,47025.27,53611.09
1-6-2007,CEU3100000001,31000000,-,Durable goods,8829,22.57,40.4,47415.05,53950.92
1-7-2007,CEU3100000001,31000000,-,Durable goods,8815,22.59,40.4,47457.07,54012.46
1-8-2007,CEU3100000001,31000000,-,Durable goods,8779,22.64,40.3,47444.38,54097.23
1-9-2007,CEU3100000001,31000000,-,Durable goods,8752,22.7,40.3,47570.12,54091.54
1-10-2007,CEU3100000001,31000000,-,Durable goods,8726,22.59,40.2,47222.14,53581.22
1-11-2007,CEU3100000001,31000000,-,Durable goods,8724,22.69,40.3,47549.16,53633.72
1-12-2007,CEU3100000001,31000000,-,Durable goods,8707,22.82,40.3,47821.59,53977.23
1-1-2008,CEU3100000001,31000000,-,Durable goods,8693,22.73,40.3,47632.99,53498.43
1-2-2008,CEU3100000001,31000000,-,Durable goods,8674,22.89,40.4,48087.31,53852.3
1-3-2008,CEU3100000001,31000000,-,Durable goods,8646,23.02,40.5,48480.12,53825.63
1-4-2008,CEU3100000001,31000000,-,Durable goods,8596,22.96,40.3,48114.98,53098.2
1-5-2008,CEU3100000001,31000000,-,Durable goods,8579,23.12,40.3,48450.27,53021.73
1-6-2008,CEU3100000001,31000000,-,Durable goods,8542,23.31,40.3,48848.44,52924.14
1-7-2008,CEU3100000001,31000000,-,Durable goods,8488,23.26,40.1,48501.75,52274.04
1-8-2008,CEU3100000001,31000000,-,Durable goods,8430,23.35,40.2,48810.84,52818
1-9-2008,CEU3100000001,31000000,-,Durable goods,8372,23.41,39.8,48449.34,52499.42
1-10-2008,CEU3100000001,31000000,-,Durable goods,8277,23.64,39.9,49048.27,53690.78
1-11-2008,CEU3100000001,31000000,-,Durable goods,8195,23.83,39.6,49070.73,54764.26
1-12-2008,CEU3100000001,31000000,-,Durable goods,8066,23.87,39.3,48780.73,55009.54
1-1-2009,CEU3100000001,31000000,-,Durable goods,7831,24.08,39,48834.24,54831.23
1-2-2009,CEU3100000001,31000000,-,Durable goods,7700,24.28,39.2,49492.35,55295.18
1-3-2009,CEU3100000001,31000000,-,Durable goods,7576,24.42,38.7,49142.81,54771.46
1-4-2009,CEU3100000001,31000000,-,Durable goods,7427,24.51,38.8,49451.38,54978.13
1-5-2009,CEU3100000001,31000000,-,Durable goods,7289,24.51,38.6,49196.47,54537.19
1-6-2009,CEU3100000001,31000000,-,Durable goods,7182,24.53,38.8,49491.73,54397.23
1-7-2009,CEU3100000001,31000000,-,Durable goods,7144,24.64,39,49969.92,55010.05
1-8-2009,CEU3100000001,31000000,-,Durable goods,7112,24.67,39.3,50415.61,55376.49
1-9-2009,CEU3100000001,31000000,-,Durable goods,7083,24.67,39.3,50415.61,55341.88
1-10-2009,CEU3100000001,31000000,-,Durable goods,7046,24.69,39.4,50584.87,55474.25
1-11-2009,CEU3100000001,31000000,-,Durable goods,7022,24.74,39.9,51330.55,56252.19
1-12-2009,CEU3100000001,31000000,-,Durable goods,7001,24.69,39.8,51098.43,56096.61
1-1-2010,CEU3100000001,31000000,-,Durable goods,6992,24.72,40,51417.6,56254.75
1-2-2010,CEU3100000001,31000000,-,Durable goods,6983,24.76,39.9,51372.05,56190.91
1-3-2010,CEU3100000001,31000000,-,Durable goods,7000,24.67,40.2,51570.17,56176.93
1-4-2010,CEU3100000001,31000000,-,Durable goods,7028,24.71,40.4,51910.77,56449.91
1-5-2010,CEU3100000001,31000000,-,Durable goods,7054,24.81,40.7,52507.88,57055.01
1-6-2010,CEU3100000001,31000000,-,Durable goods,7070,24.7,40.4,51889.76,56438.46
1-7-2010,CEU3100000001,31000000,-,Durable goods,7100,24.81,40.5,52249.86,56818.13
1-8-2010,CEU3100000001,31000000,-,Durable goods,7087,24.9,40.6,52568.88,57086.23
1-9-2010,CEU3100000001,31000000,-,Durable goods,7099,24.91,40.7,52719.52,57216.54
1-10-2010,CEU3100000001,31000000,-,Durable goods,7106,24.93,40.7,52761.85,57191.26
1-11-2010,CEU3100000001,31000000,-,Durable goods,7120,24.89,40.7,52677.2,57075.48
1-12-2010,CEU3100000001,31000000,-,Durable goods,7132,25.01,40.8,53061.21,57392.94
1-1-2011,CEU3100000001,31000000,-,Durable goods,7166,25.15,40.6,53096.68,57159.04
1-2-2011,CEU3100000001,31000000,-,Durable goods,7191,25,40.8,53040,56817.84
1-3-2011,CEU3100000001,31000000,-,Durable goods,7213,25.06,40.9,53297.61,56542.45
1-4-2011,CEU3100000001,31000000,-,Durable goods,7237,25.12,40.7,53163.97,56039.8
1-5-2011,CEU3100000001,31000000,-,Durable goods,7255,25.22,40.8,53506.75,56137.05
1-6-2011,CEU3100000001,31000000,-,Durable goods,7273,25.22,40.7,53375.61,56059.5
1-7-2011,CEU3100000001,31000000,-,Durable goods,7300,25.28,40.8,53634.05,56281.07
1-8-2011,CEU3100000001,31000000,-,Durable goods,7302,25.22,40.7,53375.61,55855.84
1-9-2011,CEU3100000001,31000000,-,Durable goods,7311,25.27,40.8,53612.83,56019.03
1-10-2011,CEU3100000001,31000000,-,Durable goods,7328,25.4,41,54152.8,56700.19
1-11-2011,CEU3100000001,31000000,-,Durable goods,7332,25.22,40.8,53506.75,56071.05
1-12-2011,CEU3100000001,31000000,-,Durable goods,7363,25.3,41,53939.6,56664.4
1-1-2012,CEU3100000001,31000000,-,Durable goods,7395,25.32,41.2,54245.57,56736.18
1-2-2012,CEU3100000001,31000000,-,Durable goods,7419,25.25,41.2,54095.6,56331.3
1-3-2012,CEU3100000001,31000000,-,Durable goods,7447,25.25,41.1,53964.3,55771.02
1-4-2012,CEU3100000001,31000000,-,Durable goods,7460,25.29,41.2,54181.3,55826.62
1-5-2012,CEU3100000001,31000000,-,Durable goods,7470,25.18,40.9,53552.82,55243.89
1-6-2012,CEU3100000001,31000000,-,Durable goods,7480,25.27,41,53875.64,55658.52
1-7-2012,CEU3100000001,31000000,-,Durable goods,7518,25.32,41.1,54113.9,55995.93
1-8-2012,CEU3100000001,31000000,-,Durable goods,7492,25.3,40.7,53544.92,55100.52
1-9-2012,CEU3100000001,31000000,-,Durable goods,7477,25.35,40.9,53914.38,55234.24
1-10-2012,CEU3100000001,31000000,-,Durable goods,7481,25.29,40.8,53655.27,54990.17
1-11-2012,CEU3100000001,31000000,-,Durable goods,7493,25.36,40.9,53935.65,55540.68
1-12-2012,CEU3100000001,31000000,-,Durable goods,7505,25.43,41,54216.76,55980.92
1-1-2013,CEU3100000001,31000000,-,Durable goods,7514,25.44,40.9,54105.79,55701.62
1-2-2013,CEU3100000001,31000000,-,Durable goods,7527,25.51,41.2,54652.63,55807.51
1-3-2013,CEU3100000001,31000000,-,Durable goods,7533,25.53,41.1,54562.71,55570.41
1-4-2013,CEU3100000001,31000000,-,Durable goods,7533,25.56,41.1,54626.83,55693.62
1-5-2013,CEU3100000001,31000000,-,Durable goods,7531,25.67,41.2,54995.41,55969.74
1-6-2013,CEU3100000001,31000000,-,Durable goods,7532,25.8,41.2,55273.92,56118.52
1-7-2013,CEU3100000001,31000000,-,Durable goods,7526,25.77,41,54941.64,55759.2
1-8-2013,CEU3100000001,31000000,-,Durable goods,7540,25.8,41.2,55273.92,56029.02
1-9-2013,CEU3100000001,31000000,-,Durable goods,7549,25.86,41.3,55536.94,56230.23
1-10-2013,CEU3100000001,31000000,-,Durable goods,7562,25.87,41.3,55558.41,56397.21
1-11-2013,CEU3100000001,31000000,-,Durable goods,7581,25.98,41.5,56064.84,57027.77
1-12-2013,CEU3100000001,31000000,-,Durable goods,7581,26.01,41.4,55994.33,56960.93
1-1-2014,CEU3100000001,31000000,-,Durable goods,7582,26.05,41.2,55809.52,56562.5
1-2-2014,CEU3100000001,31000000,-,Durable goods,7599,26.1,41.3,56052.36,56599.32
1-3-2014,CEU3100000001,31000000,-,Durable goods,7613,26.13,41.4,56252.66,56438.11
1-4-2014,CEU3100000001,31000000,-,Durable goods,7624,26.04,41.3,55923.5,55923.5
1-3-2006,CEU3132100001,31321000,321,Wood products,573.6,15.41,38.9,31171.35,36986.25
1-4-2006,CEU3132100001,31321000,321,Wood products,570.4,15.59,38.8,31454.38,37007.21
1-5-2006,CEU3132100001,31321000,321,Wood products,569.9,15.49,38.8,31252.62,36588.26
1-6-2006,CEU3132100001,31321000,321,Wood products,565.7,15.51,38.2,30809.06,35997.86
1-7-2006,CEU3132100001,31321000,321,Wood products,564.2,15.64,38.3,31148.62,36287.3
1-8-2006,CEU3132100001,31321000,321,Wood products,559.3,15.66,38.4,31269.89,36357.11
1-9-2006,CEU3132100001,31321000,321,Wood products,554.5,15.89,38.3,31646.52,36976.37
1-10-2006,CEU3132100001,31321000,321,Wood products,545,15.92,38.2,31623.49,37150.86
1-11-2006,CEU3132100001,31321000,321,Wood products,540.9,15.88,38.4,31709.18,37307
1-12-2006,CEU3132100001,31321000,321,Wood products,537.8,15.89,38.7,31977.04,37566.2
1-1-2007,CEU3132100001,31321000,321,Wood products,534.9,16.02,38.8,32321.95,37855.85
1-2-2007,CEU3132100001,31321000,321,Wood products,530.2,16.09,38.9,32546.85,37916.39
1-3-2007,CEU3132100001,31321000,321,Wood products,527.9,16.16,38.8,32604.42,37640.71
1-4-2007,CEU3132100001,31321000,321,Wood products,523.8,16.14,38.9,32647.99,37447.75
1-5-2007,CEU3132100001,31321000,321,Wood products,522.9,16.25,38.8,32786,37377.64
1-6-2007,CEU3132100001,31321000,321,Wood products,520.7,16.41,39,33279.48,37866.84
1-7-2007,CEU3132100001,31321000,321,Wood products,521.7,16.46,38.8,33209.7,37797.05
1-8-2007,CEU3132100001,31321000,321,Wood products,514.4,16.45,38.5,32932.9,37550.89
1-9-2007,CEU3132100001,31321000,321,Wood products,506.6,16.55,38.6,33219.16,37773.2
1-10-2007,CEU3132100001,31321000,321,Wood products,503.5,16.46,38.8,33209.7,37681.82
1-11-2007,CEU3132100001,31321000,321,Wood products,499.4,16.5,38.6,33118.8,37356.8
1-12-2007,CEU3132100001,31321000,321,Wood products,497.9,16.57,39.1,33690.13,38026.74
1-1-2008,CEU3132100001,31321000,321,Wood products,492.8,16.48,38.5,32992.96,37055.66
1-2-2008,CEU3132100001,31321000,321,Wood products,487.4,16.75,38.4,33446.4,37456.15
1-3-2008,CEU3132100001,31321000,321,Wood products,481.3,16.83,38.6,33781.18,37505.95
1-4-2008,CEU3132100001,31321000,321,Wood products,476.9,16.88,38,33354.88,36809.41
1-5-2008,CEU3132100001,31321000,321,Wood products,469.1,16.96,38.4,33865.73,37061.08
1-6-2008,CEU3132100001,31321000,321,Wood products,462.7,16.96,38.5,33953.92,36786.89
1-7-2008,CEU3132100001,31321000,321,Wood products,457.3,16.91,38.5,33853.82,36486.84
1-8-2008,CEU3132100001,31321000,321,Wood products,451.3,17.08,38.6,34282.98,37097.46
1-9-2008,CEU3132100001,31321000,321,Wood products,445,17.1,38.3,34056.36,36903.27
1-10-2008,CEU3132100001,31321000,321,Wood products,435.2,17.31,38.1,34294.57,37540.61
1-11-2008,CEU3132100001,31321000,321,Wood products,423.8,17.39,37.9,34272.21,38248.71
1-12-2008,CEU3132100001,31321000,321,Wood products,410.7,17.49,37,33650.76,37947.63
1-1-2009,CEU3132100001,31321000,321,Wood products,395.3,17.6,36.9,33770.88,37918.04
1-2-2009,CEU3132100001,31321000,321,Wood products,372.7,17.62,37.6,34450.63,38489.86
1-3-2009,CEU3132100001,31321000,321,Wood products,375,17.52,36.6,33344.06,37163.18
1-4-2009,CEU3132100001,31321000,321,Wood products,367.9,17.7,36.6,33686.64,37451.51
1-5-2009,CEU3132100001,31321000,321,Wood products,360.2,17.71,36.6,33705.67,37364.73
1-6-2009,CEU3132100001,31321000,321,Wood products,355.2,17.62,37.4,34267.38,37663.88
1-7-2009,CEU3132100001,31321000,321,Wood products,352.4,17.79,37.7,34875.52,38393.17
1-8-2009,CEU3132100001,31321000,321,Wood products,350.8,17.85,37.7,34993.14,38436.45
1-9-2009,CEU3132100001,31321000,321,Wood products,351.7,17.8,37.8,34987.68,38406.43
1-10-2009,CEU3132100001,31321000,321,Wood products,350.3,17.69,37.8,34771.46,38132.37
1-11-2009,CEU3132100001,31321000,321,Wood products,347.5,17.69,38.1,35047.43,38407.82
1-12-2009,CEU3132100001,31321000,321,Wood products,345.7,17.57,38.1,34809.68,38214.59
1-1-2010,CEU3132100001,31321000,321,Wood products,342.8,17.43,38.5,34894.86,38177.62
1-2-2010,CEU3132100001,31321000,321,Wood products,339.4,17.41,38.2,34583.22,37827.24
1-3-2010,CEU3132100001,31321000,321,Wood products,341,17.3,38.6,34724.56,37826.51
1-4-2010,CEU3132100001,31321000,321,Wood products,343.6,17.3,38.9,34994.44,38054.4
1-5-2010,CEU3132100001,31321000,321,Wood products,346.2,17.35,39.5,35636.9,38723.02
1-6-2010,CEU3132100001,31321000,321,Wood products,350.2,17.34,38.4,34624.51,37659.73
1-7-2010,CEU3132100001,31321000,321,Wood products,345.2,17.28,38.4,34504.7,37521.5
1-8-2010,CEU3132100001,31321000,321,Wood products,343.2,17.24,38.9,34873.07,37869.79
1-9-2010,CEU3132100001,31321000,321,Wood products,340,17.33,39.1,35235.36,38240.96
1-10-2010,CEU3132100001,31321000,321,Wood products,337.6,17.34,39.5,35616.36,38606.39
1-11-2010,CEU3132100001,31321000,321,Wood products,338.3,17.44,39.6,35912.45,38910.96
1-12-2010,CEU3132100001,31321000,321,Wood products,337.8,17.46,39.5,35862.84,38790.55
1-1-2011,CEU3132100001,31321000,321,Wood products,338.6,17.46,39.9,36226.01,38997.61
1-2-2011,CEU3132100001,31321000,321,Wood products,339.6,17.35,39.7,35817.34,38368.47
1-3-2011,CEU3132100001,31321000,321,Wood products,339.9,17.39,39.9,36080.77,38277.43
1-4-2011,CEU3132100001,31321000,321,Wood products,339.1,17.39,39.7,35899.91,37841.88
1-5-2011,CEU3132100001,31321000,321,Wood products,338.5,17.35,39.9,35997.78,37767.37
1-6-2011,CEU3132100001,31321000,321,Wood products,336.7,17.31,39.5,35554.74,37342.54
1-7-2011,CEU3132100001,31321000,321,Wood products,332.2,17.36,39.5,35657.44,37417.26
1-8-2011,CEU3132100001,31321000,321,Wood products,335.2,17.38,39.4,35608.14,37262.77
1-9-2011,CEU3132100001,31321000,321,Wood products,335.5,17.22,39.5,35369.88,36957.31
1-10-2011,CEU3132100001,31321000,321,Wood products,335.8,17.34,39.3,35436.02,37102.96
1-11-2011,CEU3132100001,31321000,321,Wood products,334.9,17.13,39.3,35006.87,36684.56
1-12-2011,CEU3132100001,31321000,321,Wood products,335.5,17.29,39.9,35873.29,37685.46
1-1-2012,CEU3132100001,31321000,321,Wood products,336.7,17.45,40.3,36568.22,38247.2
1-2-2012,CEU3132100001,31321000,321,Wood products,336.8,17.4,40.1,36282.48,37781.99
1-3-2012,CEU3132100001,31321000,321,Wood products,337.9,17.38,39.8,35969.65,37173.91
1-4-2012,CEU3132100001,31321000,321,Wood products,338.2,17.36,40,36108.8,37205.32
1-5-2012,CEU3132100001,31321000,321,Wood products,337.2,17.33,39.9,35956.29,37091.7
1-6-2012,CEU3132100001,31321000,321,Wood products,337.9,17.35,40,36088,37282.24
1-7-2012,CEU3132100001,31321000,321,Wood products,338.4,17.39,39.8,35990.34,37242.05
1-8-2012,CEU3132100001,31321000,321,Wood products,338.2,17.46,39.8,36135.21,37185.02
1-9-2012,CEU3132100001,31321000,321,Wood products,338.1,17.56,39.9,36433.49,37325.41
1-10-2012,CEU3132100001,31321000,321,Wood products,341,17.5,40.1,36491,37398.87
1-11-2012,CEU3132100001,31321000,321,Wood products,344.4,17.66,40.7,37375.63,38487.86
1-12-2012,CEU3132100001,31321000,321,Wood products,345.5,17.71,40.4,37205.17,38415.79
1-1-2013,CEU3132100001,31321000,321,Wood products,346.4,17.74,40.3,37175.95,38272.43
1-2-2013,CEU3132100001,31321000,321,Wood products,348.6,17.82,40.8,37806.91,38605.82
1-3-2013,CEU3132100001,31321000,321,Wood products,349.6,17.99,40.8,38167.59,38872.49
1-4-2013,CEU3132100001,31321000,321,Wood products,348.5,18.11,40.8,38422.18,39172.51
1-5-2013,CEU3132100001,31321000,321,Wood products,350,18.06,41.1,38597.83,39281.66
1-6-2013,CEU3132100001,31321000,321,Wood products,350.6,18.12,41.2,38820.29,39413.47
1-7-2013,CEU3132100001,31321000,321,Wood products,351.6,18.13,41.2,38841.71,39419.69
1-8-2013,CEU3132100001,31321000,321,Wood products,353.2,18.06,41.6,39067.39,39601.09
1-9-2013,CEU3132100001,31321000,321,Wood products,354.4,17.97,41.8,39059.59,39547.19
1-10-2013,CEU3132100001,31321000,321,Wood products,357.8,18.08,41.8,39298.69,39892
1-11-2013,CEU3132100001,31321000,321,Wood products,357.8,18.05,41.7,39139.62,39811.85
1-12-2013,CEU3132100001,31321000,321,Wood products,357.9,18.15,41.4,39073.32,39747.82
1-1-2014,CEU3132100001,31321000,321,Wood products,361.7,18.2,41,38802.4,39325.92
1-2-2014,CEU3132100001,31321000,321,Wood products,362.6,18.2,41,38802.4,39181.03
1-3-2014,CEU3132100001,31321000,321,Wood products,363.8,18.23,41.4,39245.54,39374.93
1-4-2014,CEU3132100001,31321000,321,Wood products,365.8,18.22,41.4,39224.02,39224.02
1-3-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,119.5,15.89,41.7,34455.88,40883.5
1-4-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,118.9,15.99,41.3,34340.13,40402.39
1-5-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,119.1,15.9,40.5,33485.4,39202.23
1-6-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,118.7,15.98,40.5,33653.88,39321.8
1-7-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,118.9,15.99,40.4,33591.79,39133.53
1-8-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,117.7,15.88,40.2,33195.55,38596.05
1-9-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,116.6,15.79,40.6,33335.85,38950.2
1-10-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,115.6,15.84,40.5,33359.04,39189.76
1-11-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,114.8,15.87,40.2,33174.65,39031.17
1-12-2006,CEU3132110001,31321100,3211,Sawmills and wood preservation,114.1,15.78,40.8,33478.85,39330.51
1-1-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,113.6,15.95,40.6,33673.64,39438.96
1-2-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,113.4,15.97,39.9,33134.55,38601.05
1-3-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,113.2,16.04,40.1,33446.61,38612.99
1-4-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,111.9,15.84,40.3,33194.3,38074.38
1-5-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,112,15.67,40.1,32675.08,37251.19
1-6-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,111.2,15.76,40.1,32862.75,37392.68
1-7-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,110.9,15.78,40.2,32986.51,37543.04
1-8-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,110.8,15.84,39.9,32864.83,37473.28
1-9-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,109.2,16.03,39.5,32925.62,37439.41
1-10-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,108.3,16.06,40,33404.8,37903.2
1-11-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,108.8,16.09,39.7,33216.2,37466.66
1-12-2007,CEU3132110001,31321100,3211,Sawmills and wood preservation,109.6,16.23,40,33758.4,38103.8
1-1-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,107,16.15,39.7,33340.06,37445.49
1-2-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,106.1,16.3,38.9,32971.64,36924.48
1-3-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,103.8,16.45,40.7,34814.78,38653.53
1-4-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,105.7,16.63,39,33725.64,37218.57
1-5-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,104.1,16.91,40.1,35260.73,38587.71
1-6-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,104.1,17.11,39.9,35499.83,38461.79
1-7-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,103.2,17.14,39.7,35383.82,38135.84
1-8-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,101.2,17.21,39.9,35707.31,38638.72
1-9-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,100.2,17.39,39.3,35538.2,38508.99
1-10-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,99.3,17.31,39.2,35284.7,38624.46
1-11-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,98.3,17.47,38.6,35065.79,39134.36
1-12-2008,CEU3132110001,31321100,3211,Sawmills and wood preservation,95.1,17.55,37.5,34222.5,38592.37
1-1-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,92.6,17.5,37.7,34307,38520
1-2-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,86.8,17.54,38.1,34750.25,38824.61
1-3-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,87.2,17.53,37.3,34001.19,37895.57
1-4-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.1,17.55,37.3,34039.98,37844.34
1-5-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,82.5,17.47,37.4,33975.66,37664.02
1-6-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,81,17.34,37.7,33993.34,37362.68
1-7-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,80.3,17.46,38.4,34864.13,38380.64
1-8-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,80.3,17.53,38.2,34821.59,38248.03
1-9-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,81.1,17.4,39,35287.2,38735.22
1-10-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,80.6,17.54,38.3,34932.66,38309.15
1-11-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,80.5,17.45,39.1,35479.34,38881.15
1-12-2009,CEU3132110001,31321100,3211,Sawmills and wood preservation,80.3,17.4,38.8,35106.24,38540.15
1-1-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,80.1,17.47,39.9,36246.76,39656.7
1-2-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,80.6,17.44,38,34461.44,37694.04
1-3-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,81.1,17.19,39.6,35397.65,38559.72
1-4-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,82.2,17.29,40,35963.2,39107.87
1-5-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.1,17.41,40.2,36393.86,39545.54
1-6-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.7,17.29,39.8,35783.38,38920.19
1-7-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,82.9,17.29,40,35963.2,39107.51
1-8-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,82.4,17.31,40.4,36364.85,39489.75
1-9-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,82.9,17.31,40.3,36274.84,39369.11
1-10-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,82.3,17.11,41.2,36656.46,39733.81
1-11-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,81.7,17.35,41,36990.2,40078.7
1-12-2010,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.7,17.19,41,36649.08,39640.98
1-1-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,84.4,17.14,41.3,36809.86,39626.14
1-2-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,84.4,16.97,41.1,36268.29,38851.54
1-3-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,84.4,17.02,41.6,36817.66,39059.18
1-4-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,84.5,16.92,41.1,36161.43,38117.53
1-5-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,84.6,16.63,41.5,35887.54,37651.71
1-6-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.3,16.68,41.6,36082.18,37896.5
1-7-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,82.4,16.69,41.1,35669.87,37430.3
1-8-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.8,16.62,41.3,35693.11,37351.68
1-9-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.1,16.62,41.6,35952.38,37565.96
1-10-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.6,16.66,41,35519.12,37189.96
1-11-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.1,16.49,41.4,35499.67,37200.98
1-12-2011,CEU3132110001,31321100,3211,Sawmills and wood preservation,82.8,16.61,41.8,36103.5,37927.29
1-1-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.1,16.64,42.6,36860.93,38553.35
1-2-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.4,16.66,41.9,36298.81,37798.99
1-3-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,83.8,16.62,41.4,35779.54,36977.43
1-4-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,84.4,16.61,41.8,36103.5,37199.85
1-5-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,84,16.66,41.5,35952.28,37087.57
1-6-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,85,16.67,41.6,36060.54,37253.88
1-7-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,84.1,16.72,41.6,36168.7,37426.61
1-8-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.4,16.9,41.6,36558.08,37620.17
1-9-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.5,16.67,42.8,37100.75,38009.01
1-10-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.7,16.77,41.7,36364.07,37268.78
1-11-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,86,17.42,42.7,38679.37,39830.4
1-12-2012,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.3,16.86,42.4,37172.93,38382.5
1-1-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85,17.03,42.3,37459.19,38564.03
1-2-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.3,17.12,42.7,38013.25,38816.52
1-3-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.9,17.31,42.7,38435.13,39144.97
1-4-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.7,17.55,42.5,38785.5,39542.93
1-5-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,86.4,17.43,42.4,38429.66,39110.51
1-6-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.3,17.65,42.6,39098.28,39695.71
1-7-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.6,17.43,42.6,38610.94,39185.48
1-8-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,84.5,17.45,42.3,38383.02,38907.37
1-9-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.3,17.44,41.9,37998.27,38472.63
1-10-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.5,17.42,42.6,38588.79,39171.38
1-11-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,85.7,17.58,41.7,38120.47,38775.2
1-12-2013,CEU3132110001,31321100,3211,Sawmills and wood preservation,86,17.6,42.2,38621.44,39288.14
1-1-2014,CEU3132110001,31321100,3211,Sawmills and wood preservation,86.2,17.72,41.7,38424.05,38942.46
1-2-2014,CEU3132110001,31321100,3211,Sawmills and wood preservation,86.9,17.74,41.8,38559.66,38935.93
1-3-2014,CEU3132110001,31321100,3211,Sawmills and wood preservation,87.2,17.79,42.2,39038.38,39167.07
1-3-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,125.5,15.68,40.1,32695.94,38795.25
1-4-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,123.8,15.95,40.2,33341.88,39227.92
1-5-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,124.6,15.93,40.2,33300.07,38985.26
1-6-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,122.1,15.94,39.7,32906.54,38448.59
1-7-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,120.8,16.25,40,33800,39376.09
1-8-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,118.7,16.18,39.9,33570.27,39031.73
1-9-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,117.2,16.56,39.6,34100.35,39843.46
1-10-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,114.7,16.42,40.5,34580.52,40624.74
1-11-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,112.7,16.33,39.1,33202.16,39063.53
1-12-2006,CEU3132120001,31321200,3212,Plywood and engineered wood products,111.5,16.24,39.7,33525.86,39385.74
1-1-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,112.1,16.43,39.8,34003.53,39825.33
1-2-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,112.2,16.24,39.5,33356.96,38860.15
1-3-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,112,16.25,39.8,33631,38825.86
1-4-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,111.4,16.37,39.9,33964.48,38957.78
1-5-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,110.6,16.36,40,34028.8,38794.49
1-6-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,109.6,16.73,40,34798.4,39595.14
1-7-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,110.3,16.72,39.6,34429.82,39185.73
1-8-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,107.5,16.92,38.7,34049.81,38824.42
1-9-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,105.3,16.87,39.9,35001.88,39800.3
1-10-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,103.9,16.83,39.4,34481.3,39124.67
1-11-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,102.2,17.03,39.8,35245.29,39755.4
1-12-2007,CEU3132120001,31321200,3212,Plywood and engineered wood products,100.8,17.21,40.4,36154.77,40808.64
1-1-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,100,17.02,39.3,34782.07,39065.07
1-2-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,98.5,17.33,39.5,35595.82,39863.26
1-3-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,97.2,17.49,39.3,35742.56,39683.61
1-4-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,94.5,17.4,38.9,35196.72,38842.01
1-5-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,91.7,17.52,38.8,35348.35,38683.59
1-6-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,88.9,17.4,38.9,35196.72,38133.38
1-7-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,89,17.29,38.7,34794.39,37500.57
1-8-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,87.8,17.35,38.9,35095.58,37976.77
1-9-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,87.1,17.4,38.2,34563.36,37452.66
1-10-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,85,17.86,38.4,35662.85,39038.4
1-11-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,82.6,17.78,38.6,35688.02,39828.79
1-12-2008,CEU3132120001,31321200,3212,Plywood and engineered wood products,79.5,17.94,37.5,34983,39449.98
1-1-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,74.8,18.25,36.9,35018.1,39318.43
1-2-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,73,18.1,37.7,35483.24,39643.54
1-3-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,70.3,18.03,36.5,34220.94,38140.5
1-4-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,69.5,18.44,36.6,35095.01,39017.28
1-5-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,68.5,18.56,36.6,35323.39,39158.06
1-6-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,68.5,18.27,36.6,34771.46,38217.93
1-7-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,67.8,18.72,36.9,35919.94,39542.94
1-8-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,65.9,18.68,36.8,35746.05,39263.45
1-9-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,65.9,18.63,36.9,35747.24,39240.21
1-10-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,65.6,18.34,37,35286.16,38696.81
1-11-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,65.4,18.42,37.5,35919,39362.96
1-12-2009,CEU3132120001,31321200,3212,Plywood and engineered wood products,65,18.23,37.3,35358.91,38817.53
1-1-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,65.5,18.08,38,35726.08,39087.04
1-2-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,64,18.28,37.4,35550.95,38885.74
1-3-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,64.3,18.17,38,35903.92,39111.22
1-4-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,64.8,17.95,37.7,35189.18,38266.17
1-5-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,65,17.98,38.9,36369.95,39519.55
1-6-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,64.4,18.05,37.9,35572.94,38691.3
1-7-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,63.8,17.84,37.6,34880.77,37930.44
1-8-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,64.3,18.01,37.5,35119.5,38137.39
1-9-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,63.1,18.05,37.5,35197.5,38199.87
1-10-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,63.1,18.07,37.6,35330.46,38296.49
1-11-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,63.2,18.13,37.1,34976.39,37896.75
1-12-2010,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.6,18.11,37.2,35031.98,37891.87
1-1-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,63,17.96,37.6,35115.39,37802.03
1-2-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,62.8,17.81,37.5,34729.5,37203.15
1-3-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,62.5,17.96,37.8,35302.18,37451.43
1-4-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.6,18.08,38.2,35914.11,37856.84
1-5-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,62,18.22,38.2,36192.21,37971.35
1-6-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.6,18.02,37.6,35232.7,37004.31
1-7-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,60.8,18.13,38.6,36390.54,38186.53
1-8-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.2,18.02,38.7,36263.45,37948.52
1-9-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.8,17.77,39.2,36222.37,37848.06
1-10-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.3,18.2,39.1,37004.24,38744.95
1-11-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.1,17.99,39.2,36670.82,38428.25
1-12-2011,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.9,18.07,40.1,37679.56,39582.98
1-1-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,61.6,18.39,40.1,38346.83,40107.47
1-2-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,62.1,18.22,40.6,38466.06,40055.81
1-3-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,62.3,18.19,40.4,38213.55,39492.93
1-4-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,63.1,17.96,40.7,38010.54,39164.81
1-5-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,62.8,17.84,40.4,37478.27,38661.75
1-6-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,63.2,17.89,40.9,38048.45,39307.57
1-7-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,64.8,17.86,41,38077.52,39401.82
1-8-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,64.2,18.01,40.7,38116.36,39223.73
1-9-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,64,18.03,40.3,37783.67,38708.64
1-10-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,64.6,17.97,41.2,38498.93,39456.76
1-11-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,66.2,18,41.6,38937.6,40096.32
1-12-2012,CEU3132120001,31321200,3212,Plywood and engineered wood products,66.1,18.11,41.5,39081.38,40353.05
1-1-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,65.9,18.17,41,38738.44,39881.01
1-2-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,66.3,18.17,41.3,39021.89,39846.48
1-3-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,67,18.37,41.2,39355.89,40082.73
1-4-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,67,18.44,40.7,39026.41,39788.55
1-5-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,67.4,18.45,41.1,39431.34,40129.93
1-6-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,67.6,18.71,40.1,39014.09,39610.24
1-7-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,67.9,18.78,40,39062.4,39643.66
1-8-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,68.6,18.67,41.3,40095.69,40643.44
1-9-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,69.1,18.78,42,41015.52,41527.54
1-10-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,70.3,18.95,41,40401.4,41011.36
1-11-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,70.3,18.74,41,39953.68,40639.89
1-12-2013,CEU3132120001,31321200,3212,Plywood and engineered wood products,70.6,18.68,40.5,39340.08,40019.18
1-1-2014,CEU3132120001,31321200,3212,Plywood and engineered wood products,71.4,18.52,40.7,39195.73,39724.55
1-2-2014,CEU3132120001,31321200,3212,Plywood and engineered wood products,72,18.4,40.6,38846.08,39225.14
1-3-2014,CEU3132120001,31321200,3212,Plywood and engineered wood products,71.8,18.52,40.6,39099.43,39228.32
1-3-2006,CEU3132190001,31321900,3219,Other wood products,327.6,15.15,37.6,29621.28,35147.03
1-4-2006,CEU3132190001,31321900,3219,Other wood products,327.5,15.23,37.6,29777.7,35034.53
1-5-2006,CEU3132190001,31321900,3219,Other wood products,326.7,15.13,37.6,29582.18,34632.62
1-6-2006,CEU3132190001,31321900,3219,Other wood products,325,15.16,36.9,29089.01,33988.12
1-7-2006,CEU3132190001,31321900,3219,Other wood products,325.2,15.28,37,29398.72,34248.71
1-8-2006,CEU3132190001,31321900,3219,Other wood products,324.1,15.35,37,29533.4,34338.12
1-9-2006,CEU3132190001,31321900,3219,Other wood products,322.2,15.64,36.9,30010.03,35064.26
1-10-2006,CEU3132190001,31321900,3219,Other wood products,317,15.77,36.5,29931.46,35163.09
1-11-2006,CEU3132190001,31321900,3219,Other wood products,313.4,15.76,37.4,30650.05,36060.88
1-12-2006,CEU3132190001,31321900,3219,Other wood products,310.6,15.84,37.7,31052.74,36480.35
1-1-2007,CEU3132190001,31321900,3219,Other wood products,309.4,15.94,37.7,31248.78,36598.93
1-2-2007,CEU3132190001,31321900,3219,Other wood products,304.8,16.06,37.9,31651.05,36872.8
1-3-2007,CEU3132190001,31321900,3219,Other wood products,302.9,16.19,38.2,32159.82,37127.43
1-4-2007,CEU3132190001,31321900,3219,Other wood products,300.9,16.12,38.2,32020.77,36728.31
1-5-2007,CEU3132190001,31321900,3219,Other wood products,300.8,16.44,37.7,32228.98,36742.61
1-6-2007,CEU3132190001,31321900,3219,Other wood products,299.2,16.55,38.2,32874.92,37406.52
1-7-2007,CEU3132190001,31321900,3219,Other wood products,300.2,16.64,38,32880.64,37422.55
1-8-2007,CEU3132190001,31321900,3219,Other wood products,295.9,16.53,37.9,32577.32,37145.45
1-9-2007,CEU3132190001,31321900,3219,Other wood products,292.2,16.62,37.9,32754.7,37245.05
1-10-2007,CEU3132190001,31321900,3219,Other wood products,290.7,16.49,38.1,32669.99,37069.43
1-11-2007,CEU3132190001,31321900,3219,Other wood products,288.4,16.52,37.7,32385.81,36530.01
1-12-2007,CEU3132190001,31321900,3219,Other wood products,287.5,16.5,38.5,33033,37285.03
1-1-2008,CEU3132190001,31321900,3219,Other wood products,286.2,16.46,37.7,32268.18,36241.63
1-2-2008,CEU3132190001,31321900,3219,Other wood products,283,16.7,37.3,32391.32,36274.58
1-3-2008,CEU3132190001,31321900,3219,Other wood products,280.4,16.76,37.7,32856.3,36479.11
1-4-2008,CEU3132190001,31321900,3219,Other wood products,276.9,16.75,37.4,32575.4,35949.2
1-5-2008,CEU3132190001,31321900,3219,Other wood products,273.1,16.76,37.7,32856.3,35956.41
1-6-2008,CEU3132190001,31321900,3219,Other wood products,269.6,16.77,37.8,32963.11,35713.42
1-7-2008,CEU3132190001,31321900,3219,Other wood products,265.3,16.7,38,32999.2,35565.75
1-8-2008,CEU3132190001,31321900,3219,Other wood products,262.2,16.95,37.9,33405.06,36147.47
1-9-2008,CEU3132190001,31321900,3219,Other wood products,257.4,16.86,37.9,33227.69,36005.33
1-10-2008,CEU3132190001,31321900,3219,Other wood products,250.6,17.13,37.5,33403.5,36565.2
1-11-2008,CEU3132190001,31321900,3219,Other wood products,242.6,17.2,37.4,33450.56,37331.72
1-12-2008,CEU3132190001,31321900,3219,Other wood products,235.8,17.32,36.8,33143.55,37375.65
1-1-2009,CEU3132190001,31321900,3219,Other wood products,228.3,17.45,36.7,33301.58,37391.11
1-2-2009,CEU3132190001,31321900,3219,Other wood products,213.6,17.48,37,33631.52,37574.71
1-3-2009,CEU3132190001,31321900,3219,Other wood products,217.8,17.37,36.4,32877.94,36643.67
1-4-2009,CEU3132190001,31321900,3219,Other wood products,213.7,17.49,36.5,33196.02,36906.05
1-5-2009,CEU3132190001,31321900,3219,Other wood products,209.2,17.52,36.3,33070.75,36660.88
1-6-2009,CEU3132190001,31321900,3219,Other wood products,205.2,17.53,37.4,34092.34,37471.5
1-7-2009,CEU3132190001,31321900,3219,Other wood products,204.1,17.63,37.8,34653.53,38148.79
1-8-2009,CEU3132190001,31321900,3219,Other wood products,204.1,17.69,37.8,34771.46,38192.96
1-9-2009,CEU3132190001,31321900,3219,Other wood products,205.4,17.68,37.8,34751.81,38147.52
1-10-2009,CEU3132190001,31321900,3219,Other wood products,202.8,17.55,37.8,34496.28,37830.59
1-11-2009,CEU3132190001,31321900,3219,Other wood products,201.2,17.55,38,34678.8,38003.85
1-12-2009,CEU3132190001,31321900,3219,Other wood products,200.2,17.43,38.1,34532.32,37910.09
1-1-2010,CEU3132190001,31321900,3219,Other wood products,197.8,17.21,38.4,34364.93,37597.84
1-2-2010,CEU3132190001,31321900,3219,Other wood products,195.4,17.12,38.3,34096.19,37294.52
1-3-2010,CEU3132190001,31321900,3219,Other wood products,195.9,17.08,38.5,34194.16,37248.73
1-4-2010,CEU3132190001,31321900,3219,Other wood products,196.7,17.06,38.7,34331.54,37333.54
1-5-2010,CEU3132190001,31321900,3219,Other wood products,197.9,17.1,39.1,34767.72,37778.57
1-6-2010,CEU3132190001,31321900,3219,Other wood products,201.4,17.15,37.9,33799.22,36762.09
1-7-2010,CEU3132190001,31321900,3219,Other wood products,198.4,17.1,37.9,33700.68,36647.18
1-8-2010,CEU3132190001,31321900,3219,Other wood products,196.1,16.93,38.6,33981.89,36902.03
1-9-2010,CEU3132190001,31321900,3219,Other wood products,194.5,17.12,39.1,34808.38,37777.56
1-10-2010,CEU3132190001,31321900,3219,Other wood products,192.4,17.21,39.4,35259.85,38219.95
1-11-2010,CEU3132190001,31321900,3219,Other wood products,193.1,17.3,39.7,35714.12,38696.08
1-12-2010,CEU3132190001,31321900,3219,Other wood products,192.3,17.38,39.7,35879.27,38808.33
1-1-2011,CEU3132190001,31321900,3219,Other wood products,190.7,17.45,40,36296,39072.96
1-2-2011,CEU3132190001,31321900,3219,Other wood products,192.7,17.38,39.6,35788.89,38338
1-3-2011,CEU3132190001,31321900,3219,Other wood products,192.9,17.39,39.9,36080.77,38277.43
1-4-2011,CEU3132190001,31321900,3219,Other wood products,192.7,17.37,39.6,35768.3,37703.14
1-5-2011,CEU3132190001,31321900,3219,Other wood products,191.8,17.38,39.5,35698.52,37453.39
1-6-2011,CEU3132190001,31321900,3219,Other wood products,191.5,17.39,39.1,35357.35,37135.22
1-7-2011,CEU3132190001,31321900,3219,Other wood products,189.4,17.42,39,35327.76,37071.3
1-8-2011,CEU3132190001,31321900,3219,Other wood products,190.1,17.48,38.8,35267.65,36906.45
1-9-2011,CEU3132190001,31321900,3219,Other wood products,191.1,17.34,38.7,34895.02,36461.14
1-10-2011,CEU3132190001,31321900,3219,Other wood products,191.1,17.37,38.7,34955.39,36599.71
1-11-2011,CEU3132190001,31321900,3219,Other wood products,190.4,17.2,38.4,34344.96,35990.93
1-12-2011,CEU3132190001,31321900,3219,Other wood products,190.5,17.33,39.2,35325.47,37109.96
1-1-2012,CEU3132190001,31321900,3219,Other wood products,191.4,17.53,39.4,35915.46,37564.47
1-2-2012,CEU3132190001,31321900,3219,Other wood products,191.5,17.45,39.1,35479.34,36945.65
1-3-2012,CEU3132190001,31321900,3219,Other wood products,191.4,17.44,39,35368.32,36552.45
1-4-2012,CEU3132190001,31321900,3219,Other wood products,190.8,17.48,39.1,35540.34,36619.59
1-5-2012,CEU3132190001,31321900,3219,Other wood products,190.6,17.44,39,35368.32,36485.17
1-6-2012,CEU3132190001,31321900,3219,Other wood products,189.6,17.49,38.9,35378.77,36549.55
1-7-2012,CEU3132190001,31321900,3219,Other wood products,190,17.54,38.6,35206.29,36430.73
1-8-2012,CEU3132190001,31321900,3219,Other wood products,188.5,17.52,38.6,35166.14,36187.8
1-9-2012,CEU3132190001,31321900,3219,Other wood products,189.4,17.86,38.6,35848.59,36726.19
1-10-2012,CEU3132190001,31321900,3219,Other wood products,191,17.7,39,35895.6,36788.66
1-11-2012,CEU3132190001,31321900,3219,Other wood products,192.4,17.82,39.2,36324.29,37405.24
1-12-2012,CEU3132190001,31321900,3219,Other wood products,193.7,17.97,39.1,36536.61,37725.47
1-1-2013,CEU3132190001,31321900,3219,Other wood products,194.8,17.93,39.2,36548.51,37626.49
1-2-2013,CEU3132190001,31321900,3219,Other wood products,197.2,17.99,39.9,37325.65,38114.39
1-3-2013,CEU3132190001,31321900,3219,Other wood products,196.3,18.16,39.8,37583.94,38278.06
1-4-2013,CEU3132190001,31321900,3219,Other wood products,196.1,18.21,40.2,38066.18,38809.56
1-5-2013,CEU3132190001,31321900,3219,Other wood products,196.3,18.18,40.5,38287.08,38965.4
1-6-2013,CEU3132190001,31321900,3219,Other wood products,197.6,18.14,40.7,38391.5,38978.13
1-7-2013,CEU3132190001,31321900,3219,Other wood products,198.7,18.24,40.8,38697.98,39273.83
1-8-2013,CEU3132190001,31321900,3219,Other wood products,199.8,18.11,41.5,39081.38,39615.27
1-9-2013,CEU3132190001,31321900,3219,Other wood products,200.7,17.91,41.8,38929.18,39415.15
1-10-2013,CEU3132190001,31321900,3219,Other wood products,202,18.07,41.6,39089.02,39679.18
1-11-2013,CEU3132190001,31321900,3219,Other wood products,202.3,18.17,41.9,39588.8,40268.74
1-12-2013,CEU3132190001,31321900,3219,Other wood products,201.1,18.21,41.3,39107.8,39782.89
1-1-2014,CEU3132190001,31321900,3219,Other wood products,204,18.27,41,38951.64,39477.18
1-2-2014,CEU3132190001,31321900,3219,Other wood products,204,18.3,40.7,38730.12,39108.05
1-3-2014,CEU3132190001,31321900,3219,Other wood products,204.6,18.32,41.2,39248.77,39378.16
1-3-2006,CEU3132191001,31321910,32191,Millwork,161.9,14.52,37.6,28389.5,33685.47
1-4-2006,CEU3132191001,31321910,32191,Millwork,161.9,15.03,37.5,29308.5,34482.5
1-5-2006,CEU3132191001,31321910,32191,Millwork,161.4,14.62,37.9,28813.1,33732.24
1-6-2006,CEU3132191001,31321910,32191,Millwork,160.6,14.71,36.7,28072.56,32800.49
1-7-2006,CEU3132191001,31321910,32191,Millwork,159.9,15.01,36.8,28723.14,33461.68
1-8-2006,CEU3132191001,31321910,32191,Millwork,159.3,15.23,36.5,28906.54,33609.27
1-9-2006,CEU3132191001,31321910,32191,Millwork,158.6,15.58,36.3,29408.81,34361.78
1-10-2006,CEU3132191001,31321910,32191,Millwork,155.6,15.9,36.1,29847.48,35064.43
1-11-2006,CEU3132191001,31321910,32191,Millwork,155.3,16.08,37.1,31021.54,36497.95
1-12-2006,CEU3132191001,31321910,32191,Millwork,155.6,16.28,37.3,31576.69,37095.88
1-1-2007,CEU3132191001,31321910,32191,Millwork,154.8,16.38,37.5,31941,37409.67
1-2-2007,CEU3132191001,31321910,32191,Millwork,152.1,16.26,37.9,32045.21,37331.98
1-3-2007,CEU3132191001,31321910,32191,Millwork,150.6,16.49,38.1,32669.99,37716.41
1-4-2007,CEU3132191001,31321910,32191,Millwork,149.3,16.38,38.1,32452.06,37223.01
1-5-2007,CEU3132191001,31321910,32191,Millwork,148.1,16.68,37.6,32612.74,37180.11
1-6-2007,CEU3132191001,31321910,32191,Millwork,146.4,16.63,38,32860.88,37390.54
1-7-2007,CEU3132191001,31321910,32191,Millwork,147,16.51,38,32623.76,37130.18
1-8-2007,CEU3132191001,31321910,32191,Millwork,145.3,16.47,37.7,32287.79,36815.32
1-9-2007,CEU3132191001,31321910,32191,Millwork,143.7,16.71,38.1,33105.85,37644.35
1-10-2007,CEU3132191001,31321910,32191,Millwork,143,16.47,38.8,33229.87,37704.71
1-11-2007,CEU3132191001,31321910,32191,Millwork,141.8,16.67,38,32939.92,37155.03
1-12-2007,CEU3132191001,31321910,32191,Millwork,140.6,16.7,38.5,33433.4,37736.97
1-1-2008,CEU3132191001,31321910,32191,Millwork,139.3,16.97,38.1,33620.96,37760.99
1-2-2008,CEU3132191001,31321910,32191,Millwork,137.6,17.58,37.4,34189.59,38288.44
1-3-2008,CEU3132191001,31321910,32191,Millwork,135.5,17.55,37.8,34496.28,38299.91
1-4-2008,CEU3132191001,31321910,32191,Millwork,133.2,17.7,37.6,34607.04,38191.26
1-5-2008,CEU3132191001,31321910,32191,Millwork,131.1,17.89,38.2,35536.7,38889.71
1-6-2008,CEU3132191001,31321910,32191,Millwork,129.3,18.03,38,35627.28,38599.87
1-7-2008,CEU3132191001,31321910,32191,Millwork,127.2,18.08,37.8,35538.05,38302.07
1-8-2008,CEU3132191001,31321910,32191,Millwork,125.2,18.43,38,36417.68,39407.41
1-9-2008,CEU3132191001,31321910,32191,Millwork,122.7,18.44,37.4,35862.11,38859.98
1-10-2008,CEU3132191001,31321910,32191,Millwork,120.2,18.67,37.2,36115.25,39533.62
1-11-2008,CEU3132191001,31321910,32191,Millwork,116.5,18.72,36.6,35627.9,39761.7
1-12-2008,CEU3132191001,31321910,32191,Millwork,113.4,18.74,36.6,35665.97,40220.16
1-1-2009,CEU3132191001,31321910,32191,Millwork,114,18.93,36.6,36027.57,40451.87
1-2-2009,CEU3132191001,31321910,32191,Millwork,107.7,19.12,36.5,36289.76,40544.63
1-3-2009,CEU3132191001,31321910,32191,Millwork,105.4,18.94,35.7,35160.21,39187.35
1-4-2009,CEU3132191001,31321910,32191,Millwork,103.1,19.16,36.7,36564.95,40651.5
1-5-2009,CEU3132191001,31321910,32191,Millwork,101.1,19.14,36.9,36725.83,40712.75
1-6-2009,CEU3132191001,31321910,32191,Millwork,100,19.18,37.8,37700.21,41436.97
1-7-2009,CEU3132191001,31321910,32191,Millwork,99.2,19.36,38.3,38557.38,42446.39
1-8-2009,CEU3132191001,31321910,32191,Millwork,98.5,19.55,38.1,38732.46,42543.72
1-9-2009,CEU3132191001,31321910,32191,Millwork,98.5,19.26,38.3,38358.21,42106.32
1-10-2009,CEU3132191001,31321910,32191,Millwork,97.2,19.17,38.1,37979.61,41650.6
1-11-2009,CEU3132191001,31321910,32191,Millwork,96.4,19.17,38.3,38178.97,41839.63
1-12-2009,CEU3132191001,31321910,32191,Millwork,95.5,18.99,38,37524.24,41194.66
1-1-2010,CEU3132191001,31321910,32191,Millwork,94.5,18.82,38,37188.32,40686.84
1-2-2010,CEU3132191001,31321910,32191,Millwork,92.9,18.7,38,36951.2,40417.34
1-3-2010,CEU3132191001,31321910,32191,Millwork,93.5,18.52,38.3,36884.43,40179.32
1-4-2010,CEU3132191001,31321910,32191,Millwork,93.4,18.67,38.3,37183.17,40434.52
1-5-2010,CEU3132191001,31321910,32191,Millwork,93.9,18.81,38.5,37657.62,40918.73
1-6-2010,CEU3132191001,31321910,32191,Millwork,94.4,18.78,37.7,36816.31,40043.66
1-7-2010,CEU3132191001,31321910,32191,Millwork,92.9,18.73,37.5,36523.5,39716.8
1-8-2010,CEU3132191001,31321910,32191,Millwork,92.7,18.62,38.1,36889.95,40059.97
1-9-2010,CEU3132191001,31321910,32191,Millwork,90.9,18.91,38.5,37857.82,41087.12
1-10-2010,CEU3132191001,31321910,32191,Millwork,90.8,19.16,39.1,38956.11,42226.52
1-11-2010,CEU3132191001,31321910,32191,Millwork,91.1,19.18,39.6,39495.46,42793.14
1-12-2010,CEU3132191001,31321910,32191,Millwork,90.7,19.34,39.5,39724.36,42967.31
1-1-2011,CEU3132191001,31321910,32191,Millwork,90.1,19.29,39.7,39822.28,42869.03
1-2-2011,CEU3132191001,31321910,32191,Millwork,90.5,19.18,39.6,39495.46,42308.57
1-3-2011,CEU3132191001,31321910,32191,Millwork,89.9,19.21,39.3,39257.55,41647.61
1-4-2011,CEU3132191001,31321910,32191,Millwork,90.3,19.18,39.2,39096.51,41211.39
1-5-2011,CEU3132191001,31321910,32191,Millwork,90.1,19.12,39.8,39570.75,41515.98
1-6-2011,CEU3132191001,31321910,32191,Millwork,89.5,19.1,39.1,38834.12,40786.82
1-7-2011,CEU3132191001,31321910,32191,Millwork,87.9,19.11,38.8,38556.34,40459.22
1-8-2011,CEU3132191001,31321910,32191,Millwork,88.3,19.03,38.9,38493.88,40282.6
1-9-2011,CEU3132191001,31321910,32191,Millwork,89,19.07,38.6,38277.3,39995.23
1-10-2011,CEU3132191001,31321910,32191,Millwork,88.8,19.07,37.8,37483.99,39247.27
1-11-2011,CEU3132191001,31321910,32191,Millwork,87.8,18.98,38.1,37603.18,39405.29
1-12-2011,CEU3132191001,31321910,32191,Millwork,87.9,19.04,38.8,38415.11,40355.68
1-1-2012,CEU3132191001,31321910,32191,Millwork,88,19.36,39,39262.08,41064.74
1-2-2012,CEU3132191001,31321910,32191,Millwork,87.3,19.17,39.7,39574.55,41210.11
1-3-2012,CEU3132191001,31321910,32191,Millwork,87.7,19.16,39.1,38956.11,40260.36
1-4-2012,CEU3132191001,31321910,32191,Millwork,87.2,19.16,39.4,39255.01,40447.07
1-5-2012,CEU3132191001,31321910,32191,Millwork,86.5,18.96,39.3,38746.66,39970.18
1-6-2012,CEU3132191001,31321910,32191,Millwork,85.9,19.1,39.6,39330.72,40632.27
1-7-2012,CEU3132191001,31321910,32191,Millwork,85.7,19.23,39.2,39198.43,40561.71
1-8-2012,CEU3132191001,31321910,32191,Millwork,85.3,18.95,39.8,39218.92,40358.32
1-9-2012,CEU3132191001,31321910,32191,Millwork,85.7,19.29,39.8,39922.59,40899.92
1-10-2012,CEU3132191001,31321910,32191,Millwork,86.1,19.15,40,39832,40822.99
1-11-2012,CEU3132191001,31321910,32191,Millwork,86.9,19.25,40.4,40440.4,41643.84
1-12-2012,CEU3132191001,31321910,32191,Millwork,87.7,19.58,40.1,40828.21,42156.72
1-1-2013,CEU3132191001,31321910,32191,Millwork,88.4,19.34,40.2,40428.34,41620.75
1-2-2013,CEU3132191001,31321910,32191,Millwork,89.1,19.42,40.5,40898.52,41762.76
1-3-2013,CEU3132191001,31321910,32191,Millwork,89.5,19.54,40.7,41354.46,42118.21
1-4-2013,CEU3132191001,31321910,32191,Millwork,89.6,19.57,41,41723.24,42538.04
1-5-2013,CEU3132191001,31321910,32191,Millwork,90.1,19.57,40.9,41621.48,42358.87
1-6-2013,CEU3132191001,31321910,32191,Millwork,90.8,19.63,41.1,41953.23,42594.29
1-7-2013,CEU3132191001,31321910,32191,Millwork,92.2,19.65,41.4,42302.52,42932
1-8-2013,CEU3132191001,31321910,32191,Millwork,93.6,19.81,41.7,42956,43542.83
1-9-2013,CEU3132191001,31321910,32191,Millwork,93.4,19.53,42.2,42856.63,43391.63
1-10-2013,CEU3132191001,31321910,32191,Millwork,94.2,19.59,42.1,42886.43,43533.91
1-11-2013,CEU3132191001,31321910,32191,Millwork,94.4,19.56,42.9,43634.45,44383.88
1-12-2013,CEU3132191001,31321910,32191,Millwork,94.2,19.64,42.1,42995.89,43738.1
1-1-2014,CEU3132191001,31321910,32191,Millwork,95.2,19.55,41.4,42087.24,42655.08
1-2-2014,CEU3132191001,31321910,32191,Millwork,95.4,19.61,41.6,42420.35,42834.29
1-3-2014,CEU3132191001,31321910,32191,Millwork,96.7,19.45,41.9,42377.66,42517.37
1-3-2006,CEU3132191101,31321911,321911,Wood windows and doors,80.2,14.21,37.9,28005.07,33229.32
1-4-2006,CEU3132191101,31321911,321911,Wood windows and doors,80.2,15.05,37.7,29504.02,34712.54
1-5-2006,CEU3132191101,31321911,321911,Wood windows and doors,80.1,14.76,37.6,28858.75,33785.69
1-6-2006,CEU3132191101,31321911,321911,Wood windows and doors,80.3,15.08,36.3,28465.01,33259.03
1-7-2006,CEU3132191101,31321911,321911,Wood windows and doors,80.5,15.31,36.5,29058.38,33852.23
1-8-2006,CEU3132191101,31321911,321911,Wood windows and doors,79.7,15.6,36.5,29608.8,34425.79
1-9-2006,CEU3132191101,31321911,321911,Wood windows and doors,78.8,16,36.6,30451.2,35579.73
1-10-2006,CEU3132191101,31321911,321911,Wood windows and doors,77.3,16.68,35.4,30704.54,36071.3
1-11-2006,CEU3132191101,31321911,321911,Wood windows and doors,77.1,16.6,37.2,32111.04,37779.79
1-12-2006,CEU3132191101,31321911,321911,Wood windows and doors,77.5,16.51,37.3,32022.8,37619.96
1-1-2007,CEU3132191101,31321911,321911,Wood windows and doors,76.5,16.7,38.2,33172.88,38852.46
1-2-2007,CEU3132191101,31321911,321911,Wood windows and doors,75.7,16.99,38.7,34190.68,39831.41
1-3-2007,CEU3132191101,31321911,321911,Wood windows and doors,74.8,17.07,38.2,33907.85,39145.47
1-4-2007,CEU3132191101,31321911,321911,Wood windows and doors,74.5,16.72,38.2,33212.61,38095.37
1-5-2007,CEU3132191101,31321911,321911,Wood windows and doors,74.3,17.29,38,34165.04,38949.81
1-6-2007,CEU3132191101,31321911,321911,Wood windows and doors,73.7,17.41,38.2,34583.22,39350.3
1-7-2007,CEU3132191101,31321911,321911,Wood windows and doors,73.3,17.11,37.8,33631.41,38277.03
1-8-2007,CEU3132191101,31321911,321911,Wood windows and doors,72.5,17.05,37.3,33070.18,37707.42
1-9-2007,CEU3132191101,31321911,321911,Wood windows and doors,71.5,17.24,37.7,33797.3,38430.59
1-10-2007,CEU3132191101,31321911,321911,Wood windows and doors,70.9,17.02,38.4,33985.54,38562.14
1-11-2007,CEU3132191101,31321911,321911,Wood windows and doors,69.9,17.02,37.3,33011.99,37236.32
1-12-2007,CEU3132191101,31321911,321911,Wood windows and doors,69,17.21,38.1,34096.45,38485.38
1-1-2008,CEU3132191101,31321911,321911,Wood windows and doors,67.7,17.59,37.3,34117.56,38318.74
1-2-2008,CEU3132191101,31321911,321911,Wood windows and doors,67.5,18.52,36.2,34862.05,39041.52
1-3-2008,CEU3132191101,31321911,321911,Wood windows and doors,66.6,18.42,37.2,35631.65,39560.46
1-4-2008,CEU3132191101,31321911,321911,Wood windows and doors,65.5,18.5,36.6,35209.2,38855.78
1-5-2008,CEU3132191101,31321911,321911,Wood windows and doors,64.1,18.85,36.8,36071.36,39474.82
1-6-2008,CEU3132191101,31321911,321911,Wood windows and doors,63.4,19.06,37.3,36968.78,40053.3
1-7-2008,CEU3132191101,31321911,321911,Wood windows and doors,62.5,19.27,37.1,37175.68,40067.07
1-8-2008,CEU3132191101,31321911,321911,Wood windows and doors,61.6,19.56,37.1,37735.15,40833.04
1-9-2008,CEU3132191101,31321911,321911,Wood windows and doors,60.8,19.79,35.9,36943.97,40032.27
1-10-2008,CEU3132191101,31321911,321911,Wood windows and doors,59.7,20.07,36.3,37884.13,41469.93
1-11-2008,CEU3132191101,31321911,321911,Wood windows and doors,58.6,20.31,36,38020.32,42431.7
1-12-2008,CEU3132191101,31321911,321911,Wood windows and doors,57.4,20.59,35.7,38223.28,43104.01
1-1-2009,CEU3132191101,31321911,321911,Wood windows and doors,57.3,20.92,35.2,38291.97,42994.34
1-2-2009,CEU3132191101,31321911,321911,Wood windows and doors,54.2,21.04,34.5,37745.76,42171.34
1-3-2009,CEU3132191101,31321911,321911,Wood windows and doors,52.7,21,33.4,36472.8,40650.28
1-4-2009,CEU3132191101,31321911,321911,Wood windows and doors,52.1,21.22,35,38620.4,42936.67
1-5-2009,CEU3132191101,31321911,321911,Wood windows and doors,50.6,21.2,35.2,38804.48,43017.05
1-6-2009,CEU3132191101,31321911,321911,Wood windows and doors,50.3,21.34,36.3,40281.38,44273.98
1-7-2009,CEU3132191101,31321911,321911,Wood windows and doors,49.8,21.71,36.8,41544.26,45734.55
1-8-2009,CEU3132191101,31321911,321911,Wood windows and doors,49.3,21.87,36.5,41509.26,45593.76
1-9-2009,CEU3132191101,31321911,321911,Wood windows and doors,49.8,21.62,37,41596.88,45661.44
1-10-2009,CEU3132191101,31321911,321911,Wood windows and doors,48.1,21.64,36.1,40622.61,44549.07
1-11-2009,CEU3132191101,31321911,321911,Wood windows and doors,47.5,21.71,36.5,41205.58,45156.43
1-12-2009,CEU3132191101,31321911,321911,Wood windows and doors,46.8,21.51,35.9,40154.87,44082.61
1-1-2010,CEU3132191101,31321911,321911,Wood windows and doors,46.3,21.15,36.6,40252.68,44039.48
1-2-2010,CEU3132191101,31321911,321911,Wood windows and doors,45.6,20.97,36.7,40019.15,43773.07
1-3-2010,CEU3132191101,31321911,321911,Wood windows and doors,45.7,20.77,36.9,39853.48,43413.59
1-4-2010,CEU3132191101,31321911,321911,Wood windows and doors,45.6,20.96,37.4,40763.01,44327.38
1-5-2010,CEU3132191101,31321911,321911,Wood windows and doors,45.6,21.39,37.7,41932.96,45564.31
1-6-2010,CEU3132191101,31321911,321911,Wood windows and doors,45.4,21.58,37.1,41632.14,45281.65
1-7-2010,CEU3132191101,31321911,321911,Wood windows and doors,45.2,21.26,37.3,41235.89,44841.2
1-8-2010,CEU3132191101,31321911,321911,Wood windows and doors,45,20.73,38.5,41501.46,45067.77
1-9-2010,CEU3132191101,31321911,321911,Wood windows and doors,44.5,21.34,38.7,42944.62,46607.82
1-10-2010,CEU3132191101,31321911,321911,Wood windows and doors,44.3,22.04,40.1,45957.81,49816.01
1-11-2010,CEU3132191101,31321911,321911,Wood windows and doors,44.4,21.93,40.2,45842.47,49670.1
1-12-2010,CEU3132191101,31321911,321911,Wood windows and doors,44.2,22.08,40.5,46500.48,50296.61
1-1-2011,CEU3132191101,31321911,321911,Wood windows and doors,44.1,21.89,40.1,45645.03,49137.27
1-2-2011,CEU3132191101,31321911,321911,Wood windows and doors,44.1,21.81,40.3,45705.04,48960.43
1-3-2011,CEU3132191101,31321911,321911,Wood windows and doors,43.2,22.02,39.8,45572.59,48347.12
1-4-2011,CEU3132191101,31321911,321911,Wood windows and doors,43.6,22.01,39.6,45322.99,47774.68
1-5-2011,CEU3132191101,31321911,321911,Wood windows and doors,43.5,21.77,40.4,45734.41,47982.64
1-6-2011,CEU3132191101,31321911,321911,Wood windows and doors,43.6,21.74,39.3,44427.86,46661.83
1-7-2011,CEU3132191101,31321911,321911,Wood windows and doors,42.9,21.75,39.2,44335.2,46523.29
1-8-2011,CEU3132191101,31321911,321911,Wood windows and doors,42.6,21.68,38.8,43741.57,45774.13
1-9-2011,CEU3132191101,31321911,321911,Wood windows and doors,42.7,21.95,39.1,44628.74,46631.72
1-10-2011,CEU3132191101,31321911,321911,Wood windows and doors,42.6,21.95,38.8,44286.32,46369.58
1-11-2011,CEU3132191101,31321911,321911,Wood windows and doors,42.1,21.68,38.9,43854.3,45956.01
1-12-2011,CEU3132191101,31321911,321911,Wood windows and doors,42.3,21.81,39.5,44797.74,47060.73
1-1-2012,CEU3132191101,31321911,321911,Wood windows and doors,42,22.3,40.8,47311.68,49483.93
1-2-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.9,22.04,41.2,47218.5,49169.97
1-3-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.8,21.78,40.8,46208.45,47755.5
1-4-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.7,21.95,40.8,46569.12,47983.29
1-5-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.8,21.85,39.5,44879.9,46297.1
1-6-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.6,21.84,40.2,45654.34,47165.15
1-7-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.6,22.04,39.3,45040.95,46607.42
1-8-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.2,21.51,40,44740.8,46040.62
1-9-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.4,22.22,40.2,46448.69,47585.79
1-10-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.6,22.02,40.1,45916.11,47058.47
1-11-2012,CEU3132191101,31321911,321911,Wood windows and doors,41.8,21.94,40.3,45977.46,47345.68
1-12-2012,CEU3132191101,31321911,321911,Wood windows and doors,42.1,22.04,39.9,45728.59,47216.56
1-1-2013,CEU3132191101,31321911,321911,Wood windows and doors,42.3,22.19,40,46155.2,47516.52
1-2-2013,CEU3132191101,31321911,321911,Wood windows and doors,42.6,22.27,40.1,46437.4,47418.69
1-3-2013,CEU3132191101,31321911,321911,Wood windows and doors,42.7,22.43,40,46654.4,47516.04
1-4-2013,CEU3132191101,31321911,321911,Wood windows and doors,42.7,22.43,40.7,47470.85,48397.89
1-5-2013,CEU3132191101,31321911,321911,Wood windows and doors,42.7,22.46,40.8,47651.14,48495.36
1-6-2013,CEU3132191101,31321911,321911,Wood windows and doors,42.8,22.7,40.4,47688.16,48416.85
1-7-2013,CEU3132191101,31321911,321911,Wood windows and doors,43.4,22.95,41,48929.4,49657.49
1-8-2013,CEU3132191101,31321911,321911,Wood windows and doors,43.8,22.63,41,48247.16,48906.27
1-9-2013,CEU3132191101,31321911,321911,Wood windows and doors,44,22.33,41.2,47839.79,48437
1-10-2013,CEU3132191101,31321911,321911,Wood windows and doors,44.3,22.74,41.1,48599.93,49333.67
1-11-2013,CEU3132191101,31321911,321911,Wood windows and doors,44.6,22.47,43,50242.92,51105.86
1-12-2013,CEU3132191101,31321911,321911,Wood windows and doors,44.6,22.75,42.1,49804.3,50664.05
1-1-2014,CEU3132191101,31321911,321911,Wood windows and doors,45.9,22.72,41,48439.04,49092.58
1-2-2014,CEU3132191101,31321911,321911,Wood windows and doors,46.2,22.52,40.4,47310.02,47771.67
1-3-2014,CEU3132191101,31321911,321911,Wood windows and doors,47.2,22.68,41.2,48589.63,48749.82
1-3-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",81.8,14.72,37.6,28780.54,34149.46
1-4-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",81.7,14.86,37.3,28822.46,33910.66
1-5-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",81.3,14.4,37.6,28154.88,32961.65
1-6-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",80.3,14.49,37.1,27954.11,32662.08
1-7-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",79.5,14.82,37,28513.68,33217.67
1-8-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",79.6,14.83,36.4,28070.22,32636.9
1-9-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",80.1,15.13,36.2,28480.71,33277.38
1-10-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",78.4,15.42,36.5,29267.16,34382.68
1-11-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",78.2,15.58,36.9,29894.9,35172.43
1-12-2006,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",77.9,16.27,37.3,31557.29,37073.09
1-1-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",77.7,16.08,36.8,30770.69,36038.99
1-2-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",76.5,15.46,37.3,29986.22,34933.3
1-3-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",75.9,15.87,38.1,31441.64,36298.32
1-4-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",74.8,15.88,37.9,31296.3,35897.34
1-5-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",73.8,15.99,36.8,30598.46,34883.74
1-6-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",72.8,15.99,37.8,31429.94,35762.36
1-7-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",73.7,16.02,38.4,31988.74,36407.44
1-8-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",72.8,15.81,38.2,31404.98,35808.72
1-9-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",72.4,16.21,38.6,32536.71,36997.19
1-10-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",72.3,16.25,39.1,33039.5,37488.71
1-11-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",71.9,16.37,38.6,32857.86,37062.47
1-12-2007,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",71.5,16.4,38.7,33003.36,37251.58
1-1-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",70.7,16.44,38.8,33169.34,37253.76
1-2-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",70.1,16.72,38.5,33473.44,37486.44
1-3-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",68.6,16.7,38.5,33433.4,37119.83
1-4-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",67.9,16.82,38.6,33761.11,37257.71
1-5-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",67.2,16.9,39,34273.2,37507
1-6-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",66.3,17.09,38.7,34391.91,37261.43
1-7-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",65.1,17.04,38.6,34202.69,36862.85
1-8-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",63.8,17.27,38.8,34843.95,37704.49
1-9-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",62,17.18,38.8,34662.37,37559.94
1-10-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",60.4,17.28,37.7,33875.71,37082.11
1-11-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",57.9,17.2,37.3,33361.12,37231.91
1-12-2008,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",55.9,17.06,37.6,33355.71,37614.9
1-1-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",55.2,17.14,38.1,33957.77,38127.88
1-2-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",53.5,17.25,38.5,34534.5,38583.57
1-3-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",52.4,17.18,38,33947.68,37835.94
1-4-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",51,17.25,38.5,34534.5,38394.13
1-5-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",50.5,17.21,38.2,34185.95,37897.14
1-6-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.9,17.16,39.2,34978.95,38445.98
1-7-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.6,17.2,40,35776,39384.48
1-8-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.3,17.31,39.9,35914.79,39448.79
1-9-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.1,17.05,39.6,35109.36,38540
1-10-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.1,16.89,40.1,35219.03,38623.19
1-11-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.1,16.94,40.1,35323.29,38710.13
1-12-2009,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",48.6,16.92,40.1,35281.59,38732.65
1-1-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.9,16.81,39.4,34440.33,37680.33
1-2-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",47.4,16.56,39.3,33842.02,37016.5
1-3-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",47.4,16.54,39.8,34231.18,37289.06
1-4-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",48.2,16.59,39.1,33730.79,36680.25
1-5-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",48.4,16.47,38.8,33229.87,36107.54
1-6-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.3,16.27,38.3,32403.33,35243.84
1-7-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",48,16.37,37.6,32006.62,34805
1-8-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",47.6,16.46,37.7,32268.18,35041.05
1-9-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.2,16.62,38.3,33100.39,35923.88
1-10-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.4,16.49,38.3,32841.48,35598.56
1-11-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.7,16.49,39,33441.72,36233.94
1-12-2010,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.4,16.61,38.7,33425.96,36154.74
1-1-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.4,16.71,39.4,34235.45,36854.76
1-2-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.6,16.49,38.9,33355.97,35731.79
1-3-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.5,16.59,38.8,33471.98,35509.81
1-4-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",47.2,16.53,38.8,33350.93,35155
1-5-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.7,16.6,38.8,33492.16,35138.57
1-6-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.1,16.69,38.9,33760.53,35458.11
1-7-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.3,16.58,38.5,33193.16,34831.36
1-8-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.4,16.42,39.1,33385.14,34936.47
1-9-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46,16.32,38.2,32418.05,33873
1-10-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.1,16.46,37,31669.04,33158.77
1-11-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.5,16.35,37.3,31712.46,33232.27
1-12-2011,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.5,16.41,38.2,32596.82,34243.48
1-1-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.7,16.39,37.5,31960.5,33427.92
1-2-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.6,16.46,38.1,32610.55,33958.3
1-3-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.9,16.62,37.6,32495.42,33583.36
1-4-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46,16.4,38.1,32491.68,33478.36
1-5-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",44.9,16.27,38.8,32826.35,33862.93
1-6-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",44.4,16.57,39,33603.96,34716
1-7-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",44.3,16.59,39.1,33730.79,34903.91
1-8-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",44,16.38,39.7,33814.87,34797.27
1-9-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",44.1,16.46,39.3,33637.66,34461.13
1-10-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",44.3,16.6,40.1,34614.32,35475.5
1-11-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45,16.71,40.6,35278.15,36327.97
1-12-2012,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.7,17.49,40.5,36833.94,38032.48
1-1-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",45.9,16.72,40.6,35299.27,36340.4
1-2-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",46.7,16.95,40.6,35784.84,36541.02
1-3-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",47,17.04,41.2,36506.5,37180.72
1-4-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",47.4,16.98,41.3,36466.25,37178.38
1-5-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",47.4,16.97,40.7,35915.31,36551.61
1-6-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",48,16.93,41.6,36622.98,37182.59
1-7-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",48.9,16.78,41.8,36473.01,37015.74
1-8-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.8,17.25,42.3,37943.1,38461.44
1-9-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.3,17.11,43,38257.96,38735.55
1-10-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.7,17.03,43.2,38256.19,38833.77
1-11-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.8,17.01,43,38034.36,38687.61
1-12-2013,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.6,17.22,42.3,37877.11,38530.96
1-1-2014,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49,16.86,41.8,36646.89,37141.34
1-2-2014,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.1,16.72,42.5,36951.2,37311.77
1-3-2014,CEU3132191801,31321918,"321912,8","Cut stock, resawing lumber, planing, and other millwork, including flooring",49.6,16.55,42.5,36575.5,36696.08
1-3-2006,CEU3132192001,31321920,32192,Wood containers and pallets,60,13.26,36.4,25098.53,29780.57
1-4-2006,CEU3132192001,31321920,32192,Wood containers and pallets,59.8,13.58,37.3,26339.77,30989.68
1-5-2006,CEU3132192001,31321920,32192,Wood containers and pallets,59.6,13.36,37.1,25774.11,30174.42
1-6-2006,CEU3132192001,31321920,32192,Wood containers and pallets,60.2,13.4,36.7,25572.56,29879.44
1-7-2006,CEU3132192001,31321920,32192,Wood containers and pallets,59.9,13.45,37.8,26437.32,30798.77
1-8-2006,CEU3132192001,31321920,32192,Wood containers and pallets,60,13.56,37.4,26371.49,30661.8
1-9-2006,CEU3132192001,31321920,32192,Wood containers and pallets,59.5,14.06,37.5,27417,32034.51
1-10-2006,CEU3132192001,31321920,32192,Wood containers and pallets,58.9,14.14,37,27205.36,31960.5
1-11-2006,CEU3132192001,31321920,32192,Wood containers and pallets,59.8,13.37,37.8,26280.07,30919.45
1-12-2006,CEU3132192001,31321920,32192,Wood containers and pallets,60.1,13.19,38,26063.44,30618.99
1-1-2007,CEU3132192001,31321920,32192,Wood containers and pallets,61.4,13.68,37.6,26747.14,31326.56
1-2-2007,CEU3132192001,31321920,32192,Wood containers and pallets,60.8,14.33,37.9,28241.56,32900.82
1-3-2007,CEU3132192001,31321920,32192,Wood containers and pallets,60.2,14.07,38,27802.32,32096.85
1-4-2007,CEU3132192001,31321920,32192,Wood containers and pallets,59.8,14.11,37,27147.64,31138.76
1-5-2007,CEU3132192001,31321920,32192,Wood containers and pallets,60.1,14.72,37.7,28857.09,32898.49
1-6-2007,CEU3132192001,31321920,32192,Wood containers and pallets,59.4,14.43,37.7,28288.57,32187.97
1-7-2007,CEU3132192001,31321920,32192,Wood containers and pallets,60.1,14.09,37.2,27255.7,31020.61
1-8-2007,CEU3132192001,31321920,32192,Wood containers and pallets,59.1,14.13,37.7,27700.45,31584.72
1-9-2007,CEU3132192001,31321920,32192,Wood containers and pallets,57.1,14.31,36.1,26862.73,30545.36
1-10-2007,CEU3132192001,31321920,32192,Wood containers and pallets,59.4,13.99,37,26916.76,30541.46
1-11-2007,CEU3132192001,31321920,32192,Wood containers and pallets,59.4,13.72,36.9,26325.94,29694.7
1-12-2007,CEU3132192001,31321920,32192,Wood containers and pallets,59.2,12.92,37.8,25395.55,28664.49
1-1-2008,CEU3132192001,31321920,32192,Wood containers and pallets,59,13.55,37.9,26704.34,29992.66
1-2-2008,CEU3132192001,31321920,32192,Wood containers and pallets,59.2,13.36,37.6,26121.47,29253.07
1-3-2008,CEU3132192001,31321920,32192,Wood containers and pallets,59.3,13.36,38.2,26538.3,29464.47
1-4-2008,CEU3132192001,31321920,32192,Wood containers and pallets,60.1,13.28,38.4,26517.5,29263.9
1-5-2008,CEU3132192001,31321920,32192,Wood containers and pallets,59.5,13.24,38,26162.24,28630.74
1-6-2008,CEU3132192001,31321920,32192,Wood containers and pallets,59.6,13.24,38.3,26368.78,28568.88
1-7-2008,CEU3132192001,31321920,32192,Wood containers and pallets,59.2,13.53,38.3,26946.35,29042.13
1-8-2008,CEU3132192001,31321920,32192,Wood containers and pallets,59,13.54,38,26755.04,28951.51
1-9-2008,CEU3132192001,31321920,32192,Wood containers and pallets,58.3,13.41,39.1,27265.21,29544.43
1-10-2008,CEU3132192001,31321920,32192,Wood containers and pallets,56.7,13.58,38.3,27045.93,29605.87
1-11-2008,CEU3132192001,31321920,32192,Wood containers and pallets,55.4,13.71,37.9,27019.67,30154.68
1-12-2008,CEU3132192001,31321920,32192,Wood containers and pallets,54.3,13.99,37,26916.76,30353.76
1-1-2009,CEU3132192001,31321920,32192,Wood containers and pallets,53.1,14.07,36.7,26851.19,30148.59
1-2-2009,CEU3132192001,31321920,32192,Wood containers and pallets,52.2,13.99,37.8,27498.74,30722.89
1-3-2009,CEU3132192001,31321920,32192,Wood containers and pallets,51.5,14.06,37.8,27636.34,30801.71
1-4-2009,CEU3132192001,31321920,32192,Wood containers and pallets,50.8,14.11,37,27147.64,30181.7
1-5-2009,CEU3132192001,31321920,32192,Wood containers and pallets,51.1,13.94,36.3,26313.14,29169.67
1-6-2009,CEU3132192001,31321920,32192,Wood containers and pallets,50.1,13.94,38.4,27835.39,30594.38
1-7-2009,CEU3132192001,31321920,32192,Wood containers and pallets,49.7,13.91,38.9,28137.15,30975.15
1-8-2009,CEU3132192001,31321920,32192,Wood containers and pallets,50,13.79,39.4,28252.95,31033.03
1-9-2009,CEU3132192001,31321920,32192,Wood containers and pallets,51.6,13.91,39.1,28281.81,31045.32
1-10-2009,CEU3132192001,31321920,32192,Wood containers and pallets,50.2,14.08,39.4,28847.1,31635.38
1-11-2009,CEU3132192001,31321920,32192,Wood containers and pallets,49.1,14.15,39.4,28990.52,31770.17
1-12-2009,CEU3132192001,31321920,32192,Wood containers and pallets,49.2,14.08,39.5,28920.32,31749.16
1-1-2010,CEU3132192001,31321920,32192,Wood containers and pallets,49.6,13.91,40.2,29077.46,31812.95
1-2-2010,CEU3132192001,31321920,32192,Wood containers and pallets,49.6,13.99,40.1,29171.95,31908.37
1-3-2010,CEU3132192001,31321920,32192,Wood containers and pallets,49.7,13.9,39.8,28767.44,31337.24
1-4-2010,CEU3132192001,31321920,32192,Wood containers and pallets,50,13.85,40.1,28880.02,31405.33
1-5-2010,CEU3132192001,31321920,32192,Wood containers and pallets,50.2,14.03,40,29182.4,31709.57
1-6-2010,CEU3132192001,31321920,32192,Wood containers and pallets,51.6,13.95,38.2,27710.28,30139.39
1-7-2010,CEU3132192001,31321920,32192,Wood containers and pallets,51.1,13.98,39,28351.44,30830.24
1-8-2010,CEU3132192001,31321920,32192,Wood containers and pallets,50.8,13.94,39.6,28705.25,31171.95
1-9-2010,CEU3132192001,31321920,32192,Wood containers and pallets,51.3,14.03,40.5,29547.18,32067.57
1-10-2010,CEU3132192001,31321920,32192,Wood containers and pallets,50.4,13.95,41,29741.4,32238.22
1-11-2010,CEU3132192001,31321920,32192,Wood containers and pallets,51.5,14.13,40.8,29978.21,32481.24
1-12-2010,CEU3132192001,31321920,32192,Wood containers and pallets,51.7,14.13,40,29390.4,31789.73
1-1-2011,CEU3132192001,31321920,32192,Wood containers and pallets,51.8,14.2,40.4,29831.36,32113.72
1-2-2011,CEU3132192001,31321920,32192,Wood containers and pallets,52.3,14.28,39.9,29628.14,31738.45
1-3-2011,CEU3132192001,31321920,32192,Wood containers and pallets,52.7,14.32,39.8,29636.67,31441
1-4-2011,CEU3132192001,31321920,32192,Wood containers and pallets,53.1,14.38,39.9,29835.62,31449.54
1-5-2011,CEU3132192001,31321920,32192,Wood containers and pallets,52.2,14.31,39.7,29541.56,30993.78
1-6-2011,CEU3132192001,31321920,32192,Wood containers and pallets,51.9,14,39.6,28828.8,30278.4
1-7-2011,CEU3132192001,31321920,32192,Wood containers and pallets,51.3,14.38,39.7,29686.07,31151.18
1-8-2011,CEU3132192001,31321920,32192,Wood containers and pallets,52.2,14.52,38.8,29295.55,30656.85
1-9-2011,CEU3132192001,31321920,32192,Wood containers and pallets,52.3,14.41,38.6,28923.75,30221.88
1-10-2011,CEU3132192001,31321920,32192,Wood containers and pallets,53,14.54,38.7,29260.3,30636.72
1-11-2011,CEU3132192001,31321920,32192,Wood containers and pallets,53.1,14.11,38.4,28174.85,29525.12
1-12-2011,CEU3132192001,31321920,32192,Wood containers and pallets,53.2,14.49,39.2,29536.42,31028.47
1-1-2012,CEU3132192001,31321920,32192,Wood containers and pallets,53.2,14.74,39,29892.72,31265.2
1-2-2012,CEU3132192001,31321920,32192,Wood containers and pallets,52.8,14.86,38.7,29904.26,31140.17
1-3-2012,CEU3132192001,31321920,32192,Wood containers and pallets,53.1,14.67,39,29750.76,30746.81
1-4-2012,CEU3132192001,31321920,32192,Wood containers and pallets,53.2,14.67,39.3,29979.61,30890
1-5-2012,CEU3132192001,31321920,32192,Wood containers and pallets,53.3,15,38.8,30264,31219.66
1-6-2012,CEU3132192001,31321920,32192,Wood containers and pallets,53.7,14.77,38.7,29723.15,30706.76
1-7-2012,CEU3132192001,31321920,32192,Wood containers and pallets,54,14.65,37.8,28796.04,29797.54
1-8-2012,CEU3132192001,31321920,32192,Wood containers and pallets,53.2,15.04,36.9,28858.75,29697.16
1-9-2012,CEU3132192001,31321920,32192,Wood containers and pallets,53.6,15.12,38,29877.12,30608.53
1-10-2012,CEU3132192001,31321920,32192,Wood containers and pallets,54.1,14.99,38,29620.24,30357.17
1-11-2012,CEU3132192001,31321920,32192,Wood containers and pallets,54.5,15.05,38.5,30130.1,31026.72
1-12-2012,CEU3132192001,31321920,32192,Wood containers and pallets,54.8,14.96,38.6,30027.71,31004.79
1-1-2013,CEU3132192001,31321920,32192,Wood containers and pallets,54.9,14.96,37.6,29249.79,30112.5
1-2-2013,CEU3132192001,31321920,32192,Wood containers and pallets,55.3,14.91,39.1,30315.01,30955.61
1-3-2013,CEU3132192001,31321920,32192,Wood containers and pallets,54.6,15.27,38,30173.52,30730.78
1-4-2013,CEU3132192001,31321920,32192,Wood containers and pallets,53.8,15.11,38.6,30328.79,30921.07
1-5-2013,CEU3132192001,31321920,32192,Wood containers and pallets,53.7,15.13,39.3,30919.67,31467.46
1-6-2013,CEU3132192001,31321920,32192,Wood containers and pallets,53.5,15.26,39.7,31502.74,31984.11
1-7-2013,CEU3132192001,31321920,32192,Wood containers and pallets,52.6,15.41,39,31251.48,31716.52
1-8-2013,CEU3132192001,31321920,32192,Wood containers and pallets,53.1,14.86,40.6,31372.43,31801.01
1-9-2013,CEU3132192001,31321920,32192,Wood containers and pallets,53.3,14.87,40.8,31548.19,31942.02
1-10-2013,CEU3132192001,31321920,32192,Wood containers and pallets,53.1,14.9,40.5,31379.4,31853.15
1-11-2013,CEU3132192001,31321920,32192,Wood containers and pallets,53.3,15.03,40,31262.4,31799.34
1-12-2013,CEU3132192001,31321920,32192,Wood containers and pallets,53.1,14.79,41,31532.28,32076.6
1-1-2014,CEU3132192001,31321920,32192,Wood containers and pallets,53.4,15.29,39.4,31326.15,31748.8
1-2-2014,CEU3132192001,31321920,32192,Wood containers and pallets,54.4,15.43,39.5,31693.22,32002.48
1-3-2014,CEU3132192001,31321920,32192,Wood containers and pallets,53.4,15.56,39.6,32041.15,32146.78
1-3-2006,CEU3132199001,31321990,32199,All other wood products,107.1,16.91,38.4,33765.89,40064.8
1-4-2006,CEU3132199001,31321990,32199,All other wood products,106.5,16.42,37.8,32275.15,37972.88
1-5-2006,CEU3132199001,31321990,32199,All other wood products,106.1,17.06,37.8,33533.14,39258.11
1-6-2006,CEU3132199001,31321990,32199,All other wood products,104.1,16.6,37.2,32111.04,37519.11
1-7-2006,CEU3132199001,31321990,32199,All other wood products,103.7,17.03,36.8,32588.61,37964.85
1-8-2006,CEU3132199001,31321990,32199,All other wood products,103.5,16.46,37.9,32439.37,37716.85
1-9-2006,CEU3132199001,31321990,32199,All other wood products,103.1,16.96,37.4,32983.81,38538.88
1-10-2006,CEU3132199001,31321990,32199,All other wood products,100.4,16.53,37.2,31975.63,37564.55
1-11-2006,CEU3132199001,31321990,32199,All other wood products,98.4,16.6,37.8,32628.96,38389.14
1-12-2006,CEU3132199001,31321990,32199,All other wood products,96.4,16.74,37.4,32555.95,38246.3
1-1-2007,CEU3132199001,31321990,32199,All other wood products,93.9,16.77,38,33137.52,38811.05
1-2-2007,CEU3132199001,31321990,32199,All other wood products,92.4,17.03,37.7,33385.61,38893.53
1-3-2007,CEU3132199001,31321990,32199,All other wood products,92.3,16.93,38.1,33541.71,38722.79
1-4-2007,CEU3132199001,31321990,32199,All other wood products,92.1,16.95,38.7,34110.18,39124.9
1-5-2007,CEU3132199001,31321990,32199,All other wood products,92.8,17.28,38.3,34414.85,39234.61
1-6-2007,CEU3132199001,31321990,32199,All other wood products,93.3,17.48,38.8,35267.65,40129.07
1-7-2007,CEU3132199001,31321990,32199,All other wood products,92.8,18.63,38.8,37587.89,42780.02
1-8-2007,CEU3132199001,31321990,32199,All other wood products,91.8,18.12,38.3,36087.79,41148.18
1-9-2007,CEU3132199001,31321990,32199,All other wood products,90.5,17.9,38.6,35928.88,40854.39
1-10-2007,CEU3132199001,31321990,32199,All other wood products,88.5,18.1,38.3,36047.96,40902.3
1-11-2007,CEU3132199001,31321990,32199,All other wood products,87.5,17.99,38.1,35641.79,40202.64
1-12-2007,CEU3132199001,31321990,32199,All other wood products,87.9,18.48,38.4,36900.86,41650.77
1-1-2008,CEU3132199001,31321990,32199,All other wood products,89.2,17.78,36.4,33653.98,37798.07
1-2-2008,CEU3132199001,31321990,32199,All other wood products,86.3,17.75,37.3,34427.9,38555.32
1-3-2008,CEU3132199001,31321990,32199,All other wood products,86,17.83,37.2,34490.35,38293.32
1-4-2008,CEU3132199001,31321990,32199,All other wood products,84,17.74,36,33209.28,36648.73
1-5-2008,CEU3132199001,31321990,32199,All other wood products,82.5,17.39,37,33458.36,36615.27
1-6-2008,CEU3132199001,31321990,32199,All other wood products,80.3,17.38,37.3,33710.25,36522.89
1-7-2008,CEU3132199001,31321990,32199,All other wood products,78.7,17.05,38.1,33779.46,36406.7
1-8-2008,CEU3132199001,31321990,32199,All other wood products,77.9,17.21,38,34006.96,36798.79
1-9-2008,CEU3132199001,31321990,32199,All other wood products,76.3,17.12,38,33829.12,36657.04
1-10-2008,CEU3132199001,31321990,32199,All other wood products,73.4,17.37,37.9,34232.8,37472.99
1-11-2008,CEU3132199001,31321990,32199,All other wood products,70.5,17.45,38.1,34571.94,38583.21
1-12-2008,CEU3132199001,31321990,32199,All other wood products,68.1,17.56,36.3,33146.26,37378.7
1-1-2009,CEU3132199001,31321990,32199,All other wood products,62.8,17.69,36.5,33575.62,37698.81
1-2-2009,CEU3132199001,31321990,32199,All other wood products,55,17.73,37.4,34481.3,38524.13
1-3-2009,CEU3132199001,31321990,32199,All other wood products,60.7,17.58,36.5,33366.84,37188.57
1-4-2009,CEU3132199001,31321990,32199,All other wood products,60.2,17.73,35.6,32821.78,36489.99
1-5-2009,CEU3132199001,31321990,32199,All other wood products,57.1,17.93,35.6,33192.02,36795.31
1-6-2009,CEU3132199001,31321990,32199,All other wood products,54.2,17.87,36.2,33638.49,36972.66
1-7-2009,CEU3132199001,31321990,32199,All other wood products,55.2,18.07,36.2,34014.97,37445.83
1-8-2009,CEU3132199001,31321990,32199,All other wood products,55.4,18.07,35.7,33545.15,36845.98
1-9-2009,CEU3132199001,31321990,32199,All other wood products,54.3,18.41,35.7,34176.32,37515.8
1-10-2009,CEU3132199001,31321990,32199,All other wood products,55.6,17.88,36.2,33657.31,36910.52
1-11-2009,CEU3132199001,31321990,32199,All other wood products,55.7,17.82,36,33359.04,36557.55
1-12-2009,CEU3132199001,31321990,32199,All other wood products,55.5,17.81,36.7,33988.61,37313.2
1-1-2010,CEU3132199001,31321990,32199,All other wood products,55.5,17.68,37.3,34292.13,37518.19
1-2-2010,CEU3132199001,31321990,32199,All other wood products,54.2,17.49,37.3,33923.61,37105.75
1-3-2010,CEU3132199001,31321990,32199,All other wood products,52.6,17.64,37.4,34306.27,37370.86
1-4-2010,CEU3132199001,31321990,32199,All other wood products,53.5,17.57,38.1,34809.68,37853.49
1-5-2010,CEU3132199001,31321990,32199,All other wood products,53.9,17.17,39.8,35535.03,38612.33
1-6-2010,CEU3132199001,31321990,32199,All other wood products,54.8,17.45,38.3,34753.42,37799.94
1-7-2010,CEU3132199001,31321990,32199,All other wood products,54.3,17.4,38,34382.4,37388.5
1-8-2010,CEU3132199001,31321990,32199,All other wood products,52.4,17.09,38.6,34303.05,37250.78
1-9-2010,CEU3132199001,31321990,32199,All other wood products,51.9,17.31,38.8,34924.66,37903.75
1-10-2010,CEU3132199001,31321990,32199,All other wood products,50.8,17.14,38.5,34314.28,37195
1-11-2010,CEU3132199001,31321990,32199,All other wood products,50.5,17.24,39,34962.72,37881.94
1-12-2010,CEU3132199001,31321990,32199,All other wood products,50,17.06,39.3,34863.82,37709.97
1-1-2011,CEU3132199001,31321990,32199,All other wood products,49.2,17.63,39.8,36487.05,39278.63
1-2-2011,CEU3132199001,31321990,32199,All other wood products,51.1,17.39,39.4,35628.63,38166.33
1-3-2011,CEU3132199001,31321990,32199,All other wood products,50.5,17.37,40.9,36942.52,39191.63
1-4-2011,CEU3132199001,31321990,32199,All other wood products,49.5,17.46,39.8,36135.21,38089.9
1-5-2011,CEU3132199001,31321990,32199,All other wood products,49.6,17.47,39.4,35792.54,37552.03
1-6-2011,CEU3132199001,31321990,32199,All other wood products,49.6,17.66,38.9,35722.65,37518.89
1-7-2011,CEU3132199001,31321990,32199,All other wood products,49.5,17.59,38.6,35306.65,37049.15
1-8-2011,CEU3132199001,31321990,32199,All other wood products,49.3,17.93,38.4,35802.63,37466.29
1-9-2011,CEU3132199001,31321990,32199,All other wood products,49.5,17.38,38.9,35156.27,36734.11
1-10-2011,CEU3132199001,31321990,32199,All other wood products,49,17.49,40.1,36470.15,38185.73
1-11-2011,CEU3132199001,31321990,32199,All other wood products,49.5,17.44,39.3,35640.38,37348.43
1-12-2011,CEU3132199001,31321990,32199,All other wood products,49.5,17.29,39.6,35603.57,37402.11
1-1-2012,CEU3132199001,31321990,32199,All other wood products,50.7,17.3,40.2,36163.92,37824.34
1-2-2012,CEU3132199001,31321990,32199,All other wood products,51.9,17.19,38.9,34771.93,36209.01
1-3-2012,CEU3132199001,31321990,32199,All other wood products,50.9,17.37,38.6,34865.06,36032.34
1-4-2012,CEU3132199001,31321990,32199,All other wood products,50.6,17.34,38.5,34714.68,35768.86
1-5-2012,CEU3132199001,31321990,32199,All other wood products,50.8,17.41,38.7,35035.88,36142.23
1-6-2012,CEU3132199001,31321990,32199,All other wood products,49.6,17.38,37.9,34252.5,35386
1-7-2012,CEU3132199001,31321990,32199,All other wood products,49.5,17.61,37.8,34614.21,35818.06
1-8-2012,CEU3132199001,31321990,32199,All other wood products,49.3,17.71,38,34994.96,36011.64
1-9-2012,CEU3132199001,31321990,32199,All other wood products,49.7,18.04,37,34708.96,35558.66
1-10-2012,CEU3132199001,31321990,32199,All other wood products,50.4,18.05,38,35666.8,36554.17
1-11-2012,CEU3132199001,31321990,32199,All other wood products,50.9,18.31,38.3,36466.2,37551.37
1-12-2012,CEU3132199001,31321990,32199,All other wood products,51,18.43,38.3,36705.19,37899.54
1-1-2013,CEU3132199001,31321990,32199,All other wood products,51.9,18.49,38.7,37209.28,38306.75
1-2-2013,CEU3132199001,31321990,32199,All other wood products,53,18.77,39.8,38846.39,39667.27
1-3-2013,CEU3132199001,31321990,32199,All other wood products,52.4,18.65,40.2,38985.96,39705.98
1-4-2013,CEU3132199001,31321990,32199,All other wood products,52.8,18.75,40.5,39487.5,40258.64
1-5-2013,CEU3132199001,31321990,32199,All other wood products,52.2,18.62,41,39697.84,40401.15
1-6-2013,CEU3132199001,31321990,32199,All other wood products,53.3,18.49,41.3,39709.13,40315.89
1-7-2013,CEU3132199001,31321990,32199,All other wood products,53.3,18.37,41.4,39546.94,40135.41
1-8-2013,CEU3132199001,31321990,32199,All other wood products,52.4,18.34,41.7,39768.46,40311.73
1-9-2013,CEU3132199001,31321990,32199,All other wood products,53.6,17.81,42.2,39082.27,39570.15
1-10-2013,CEU3132199001,31321990,32199,All other wood products,54.5,18.49,42,40382.16,40991.84
1-11-2013,CEU3132199001,31321990,32199,All other wood products,54.6,18.57,42.4,40943.14,41646.34
1-12-2013,CEU3132199001,31321990,32199,All other wood products,53.8,18.88,40.9,40153.98,40847.14
1-1-2014,CEU3132199001,31321990,32199,All other wood products,56.5,18.79,41.5,40548.82,41095.91
1-2-2014,CEU3132199001,31321990,32199,All other wood products,54.9,18.72,40.9,39813.7,40202.2
1-3-2014,CEU3132199001,31321990,32199,All other wood products,54.4,18.68,41.4,40214.3,40346.88
1-3-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,514.8,18.28,40.4,38402.63,45566.5
1-4-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,515.9,18.34,41.1,39196.25,46115.79
1-5-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,510.3,17.83,41.6,38569.86,45154.73
1-6-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,508.1,17.82,41.7,38640.89,45148.7
1-7-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,510.2,17.85,41.7,38705.94,45091.38
1-8-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,509.1,17.88,41.4,38492.06,44754.24
1-9-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,504.9,17.97,41.5,38779.26,45310.38
1-10-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,506.8,18,41.6,38937.6,45743.39
1-11-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,506.6,18.06,41.4,38879.57,45743.21
1-12-2006,CEU3132700001,31327000,327,Nonmetallic mineral products,508.3,18.23,42,39814.32,46773.34
1-1-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,508.6,18.3,41.6,39586.56,46364.24
1-2-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,507.7,18.5,41.4,39826.8,46397.38
1-3-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,508.1,18.58,41.5,40095.64,46289.07
1-4-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,504.8,18.68,41.3,40117.17,46015.01
1-5-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,505,18.67,41,39804.44,45379
1-6-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,503.4,18.81,40.9,40005.11,45519.56
1-7-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,501.9,18.89,40.8,40077.02,45612.99
1-8-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,495.5,18.88,40.8,40055.81,45672.6
1-9-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,495.4,18.85,41,40188.2,45697.62
1-10-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,494,18.99,41,40486.68,45938.75
1-11-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,492.6,19.02,41.5,41045.16,46297.45
1-12-2007,CEU3132700001,31327000,327,Nonmetallic mineral products,488.9,18.98,41.3,40761.45,46008.29
1-1-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,489,19,41.8,41298.4,46383.81
1-2-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,486.7,18.92,41.7,41026.13,45944.59
1-3-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,481.8,19.03,42,41561.52,46144.17
1-4-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,477.2,19.07,41.6,41252.22,45524.68
1-5-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,471.9,19.18,41.3,41190.97,45077.48
1-6-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,467.4,19.21,41.3,41255.39,44697.57
1-7-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,462.8,19.16,41.2,41048.38,44240.98
1-8-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,460.4,19.27,41.1,41183.84,44564.86
1-9-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,455.4,19.4,40.5,40856.4,44271.76
1-10-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,453.9,19.41,40.4,40776.53,44636.09
1-11-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,444.1,19.47,39.9,40396.36,45083.42
1-12-2008,CEU3132700001,31327000,327,Nonmetallic mineral products,434.3,19.53,39.6,40216.18,45351.38
1-1-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,425.3,19.44,38.8,39222.14,44038.74
1-2-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,414.8,19.64,40.6,41463.97,46325.49
1-3-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,405.1,19.98,38.9,40415.54,45044.61
1-4-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,402.9,19.79,39.2,40339.94,44848.39
1-5-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,396.4,19.74,39,40032.72,44378.63
1-6-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,391.6,19.81,39.3,40483.71,44496.37
1-7-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,390.3,19.9,39.5,40874.6,44997.34
1-8-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,389.2,19.93,39.6,41039.86,45078.16
1-9-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,386.2,19.97,39.7,41226.07,45254.39
1-10-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,378.9,20.11,39.2,40992.22,44954.41
1-11-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,376.6,20.16,40.8,42771.46,46872.44
1-12-2009,CEU3132700001,31327000,327,Nonmetallic mineral products,376.1,20.08,39.3,41035.49,45049.37
1-1-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,372.1,20.16,39.2,41094.14,44960.11
1-2-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,370.3,20.2,38.9,40860.56,44693.41
1-3-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,368.6,20.26,39.2,41297.98,44987.14
1-4-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,371.4,20.35,39.6,41904.72,45568.92
1-5-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,373.6,20.39,39.7,42093.12,45738.34
1-6-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,373.2,20.32,39.5,41737.28,45396.01
1-7-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,370.9,20.4,39.5,41901.6,45565.11
1-8-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,370.8,20.49,39.7,42299.55,45934.44
1-9-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,372.7,20.48,39.8,42385.41,46000.91
1-10-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,371.2,20.45,40.5,43067.7,46683.28
1-11-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,369.6,20.51,40.7,43407.36,47031.67
1-12-2010,CEU3132700001,31327000,327,Nonmetallic mineral products,364.6,20.87,40.5,43952.22,47540.32
1-1-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,363.9,21.13,39.7,43620.77,46958.14
1-2-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,364.5,21.1,40.4,44326.88,47484.12
1-3-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,364.8,21.01,40.2,43919.3,46593.18
1-4-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,366.2,20.96,40.3,43923.78,46299.78
1-5-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,368.2,20.92,40.9,44492.66,46679.84
1-6-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,369.3,21.01,40.7,44465.56,46701.43
1-7-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,368.8,21.08,41,44942.56,47160.63
1-8-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,367.9,21.08,40.9,44832.95,46916.22
1-9-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,366.3,21.14,41.1,45180.41,47208.15
1-10-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,366.1,21.56,40.8,45741.7,47893.42
1-11-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,364.9,20.99,40.6,44314.09,46437.83
1-12-2011,CEU3132700001,31327000,327,Nonmetallic mineral products,365.7,20.97,41.1,44817.09,47081.05
1-1-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,368.2,21.08,41.5,45490.64,47579.28
1-2-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,369.3,21.02,41.7,45579.77,47463.52
1-3-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,368,20.98,41.5,45274.84,46790.63
1-4-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,367.6,21.08,41.9,45929.11,47323.84
1-5-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,364.6,21.37,40.5,45005.22,46426.38
1-6-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,363.6,21.38,41.1,45693.34,47205.44
1-7-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,363.6,21.47,41.1,45885.68,47481.54
1-8-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,362.1,21.56,40.9,45853.81,47185.96
1-9-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,362,21.66,41,46179.12,47309.62
1-10-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,363.8,21.42,41.2,45890.21,47031.93
1-11-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,365.5,21.53,41.5,46461.74,47844.36
1-12-2012,CEU3132700001,31327000,327,Nonmetallic mineral products,368.9,21.71,42,47414.64,48957.46
1-1-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,369.7,21.62,41.4,46543.54,47916.32
1-2-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,371.9,21.71,41.9,47301.75,48301.3
1-3-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,372.9,21.86,41.9,47628.57,48508.2
1-4-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,372,21.92,41.6,47417.34,48343.34
1-5-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,373,22.02,41.8,47862.67,48710.64
1-6-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,372.3,22.1,42,48266.4,49003.92
1-7-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,373.4,22.12,41.5,47734.96,48445.28
1-8-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,375,22.14,41.7,48008.38,48664.22
1-9-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,375.1,22.24,41.8,48340.86,48944.32
1-10-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,375.4,22.49,42,49118.16,49859.73
1-11-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,380.4,22.48,41.9,48979.43,49820.66
1-12-2013,CEU3132700001,31327000,327,Nonmetallic mineral products,378.3,22.49,41.8,48884.27,49728.13
1-1-2014,CEU3132700001,31327000,327,Nonmetallic mineral products,380.2,22.38,41.7,48528.79,49183.54
1-2-2014,CEU3132700001,31327000,327,Nonmetallic mineral products,379.2,22.64,42.1,49563.49,50047.13
1-3-2014,CEU3132700001,31327000,327,Nonmetallic mineral products,381,22.65,42,49467.6,49630.68
1-4-2014,CEU3132700001,31327000,327,Nonmetallic mineral products,382.8,22.54,42.2,49461.78,49461.78
1-3-2006,CEU3132710001,31327100,3271,Clay products and refractories,60.9,16.37,40.2,34219.85,40603.44
1-4-2006,CEU3132710001,31327100,3271,Clay products and refractories,60.7,16.51,40,34340.8,40403.19
1-5-2006,CEU3132710001,31327100,3271,Clay products and refractories,60.9,16.52,39.6,34017.98,39825.74
1-6-2006,CEU3132710001,31327100,3271,Clay products and refractories,61.7,16.99,41,36222.68,42323.23
1-7-2006,CEU3132710001,31327100,3271,Clay products and refractories,61.6,16.71,41.2,35799.5,41705.46
1-8-2006,CEU3132710001,31327100,3271,Clay products and refractories,60,16.63,41.6,35974.02,41826.54
1-9-2006,CEU3132710001,31327100,3271,Clay products and refractories,58.7,16.72,41.2,35820.93,41853.82
1-10-2006,CEU3132710001,31327100,3271,Clay products and refractories,59.9,16.64,41.7,36082.18,42388.87
1-11-2006,CEU3132710001,31327100,3271,Clay products and refractories,60,16.85,41.1,36011.82,42369.2
1-12-2006,CEU3132710001,31327100,3271,Clay products and refractories,59.8,16.63,41.4,35801.06,42058.62
1-1-2007,CEU3132710001,31327100,3271,Clay products and refractories,59.5,17.42,40.7,36867.69,43179.87
1-2-2007,CEU3132710001,31327100,3271,Clay products and refractories,59.6,17.86,40.8,37891.78,44143.11
1-3-2007,CEU3132710001,31327100,3271,Clay products and refractories,58.6,18.06,40.5,38034.36,43909.39
1-4-2007,CEU3132710001,31327100,3271,Clay products and refractories,58.2,18.42,39.9,38217.82,43836.42
1-5-2007,CEU3132710001,31327100,3271,Clay products and refractories,57.4,18.59,39.3,37990.52,43311.05
1-6-2007,CEU3132710001,31327100,3271,Clay products and refractories,56.7,18.66,38.9,37745.45,42948.42
1-7-2007,CEU3132710001,31327100,3271,Clay products and refractories,56.6,18.72,39,37964.16,43208.27
1-8-2007,CEU3132710001,31327100,3271,Clay products and refractories,55.9,18.79,38.6,37715.29,43003.89
1-9-2007,CEU3132710001,31327100,3271,Clay products and refractories,56.3,18.57,39,37659.96,42822.79
1-10-2007,CEU3132710001,31327100,3271,Clay products and refractories,55.9,18.67,38.2,37086.09,42080.22
1-11-2007,CEU3132710001,31327100,3271,Clay products and refractories,54.7,18.61,39.7,38418.48,43334.65
1-12-2007,CEU3132710001,31327100,3271,Clay products and refractories,54.2,18.51,38.2,36768.27,41501.11
1-1-2008,CEU3132710001,31327100,3271,Clay products and refractories,52.8,18.46,39.2,37628.86,42262.41
1-2-2008,CEU3132710001,31327100,3271,Clay products and refractories,53.6,18.42,38.9,37259.98,41726.92
1-3-2008,CEU3132710001,31327100,3271,Clay products and refractories,54,18.7,39.3,38215.32,42429.02
1-4-2008,CEU3132710001,31327100,3271,Clay products and refractories,53.9,18.59,39.4,38087.19,42031.84
1-5-2008,CEU3132710001,31327100,3271,Clay products and refractories,53.3,18.78,39.4,38476.46,42106.86
1-6-2008,CEU3132710001,31327100,3271,Clay products and refractories,53.1,19.07,40,39665.6,42975.13
1-7-2008,CEU3132710001,31327100,3271,Clay products and refractories,51.2,19.01,39.8,39343.1,42403.06
1-8-2008,CEU3132710001,31327100,3271,Clay products and refractories,51.9,19.37,39.7,39987.43,43270.22
1-9-2008,CEU3132710001,31327100,3271,Clay products and refractories,50.8,19.7,39.4,40361.36,43735.34
1-10-2008,CEU3132710001,31327100,3271,Clay products and refractories,51.2,19.89,39.7,41060.91,44947.4
1-11-2008,CEU3132710001,31327100,3271,Clay products and refractories,49.9,20.09,39.1,40846.99,45586.34
1-12-2008,CEU3132710001,31327100,3271,Clay products and refractories,47.7,20.45,38,40409.2,45569.05
1-1-2009,CEU3132710001,31327100,3271,Clay products and refractories,46.4,20.2,39,40965.6,45996.3
1-2-2009,CEU3132710001,31327100,3271,Clay products and refractories,45.2,20,38.4,39936,44618.38
1-3-2009,CEU3132710001,31327100,3271,Clay products and refractories,43.9,19.99,37.8,39292.34,43792.76
1-4-2009,CEU3132710001,31327100,3271,Clay products and refractories,44.2,19.26,38.3,38358.21,42645.18
1-5-2009,CEU3132710001,31327100,3271,Clay products and refractories,43.9,19.7,38.2,39132.08,43380.22
1-6-2009,CEU3132710001,31327100,3271,Clay products and refractories,43.4,20.91,36.5,39687.18,43620.88
1-7-2009,CEU3132710001,31327100,3271,Clay products and refractories,43.9,19.73,37.5,38473.5,42354.06
1-8-2009,CEU3132710001,31327100,3271,Clay products and refractories,44,19.59,38,38709.84,42518.88
1-9-2009,CEU3132710001,31327100,3271,Clay products and refractories,42.7,19.84,38,39203.84,43034.57
1-10-2009,CEU3132710001,31327100,3271,Clay products and refractories,41.7,19.97,37.6,39045.34,42819.35
1-11-2009,CEU3132710001,31327100,3271,Clay products and refractories,41.7,20.69,38.1,40991.03,44921.3
1-12-2009,CEU3132710001,31327100,3271,Clay products and refractories,42.1,20.03,38.4,39995.9,43908.09
1-1-2010,CEU3132710001,31327100,3271,Clay products and refractories,42.1,20.43,37.6,39944.73,43702.57
1-2-2010,CEU3132710001,31327100,3271,Clay products and refractories,42.1,20.7,37.8,40687.92,44504.58
1-3-2010,CEU3132710001,31327100,3271,Clay products and refractories,41,20.68,38.4,41293.82,44982.61
1-4-2010,CEU3132710001,31327100,3271,Clay products and refractories,40.5,20.95,38.6,42050.84,45727.82
1-5-2010,CEU3132710001,31327100,3271,Clay products and refractories,40.3,21.04,38.8,42450.3,46126.46
1-6-2010,CEU3132710001,31327100,3271,Clay products and refractories,40,20.84,39,42263.52,45968.38
1-7-2010,CEU3132710001,31327100,3271,Clay products and refractories,39.8,20.97,39.3,42854.29,46601.1
1-8-2010,CEU3132710001,31327100,3271,Clay products and refractories,40.4,20.98,39.1,42656.54,46322.1
1-9-2010,CEU3132710001,31327100,3271,Clay products and refractories,41,20.96,39.3,42833.86,46487.61
1-10-2010,CEU3132710001,31327100,3271,Clay products and refractories,41,20.98,39.7,43311.11,46947.13
1-11-2010,CEU3132710001,31327100,3271,Clay products and refractories,40.9,20.77,40.7,43957.63,47627.88
1-12-2010,CEU3132710001,31327100,3271,Clay products and refractories,41,20.49,40.8,43471.59,47020.45
1-1-2011,CEU3132710001,31327100,3271,Clay products and refractories,41,20.75,40.5,43699.5,47042.89
1-2-2011,CEU3132710001,31327100,3271,Clay products and refractories,40.5,20.86,41.2,44690.46,47873.6
1-3-2011,CEU3132710001,31327100,3271,Clay products and refractories,40.7,21.04,39.4,43106.75,45731.16
1-4-2011,CEU3132710001,31327100,3271,Clay products and refractories,41,20.85,40,43368,45713.94
1-5-2011,CEU3132710001,31327100,3271,Clay products and refractories,40.8,20.51,41.3,44047.28,46212.56
1-6-2011,CEU3132710001,31327100,3271,Clay products and refractories,41.4,20.28,40.7,42920.59,45078.77
1-7-2011,CEU3132710001,31327100,3271,Clay products and refractories,41,20.69,40.6,43680.73,45836.52
1-8-2011,CEU3132710001,31327100,3271,Clay products and refractories,40.9,20.73,40.5,43657.38,45686.03
1-9-2011,CEU3132710001,31327100,3271,Clay products and refractories,40.6,20.63,40.9,43875.88,45845.07
1-10-2011,CEU3132710001,31327100,3271,Clay products and refractories,40.7,20.63,40.7,43661.33,45715.19
1-11-2011,CEU3132710001,31327100,3271,Clay products and refractories,40.9,20.62,39.8,42675.15,44720.34
1-12-2011,CEU3132710001,31327100,3271,Clay products and refractories,40.1,20.78,39.2,42357.95,44497.7
1-1-2012,CEU3132710001,31327100,3271,Clay products and refractories,40.3,20.83,40,43326.4,45315.67
1-2-2012,CEU3132710001,31327100,3271,Clay products and refractories,41,20.56,40.7,43513.18,45311.53
1-3-2012,CEU3132710001,31327100,3271,Clay products and refractories,40.4,20.66,39.7,42650.5,44078.43
1-4-2012,CEU3132710001,31327100,3271,Clay products and refractories,40.2,20.85,39.9,43259.58,44573.24
1-5-2012,CEU3132710001,31327100,3271,Clay products and refractories,40.3,21.15,38.8,42672.24,44019.72
1-6-2012,CEU3132710001,31327100,3271,Clay products and refractories,40.2,21.27,38.8,42914.35,44334.5
1-7-2012,CEU3132710001,31327100,3271,Clay products and refractories,39.9,21.26,39.5,43668.04,45186.77
1-8-2012,CEU3132710001,31327100,3271,Clay products and refractories,39.5,21.38,39.4,43803.34,45075.93
1-9-2012,CEU3132710001,31327100,3271,Clay products and refractories,39.4,21.27,39.2,43356.77,44418.17
1-10-2012,CEU3132710001,31327100,3271,Clay products and refractories,39.4,20.98,39.8,43420.21,44500.47
1-11-2012,CEU3132710001,31327100,3271,Clay products and refractories,39.5,21.36,39.4,43762.37,45064.66
1-12-2012,CEU3132710001,31327100,3271,Clay products and refractories,39.8,21.4,40.4,44957.12,46419.98
1-1-2013,CEU3132710001,31327100,3271,Clay products and refractories,39.1,21.19,40.3,44405.77,45715.49
1-2-2013,CEU3132710001,31327100,3271,Clay products and refractories,39.5,21.57,40.3,45202.09,46157.28
1-3-2013,CEU3132710001,31327100,3271,Clay products and refractories,39.7,21.22,41.4,45682.41,46526.11
1-4-2013,CEU3132710001,31327100,3271,Clay products and refractories,39.8,21.11,41.4,45445.61,46333.1
1-5-2013,CEU3132710001,31327100,3271,Clay products and refractories,40.2,21.45,41.5,46289.1,47109.19
1-6-2013,CEU3132710001,31327100,3271,Clay products and refractories,39.3,21.49,42,46934.16,47651.32
1-7-2013,CEU3132710001,31327100,3271,Clay products and refractories,39.3,21.77,40.8,46187.23,46874.52
1-8-2013,CEU3132710001,31327100,3271,Clay products and refractories,38.8,21.12,41.6,45686.79,46310.91
1-9-2013,CEU3132710001,31327100,3271,Clay products and refractories,38.4,21.46,41.3,46087.5,46662.83
1-10-2013,CEU3132710001,31327100,3271,Clay products and refractories,38.4,21.35,41.2,45740.24,46430.81
1-11-2013,CEU3132710001,31327100,3271,Clay products and refractories,39.5,21.2,41.6,45859.84,46647.49
1-12-2013,CEU3132710001,31327100,3271,Clay products and refractories,39.2,21.42,41.5,46224.36,47022.3
1-1-2014,CEU3132710001,31327100,3271,Clay products and refractories,39.8,21.42,41.4,46112.98,46735.13
1-2-2014,CEU3132710001,31327100,3271,Clay products and refractories,39.2,21.85,42.4,48174.88,48644.97
1-3-2014,CEU3132710001,31327100,3271,Clay products and refractories,39,21.48,42.9,47917.59,48075.56
1-3-2006,CEU3132720001,31327200,3272,Glass and glass products,105.4,19.09,40.4,40104.27,47585.59
1-4-2006,CEU3132720001,31327200,3272,Glass and glass products,104.5,19.09,40.6,40302.81,47417.7
1-5-2006,CEU3132720001,31327200,3272,Glass and glass products,103.5,19.14,40.6,40408.37,47307.13
1-6-2006,CEU3132720001,31327200,3272,Glass and glass products,103.2,19.1,40.5,40224.6,46999.14
1-7-2006,CEU3132720001,31327200,3272,Glass and glass products,102.6,19.03,41.2,40769.87,47495.8
1-8-2006,CEU3132720001,31327200,3272,Glass and glass products,100.4,18.97,41.1,40542.68,47138.47
1-9-2006,CEU3132720001,31327200,3272,Glass and glass products,100.7,18.97,40.8,40246.75,47025.03
1-10-2006,CEU3132720001,31327200,3272,Glass and glass products,100.4,19.02,41.4,40946.26,48103.13
1-11-2006,CEU3132720001,31327200,3272,Glass and glass products,99.6,19.32,40.6,40788.38,47989
1-12-2006,CEU3132720001,31327200,3272,Glass and glass products,99.9,19.16,41.3,41148.02,48340.15
1-1-2007,CEU3132720001,31327200,3272,Glass and glass products,100.8,19.05,41.2,40812.72,47800.34
1-2-2007,CEU3132720001,31327200,3272,Glass and glass products,101.2,18.96,41.8,41211.46,48010.47
1-3-2007,CEU3132720001,31327200,3272,Glass and glass products,101.8,18.9,41.5,40786.2,47086.3
1-4-2007,CEU3132720001,31327200,3272,Glass and glass products,100.6,19.13,41.8,41580.97,47694.01
1-5-2007,CEU3132720001,31327200,3272,Glass and glass products,99.8,19.19,41.5,41412.02,47211.72
1-6-2007,CEU3132720001,31327200,3272,Glass and glass products,99.6,19.1,41.7,41416.44,47125.43
1-7-2007,CEU3132720001,31327200,3272,Glass and glass products,99,19.31,41.1,41269.33,46970
1-8-2007,CEU3132720001,31327200,3272,Glass and glass products,97.7,19.24,40.8,40819.59,46543.48
1-9-2007,CEU3132720001,31327200,3272,Glass and glass products,98.5,19.24,41.6,41619.97,47325.67
1-10-2007,CEU3132720001,31327200,3272,Glass and glass products,98.5,19.02,41.1,40649.54,46123.54
1-11-2007,CEU3132720001,31327200,3272,Glass and glass products,99.8,19.08,41.6,41273.86,46555.4
1-12-2007,CEU3132720001,31327200,3272,Glass and glass products,99.8,19.2,42,41932.8,47330.42
1-1-2008,CEU3132720001,31327200,3272,Glass and glass products,100.7,19.03,43.1,42650.04,47901.88
1-2-2008,CEU3132720001,31327200,3272,Glass and glass products,99.3,18.76,41.7,40679.18,45556.05
1-3-2008,CEU3132720001,31327200,3272,Glass and glass products,98.2,18.85,42,41168.4,45707.7
1-4-2008,CEU3132720001,31327200,3272,Glass and glass products,98.4,18.37,41.5,39642.46,43748.19
1-5-2008,CEU3132720001,31327200,3272,Glass and glass products,98.4,18.43,41.9,40155.29,43944.08
1-6-2008,CEU3132720001,31327200,3272,Glass and glass products,98,18.52,42.2,40640.29,44031.14
1-7-2008,CEU3132720001,31327200,3272,Glass and glass products,96.8,18.35,41.5,39599.3,42679.19
1-8-2008,CEU3132720001,31327200,3272,Glass and glass products,96.7,18.32,42.3,40296.67,43604.85
1-9-2008,CEU3132720001,31327200,3272,Glass and glass products,95.9,18.32,41.2,39248.77,42529.74
1-10-2008,CEU3132720001,31327200,3272,Glass and glass products,94.8,18.71,40.8,39695.14,43452.35
1-11-2008,CEU3132720001,31327200,3272,Glass and glass products,94.4,18.92,40.2,39550.37,44139.27
1-12-2008,CEU3132720001,31327200,3272,Glass and glass products,91.2,18.64,39.9,38674.27,43612.59
1-1-2009,CEU3132720001,31327200,3272,Glass and glass products,89.5,18.89,39.4,38701.83,43454.53
1-2-2009,CEU3132720001,31327200,3272,Glass and glass products,88.2,19.25,39.8,39839.8,44510.9
1-3-2009,CEU3132720001,31327200,3272,Glass and glass products,86.1,19.56,37.8,38447.14,42850.75
1-4-2009,CEU3132720001,31327200,3272,Glass and glass products,85.4,19.49,39.2,39728.41,44168.52
1-5-2009,CEU3132720001,31327200,3272,Glass and glass products,85.4,19.55,39.2,39850.72,44176.88
1-6-2009,CEU3132720001,31327200,3272,Glass and glass products,83.4,19.24,39.3,39318.86,43216.06
1-7-2009,CEU3132720001,31327200,3272,Glass and glass products,82.9,19.59,40.5,41256.54,45417.8
1-8-2009,CEU3132720001,31327200,3272,Glass and glass products,82.6,19.75,40.6,41696.2,45799.09
1-9-2009,CEU3132720001,31327200,3272,Glass and glass products,81.6,19.77,40.8,41944.03,46042.51
1-10-2009,CEU3132720001,31327200,3272,Glass and glass products,81,19.67,40.8,41731.87,45765.55
1-11-2009,CEU3132720001,31327200,3272,Glass and glass products,80.6,19.67,40.8,41731.87,45733.18
1-12-2009,CEU3132720001,31327200,3272,Glass and glass products,80.2,19.72,39.6,40607.43,44579.43
1-1-2010,CEU3132720001,31327200,3272,Glass and glass products,79.8,19.87,40.3,41639.57,45556.85
1-2-2010,CEU3132720001,31327200,3272,Glass and glass products,79.6,19.87,39.3,40606.33,44415.34
1-3-2010,CEU3132720001,31327200,3272,Glass and glass products,79.5,19.96,39.7,41205.43,44886.31
1-4-2010,CEU3132720001,31327200,3272,Glass and glass products,79.8,20.14,39.6,41472.29,45098.68
1-5-2010,CEU3132720001,31327200,3272,Glass and glass products,80.3,20.1,40.8,42644.16,46337.1
1-6-2010,CEU3132720001,31327200,3272,Glass and glass products,80.5,20.18,39.5,41449.72,45083.24
1-7-2010,CEU3132720001,31327200,3272,Glass and glass products,81.2,20.18,39.2,41134.91,44731.39
1-8-2010,CEU3132720001,31327200,3272,Glass and glass products,80.5,20.26,39.9,42035.45,45647.64
1-9-2010,CEU3132720001,31327200,3272,Glass and glass products,80.7,20.31,39.4,41611.13,45160.59
1-10-2010,CEU3132720001,31327200,3272,Glass and glass products,80.9,19.42,40.7,41100.49,44550.91
1-11-2010,CEU3132720001,31327200,3272,Glass and glass products,80.1,20.41,39.9,42346.67,45882.41
1-12-2010,CEU3132720001,31327200,3272,Glass and glass products,79.9,20.76,39.6,42748.99,46238.87
1-1-2011,CEU3132720001,31327200,3272,Glass and glass products,79.9,21.11,39.6,43469.71,46795.52
1-2-2011,CEU3132720001,31327200,3272,Glass and glass products,81.4,20.92,39.8,43296.03,46379.84
1-3-2011,CEU3132720001,31327200,3272,Glass and glass products,79.7,20.86,40.1,43497.27,46145.45
1-4-2011,CEU3132720001,31327200,3272,Glass and glass products,80.2,20.66,40.4,43402.53,45750.33
1-5-2011,CEU3132720001,31327200,3272,Glass and glass products,80.2,20.62,40.2,43104.05,45222.96
1-6-2011,CEU3132720001,31327200,3272,Glass and glass products,80.4,20.79,39.9,43135.09,45304.06
1-7-2011,CEU3132720001,31327200,3272,Glass and glass products,80.3,20.89,39.9,43342.57,45481.67
1-8-2011,CEU3132720001,31327200,3272,Glass and glass products,79.5,20.86,39.5,42846.44,44837.41
1-9-2011,CEU3132720001,31327200,3272,Glass and glass products,79,20.95,40,43576,45531.73
1-10-2011,CEU3132720001,31327200,3272,Glass and glass products,79.5,21.11,39.5,43359.94,45399.63
1-11-2011,CEU3132720001,31327200,3272,Glass and glass products,78.2,20.93,39.3,42772.55,44822.41
1-12-2011,CEU3132720001,31327200,3272,Glass and glass products,80.2,20.68,40.7,43767.15,45978.08
1-1-2012,CEU3132720001,31327200,3272,Glass and glass products,80.3,20.63,40.9,43875.88,45890.38
1-2-2012,CEU3132720001,31327200,3272,Glass and glass products,80.6,20.54,41,43791.28,45601.12
1-3-2012,CEU3132720001,31327200,3272,Glass and glass products,80.4,20.41,40.8,43301.86,44751.59
1-4-2012,CEU3132720001,31327200,3272,Glass and glass products,79.9,19.46,42.1,42601.83,43895.52
1-5-2012,CEU3132720001,31327200,3272,Glass and glass products,79.5,20.57,40.6,43427.38,44798.71
1-6-2012,CEU3132720001,31327200,3272,Glass and glass products,79.3,20.44,40.7,43259.21,44690.77
1-7-2012,CEU3132720001,31327200,3272,Glass and glass products,79.5,20.45,40.6,43174.04,44675.59
1-8-2012,CEU3132720001,31327200,3272,Glass and glass products,79.8,20.63,40,42910.4,44157.04
1-9-2012,CEU3132720001,31327200,3272,Glass and glass products,79.9,20.74,39.4,42492.11,43532.35
1-10-2012,CEU3132720001,31327200,3272,Glass and glass products,80.1,19.95,40.3,41807.22,42847.36
1-11-2012,CEU3132720001,31327200,3272,Glass and glass products,80.4,20.33,41.3,43660.71,44959.98
1-12-2012,CEU3132720001,31327200,3272,Glass and glass products,81,20.44,42.2,44853.54,46313.02
1-1-2013,CEU3132720001,31327200,3272,Glass and glass products,81.4,20.55,40.8,43598.88,44884.81
1-2-2013,CEU3132720001,31327200,3272,Glass and glass products,81.5,20.74,41.1,44325.53,45262.19
1-3-2013,CEU3132720001,31327200,3272,Glass and glass products,81.8,21.02,41.2,45033.25,45864.95
1-4-2013,CEU3132720001,31327200,3272,Glass and glass products,82,21.5,40.2,44943.6,45821.29
1-5-2013,CEU3132720001,31327200,3272,Glass and glass products,82.2,21.61,40.8,45847.78,46660.05
1-6-2013,CEU3132720001,31327200,3272,Glass and glass products,82.4,21.65,40.9,46045.22,46748.8
1-7-2013,CEU3132720001,31327200,3272,Glass and glass products,82.5,21.86,40.5,46037.16,46722.21
1-8-2013,CEU3132720001,31327200,3272,Glass and glass products,82.6,21.83,40.8,46314.53,46947.23
1-9-2013,CEU3132720001,31327200,3272,Glass and glass products,82.6,21.78,40.4,45755.43,46326.61
1-10-2013,CEU3132720001,31327200,3272,Glass and glass products,82.5,22.14,41,47202.48,47915.13
1-11-2013,CEU3132720001,31327200,3272,Glass and glass products,83.7,22.51,40.8,47757.21,48577.45
1-12-2013,CEU3132720001,31327200,3272,Glass and glass products,83.8,22.86,41,48737.52,49578.85
1-1-2014,CEU3132720001,31327200,3272,Glass and glass products,83.7,22.58,41.5,48727.64,49385.07
1-2-2014,CEU3132720001,31327200,3272,Glass and glass products,83.7,22.65,41.6,48996.48,49474.59
1-3-2014,CEU3132720001,31327200,3272,Glass and glass products,83.2,22.58,41.7,48962.47,49123.89
1-3-2006,CEU3132730001,31327300,3273,Cement and concrete products,250.7,17.98,41.8,39081.33,46371.82
1-4-2006,CEU3132730001,31327300,3273,Cement and concrete products,252.8,18.05,43,40359.8,47484.76
1-5-2006,CEU3132730001,31327300,3273,Cement and concrete products,248.2,17.95,43.4,40509.56,47425.59
1-6-2006,CEU3132730001,31327300,3273,Cement and concrete products,245.2,17.95,43,40136.2,46895.86
1-7-2006,CEU3132730001,31327300,3273,Cement and concrete products,247.2,18.04,42.6,39962.21,46554.89
1-8-2006,CEU3132730001,31327300,3273,Cement and concrete products,249,18.1,42.2,39718.64,46180.37
1-9-2006,CEU3132730001,31327300,3273,Cement and concrete products,246.9,18.13,42.4,39973.02,46705.2
1-10-2006,CEU3132730001,31327300,3273,Cement and concrete products,247.2,18.23,42.4,40193.5,47218.8
1-11-2006,CEU3132730001,31327300,3273,Cement and concrete products,247.7,18.28,42.6,40493.86,47642.48
1-12-2006,CEU3132730001,31327300,3273,Cement and concrete products,248.4,18.45,43.1,41350.14,48577.61
1-1-2007,CEU3132730001,31327300,3273,Cement and concrete products,248.7,18.47,43.2,41491.01,48594.75
1-2-2007,CEU3132730001,31327300,3273,Cement and concrete products,245.7,18.71,41.7,40570.77,47264.08
1-3-2007,CEU3132730001,31327300,3273,Cement and concrete products,246.2,18.77,42.5,41481.7,47889.23
1-4-2007,CEU3132730001,31327300,3273,Cement and concrete products,245.6,18.78,41.7,40722.55,46709.39
1-5-2007,CEU3132730001,31327300,3273,Cement and concrete products,245.8,18.94,41.6,40971.01,46708.95
1-6-2007,CEU3132730001,31327300,3273,Cement and concrete products,244.4,19.24,41.5,41519.92,47243.18
1-7-2007,CEU3132730001,31327300,3273,Cement and concrete products,243.7,19.31,41.5,41670.98,47427.13
1-8-2007,CEU3132730001,31327300,3273,Cement and concrete products,240.8,19.23,41.7,41698.33,47545.45
1-9-2007,CEU3132730001,31327300,3273,Cement and concrete products,238.2,19.26,41.4,41462.93,47147.11
1-10-2007,CEU3132730001,31327300,3273,Cement and concrete products,236.8,19.37,41.7,42001.91,47658.02
1-11-2007,CEU3132730001,31327300,3273,Cement and concrete products,235.8,19.47,42.1,42623.72,48078
1-12-2007,CEU3132730001,31327300,3273,Cement and concrete products,233.2,19.37,40.8,41095.39,46385.22
1-1-2008,CEU3132730001,31327300,3273,Cement and concrete products,234.2,19.56,42,42719.04,47979.38
1-2-2008,CEU3132730001,31327300,3273,Cement and concrete products,232.9,19.67,42.3,43266.13,48453.13
1-3-2008,CEU3132730001,31327300,3273,Cement and concrete products,231.1,19.73,42.3,43398.11,48183.27
1-4-2008,CEU3132730001,31327300,3273,Cement and concrete products,226.2,19.88,42,43417.92,47914.68
1-5-2008,CEU3132730001,31327300,3273,Cement and concrete products,224,19.99,41.4,43034.47,47094.93
1-6-2008,CEU3132730001,31327300,3273,Cement and concrete products,220.7,20.06,41.3,43080.86,46675.34
1-7-2008,CEU3132730001,31327300,3273,Cement and concrete products,219.1,20.06,41.4,43185.17,46543.95
1-8-2008,CEU3132730001,31327300,3273,Cement and concrete products,216.8,20.19,41.1,43150.07,46692.5
1-9-2008,CEU3132730001,31327300,3273,Cement and concrete products,215,20.26,40.5,42667.56,46234.32
1-10-2008,CEU3132730001,31327300,3273,Cement and concrete products,214.5,20.22,41.1,43214.18,47304.48
1-11-2008,CEU3132730001,31327300,3273,Cement and concrete products,208.4,20.3,39.4,41590.64,46416.27
1-12-2008,CEU3132730001,31327300,3273,Cement and concrete products,204.8,20.42,39.6,42048.86,47418.08
1-1-2009,CEU3132730001,31327300,3273,Cement and concrete products,200.1,20.44,38.7,41133.46,46184.77
1-2-2009,CEU3132730001,31327300,3273,Cement and concrete products,196.3,19.98,41.5,43116.84,48172.16
1-3-2009,CEU3132730001,31327300,3273,Cement and concrete products,192.1,20.55,39,41675.4,46448.76
1-4-2009,CEU3132730001,31327300,3273,Cement and concrete products,190.9,20.56,38.9,41588.77,46236.79
1-5-2009,CEU3132730001,31327300,3273,Cement and concrete products,186.6,20.47,38.6,41087.38,45547.79
1-6-2009,CEU3132730001,31327300,3273,Cement and concrete products,184.4,20.45,39.1,41578.94,45700.15
1-7-2009,CEU3132730001,31327300,3273,Cement and concrete products,182.8,20.62,38.8,41602.91,45799.11
1-8-2009,CEU3132730001,31327300,3273,Cement and concrete products,181.9,20.66,39,41898.48,46021.28
1-9-2009,CEU3132730001,31327300,3273,Cement and concrete products,180.3,20.71,38.9,41892.19,45985.61
1-10-2009,CEU3132730001,31327300,3273,Cement and concrete products,176.1,20.99,38.3,41803.68,45844.3
1-11-2009,CEU3132730001,31327300,3273,Cement and concrete products,175,21.14,39.7,43641.41,47825.81
1-12-2009,CEU3132730001,31327300,3273,Cement and concrete products,173.5,20.82,37.8,40923.79,44926.75
1-1-2010,CEU3132730001,31327300,3273,Cement and concrete products,168.9,20.82,38.8,42006.43,45958.22
1-2-2010,CEU3132730001,31327300,3273,Cement and concrete products,168.8,20.76,38.3,41345.62,45223.97
1-3-2010,CEU3132730001,31327300,3273,Cement and concrete products,170,20.81,38.4,41553.41,45265.38
1-4-2010,CEU3132730001,31327300,3273,Cement and concrete products,171.1,20.85,39.4,42717.48,46452.75
1-5-2010,CEU3132730001,31327300,3273,Cement and concrete products,173.8,20.86,39.3,42629.5,46321.17
1-6-2010,CEU3132730001,31327300,3273,Cement and concrete products,172.2,20.84,39.3,42588.63,46321.98
1-7-2010,CEU3132730001,31327300,3273,Cement and concrete products,170.7,20.82,39.5,42764.28,46503.22
1-8-2010,CEU3132730001,31327300,3273,Cement and concrete products,169.8,20.89,39.5,42908.06,46595.23
1-9-2010,CEU3132730001,31327300,3273,Cement and concrete products,170.1,20.9,40.1,43580.68,47298.14
1-10-2010,CEU3132730001,31327300,3273,Cement and concrete products,170.2,20.9,40.6,44124.08,47828.34
1-11-2010,CEU3132730001,31327300,3273,Cement and concrete products,169,20.95,40.8,44447.52,48158.67
1-12-2010,CEU3132730001,31327300,3273,Cement and concrete products,165,21.37,40.8,45338.59,49039.88
1-1-2011,CEU3132730001,31327300,3273,Cement and concrete products,162.5,21.64,39.3,44223.5,47606.99
1-2-2011,CEU3132730001,31327300,3273,Cement and concrete products,163.6,21.62,40.8,45868.99,49136.07
1-3-2011,CEU3132730001,31327300,3273,Cement and concrete products,164.6,21.37,40.3,44782.97,47509.43
1-4-2011,CEU3132730001,31327300,3273,Cement and concrete products,164,21.35,40.3,44741.06,47161.27
1-5-2011,CEU3132730001,31327300,3273,Cement and concrete products,165.6,21.41,41.6,46314.11,48590.83
1-6-2011,CEU3132730001,31327300,3273,Cement and concrete products,165.7,21.46,41.2,45975.9,48287.71
1-7-2011,CEU3132730001,31327300,3273,Cement and concrete products,165.6,21.36,42.1,46761.31,49069.14
1-8-2011,CEU3132730001,31327300,3273,Cement and concrete products,166,21.34,42,46606.56,48772.25
1-9-2011,CEU3132730001,31327300,3273,Cement and concrete products,165.2,21.45,41.7,46512.18,48599.69
1-10-2011,CEU3132730001,31327300,3273,Cement and concrete products,164.7,21.81,41.7,47292.8,49517.49
1-11-2011,CEU3132730001,31327300,3273,Cement and concrete products,164.1,21.26,41,45326.32,47498.57
1-12-2011,CEU3132730001,31327300,3273,Cement and concrete products,164.4,21.08,41.6,45600.26,47903.79
1-1-2012,CEU3132730001,31327300,3273,Cement and concrete products,164.9,21.21,42.1,46432.93,48564.84
1-2-2012,CEU3132730001,31327300,3273,Cement and concrete products,165.2,21.18,42.6,46917.94,48856.99
1-3-2012,CEU3132730001,31327300,3273,Cement and concrete products,164.9,21.06,42.6,46652.11,48214.02
1-4-2012,CEU3132730001,31327300,3273,Cement and concrete products,164.8,21.45,42.8,47739.12,49188.82
1-5-2012,CEU3132730001,31327300,3273,Cement and concrete products,163.2,21.68,41.3,46559.97,48030.22
1-6-2012,CEU3132730001,31327300,3273,Cement and concrete products,162.7,21.59,42,47152.56,48712.95
1-7-2012,CEU3132730001,31327300,3273,Cement and concrete products,163.1,21.72,41.7,47097.65,48735.66
1-8-2012,CEU3132730001,31327300,3273,Cement and concrete products,161.6,21.95,41.6,47482.24,48861.7
1-9-2012,CEU3132730001,31327300,3273,Cement and concrete products,161,21.91,42.2,48079.3,49256.32
1-10-2012,CEU3132730001,31327300,3273,Cement and concrete products,162.4,21.62,42.1,47330.5,48508.05
1-11-2012,CEU3132730001,31327300,3273,Cement and concrete products,163.8,21.81,42.1,47746.45,49167.31
1-12-2012,CEU3132730001,31327300,3273,Cement and concrete products,165.7,21.99,42.6,48712.25,50297.29
1-1-2013,CEU3132730001,31327300,3273,Cement and concrete products,165.2,22,42.2,48276.8,49700.7
1-2-2013,CEU3132730001,31327300,3273,Cement and concrete products,167.2,21.97,42.5,48553.7,49579.71
1-3-2013,CEU3132730001,31327300,3273,Cement and concrete products,167.6,22.2,42.6,49177.44,50085.68
1-4-2013,CEU3132730001,31327300,3273,Cement and concrete products,167,22.11,42.2,48518.18,49465.68
1-5-2013,CEU3132730001,31327300,3273,Cement and concrete products,167.5,22.22,42.8,49452.83,50328.97
1-6-2013,CEU3132730001,31327300,3273,Cement and concrete products,166.9,22.45,42.6,49731.24,50491.14
1-7-2013,CEU3132730001,31327300,3273,Cement and concrete products,167,22.5,42.1,49257,49989.96
1-8-2013,CEU3132730001,31327300,3273,Cement and concrete products,168.9,22.47,42.4,49541.86,50218.65
1-9-2013,CEU3132730001,31327300,3273,Cement and concrete products,169.9,22.52,42.5,49769.2,50390.49
1-10-2013,CEU3132730001,31327300,3273,Cement and concrete products,170.1,22.74,42.8,50610.14,51374.24
1-11-2013,CEU3132730001,31327300,3273,Cement and concrete products,171,22.75,43.2,51105.6,51983.35
1-12-2013,CEU3132730001,31327300,3273,Cement and concrete products,169.9,22.4,42.4,49387.52,50240.07
1-1-2014,CEU3132730001,31327300,3273,Cement and concrete products,171.1,22.62,42.1,49519.7,50187.82
1-2-2014,CEU3132730001,31327300,3273,Cement and concrete products,170.3,22.8,42.8,50743.68,51238.84
1-3-2014,CEU3132730001,31327300,3273,Cement and concrete products,171.5,22.95,42.2,50361.48,50527.51
1-3-2006,CEU3132732001,31327320,32732,Ready-mix concrete,129.6,17.8,42.5,39338,46676.37
1-4-2006,CEU3132732001,31327320,32732,Ready-mix concrete,131.2,17.94,43.3,40393.7,47524.64
1-5-2006,CEU3132732001,31327320,32732,Ready-mix concrete,129.1,17.82,42.9,39752.86,46539.7
1-6-2006,CEU3132732001,31327320,32732,Ready-mix concrete,128.2,17.65,42.5,39006.5,45575.89
1-7-2006,CEU3132732001,31327320,32732,Ready-mix concrete,130,17.5,42.5,38675,45055.33
1-8-2006,CEU3132732001,31327320,32732,Ready-mix concrete,130.6,17.73,41.9,38630.13,44914.77
1-9-2006,CEU3132732001,31327320,32732,Ready-mix concrete,128.9,17.83,41.7,38662.57,45174.04
1-10-2006,CEU3132732001,31327320,32732,Ready-mix concrete,128.2,17.96,41.7,38944.46,45751.45
1-11-2006,CEU3132732001,31327320,32732,Ready-mix concrete,128,17.89,41.6,38699.65,45531.53
1-12-2006,CEU3132732001,31327320,32732,Ready-mix concrete,127.8,18.85,44.7,43814.94,51473.22
1-1-2007,CEU3132732001,31327320,32732,Ready-mix concrete,126.9,18.6,43,41589.6,48710.23
1-2-2007,CEU3132732001,31327320,32732,Ready-mix concrete,121.1,19.26,41,41062.32,47836.73
1-3-2007,CEU3132732001,31327320,32732,Ready-mix concrete,124.6,19.3,41.6,41749.76,48198.7
1-4-2007,CEU3132732001,31327320,32732,Ready-mix concrete,121.7,19.24,40.7,40719.54,46705.93
1-5-2007,CEU3132732001,31327320,32732,Ready-mix concrete,122.5,19.44,41.4,41850.43,47711.54
1-6-2007,CEU3132732001,31327320,32732,Ready-mix concrete,121.3,19.76,41,42128.32,47935.44
1-7-2007,CEU3132732001,31327320,32732,Ready-mix concrete,120.2,19.8,40.5,41698.8,47458.79
1-8-2007,CEU3132732001,31327320,32732,Ready-mix concrete,119.1,19.81,41.3,42543.96,48509.65
1-9-2007,CEU3132732001,31327320,32732,Ready-mix concrete,118.6,19.76,40.4,41511.81,47202.69
1-10-2007,CEU3132732001,31327320,32732,Ready-mix concrete,118.2,19.97,40.5,42056.82,47720.33
1-11-2007,CEU3132732001,31327320,32732,Ready-mix concrete,118.2,20.02,40.6,42266.22,47674.76
1-12-2007,CEU3132732001,31327320,32732,Ready-mix concrete,116.9,19.72,40.5,41530.32,46876.13
1-1-2008,CEU3132732001,31327320,32732,Ready-mix concrete,118.2,19.9,41.5,42944.2,48232.27
1-2-2008,CEU3132732001,31327320,32732,Ready-mix concrete,117.8,19.85,41.8,43145.96,48318.55
1-3-2008,CEU3132732001,31327320,32732,Ready-mix concrete,116.1,19.6,42.5,43316,48092.11
1-4-2008,CEU3132732001,31327320,32732,Ready-mix concrete,114,20.06,40.7,42454.98,46852.01
1-5-2008,CEU3132732001,31327320,32732,Ready-mix concrete,112.1,20.25,40.1,42225.3,46209.41
1-6-2008,CEU3132732001,31327320,32732,Ready-mix concrete,109.6,20.34,40.1,42412.97,45951.73
1-7-2008,CEU3132732001,31327320,32732,Ready-mix concrete,109,20.49,40.1,42725.75,46048.8
1-8-2008,CEU3132732001,31327320,32732,Ready-mix concrete,107.8,20.41,39.9,42346.67,45823.14
1-9-2008,CEU3132732001,31327320,32732,Ready-mix concrete,107,20.44,39.6,42090.05,45608.53
1-10-2008,CEU3132732001,31327320,32732,Ready-mix concrete,105.7,20.43,40.9,43450.52,47563.19
1-11-2008,CEU3132732001,31327320,32732,Ready-mix concrete,102.6,20.4,37.7,39992.16,44632.32
1-12-2008,CEU3132732001,31327320,32732,Ready-mix concrete,100.8,20.42,40.3,42792.15,48256.28
1-1-2009,CEU3132732001,31327320,32732,Ready-mix concrete,95,20.72,38.5,41481.44,46575.48
1-2-2009,CEU3132732001,31327320,32732,Ready-mix concrete,97.4,20.56,40.3,43085.54,48137.18
1-3-2009,CEU3132732001,31327320,32732,Ready-mix concrete,96,20.89,38.9,42256.29,47096.19
1-4-2009,CEU3132732001,31327320,32732,Ready-mix concrete,95.6,21.17,38.1,41942,46629.5
1-5-2009,CEU3132732001,31327320,32732,Ready-mix concrete,92.8,20.68,37.6,40433.54,44822.96
1-6-2009,CEU3132732001,31327320,32732,Ready-mix concrete,93.8,20.75,37.8,40786.2,44828.84
1-7-2009,CEU3132732001,31327320,32732,Ready-mix concrete,92.3,20.88,38,41258.88,45420.38
1-8-2009,CEU3132732001,31327320,32732,Ready-mix concrete,91.5,20.86,38.3,41544.78,45632.77
1-9-2009,CEU3132732001,31327320,32732,Ready-mix concrete,90.6,20.9,37.9,41189.72,45214.5
1-10-2009,CEU3132732001,31327320,32732,Ready-mix concrete,88.8,21.17,36.8,40510.91,44426.57
1-11-2009,CEU3132732001,31327320,32732,Ready-mix concrete,88.4,21.19,38.3,42202,46248.39
1-12-2009,CEU3132732001,31327320,32732,Ready-mix concrete,87.1,21.18,36.8,40530.05,44494.48
1-1-2010,CEU3132732001,31327320,32732,Ready-mix concrete,84.6,20.64,38.2,40999.3,44856.34
1-2-2010,CEU3132732001,31327320,32732,Ready-mix concrete,84,21.18,37.1,40860.46,44693.3
1-3-2010,CEU3132732001,31327320,32732,Ready-mix concrete,85.1,21.47,37.2,41531.57,45241.59
1-4-2010,CEU3132732001,31327320,32732,Ready-mix concrete,86.6,21.35,40.4,44852.08,48774
1-5-2010,CEU3132732001,31327320,32732,Ready-mix concrete,87.1,21.5,37.9,42372.2,46041.59
1-6-2010,CEU3132732001,31327320,32732,Ready-mix concrete,87.6,21.31,37.9,41997.75,45679.31
1-7-2010,CEU3132732001,31327320,32732,Ready-mix concrete,87,21.36,38.3,42540.57,46259.95
1-8-2010,CEU3132732001,31327320,32732,Ready-mix concrete,86.5,21.6,37.9,42569.28,46227.34
1-9-2010,CEU3132732001,31327320,32732,Ready-mix concrete,85.6,21.72,39.5,44612.88,48418.39
1-10-2010,CEU3132732001,31327320,32732,Ready-mix concrete,85.3,21.71,40.2,45382.59,49192.5
1-11-2010,CEU3132732001,31327320,32732,Ready-mix concrete,84.8,21.84,40.4,45881.47,49712.35
1-12-2010,CEU3132732001,31327320,32732,Ready-mix concrete,81.9,22.3,39.9,46268.04,50045.2
1-1-2011,CEU3132732001,31327320,32732,Ready-mix concrete,80.4,22.5,39.1,45747,49247.05
1-2-2011,CEU3132732001,31327320,32732,Ready-mix concrete,81.6,22.89,39.3,46778,50109.82
1-3-2011,CEU3132732001,31327320,32732,Ready-mix concrete,81.7,22.08,39.5,45352.32,48113.44
1-4-2011,CEU3132732001,31327320,32732,Ready-mix concrete,81.6,21.85,41,46584.2,49104.11
1-5-2011,CEU3132732001,31327320,32732,Ready-mix concrete,82.6,22.03,41.7,47769.85,50118.13
1-6-2011,CEU3132732001,31327320,32732,Ready-mix concrete,82.9,22.09,41.8,48014.82,50429.16
1-7-2011,CEU3132732001,31327320,32732,Ready-mix concrete,82.5,21.99,42.3,48369.2,50756.39
1-8-2011,CEU3132732001,31327320,32732,Ready-mix concrete,82.4,22.14,41.8,48123.5,50359.68
1-9-2011,CEU3132732001,31327320,32732,Ready-mix concrete,82.1,22.18,42,48441.12,50615.21
1-10-2011,CEU3132732001,31327320,32732,Ready-mix concrete,82,22.63,41.6,48953.21,51256.01
1-11-2011,CEU3132732001,31327320,32732,Ready-mix concrete,81.4,21.92,41,46733.44,48973.13
1-12-2011,CEU3132732001,31327320,32732,Ready-mix concrete,82.1,21.6,41.9,47062.08,49439.46
1-1-2012,CEU3132732001,31327320,32732,Ready-mix concrete,82.4,21.4,42.1,46848.88,48999.88
1-2-2012,CEU3132732001,31327320,32732,Ready-mix concrete,81.9,21.45,42.7,47627.58,49595.96
1-3-2012,CEU3132732001,31327320,32732,Ready-mix concrete,82.1,21.31,42.5,47095.1,48671.84
1-4-2012,CEU3132732001,31327320,32732,Ready-mix concrete,81.6,21.4,43.7,48629.36,50106.09
1-5-2012,CEU3132732001,31327320,32732,Ready-mix concrete,80,21.53,42.8,47917.17,49430.28
1-6-2012,CEU3132732001,31327320,32732,Ready-mix concrete,79.1,21.24,43.5,48044.88,49634.8
1-7-2012,CEU3132732001,31327320,32732,Ready-mix concrete,79.4,21.66,43.1,48544.39,50232.71
1-8-2012,CEU3132732001,31327320,32732,Ready-mix concrete,79.2,21.94,43.1,49171.93,50600.48
1-9-2012,CEU3132732001,31327320,32732,Ready-mix concrete,79.3,21.69,43.8,49401.14,50610.52
1-10-2012,CEU3132732001,31327320,32732,Ready-mix concrete,80.2,21.49,43.8,48945.63,50163.36
1-11-2012,CEU3132732001,31327320,32732,Ready-mix concrete,81,21.59,43.6,48948.85,50405.48
1-12-2012,CEU3132732001,31327320,32732,Ready-mix concrete,81.9,21.71,44.8,50575.62,52221.3
1-1-2013,CEU3132732001,31327320,32732,Ready-mix concrete,81.9,21.75,43.8,49537.8,50998.89
1-2-2013,CEU3132732001,31327320,32732,Ready-mix concrete,82.5,21.81,44.1,50014.69,51071.57
1-3-2013,CEU3132732001,31327320,32732,Ready-mix concrete,82.9,21.93,44.2,50403.91,51334.8
1-4-2013,CEU3132732001,31327320,32732,Ready-mix concrete,81.5,21.9,43.1,49082.28,50040.79
1-5-2013,CEU3132732001,31327320,32732,Ready-mix concrete,81.4,22.03,44.8,51321.09,52230.33
1-6-2013,CEU3132732001,31327320,32732,Ready-mix concrete,81.8,22.22,43.7,50492.73,51264.27
1-7-2013,CEU3132732001,31327320,32732,Ready-mix concrete,82.1,22.21,43.5,50239.02,50986.6
1-8-2013,CEU3132732001,31327320,32732,Ready-mix concrete,82.6,22.12,43.8,50380.51,51068.76
1-9-2013,CEU3132732001,31327320,32732,Ready-mix concrete,83.2,22.27,43.1,49911.52,50534.59
1-10-2013,CEU3132732001,31327320,32732,Ready-mix concrete,82.6,22.35,43.7,50788.14,51554.92
1-11-2013,CEU3132732001,31327320,32732,Ready-mix concrete,83.6,22.35,43.8,50904.36,51778.65
1-12-2013,CEU3132732001,31327320,32732,Ready-mix concrete,81.3,22.28,42.5,49238.8,50088.79
1-1-2014,CEU3132732001,31327320,32732,Ready-mix concrete,81,22.33,42.3,49117.07,49779.75
1-2-2014,CEU3132732001,31327320,32732,Ready-mix concrete,80.8,22.76,42.2,49944.54,50431.9
1-3-2014,CEU3132732001,31327320,32732,Ready-mix concrete,81.7,22.98,42.1,50307.82,50473.67
1-3-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,121.1,18.11,42.4,39928.93,47377.54
1-4-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,121.6,18.21,41.7,39486.56,46457.36
1-5-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,118.9,18.14,43.6,41127.01,48148.45
1-6-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,117.4,18.2,43.8,41452.32,48433.63
1-7-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,117.2,18.53,42.5,40951.3,47707.16
1-8-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,118.4,18.61,42.3,40934.55,47594.1
1-9-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,117.9,18.6,42.9,41492.88,48481.02
1-10-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,118.8,18.52,42.7,41121.81,48309.36
1-11-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,119.6,18.54,42.8,41262.63,48546.96
1-12-2006,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,120.9,18.07,43.4,40780.38,47908.25
1-1-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,121.8,18.29,43.6,41467.09,48566.74
1-2-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,124.1,18.27,42.5,40376.7,47038
1-3-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,122.4,18.23,44.5,42184.22,48700.27
1-4-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,123,18.39,42.3,40450.64,46397.51
1-5-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,123.4,18.44,41.3,39601.74,45147.92
1-6-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,122.9,18.66,42.3,41044.54,46702.26
1-7-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,123.5,18.7,42.2,41035.28,46703.61
1-8-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,121.2,18.62,42.3,40956.55,46699.65
1-9-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,119.4,18.75,42.2,41145,46785.59
1-10-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,118.5,18.74,42.6,41512.85,47103.1
1-11-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,118,18.78,43,41992.08,47365.54
1-12-2007,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,117,19.07,42.8,42442.19,47905.38
1-1-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,116,19.16,42.8,42642.5,47893.41
1-2-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,114.2,19.51,42.9,43522.91,48740.69
1-3-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,115.3,19.79,42.9,44147.53,49015.32
1-4-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,112.2,19.73,43.1,44218.88,48798.58
1-5-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,111.8,19.77,42.5,43691.7,47814.17
1-6-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,111.3,19.76,42.3,43464.1,47090.56
1-7-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,110.2,19.52,42.7,43342.21,46713.2
1-8-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,108.9,19.93,42.7,44252.57,47885.51
1-9-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,108.1,20.06,41.5,43289.48,46908.23
1-10-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,108.6,20.04,41.4,43142.11,47225.59
1-11-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,105.7,20.25,40.5,42646.5,47594.64
1-12-2008,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,103.6,20.41,40.1,42558.93,47993.28
1-1-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,101.7,20.01,39.7,41308.64,46381.47
1-2-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,99.3,19.7,40.2,41180.88,46009.21
1-3-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,96.4,20.19,39.5,41470.26,46220.13
1-4-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,95.6,20.03,40.3,41974.87,46666.04
1-5-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,93.2,20.28,39.4,41549.66,46060.25
1-6-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,91,20.11,40.3,42142.52,46319.59
1-7-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,90.6,20.32,39.7,41948.61,46179.68
1-8-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,90.5,20.53,39.7,42382.13,46552.52
1-9-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,90.1,20.49,40.1,42725.75,46900.61
1-10-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,87.5,20.84,40.2,43563.94,47774.7
1-11-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,86.7,21.18,40.8,44935.49,49243.96
1-12-2009,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,85.9,20.51,40.1,42767.45,46950.74
1-1-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,81.8,20.71,40.3,43399.88,47482.75
1-2-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,85.2,20.61,37.2,39867.98,43607.73
1-3-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,85,20.22,39.8,41847.31,45585.54
1-4-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,84.7,20.36,39.8,42137.05,45821.57
1-5-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,86.2,20.24,40.7,42835.94,46545.49
1-6-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,84.9,20.33,40.5,42814.98,46568.18
1-7-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.8,20.25,40.8,42962.4,46718.66
1-8-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.3,20.24,41.2,43362.18,47088.38
1-9-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,84.6,20.11,40.8,42665.38,46304.76
1-10-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,84.8,20,40.8,42432,45994.21
1-11-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,84.2,20.12,40.8,42686.59,46250.72
1-12-2010,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.4,20.6,41.1,44026.32,47620.47
1-1-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.3,20.76,39.2,42317.18,45554.82
1-2-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.5,20.8,40.1,43372.16,46461.39
1-3-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83,20.76,41.2,44476.22,47184
1-4-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.6,20.85,40.8,44235.36,46628.21
1-5-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.7,20.78,41.6,44951.3,47161.02
1-6-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.7,20.74,40.8,44001.98,46214.54
1-7-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.6,20.64,41.7,44755.78,46964.63
1-8-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.5,20.54,41.7,44538.94,46608.55
1-9-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.1,20.73,41.6,44843.14,46855.74
1-10-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.7,20.91,41.6,45232.51,47360.28
1-11-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.8,20.73,40.7,43872.97,45975.57
1-12-2011,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.7,20.63,40.7,43661.33,45866.92
1-1-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.8,20.9,42.1,45754.28,47855.02
1-2-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83,20.89,43.1,46818.67,48753.62
1-3-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.9,20.85,42.7,46295.34,47845.3
1-4-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.2,21.42,41.8,46558.51,47972.36
1-5-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.2,21.83,40.3,45746.95,47191.53
1-6-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.6,21.91,40.7,46370.32,47904.84
1-7-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,84.1,21.75,40.4,45692.4,47281.53
1-8-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.5,21.91,40.1,45686.73,47014.03
1-9-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,81.8,22.1,40.4,46427.68,47564.26
1-10-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,82.1,21.74,40.3,45558.34,46691.8
1-11-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83,22.01,40.4,46238.61,47614.59
1-12-2012,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.5,22.23,41.5,47972.34,49533.31
1-1-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,83.5,22.14,40.8,46972.22,48357.64
1-2-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,84.4,22.07,41.5,47627.06,48633.48
1-3-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,84.8,22.47,41.3,48256.57,49147.8
1-4-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,85.5,22.23,41.4,47856.74,48791.32
1-5-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,86.3,22.43,41.1,47937.39,48786.68
1-6-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,85.4,22.62,41.4,48696.34,49440.43
1-7-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,85.3,22.78,40.5,47974.68,48688.56
1-8-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,86.3,22.82,41,48652.24,49316.88
1-9-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,86.7,22.73,41.9,49524.13,50142.36
1-10-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,87.5,23.1,41.9,50330.28,51090.15
1-11-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,87.5,23.05,42.4,50820.64,51693.5
1-12-2013,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,88.3,22.45,42.5,49614.5,50470.97
1-1-2014,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,88.5,22.78,42.1,49869.98,50542.82
1-2-2014,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,89.3,22.85,41.9,49785.58,50271.39
1-3-2014,CEU3132739001,31327390,"32731,3,9",Other cement and concrete products,89.6,22.91,42.1,50154.57,50319.92
1-3-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",98.2,19.21,37.2,37159.82,44091.86
1-4-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",97.9,19.18,37.7,37600.47,44238.31
1-5-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",97.9,17.08,39,34638.24,40551.88
1-6-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",97.9,16.93,39.9,35126.36,41042.27
1-7-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",98.9,17.07,39.6,35150.54,40949.43
1-8-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",99.3,16.95,39.5,34815.3,40479.32
1-9-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",98.8,17.47,39.4,35792.54,41820.64
1-10-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",99.1,16.88,40,35110.4,41247.24
1-11-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",99.3,16.78,39.3,34291.61,40345.31
1-12-2006,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",99.6,17.36,39.1,35296.35,41465.69
1-1-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",99.6,17.35,39.3,35456.46,41527.02
1-2-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",101.2,17.75,39.6,36550.8,42580.91
1-3-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",101.5,17.9,39.7,36952.76,42660.73
1-4-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",100.9,17.75,40.1,37012.3,42453.68
1-5-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",102,17.65,39.8,36528.44,41644.2
1-6-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",102.8,17.78,39.9,36889.95,41974.99
1-7-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",102.3,17.7,40,36816,41901.51
1-8-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",100.7,17.76,40.2,37125.5,42331.4
1-9-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",102.1,17.78,40.9,37814.5,42998.52
1-10-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",102.3,17.98,41.2,38520.35,43707.63
1-11-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",102,18.08,41.5,39016.64,44009.35
1-12-2007,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",101.5,17.92,41.9,39044.1,44069.88
1-1-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",101.7,17.88,41.9,38956.95,43754.03
1-2-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",100.7,17.62,41.5,38023.96,42582.5
1-3-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",98.5,17.63,42.2,38687.27,42953.01
1-4-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",98.5,17.9,41.7,38814.36,42834.32
1-5-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",96.8,18.14,41.4,39051.79,42736.47
1-6-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",95.3,18.25,41.2,39098.8,42361.04
1-7-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",95.3,18.09,41.3,38850.09,41871.7
1-8-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",94.3,18.19,41.1,38875.67,42067.19
1-9-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",93.2,18.38,40.4,38612.7,41840.5
1-10-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",93.8,18.22,40.1,37992.34,41588.38
1-11-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",92,18.3,40,38064,42480.45
1-12-2008,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",91.1,17.86,39.1,36312.95,40949.75
1-1-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",88.5,17.81,39.8,36859.57,41386.04
1-2-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",85.7,18.88,41,40252.16,44971.61
1-3-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",84,19.05,40.3,39921.18,44493.62
1-4-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82.5,18.69,40.7,39555.52,43976.3
1-5-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.4,18.45,40.1,38471.94,42648.42
1-6-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.2,18.59,41.3,39923.88,43881.05
1-7-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.1,18.71,41.2,40084.3,44127.34
1-8-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.4,18.75,41.3,40267.5,44229.81
1-9-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.3,18.77,41.3,40310.45,44249.31
1-10-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79.5,18.98,41.4,40860.14,44809.56
1-11-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79.4,18.8,43.2,42232.32,46281.61
1-12-2009,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.3,18.94,41.2,40577.05,44546.09
1-1-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.3,19.27,41.1,41183.84,45058.25
1-2-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.3,19.09,40.1,39806.47,43540.44
1-3-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",78.9,19.19,40.4,40314.35,43915.64
1-4-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.2,19.2,40.3,40235.52,43753.77
1-5-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.1,19.51,40.4,40986.61,44536.01
1-6-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.5,19.24,40.1,40119.25,43636.14
1-7-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79.7,19.39,40.1,40432.03,43967.05
1-8-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79.8,19.67,40,40913.6,44429.39
1-9-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.3,19.61,40.1,40890.77,44378.79
1-10-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79.2,19.77,40.2,41327.21,44796.67
1-11-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79.7,19.99,39.9,41475.25,44938.23
1-12-2010,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79.3,20.16,40,41932.8,45356.04
1-1-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79,20.23,40.2,42288.79,45524.26
1-2-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",79.4,20.26,40.1,42246.15,45255.19
1-3-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.2,20.36,40.2,42560.54,45151.69
1-4-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81,20.5,40.2,42853.2,45171.29
1-5-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82.5,20.5,40.4,43066.4,45183.46
1-6-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.6,20.75,40.2,43375.8,45556.87
1-7-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.5,21.01,40.1,43810.05,45972.22
1-8-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.4,21.04,40.3,44091.43,46140.25
1-9-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.1,20.98,40.6,44292.98,46280.89
1-10-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.5,21.45,40.2,44839.08,46948.34
1-11-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.6,21.11,40.7,44677.2,46818.34
1-12-2011,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.6,21.17,40.9,45024.36,47298.8
1-1-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.4,21.2,41.4,45639.36,47734.82
1-2-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82,21.5,40.8,45614.4,47499.58
1-3-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82.3,21.49,40.7,45481.44,47004.15
1-4-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82.5,21.74,40.8,46123.59,47524.22
1-5-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82.3,21.75,40.2,45466.2,46901.91
1-6-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.2,21.97,40.8,46611.55,48154.04
1-7-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",80.9,22.11,40.7,46793.61,48421.04
1-8-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.2,21.9,41.1,46804.68,48164.46
1-9-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.8,22.16,40.9,47129.89,48283.66
1-10-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82.2,22.19,40.9,47193.69,48367.84
1-11-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",81.8,22.22,41.5,47950.76,49377.7
1-12-2012,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82.1,22.52,41.2,48246.85,49816.75
1-1-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",83.1,21.97,40.8,46611.55,47986.34
1-2-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",83.4,22.35,41.9,48696.18,49725.2
1-3-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",83.5,22.36,41.4,48136.61,49025.63
1-4-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",82.9,22.04,41.3,47333.11,48257.46
1-5-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",83.7,22.13,41.3,47526.39,48368.39
1-6-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",83.8,22.25,41.9,48478.3,49219.06
1-7-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",84.5,21.77,41.4,46866.46,47563.85
1-8-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",84.6,22.34,41,47628.88,48279.54
1-9-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",84.3,22.44,41.3,48192.14,48793.75
1-10-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",84.7,22.37,41.3,48041.81,48767.13
1-11-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",85.3,22.43,41.3,48170.67,48998.01
1-12-2013,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",85.3,22.72,41.2,48675.33,49515.58
1-1-2014,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",85.8,22.18,41.6,47979.78,48627.12
1-2-2014,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",86.7,22.57,42,49292.88,49773.88
1-3-2014,CEU3132790001,31327900,"3274,9","Lime, gypsum, and other nonmetallic mineral products",87.3,22.65,41.9,49349.82,49512.51
1-3-2006,CEU3133100001,31331000,331,Primary metals,464.2,21.51,41.7,46642.29,55343.24
1-4-2006,CEU3133100001,31331000,331,Primary metals,463.8,21.65,41.3,46495.54,54703.68
1-5-2006,CEU3133100001,31331000,331,Primary metals,466,21.29,41.6,46054.53,53917.23
1-6-2006,CEU3133100001,31331000,331,Primary metals,468.7,21.18,41.3,45486.17,53146.86
1-7-2006,CEU3133100001,31331000,331,Primary metals,467.2,21.24,41.4,45725.47,53268.94
1-8-2006,CEU3133100001,31331000,331,Primary metals,466.3,21.38,41.3,45915.69,53385.6
1-9-2006,CEU3133100001,31331000,331,Primary metals,462.4,21.44,41.3,46044.54,53799.27
1-10-2006,CEU3133100001,31331000,331,Primary metals,461.7,21.35,41.4,45962.28,53995.89
1-11-2006,CEU3133100001,31331000,331,Primary metals,458.1,21.46,41.5,46310.68,54486.18
1-12-2006,CEU3133100001,31331000,331,Primary metals,458.5,21.37,41.7,46338.71,54438.11
1-1-2007,CEU3133100001,31331000,331,Primary metals,459,21.12,41.7,45796.61,53637.53
1-2-2007,CEU3133100001,31331000,331,Primary metals,461,21.36,41.5,46094.88,53699.55
1-3-2007,CEU3133100001,31331000,331,Primary metals,459.6,21.32,41.4,45897.7,52987.35
1-4-2007,CEU3133100001,31331000,331,Primary metals,459.9,21.61,41.6,46746.75,53619.24
1-5-2007,CEU3133100001,31331000,331,Primary metals,459.4,21.8,41.3,46817.68,53374.44
1-6-2007,CEU3133100001,31331000,331,Primary metals,456.2,22,41.5,47476,54020.26
1-7-2007,CEU3133100001,31331000,331,Primary metals,456.5,21.94,42,47916.96,54535.88
1-8-2007,CEU3133100001,31331000,331,Primary metals,453.8,22.03,41.5,47540.74,54207.1
1-9-2007,CEU3133100001,31331000,331,Primary metals,450.7,21.86,41.5,47173.88,53640.97
1-10-2007,CEU3133100001,31331000,331,Primary metals,449.5,21.85,41.6,47265.92,53630.9
1-11-2007,CEU3133100001,31331000,331,Primary metals,450.1,21.69,41.8,47145.38,53178.27
1-12-2007,CEU3133100001,31331000,331,Primary metals,450.7,22.08,41.9,48107.9,54300.39
1-1-2008,CEU3133100001,31331000,331,Primary metals,451.3,22.12,42.1,48425.11,54388.09
1-2-2008,CEU3133100001,31331000,331,Primary metals,451.6,22.2,42.4,48946.56,54814.56
1-3-2008,CEU3133100001,31331000,331,Primary metals,451.2,22.28,42.5,49238.8,54667.96
1-4-2008,CEU3133100001,31331000,331,Primary metals,450.2,22.04,42,48135.36,53120.69
1-5-2008,CEU3133100001,31331000,331,Primary metals,448.4,22.2,42.4,48946.56,53564.84
1-6-2008,CEU3133100001,31331000,331,Primary metals,446.6,22.29,42.5,49260.9,53371.02
1-7-2008,CEU3133100001,31331000,331,Primary metals,443.5,22.4,42.1,49038.08,52852.08
1-8-2008,CEU3133100001,31331000,331,Primary metals,440,22.34,42.6,49487.57,53550.28
1-9-2008,CEU3133100001,31331000,331,Primary metals,439.2,22.53,41.7,48854.05,52937.96
1-10-2008,CEU3133100001,31331000,331,Primary metals,435.2,22.7,41.4,48868.56,53494.05
1-11-2008,CEU3133100001,31331000,331,Primary metals,426.6,22.82,40.7,48296.25,53899.91
1-12-2008,CEU3133100001,31331000,331,Primary metals,417.7,22.84,40,47507.2,53573.39
1-1-2009,CEU3133100001,31331000,331,Primary metals,405.7,22.94,39.7,47357.34,53172.96
1-2-2009,CEU3133100001,31331000,331,Primary metals,391.2,23.46,39.5,48186.84,53836.6
1-3-2009,CEU3133100001,31331000,331,Primary metals,382.4,23.31,39.4,47757.53,53227.52
1-4-2009,CEU3133100001,31331000,331,Primary metals,369.3,23.54,39.3,48106.34,53482.78
1-5-2009,CEU3133100001,31331000,331,Primary metals,359.5,23.34,38.9,47212.15,52337.46
1-6-2009,CEU3133100001,31331000,331,Primary metals,349.6,23.19,39,47029.32,51690.76
1-7-2009,CEU3133100001,31331000,331,Primary metals,348,23.46,39.5,48186.84,53047.12
1-8-2009,CEU3133100001,31331000,331,Primary metals,349.8,23.65,40.6,49929.88,54842.96
1-9-2009,CEU3133100001,31331000,331,Primary metals,347.8,23.89,40.5,50312.34,55228.52
1-10-2009,CEU3133100001,31331000,331,Primary metals,346.6,23.75,40.8,50388,55258.35
1-11-2009,CEU3133100001,31331000,331,Primary metals,346.6,23.67,41.3,50833.69,55707.7
1-12-2009,CEU3133100001,31331000,331,Primary metals,347.2,23.58,41.7,51130.87,56132.23
1-1-2010,CEU3133100001,31331000,331,Primary metals,346.7,23.71,42,51782.64,56654.13
1-2-2010,CEU3133100001,31331000,331,Primary metals,351.1,23.59,41.8,51275.22,56085
1-3-2010,CEU3133100001,31331000,331,Primary metals,355,23.64,42.1,51752.69,56375.76
1-4-2010,CEU3133100001,31331000,331,Primary metals,357.8,23.53,42.5,52001.3,56548.36
1-5-2010,CEU3133100001,31331000,331,Primary metals,360.8,23.61,43.2,53037.5,57630.5
1-6-2010,CEU3133100001,31331000,331,Primary metals,363.6,23.42,42.9,52245.34,56825.21
1-7-2010,CEU3133100001,31331000,331,Primary metals,366.2,23.48,43.1,52623.38,57224.3
1-8-2010,CEU3133100001,31331000,331,Primary metals,366.2,23.46,42.8,52212.57,56699.3
1-9-2010,CEU3133100001,31331000,331,Primary metals,367.1,23.57,43,52702.52,57198.08
1-10-2010,CEU3133100001,31331000,331,Primary metals,368.3,23.49,43.1,52645.79,57065.46
1-11-2010,CEU3133100001,31331000,331,Primary metals,370,23.43,43.5,52998.66,57423.79
1-12-2010,CEU3133100001,31331000,331,Primary metals,372.4,23.6,43.6,53505.92,57873.95
1-1-2011,CEU3133100001,31331000,331,Primary metals,373.4,23.71,43.5,53632.02,57735.34
1-2-2011,CEU3133100001,31331000,331,Primary metals,379,23.43,43.9,53486,57295.61
1-3-2011,CEU3133100001,31331000,331,Primary metals,381.6,23.37,43.9,53349.04,56597
1-4-2011,CEU3133100001,31331000,331,Primary metals,385.4,23.49,43.5,53134.38,56008.61
1-5-2011,CEU3133100001,31331000,331,Primary metals,388.1,23.53,43.8,53591.93,56226.41
1-6-2011,CEU3133100001,31331000,331,Primary metals,389.1,23.65,43.4,53373.32,56057.09
1-7-2011,CEU3133100001,31331000,331,Primary metals,390.6,23.65,43.8,53865.24,56523.67
1-8-2011,CEU3133100001,31331000,331,Primary metals,390.4,23.58,43.8,53705.81,56201.39
1-9-2011,CEU3133100001,31331000,331,Primary metals,392,23.51,43.5,53179.62,55566.38
1-10-2011,CEU3133100001,31331000,331,Primary metals,394.7,23.65,43.7,53742.26,56270.34
1-11-2011,CEU3133100001,31331000,331,Primary metals,397.1,23.58,43.4,53215.34,55765.67
1-12-2011,CEU3133100001,31331000,331,Primary metals,397.9,23.64,43.7,53719.54,56433.22
1-1-2012,CEU3133100001,31331000,331,Primary metals,400,23.7,44.5,54841.8,57359.79
1-2-2012,CEU3133100001,31331000,331,Primary metals,401.3,23.63,43.8,53819.69,56043.98
1-3-2012,CEU3133100001,31331000,331,Primary metals,401.2,23.52,43.6,53324.54,55109.84
1-4-2012,CEU3133100001,31331000,331,Primary metals,401.7,23.77,43.9,54262.16,55909.94
1-5-2012,CEU3133100001,31331000,331,Primary metals,404.4,23.57,43.7,53560.47,55251.78
1-6-2012,CEU3133100001,31331000,331,Primary metals,404.6,23.44,43.8,53386.95,55153.65
1-7-2012,CEU3133100001,31331000,331,Primary metals,407,23.83,43.3,53655.63,55521.71
1-8-2012,CEU3133100001,31331000,331,Primary metals,404.5,23.62,43.2,53059.97,54601.47
1-9-2012,CEU3133100001,31331000,331,Primary metals,400.8,23.66,43.4,53395.89,54703.05
1-10-2012,CEU3133100001,31331000,331,Primary metals,401.7,23.87,42.8,53125.07,54446.79
1-11-2012,CEU3133100001,31331000,331,Primary metals,399.9,24.1,43,53887.6,55491.21
1-12-2012,CEU3133100001,31331000,331,Primary metals,399.1,24.4,43,54558.4,56333.68
1-1-2013,CEU3133100001,31331000,331,Primary metals,399,24.21,43.1,54259.45,55859.81
1-2-2013,CEU3133100001,31331000,331,Primary metals,397.9,24.37,43.3,54871.49,56031
1-3-2013,CEU3133100001,31331000,331,Primary metals,398.9,24.51,43.2,55059.27,56076.13
1-4-2013,CEU3133100001,31331000,331,Primary metals,397.3,24.62,43.2,55306.37,56386.43
1-5-2013,CEU3133100001,31331000,331,Primary metals,396.2,24.78,43.2,55665.79,56652
1-6-2013,CEU3133100001,31331000,331,Primary metals,394.1,25.09,43.3,56492.64,57355.87
1-7-2013,CEU3133100001,31331000,331,Primary metals,391.9,24.97,43.2,56092.61,56927.29
1-8-2013,CEU3133100001,31331000,331,Primary metals,393.8,25.07,43.4,56577.98,57350.89
1-9-2013,CEU3133100001,31331000,331,Primary metals,393.3,25.09,43.1,56231.71,56933.68
1-10-2013,CEU3133100001,31331000,331,Primary metals,392,25.03,43.3,56357.55,57208.41
1-11-2013,CEU3133100001,31331000,331,Primary metals,394.3,25.28,43.6,57314.82,58299.21
1-12-2013,CEU3133100001,31331000,331,Primary metals,397.8,25.24,43.4,56961.63,57944.93
1-1-2014,CEU3133100001,31331000,331,Primary metals,396.1,25.38,43.1,56881.66,57649.1
1-2-2014,CEU3133100001,31331000,331,Primary metals,397,25.09,43.3,56492.64,57043.9
1-3-2014,CEU3133100001,31331000,331,Primary metals,397,25.15,43.4,56758.52,56945.64
1-4-2014,CEU3133100001,31331000,331,Primary metals,397.3,25.16,43.3,56650.26,56650.26
1-3-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60.7,18.6,39,37720.8,44757.49
1-4-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60.7,18.87,37.8,37090.87,43638.74
1-5-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60.9,18.91,37.7,37071.16,43400.17
1-6-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60.6,18.79,38,37129.04,43382.23
1-7-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60.9,18.44,38.9,37300.43,43454
1-8-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60.3,18.1,40,37648,43772.86
1-9-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,59.7,18.53,39.8,38349.69,44808.46
1-10-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60.2,18.68,39.7,38562.99,45303.3
1-11-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60.1,18.54,39.7,38273.98,45030.71
1-12-2006,CEU3133120001,31331200,3312,Steel products from purchased steel,60,18.54,38.7,37309.89,43831.18
1-1-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,60.4,18.54,39.6,38177.57,44714.01
1-2-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,61.9,19,39.7,39223.6,45694.66
1-3-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,61.3,19.24,39.8,39819.11,45969.82
1-4-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,61.2,19.41,40.2,40574.66,46539.76
1-5-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,60.6,19.84,39.7,40957.7,46693.77
1-6-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,60.7,20.17,40.4,42373.14,48214
1-7-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,60.7,19.91,42.1,43586.97,49607.78
1-8-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,60.7,19.65,40.5,41382.9,47185.78
1-9-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,60.8,19.76,41.7,42847.59,48721.59
1-10-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,61.2,19.94,42.5,44067.4,50001.66
1-11-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,62.3,20.3,41.5,43807.4,49413.15
1-12-2007,CEU3133120001,31331200,3312,Steel products from purchased steel,61.9,20.72,41,44175.04,49861.29
1-1-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,61.9,20.91,40.6,44145.19,49581.15
1-2-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,61.6,21.07,41.1,45030.8,50429.36
1-3-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,62.1,21.44,41.4,46156.03,51245.29
1-4-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,62.1,20.64,40.8,43789.82,48325.09
1-5-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,62.7,21.7,40.9,46151.56,50506.12
1-6-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,62.6,21.92,40.5,46163.52,50015.21
1-7-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,62.3,22.18,40.6,46826.41,50468.4
1-8-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,61.7,22.57,40.5,47532.42,51434.63
1-9-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,61.1,22.89,39.3,46778,50688.38
1-10-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,59.8,22.93,38.9,46382.8,50773.02
1-11-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,58.2,23.47,38.8,47353.07,52847.3
1-12-2008,CEU3133120001,31331200,3312,Steel products from purchased steel,57.3,23.34,39.4,47818.99,53925
1-1-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,55.8,23.72,39.4,48597.54,54565.46
1-2-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,54.1,23.58,39.5,48433.32,54111.98
1-3-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,53.5,23.53,38.9,47596.48,53048.03
1-4-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,50.6,23.82,39.6,49050.14,54532.06
1-5-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,49,23.44,37.5,45708,50670.02
1-6-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,47.7,23.35,39.4,47839.48,52581.22
1-7-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,47,23.8,39,48266.4,53134.7
1-8-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,46.8,24.09,39.7,49731.39,54624.95
1-9-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,47,24.17,39.8,50022.23,54910.06
1-10-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,48.6,24.21,40.6,51112.15,56052.5
1-11-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,48.6,23.85,41.7,51716.34,56674.97
1-12-2009,CEU3133120001,31331200,3312,Steel products from purchased steel,48.8,23.76,41.3,51026.98,56018.17
1-1-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,49.3,23.27,41.3,49974.65,54676.06
1-2-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,50.4,23.62,41,50357.84,55081.57
1-3-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,50.9,24.07,41.1,51442.4,56037.76
1-4-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,51.2,23.5,41.2,50346.4,54748.75
1-5-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,52,23.29,41.7,50502.04,54875.46
1-6-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,52.1,23.17,41.8,50362.31,54777.12
1-7-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,52.8,23.15,41.7,50198.46,54587.38
1-8-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,53.1,23.4,41.4,50375.52,54704.39
1-9-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,53.7,23.25,41.9,50657.1,54978.19
1-10-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,52.9,23.1,42,50450.4,54685.76
1-11-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,53.7,23.11,42.1,50592.41,54816.63
1-12-2010,CEU3133120001,31331200,3312,Steel products from purchased steel,54,23.23,41,49526.36,53569.52
1-1-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,55.1,23,41.1,49155.6,52916.44
1-2-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,55.2,22.98,41.1,49112.86,52610.98
1-3-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,55.7,23,40.9,48916.4,51894.5
1-4-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,56.4,22.68,40.8,48117.89,50720.76
1-5-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,56.1,23.44,41.1,50095.97,52558.6
1-6-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,56,23.05,41.8,50101.48,52620.74
1-7-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,56.4,23.36,42.1,51139.71,53663.63
1-8-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,56.2,23.01,41.9,50134.19,52463.8
1-9-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,56.6,22.87,41.6,49472.38,51692.75
1-10-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,57.1,23.08,42.2,50646.75,53029.21
1-11-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,58,22.79,42.6,50484.41,52903.85
1-12-2011,CEU3133120001,31331200,3312,Steel products from purchased steel,59,22.66,43.8,51610.41,54217.55
1-1-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,58.3,22.69,44,51914.72,54298.31
1-2-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,58.7,22.15,43.4,49988.12,52054.06
1-3-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,58.8,22.54,43.7,51219.89,52934.73
1-4-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,58.9,22.88,43.6,51873.54,53448.78
1-5-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,60.1,22.5,44,51480,53105.61
1-6-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,60.9,22.5,43,50310,51974.88
1-7-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,62.1,22.49,41.8,48884.27,50584.41
1-8-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,61.1,22.19,42.5,49039.9,50464.61
1-9-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,60.3,21.79,43.8,49628.9,50843.85
1-10-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,60.3,21.93,42.4,48351.27,49554.21
1-11-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,59.1,22.75,42.1,49804.3,51286.39
1-12-2012,CEU3133120001,31331200,3312,Steel products from purchased steel,58.8,23.54,42.3,51778.59,53463.41
1-1-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.4,23.45,42.2,51458.68,52976.43
1-2-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.5,23.94,43.1,53654.33,54788.12
1-3-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.3,23.97,43.3,53970.85,54967.62
1-4-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.4,24.33,43.5,55034.46,56109.21
1-5-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,57.9,24.53,43.4,55359.3,56340.09
1-6-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.2,25.41,43.6,57609.55,58489.84
1-7-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,57.5,25.01,44,57222.88,58074.38
1-8-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.1,25.31,44.3,58304.12,59100.61
1-9-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.5,25.57,44,58504.16,59234.5
1-10-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.4,25.59,44,58549.92,59433.89
1-11-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,58.7,25.63,44.9,59840.93,60868.71
1-12-2013,CEU3133120001,31331200,3312,Steel products from purchased steel,59.5,25.66,44.5,59377.24,60402.23
1-1-2014,CEU3133120001,31331200,3312,Steel products from purchased steel,58.8,25.59,43.8,58283.79,59070.15
1-2-2014,CEU3133120001,31331200,3312,Steel products from purchased steel,58.6,25.39,43.9,57960.29,58525.87
1-3-2014,CEU3133120001,31331200,3312,Steel products from purchased steel,58.8,25.8,44,59030.4,59225.01
1-3-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,72.8,21.97,39.7,45354.87,53815.66
1-4-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,73.1,22.31,39.3,45592.71,53641.47
1-5-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,73,22.01,38.8,44407.38,51988.87
1-6-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,73.7,21.72,39.3,44386.99,51862.56
1-7-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,73.8,21.55,38,42582.8,49607.81
1-8-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,73.9,21.92,37.2,42402.05,49300.33
1-9-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,72.1,22.08,38.6,44318.98,51783.09
1-10-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,71.5,22.27,39.1,45279.36,53193.61
1-11-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,70.7,22.43,39.6,46187.86,54341.67
1-12-2006,CEU3133140001,31331400,3314,Other nonferrous metal production,71,22.09,39.5,45372.86,53303.44
1-1-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,69.6,21.74,39.4,44540.91,52166.84
1-2-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,69.6,21.89,38.8,44165.27,51451.59
1-3-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,69.2,22.06,39.4,45196.53,52177.88
1-4-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,68.9,21.99,40.3,46082.24,52857.04
1-5-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,68.9,21.6,40.4,45377.28,51732.31
1-6-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,68.7,22.44,39.7,46325.14,52710.76
1-7-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,67.7,22.43,40.6,47354.21,53895.4
1-8-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,67.8,22.57,40.4,47415.05,54063.79
1-9-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,67.4,22.24,40.2,46490.5,52863.91
1-10-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,67.4,22.04,40.4,46301.63,52536.76
1-11-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,67.3,22.25,40.2,46511.4,52463.16
1-12-2007,CEU3133140001,31331400,3314,Other nonferrous metal production,66.6,22.47,40.5,47321.82,53413.12
1-1-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,68.3,22.37,41,47692.84,53565.65
1-2-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,68.1,22.26,41,47458.32,53147.91
1-3-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,68.2,22.21,40.8,47120.73,52316.36
1-4-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,67.9,21.94,40.4,46091.55,50865.21
1-5-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,67.8,21.88,41.4,47103.27,51547.63
1-6-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,67.4,22.17,41.8,48188.71,52209.38
1-7-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,67.7,22.41,41.5,48360.78,52122.11
1-8-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,67.2,21.93,41.6,47438.98,51333.51
1-9-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,67.2,22.53,41.9,49088.36,53191.87
1-10-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,67.3,23.22,41.6,50229.5,54983.81
1-11-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,65.7,23.17,40.8,49157.47,54861.06
1-12-2008,CEU3133140001,31331400,3314,Other nonferrous metal production,64.5,22.98,40.8,48754.37,54979.81
1-1-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,62.8,22.66,41.3,48664.62,54640.78
1-2-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,61.2,23.33,41,49739.56,55571.37
1-3-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,59.8,23.56,40.8,49984.89,55710
1-4-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,58.8,23.38,40,48630.4,54065.4
1-5-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,57.6,23.62,40.1,49252.43,54599.22
1-6-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,57.2,23.38,40.2,48873.55,53717.79
1-7-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,56.7,23.16,40.5,48774.96,53694.56
1-8-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,56.7,23.4,40.9,49767.12,54664.19
1-9-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,56.9,23.73,40.7,50222.17,55129.54
1-10-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,57,23.47,40.4,49305.78,54071.52
1-11-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,56.8,23.26,41.5,50195.08,55007.85
1-12-2009,CEU3133140001,31331400,3314,Other nonferrous metal production,56.7,23.3,41.8,50644.88,55598.7
1-1-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,56.9,23.77,41.7,51542.87,56391.8
1-2-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,56.7,23.74,41.9,51724.71,56576.65
1-3-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,57.5,23.55,42.9,52535.34,57228.32
1-4-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,57.6,23.9,43.3,53813.24,58518.74
1-5-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,56.9,24.04,43.6,54503.49,59223.43
1-6-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,58.3,24.06,43.4,54298.61,59058.48
1-7-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,58.7,24.02,43.8,54707.95,59491.14
1-8-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,58.3,24,44.5,55536,60308.32
1-9-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,58.3,24.1,44,55140.8,59844.35
1-10-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,58.2,24.21,44.9,56525.51,61270.88
1-11-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,58.9,22.89,46.6,55467.05,60098.28
1-12-2010,CEU3133140001,31331400,3314,Other nonferrous metal production,59.1,24.04,46.1,57628.69,62333.29
1-1-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,58.9,23.83,44.6,55266.54,59494.91
1-2-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,60.3,23.82,43.9,54376.3,58249.32
1-3-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,60.4,24.1,44.7,56018.04,59428.5
1-4-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,59.8,24.21,44.9,56525.51,59583.18
1-5-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,60.9,23.67,44.2,54403.13,57077.49
1-6-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,61.2,23.79,44.2,54678.94,57428.36
1-7-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,61.5,23.81,44.3,54848.71,57555.68
1-8-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,61.5,23.78,44.3,54779.61,57325.08
1-9-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,62.1,23.69,44.4,54695.47,57150.26
1-10-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,62.1,23.67,44.4,54649.3,57220.04
1-11-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,62.3,23.83,42.2,52292.55,54798.65
1-12-2011,CEU3133140001,31331400,3314,Other nonferrous metal production,62.4,24.11,43.3,54286.07,57028.38
1-1-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.1,24.4,44.1,55954.08,58523.13
1-2-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.4,24.46,43.5,55328.52,57615.17
1-3-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.4,24.31,43.1,54483.57,56307.67
1-4-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.5,24.59,43.5,55622.58,57311.67
1-5-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.7,24.52,41.5,52914.16,54585.06
1-6-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.7,24.29,43.6,55070.29,56892.7
1-7-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.8,24.81,43.3,55862.2,57805.02
1-8-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,63.1,24.72,42.1,54117.02,55689.24
1-9-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.4,25.02,42.3,55033.99,56381.26
1-10-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,63.3,25.49,42.2,55935.26,57326.89
1-11-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,62.9,25.14,42.2,55167.21,56808.9
1-12-2012,CEU3133140001,31331400,3314,Other nonferrous metal production,63.2,25.4,42.7,56398.16,58233.3
1-1-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,63.6,25.29,42.7,56153.91,57810.15
1-2-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,63,25.28,43.1,56657.54,57854.79
1-3-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,63,25.31,43.2,56856.38,57906.44
1-4-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,62.2,25.48,42.8,56708.29,57815.72
1-5-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,62.1,25.74,43.3,57956.18,58982.97
1-6-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,61.9,26.04,43.3,58631.66,59527.57
1-7-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,61.7,25.76,43.4,58135.17,59000.24
1-8-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,61.4,25.85,43.1,57935.02,58726.47
1-9-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,61,25.45,42.8,56641.52,57348.6
1-10-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,60.9,25.46,44,58252.48,59131.95
1-11-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,60.6,25.81,43.1,57845.37,58838.88
1-12-2013,CEU3133140001,31331400,3314,Other nonferrous metal production,60.4,25.16,43.2,56519.43,57495.09
1-1-2014,CEU3133140001,31331400,3314,Other nonferrous metal production,60.4,25.74,42.6,57019.25,57788.55
1-2-2014,CEU3133140001,31331400,3314,Other nonferrous metal production,60.5,25.58,42.3,56265.77,56814.81
1-3-2014,CEU3133140001,31331400,3314,Other nonferrous metal production,60.7,25.5,43.2,57283.2,57472.05
1-3-2006,CEU3133150001,31331500,3315,Foundries,162.7,20.27,42.7,45007.51,53403.5
1-4-2006,CEU3133150001,31331500,3315,Foundries,162.4,20.34,42.7,45162.94,53135.82
1-5-2006,CEU3133150001,31331500,3315,Foundries,162.7,20.06,42.4,44228.29,51779.21
1-6-2006,CEU3133150001,31331500,3315,Foundries,163.6,19.98,42.6,44259.7,51713.82
1-7-2006,CEU3133150001,31331500,3315,Foundries,162.2,20.02,42.8,44556.51,51907.13
1-8-2006,CEU3133150001,31331500,3315,Foundries,162.1,20.12,42.8,44779.07,52064.07
1-9-2006,CEU3133150001,31331500,3315,Foundries,159.4,20.13,42.7,44696.65,52224.37
1-10-2006,CEU3133150001,31331500,3315,Foundries,160.1,20.08,42.5,44376.8,52133.29
1-11-2006,CEU3133150001,31331500,3315,Foundries,158.5,20.01,42.6,44326.15,52151.31
1-12-2006,CEU3133150001,31331500,3315,Foundries,157.3,19.96,43.2,44838.14,52675.27
1-1-2007,CEU3133150001,31331500,3315,Foundries,157.5,20.06,42.1,43915.35,51434.18
1-2-2007,CEU3133150001,31331500,3315,Foundries,158,20.17,41.7,43736.63,50952.24
1-3-2007,CEU3133150001,31331500,3315,Foundries,157.4,20.12,41.7,43628.21,50367.3
1-4-2007,CEU3133150001,31331500,3315,Foundries,156.8,20.14,41.4,43357.39,49731.59
1-5-2007,CEU3133150001,31331500,3315,Foundries,156.3,20.16,41.5,43505.28,49598.14
1-6-2007,CEU3133150001,31331500,3315,Foundries,154.7,20.65,41.9,44992.22,51194.11
1-7-2007,CEU3133150001,31331500,3315,Foundries,154.6,20.64,41.5,44541.12,50693.73
1-8-2007,CEU3133150001,31331500,3315,Foundries,153.2,20.46,41,43620.72,49737.4
1-9-2007,CEU3133150001,31331500,3315,Foundries,152.2,20.27,41.2,43426.45,49379.8
1-10-2007,CEU3133150001,31331500,3315,Foundries,152.7,20.08,41.9,43750.3,49641.86
1-11-2007,CEU3133150001,31331500,3315,Foundries,152.8,20.11,41.9,43815.67,49422.48
1-12-2007,CEU3133150001,31331500,3315,Foundries,152.9,20.21,42.1,44243.73,49938.82
1-1-2008,CEU3133150001,31331500,3315,Foundries,152.7,20.02,42.4,44140.1,49575.43
1-2-2008,CEU3133150001,31331500,3315,Foundries,152.4,20.1,42.5,44421,49746.45
1-3-2008,CEU3133150001,31331500,3315,Foundries,151.1,20.09,42.4,44294.43,49178.42
1-4-2008,CEU3133150001,31331500,3315,Foundries,151.4,19.99,41.5,43138.42,47606.23
1-5-2008,CEU3133150001,31331500,3315,Foundries,151,20.04,42.4,44184.19,48353.13
1-6-2008,CEU3133150001,31331500,3315,Foundries,150.9,20.13,42.4,44382.63,48085.72
1-7-2008,CEU3133150001,31331500,3315,Foundries,149.5,20.02,42.1,43827.79,47236.55
1-8-2008,CEU3133150001,31331500,3315,Foundries,147.9,19.98,42.3,43948.01,47555.95
1-9-2008,CEU3133150001,31331500,3315,Foundries,147.5,20.19,41.4,43465.03,47098.46
1-10-2008,CEU3133150001,31331500,3315,Foundries,146,20.4,40.4,42856.32,46912.74
1-11-2008,CEU3133150001,31331500,3315,Foundries,141.2,20.53,40.9,43663.2,48729.31
1-12-2008,CEU3133150001,31331500,3315,Foundries,137.5,20.54,39.3,41975.54,47335.4
1-1-2009,CEU3133150001,31331500,3315,Foundries,132.5,20.38,38.3,40588.81,45573.23
1-2-2009,CEU3133150001,31331500,3315,Foundries,126.6,20.76,38.1,41129.71,45952.05
1-3-2009,CEU3133150001,31331500,3315,Foundries,121.7,20.63,38.7,41515.81,46270.9
1-4-2009,CEU3133150001,31331500,3315,Foundries,118,21.05,40.4,44221.84,49164.14
1-5-2009,CEU3133150001,31331500,3315,Foundries,113.3,21.17,38.4,42272.26,46861.29
1-6-2009,CEU3133150001,31331500,3315,Foundries,108.6,21.15,38.2,42012.36,46176.53
1-7-2009,CEU3133150001,31331500,3315,Foundries,106.5,21.32,38.3,42460.91,46743.65
1-8-2009,CEU3133150001,31331500,3315,Foundries,108.1,21.29,40.9,45279.57,49735.06
1-9-2009,CEU3133150001,31331500,3315,Foundries,106.2,21.26,39.2,43336.38,47570.91
1-10-2009,CEU3133150001,31331500,3315,Foundries,104.5,21.15,39.8,43772.04,48002.91
1-11-2009,CEU3133150001,31331500,3315,Foundries,104.8,21.22,40,44137.6,48369.57
1-12-2009,CEU3133150001,31331500,3315,Foundries,104.9,21.07,40.2,44044.73,48352.95
1-1-2010,CEU3133150001,31331500,3315,Foundries,104.8,21.16,40.6,44672.99,48875.64
1-2-2010,CEU3133150001,31331500,3315,Foundries,106.1,20.89,41.5,45080.62,49309.32
1-3-2010,CEU3133150001,31331500,3315,Foundries,107.8,21.12,40.8,44808.19,48810.91
1-4-2010,CEU3133150001,31331500,3315,Foundries,108.4,20.94,41.3,44970.74,48903.04
1-5-2010,CEU3133150001,31331500,3315,Foundries,110.2,20.86,41.5,45015.88,48914.21
1-6-2010,CEU3133150001,31331500,3315,Foundries,112.1,20.67,41.7,44820.83,48749.86
1-7-2010,CEU3133150001,31331500,3315,Foundries,113.3,20.61,41.8,44797.89,48714.63
1-8-2010,CEU3133150001,31331500,3315,Foundries,113.8,20.77,42.1,45469.68,49376.98
1-9-2010,CEU3133150001,31331500,3315,Foundries,115,20.68,42.3,45487.73,49367.86
1-10-2010,CEU3133150001,31331500,3315,Foundries,115.7,20.74,42.6,45943.25,49800.23
1-11-2010,CEU3133150001,31331500,3315,Foundries,116.3,20.6,42,44990.4,48746.88
1-12-2010,CEU3133150001,31331500,3315,Foundries,117.1,20.77,43.3,46765.73,50583.52
1-1-2011,CEU3133150001,31331500,3315,Foundries,116.4,20.87,43.3,46990.89,50586.11
1-2-2011,CEU3133150001,31331500,3315,Foundries,118.6,20.93,43.4,47234.82,50599.18
1-3-2011,CEU3133150001,31331500,3315,Foundries,119.3,20.81,43.6,47180.43,50052.85
1-4-2011,CEU3133150001,31331500,3315,Foundries,120.7,20.71,43.4,46738.33,49266.58
1-5-2011,CEU3133150001,31331500,3315,Foundries,121.8,20.66,43.1,46303.19,48579.38
1-6-2011,CEU3133150001,31331500,3315,Foundries,122,20.82,42.4,45903.94,48212.13
1-7-2011,CEU3133150001,31331500,3315,Foundries,122.9,20.81,43,46531.16,48827.63
1-8-2011,CEU3133150001,31331500,3315,Foundries,122.7,20.69,43,46262.84,48412.56
1-9-2011,CEU3133150001,31331500,3315,Foundries,123.4,20.81,42.7,46206.52,48280.32
1-10-2011,CEU3133150001,31331500,3315,Foundries,125.2,20.89,42.5,46166.9,48338.62
1-11-2011,CEU3133150001,31331500,3315,Foundries,125.6,20.88,42.1,45710.5,47901.16
1-12-2011,CEU3133150001,31331500,3315,Foundries,126,20.94,42.2,45950.73,48271.97
1-1-2012,CEU3133150001,31331500,3315,Foundries,127.3,20.89,42.4,46058.27,48172.97
1-2-2012,CEU3133150001,31331500,3315,Foundries,128,20.86,41.6,45124.35,46989.28
1-3-2012,CEU3133150001,31331500,3315,Foundries,128.2,20.75,41.2,44454.8,45943.14
1-4-2012,CEU3133150001,31331500,3315,Foundries,128.3,21.05,41,44878.6,46241.43
1-5-2012,CEU3133150001,31331500,3315,Foundries,128.3,21.1,40.8,44765.76,46179.36
1-6-2012,CEU3133150001,31331500,3315,Foundries,128.4,20.94,41.7,45406.3,46908.91
1-7-2012,CEU3133150001,31331500,3315,Foundries,129.9,21.14,41.8,45949.9,47547.99
1-8-2012,CEU3133150001,31331500,3315,Foundries,129.1,21.1,41.3,45314.36,46630.84
1-9-2012,CEU3133150001,31331500,3315,Foundries,127.2,21.22,41.3,45572.07,46687.71
1-10-2012,CEU3133150001,31331500,3315,Foundries,126.5,21.47,41.1,45885.68,47027.29
1-11-2012,CEU3133150001,31331500,3315,Foundries,126.7,21.64,40.9,46023.95,47393.55
1-12-2012,CEU3133150001,31331500,3315,Foundries,126.7,21.85,41.1,46697.82,48217.32
1-1-2013,CEU3133150001,31331500,3315,Foundries,126.9,21.61,41.7,46859.13,48241.21
1-2-2013,CEU3133150001,31331500,3315,Foundries,126.7,21.63,42.1,47352.39,48353.02
1-3-2013,CEU3133150001,31331500,3315,Foundries,127.5,21.77,42,47545.68,48423.78
1-4-2013,CEU3133150001,31331500,3315,Foundries,127.5,21.75,42.5,48067.5,49006.19
1-5-2013,CEU3133150001,31331500,3315,Foundries,127.3,21.9,42.9,48854.52,49720.06
1-6-2013,CEU3133150001,31331500,3315,Foundries,126.2,22.16,42.5,48973.6,49721.93
1-7-2013,CEU3133150001,31331500,3315,Foundries,125.5,22.02,42.3,48435.19,49155.93
1-8-2013,CEU3133150001,31331500,3315,Foundries,126.2,22.37,42.1,48972.4,49641.41
1-9-2013,CEU3133150001,31331500,3315,Foundries,125.6,22.16,42,48397.44,49001.61
1-10-2013,CEU3133150001,31331500,3315,Foundries,125.2,21.93,42.7,48693.37,49428.52
1-11-2013,CEU3133150001,31331500,3315,Foundries,126,22.1,42.7,49070.84,49913.64
1-12-2013,CEU3133150001,31331500,3315,Foundries,128.2,22.06,42.7,48982.02,49827.57
1-1-2014,CEU3133150001,31331500,3315,Foundries,127.3,22.15,42.2,48605.96,49261.75
1-2-2014,CEU3133150001,31331500,3315,Foundries,128.3,22.01,42.7,48871,49347.89
1-3-2014,CEU3133150001,31331500,3315,Foundries,128.4,21.96,42.6,48645.79,48806.16
1-3-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,92.6,20.9,42.8,46515.04,55192.26
1-4-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,92.2,20.88,42.4,46036.22,54163.27
1-5-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,92.3,20.83,43,46575.88,54527.59
1-6-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,92.7,20.55,43,45949.8,53688.57
1-7-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,92.8,20.56,42.9,45865.25,53431.77
1-8-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,93,20.57,42.7,45673.63,53104.16
1-9-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,89.9,20.6,42.4,45418.88,53068.23
1-10-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,91.8,20.48,42.2,44941.31,52796.46
1-11-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,90.1,20.59,43.2,46253.38,54418.76
1-12-2006,CEU3133151001,31331510,33151,Ferrous metal foundries,89,20.53,42.9,45798.32,53803.27
1-1-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,89.6,20.54,42.4,45286.59,53040.19
1-2-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,90.1,20.61,42.1,45119.41,52563.15
1-3-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,90,20.64,42.5,45614.4,52660.3
1-4-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,90,20.62,42.9,45999.1,52761.67
1-5-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,89.9,20.63,42.1,45163.2,51488.24
1-6-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,88.5,21.23,41.6,45924.73,52255.16
1-7-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,88.6,21,41.5,45318,51577.92
1-8-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,88.9,21.28,40.9,45258.3,51604.61
1-9-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,89,21,40.8,44553.6,50661.48
1-10-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,89,20.53,41.6,44410.5,50390.96
1-11-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,88.8,20.81,41.9,45340.83,51142.8
1-12-2007,CEU3133151001,31331510,33151,Ferrous metal foundries,88.7,20.93,42.8,46581.81,52577.86
1-1-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,89,20.94,43.1,46930.73,52709.69
1-2-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,88.1,20.95,43,46844.2,52460.16
1-3-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,87.4,21.05,43.2,47286.72,52500.64
1-4-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,88.1,20.91,43,46754.76,51597.11
1-5-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,87.8,20.88,43.1,46796.26,51211.65
1-6-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,88.4,20.99,43.6,47588.53,51559.11
1-7-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,87.6,20.79,42.9,46378.33,49985.47
1-8-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,86.7,20.83,43.7,47334.09,51220.02
1-9-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,86.3,20.83,43.1,46684.2,50586.72
1-10-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,85.7,21.24,42.2,46609.05,51020.68
1-11-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,83.5,21.53,42.8,47917.17,53476.85
1-12-2008,CEU3133151001,31331510,33151,Ferrous metal foundries,82.5,21.54,40.6,45475.25,51281.98
1-1-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,79.7,21.46,39.7,44302.02,49742.45
1-2-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,75.9,21.91,38.3,43635.96,48752.14
1-3-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,72.6,21.67,39.3,44284.81,49357.05
1-4-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,70,22.39,40.3,46920.48,52164.39
1-5-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,67,22.53,39.2,45925.15,50910.74
1-6-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,62.7,22.53,39.4,46159.46,50734.69
1-7-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,63,22.77,39.8,47124.79,51877.95
1-8-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,63.2,22.98,41.8,49949.33,54864.32
1-9-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,61,22.88,41.4,49256.06,54069.03
1-10-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,59.6,22.53,41.6,48736.89,53447.65
1-11-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,59.9,22.64,41.5,48857.12,53541.61
1-12-2009,CEU3133151001,31331510,33151,Ferrous metal foundries,60.1,22.41,41.5,48360.78,53091.18
1-1-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,60.4,22.55,42.3,49600.98,54267.23
1-2-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,61.4,22.02,43.2,49465.73,54105.77
1-3-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,62.7,22.35,42.3,49161.06,53552.62
1-4-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,63.2,22.24,42.5,49150.4,53448.18
1-5-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,64.3,22.18,43,49594.48,53889.31
1-6-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,65.5,22.04,43,49281.44,53601.5
1-7-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,66.2,21.93,43.4,49491.63,53818.74
1-8-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,66.3,22.03,42.8,49029.97,53243.21
1-9-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,67.4,21.96,43.1,49216.75,53414.98
1-10-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,67.7,22.03,43.3,49602.75,53766.95
1-11-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,68,21.93,43.3,49377.59,53500.38
1-12-2010,CEU3133151001,31331510,33151,Ferrous metal foundries,68.5,21.98,43.8,50061.65,54148.5
1-1-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,68.4,21.84,43.8,49742.79,53548.54
1-2-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,69.2,21.87,44.5,50607.18,54211.74
1-3-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,69.7,21.59,45.5,51081.94,54191.89
1-4-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,70.8,21.27,44.2,48886.97,51531.45
1-5-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,71.6,21.33,44.2,49024.87,51434.85
1-6-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,71.7,21.42,43.7,48674.81,51122.33
1-7-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,72.2,21.42,43.8,48786.19,51193.95
1-8-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,72.3,21.17,43.6,47996.63,50226.91
1-9-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,72.6,21.3,43.5,48180.6,50343
1-10-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,73.7,21.42,43.8,48786.19,51081.13
1-11-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,74.3,21.19,44,48482.72,50806.23
1-12-2011,CEU3133151001,31331510,33151,Ferrous metal foundries,74.2,21.29,43.8,48490.11,50939.62
1-1-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,75.2,21.53,43.6,48812.82,51053.99
1-2-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,74.9,21.35,43.2,47960.64,49942.79
1-3-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,74.9,21.19,43.1,47491.03,49081.02
1-4-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,74.8,21.62,43,48342.32,49810.33
1-5-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,74.5,21.66,41.9,47192.81,48683.04
1-6-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,75,21.59,42.8,48050.7,49640.82
1-7-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,75.6,21.82,42.6,48335.66,50016.73
1-8-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,75.6,21.52,42.6,47671.11,49056.05
1-9-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,73.6,21.72,42.4,47888.26,49060.6
1-10-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,73,22.21,41.1,47467.21,48648.16
1-11-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,73.1,22.16,41.8,48166.98,49600.34
1-12-2012,CEU3133151001,31331510,33151,Ferrous metal foundries,72.7,22.41,42,48943.44,50536.01
1-1-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,72.3,22.03,42.7,48915.41,50358.15
1-2-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,71.9,22.28,43,49818.08,50870.8
1-3-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,73.5,22.41,42.8,49875.7,50796.83
1-4-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,72.8,22.48,43.3,50615.97,51604.43
1-5-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,72.1,22.68,43.2,50948.35,51850.98
1-6-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,70.9,22.87,43.3,51494.09,52280.94
1-7-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,70.7,22.59,43,50511.24,51262.87
1-8-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,70.4,22.97,42.8,51122.03,51820.41
1-9-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,70.2,23.15,42.5,51161.5,51800.17
1-10-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,69.9,22.64,42.6,50152.13,50909.3
1-11-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,70.4,22.88,42.3,50326.85,51191.22
1-12-2013,CEU3133151001,31331510,33151,Ferrous metal foundries,71.6,23.05,42.1,50461.06,51332.14
1-1-2014,CEU3133151001,31331510,33151,Ferrous metal foundries,70.9,23.07,41.9,50264.91,50943.09
1-2-2014,CEU3133151001,31331510,33151,Ferrous metal foundries,71.3,23.17,41.9,50482.8,50975.41
1-3-2014,CEU3133151001,31331510,33151,Ferrous metal foundries,71.1,22.99,42.4,50688.35,50855.46
1-3-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,70.1,19.45,42.7,43186.78,51243.13
1-4-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,70.4,19.67,42.2,43163.85,50783.82
1-5-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,70.6,18.96,42,41408.64,48478.17
1-6-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,70.5,19.17,41.7,41568.23,48569.06
1-7-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,70.2,19.26,42.5,42564.6,49586.61
1-8-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,69.4,19.68,41.6,42571.78,49497.68
1-9-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,68.5,19.46,41.4,41893.49,48949.1
1-10-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,68.2,19.37,42.1,42404.8,49816.61
1-11-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,68.3,19.24,41.8,41820.06,49202.81
1-12-2006,CEU3133152001,31331520,33152,Nonferrous metal foundries,68.2,19.26,44.1,44167.03,51886.85
1-1-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,68.3,19.45,41.8,42276.52,49514.75
1-2-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,67.8,19.48,41,41531.36,48383.15
1-3-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,67.4,19.38,41,41318.16,47700.43
1-4-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,66.9,19.54,41.2,41862.5,48016.93
1-5-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,66.3,19.46,41.2,41691.11,47529.89
1-6-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,65.9,19.8,41.8,43037.28,48969.7
1-7-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,65.8,20.12,41.4,43314.34,49297.48
1-8-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,64.6,19.61,41.6,42420.35,48368.71
1-9-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,63.2,19.27,42.1,42185.88,47969.17
1-10-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,63.5,19.3,41.6,41749.76,47371.92
1-11-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,63.9,19.18,42,41889.12,47249.4
1-12-2007,CEU3133152001,31331520,33152,Nonferrous metal foundries,64.3,19.17,41.6,41468.54,46806.41
1-1-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,64.1,18.72,41.3,40203.07,45153.61
1-2-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,64.2,18.81,41.8,40885.41,45787
1-3-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,63.8,18.72,41.6,40495.11,44960.17
1-4-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,63.4,18.71,41.1,39987.01,44128.43
1-5-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,63.1,18.8,41.1,40179.36,43970.43
1-6-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,62.6,18.79,40.7,39767.16,43085.16
1-7-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,61.9,18.87,40.6,39838.34,42936.82
1-8-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,61.4,18.87,41,40230.84,43533.62
1-9-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,60.9,19.21,39.4,39357.45,42647.5
1-10-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,60.1,18.96,39,38450.88,42090.32
1-11-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,57.6,18.89,38.5,37817.78,42205.66
1-12-2008,CEU3133152001,31331520,33152,Nonferrous metal foundries,54.9,18.86,37.5,36777,41473.05
1-1-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,52.9,18.79,37.3,36445.09,40920.65
1-2-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,50.6,18.98,37.8,37307.09,41681.23
1-3-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,49.2,19.03,38.3,37900.15,42241.11
1-4-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,48,18.99,38,37524.24,41718
1-5-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,46.3,19.11,37.3,37065.76,41089.58
1-6-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,45.7,19.05,36.6,36255.96,39849.57
1-7-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,43.3,19.12,37.3,37085.15,40825.68
1-8-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,44.9,18.8,38.6,37735.36,41448.5
1-9-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,45.2,18.95,37.8,37248.12,40887.75
1-10-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,44.9,19.11,38.3,38059.48,41738.19
1-11-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,44.9,19.14,38.5,38318.28,41992.29
1-12-2009,CEU3133152001,31331520,33152,Nonferrous metal foundries,44.7,19.11,39,38755.08,42545.9
1-1-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,44.7,19.33,39.7,39904.85,43658.93
1-2-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,44.6,19.16,39,38856.48,42501.34
1-3-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,45.1,19.21,39.3,39257.55,42764.43
1-4-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,45.3,18.95,39.2,38627.68,42005.34
1-5-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,45.9,18.88,39.6,38877.7,42244.46
1-6-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,46.4,18.54,39.8,38370.38,41733.96
1-7-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,47,18.68,40.2,39048.67,42462.75
1-8-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,47.4,18.87,40.1,39347.72,42728.95
1-9-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,47.7,18.81,40.8,39907.3,43311.42
1-10-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,48,18.84,40.7,39872.98,43220.35
1-11-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,48.4,18.58,41,39612.56,42920.02
1-12-2010,CEU3133152001,31331520,33152,Nonferrous metal foundries,48.8,18.95,42,41386.8,44765.47
1-1-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,48.4,19.56,42.2,42922.46,46206.41
1-2-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,49.3,19.52,41.9,42530.18,45559.44
1-3-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,49.6,19.55,41.5,42188.9,44757.42
1-4-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,49.9,19.84,41.7,43021.05,45348.22
1-5-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,50.1,19.7,41.7,42717.48,44817.39
1-6-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,50.5,19.83,40.2,41452.63,43537
1-7-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,50.4,19.93,41.1,42594.39,44696.57
1-8-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,50.7,19.86,41,42341.52,44309.03
1-9-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,50.9,20.09,40.3,42100.61,43990.12
1-10-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,51.4,20.14,39.9,41786.47,43752.14
1-11-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,51.5,20.34,39.9,42201.43,44223.92
1-12-2011,CEU3133152001,31331520,33152,Nonferrous metal foundries,51.9,20.28,39.4,41549.66,43648.58
1-1-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,52.5,19.98,40.3,41870.09,43792.5
1-2-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53,20.03,39.4,41037.46,42733.49
1-3-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53.3,20.02,39.1,40704.66,42067.45
1-4-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53.4,20.16,39.2,41094.14,42342.05
1-5-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53.7,20.33,39.3,41546.39,42858.32
1-6-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53.5,19.95,39.9,41392.26,42762.04
1-7-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,54,20.18,39.9,41869.46,43325.64
1-8-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53.9,20.39,39.9,42305.17,43534.23
1-9-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53.6,20.63,40.3,43232.23,44290.58
1-10-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53.5,20.56,40.5,43299.36,44376.62
1-11-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,53.6,20.82,40.1,43413.86,44705.79
1-12-2012,CEU3133152001,31331520,33152,Nonferrous metal foundries,54,20.93,40.8,44405.09,45849.99
1-1-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,54.9,20.97,40.2,43835.69,45128.6
1-2-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,54.6,20.71,41,44153.72,45086.75
1-3-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,54.1,20.85,41.5,44994.3,45825.29
1-4-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,54.7,20.73,42.5,45813.3,46707.97
1-5-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,54.9,20.88,41.8,45384.77,46188.84
1-6-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,54.9,21.21,41.6,45881.47,46582.55
1-7-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,54.6,21.32,40.7,45121.65,45793.08
1-8-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,56.3,21.56,41.6,46638.59,47275.73
1-9-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,55.3,21.07,42,46016.88,46591.33
1-10-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,55.3,21.16,42.3,46543.54,47246.23
1-11-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,55.6,21.1,43.5,47728.2,48547.94
1-12-2013,CEU3133152001,31331520,33152,Nonferrous metal foundries,56.3,20.82,44,47636.16,48458.48
1-1-2014,CEU3133152001,31331520,33152,Nonferrous metal foundries,56.5,21.02,43.3,47328.63,47967.19
1-2-2014,CEU3133152001,31331520,33152,Nonferrous metal foundries,56.8,20.73,43.7,47106.85,47566.52
1-3-2014,CEU3133152001,31331520,33152,Nonferrous metal foundries,57.5,20.73,43.2,46567.87,46721.39
1-3-2006,CEU3133200001,31332000,332,Fabricated metal products,1544.8,18.94,40.2,39592.18,46977.96
1-4-2006,CEU3133200001,31332000,332,Fabricated metal products,1549.5,18.99,40.2,39696.7,46704.59
1-5-2006,CEU3133200001,31332000,332,Fabricated metal products,1554.3,18.95,40.4,39810.16,46606.79
1-6-2006,CEU3133200001,31332000,332,Fabricated metal products,1555.2,19.22,40.3,40277.43,47060.88
1-7-2006,CEU3133200001,31332000,332,Fabricated metal products,1561.1,19.22,40.4,40377.38,47038.55
1-8-2006,CEU3133200001,31332000,332,Fabricated metal products,1560.1,19.3,40.2,40344.72,46908.3
1-9-2006,CEU3133200001,31332000,332,Fabricated metal products,1560.7,19.3,40.4,40545.44,47374.02
1-10-2006,CEU3133200001,31332000,332,Fabricated metal products,1554.3,19.41,40.4,40776.53,47903.73
1-11-2006,CEU3133200001,31332000,332,Fabricated metal products,1557.6,19.44,40,40435.2,47573.46
1-12-2006,CEU3133200001,31332000,332,Fabricated metal products,1559.5,19.5,40,40560,47649.36
1-1-2007,CEU3133200001,31332000,332,Fabricated metal products,1561.7,19.54,40,40643.2,47601.79
1-2-2007,CEU3133200001,31332000,332,Fabricated metal products,1563.1,19.54,39.8,40439.98,47111.72
1-3-2007,CEU3133200001,31332000,332,Fabricated metal products,1563.1,19.54,40.4,41049.63,47390.43
1-4-2007,CEU3133200001,31332000,332,Fabricated metal products,1566.7,19.72,40.5,41530.32,47635.91
1-5-2007,CEU3133200001,31332000,332,Fabricated metal products,1565.1,19.72,40.3,41325.23,47112.78
1-6-2007,CEU3133200001,31332000,332,Fabricated metal products,1568.3,19.78,40.4,41553.82,47281.75
1-7-2007,CEU3133200001,31332000,332,Fabricated metal products,1565.1,19.84,40.4,41679.87,47437.24
1-8-2007,CEU3133200001,31332000,332,Fabricated metal products,1559.6,19.81,40.3,41513.84,47335.08
1-9-2007,CEU3133200001,31332000,332,Fabricated metal products,1559.5,19.83,40.4,41658.86,47369.9
1-10-2007,CEU3133200001,31332000,332,Fabricated metal products,1559.3,19.86,40.2,41515.34,47105.93
1-11-2007,CEU3133200001,31332000,332,Fabricated metal products,1558.9,19.92,40.4,41847.94,47202.95
1-12-2007,CEU3133200001,31332000,332,Fabricated metal products,1557.3,20.03,40.1,41766.55,47142.78
1-1-2008,CEU3133200001,31332000,332,Fabricated metal products,1557,19.82,40.4,41637.86,46765.07
1-2-2008,CEU3133200001,31332000,332,Fabricated metal products,1557.4,20.02,40.3,41953.91,46983.59
1-3-2008,CEU3133200001,31332000,332,Fabricated metal products,1558,20.07,40.4,42163.05,46812.04
1-4-2008,CEU3133200001,31332000,332,Fabricated metal products,1548.1,20.02,40.4,42058.02,46413.92
1-5-2008,CEU3133200001,31332000,332,Fabricated metal products,1546.8,20.11,40.4,42247.09,46233.25
1-6-2008,CEU3133200001,31332000,332,Fabricated metal products,1538,20.18,40.3,42289.21,45817.64
1-7-2008,CEU3133200001,31332000,332,Fabricated metal products,1528.2,20.26,39.9,42035.45,45304.81
1-8-2008,CEU3133200001,31332000,332,Fabricated metal products,1528.4,20.36,39.8,42137.05,45596.32
1-9-2008,CEU3133200001,31332000,332,Fabricated metal products,1517,20.4,39.6,42007.68,45519.28
1-10-2008,CEU3133200001,31332000,332,Fabricated metal products,1503.8,20.49,39.7,42299.55,46303.28
1-11-2008,CEU3133200001,31332000,332,Fabricated metal products,1486.2,20.58,39.5,42271.32,47175.93
1-12-2008,CEU3133200001,31332000,332,Fabricated metal products,1458.9,20.67,39.1,42026.24,47392.57
1-1-2009,CEU3133200001,31332000,332,Fabricated metal products,1426.9,20.67,38.8,41703.79,46825.14
1-2-2009,CEU3133200001,31332000,332,Fabricated metal products,1400.1,20.9,38.7,42059.16,46990.47
1-3-2009,CEU3133200001,31332000,332,Fabricated metal products,1368.7,21.04,38.1,41684.45,46458.85
1-4-2009,CEU3133200001,31332000,332,Fabricated metal products,1340.3,21.12,38.2,41952.77,46641.47
1-5-2009,CEU3133200001,31332000,332,Fabricated metal products,1316.6,21.05,38,41594.8,46110.29
1-6-2009,CEU3133200001,31332000,332,Fabricated metal products,1295.7,21.18,38.1,41961.82,46120.98
1-7-2009,CEU3133200001,31332000,332,Fabricated metal products,1279.7,21.19,38.2,42091.82,46337.33
1-8-2009,CEU3133200001,31332000,332,Fabricated metal products,1272.7,21.24,38.5,42522.48,46706.68
1-9-2009,CEU3133200001,31332000,332,Fabricated metal products,1265.7,21.29,38.5,42622.58,46787.36
1-10-2009,CEU3133200001,31332000,332,Fabricated metal products,1261.4,21.27,38.6,42693.14,46819.73
1-11-2009,CEU3133200001,31332000,332,Fabricated metal products,1261.1,21.29,38.9,43065.41,47194.58
1-12-2009,CEU3133200001,31332000,332,Fabricated metal products,1258.6,21.27,39.2,43356.77,47597.7
1-1-2010,CEU3133200001,31332000,332,Fabricated metal products,1259.1,21.3,39.4,43639.44,47744.86
1-2-2010,CEU3133200001,31332000,332,Fabricated metal products,1255.9,21.26,39.3,43446.94,47522.4
1-3-2010,CEU3133200001,31332000,332,Fabricated metal products,1261.7,21.21,39.7,43785.93,47697.32
1-4-2010,CEU3133200001,31332000,332,Fabricated metal products,1269,21.26,39.8,43999.7,47847.09
1-5-2010,CEU3133200001,31332000,332,Fabricated metal products,1273.5,21.31,40.2,44546.43,48404.1
1-6-2010,CEU3133200001,31332000,332,Fabricated metal products,1278.7,21.25,40,44200,48074.61
1-7-2010,CEU3133200001,31332000,332,Fabricated metal products,1286.9,21.27,40.2,44462.81,48350.25
1-8-2010,CEU3133200001,31332000,332,Fabricated metal products,1291.4,21.24,40.4,44620.99,48455.36
1-9-2010,CEU3133200001,31332000,332,Fabricated metal products,1297.4,21.35,40.4,44852.08,48677.99
1-10-2010,CEU3133200001,31332000,332,Fabricated metal products,1301.2,21.31,40.2,44546.43,48286.14
1-11-2010,CEU3133200001,31332000,332,Fabricated metal products,1302.1,21.27,40.5,44794.62,48534.75
1-12-2010,CEU3133200001,31332000,332,Fabricated metal products,1309,21.27,40.6,44905.22,48571.13
1-1-2011,CEU3133200001,31332000,332,Fabricated metal products,1315.9,21.35,40.6,45074.12,48522.69
1-2-2011,CEU3133200001,31332000,332,Fabricated metal products,1320.4,21.29,40.5,44836.74,48030.29
1-3-2011,CEU3133200001,31332000,332,Fabricated metal products,1329.6,21.28,40.5,44815.68,47544.13
1-4-2011,CEU3133200001,31332000,332,Fabricated metal products,1336.2,21.24,40.6,44841.89,47267.55
1-5-2011,CEU3133200001,31332000,332,Fabricated metal products,1344.2,21.38,40.6,45137.46,47356.33
1-6-2011,CEU3133200001,31332000,332,Fabricated metal products,1350.9,21.28,40.7,45036.99,47301.59
1-7-2011,CEU3133200001,31332000,332,Fabricated metal products,1355.5,21.29,40.7,45058.16,47281.93
1-8-2011,CEU3133200001,31332000,332,Fabricated metal products,1356.9,21.32,40.6,45010.79,47102.32
1-9-2011,CEU3133200001,31332000,332,Fabricated metal products,1358.5,21.31,40.6,44989.67,47008.85
1-10-2011,CEU3133200001,31332000,332,Fabricated metal products,1361.9,21.31,40.8,45211.3,47338.07
1-11-2011,CEU3133200001,31332000,332,Fabricated metal products,1366.2,21.35,40.7,45185.14,47350.62
1-12-2011,CEU3133200001,31332000,332,Fabricated metal products,1377.1,21.38,40.8,45359.81,47651.2
1-1-2012,CEU3133200001,31332000,332,Fabricated metal products,1387,21.3,40.9,45300.84,47380.76
1-2-2012,CEU3133200001,31332000,332,Fabricated metal products,1394.8,21.33,41.2,45697.39,47586
1-3-2012,CEU3133200001,31332000,332,Fabricated metal products,1400.8,21.3,41,45411.6,46931.97
1-4-2012,CEU3133200001,31332000,332,Fabricated metal products,1405,21.39,41,45603.48,46988.32
1-5-2012,CEU3133200001,31332000,332,Fabricated metal products,1410.6,21.38,40.9,45470.98,46906.85
1-6-2012,CEU3133200001,31332000,332,Fabricated metal products,1414.2,21.47,40.9,45662.39,47173.48
1-7-2012,CEU3133200001,31332000,332,Fabricated metal products,1416.6,21.53,40.9,45790,47382.53
1-8-2012,CEU3133200001,31332000,332,Fabricated metal products,1416.1,21.53,40.6,45454.14,46774.68
1-9-2012,CEU3133200001,31332000,332,Fabricated metal products,1414.9,21.54,40.8,45699.27,46818.02
1-10-2012,CEU3133200001,31332000,332,Fabricated metal products,1415.3,21.59,40.8,45805.34,46944.95
1-11-2012,CEU3133200001,31332000,332,Fabricated metal products,1418.7,21.61,40.9,45960.15,47327.85
1-12-2012,CEU3133200001,31332000,332,Fabricated metal products,1419.4,21.64,40.9,46023.95,47521.53
1-1-2013,CEU3133200001,31332000,332,Fabricated metal products,1420.4,21.69,40.9,46130.29,47490.88
1-2-2013,CEU3133200001,31332000,332,Fabricated metal products,1424.4,21.72,41.3,46645.87,47631.56
1-3-2013,CEU3133200001,31332000,332,Fabricated metal products,1425.8,21.79,41.2,46682.89,47545.06
1-4-2013,CEU3133200001,31332000,332,Fabricated metal products,1428.4,21.71,41.2,46511.5,47419.81
1-5-2013,CEU3133200001,31332000,332,Fabricated metal products,1427.8,21.79,41.2,46682.89,47509.96
1-6-2013,CEU3133200001,31332000,332,Fabricated metal products,1428.8,21.9,41.1,46804.68,47519.87
1-7-2013,CEU3133200001,31332000,332,Fabricated metal products,1428.9,21.8,40.9,46364.24,47054.16
1-8-2013,CEU3133200001,31332000,332,Fabricated metal products,1431.2,21.86,41.3,46946.54,47587.87
1-9-2013,CEU3133200001,31332000,332,Fabricated metal products,1437.3,21.91,41.2,46939.98,47525.96
1-10-2013,CEU3133200001,31332000,332,Fabricated metal products,1441.8,21.88,41.2,46875.71,47583.42
1-11-2013,CEU3133200001,31332000,332,Fabricated metal products,1443.8,21.92,41.7,47531.33,48347.69
1-12-2013,CEU3133200001,31332000,332,Fabricated metal products,1445.2,22.01,41.4,47383.13,48201.08
1-1-2014,CEU3133200001,31332000,332,Fabricated metal products,1446.1,22.12,41.2,47389.89,48029.27
1-2-2014,CEU3133200001,31332000,332,Fabricated metal products,1447.9,22.23,41.4,47856.74,48323.73
1-3-2014,CEU3133200001,31332000,332,Fabricated metal products,1446.8,22.15,41.5,47799.7,47957.28
1-4-2014,CEU3133200001,31332000,332,Fabricated metal products,1450.6,22.16,41.5,47821.28,47821.28
1-3-2006,CEU3133210001,31332100,3321,Forging and stamping,112.4,20.3,42,44335.2,52605.78
1-4-2006,CEU3133210001,31332100,3321,Forging and stamping,112.9,20.37,42.4,44911.78,52840.32
1-5-2006,CEU3133210001,31332100,3321,Forging and stamping,113.3,19.91,42.8,44311.7,51876.85
1-6-2006,CEU3133210001,31332100,3321,Forging and stamping,113.5,20.26,43,45301.36,52930.92
1-7-2006,CEU3133210001,31332100,3321,Forging and stamping,116,20.01,43,44742.36,52123.64
1-8-2006,CEU3133210001,31332100,3321,Forging and stamping,113.1,20.47,43,45770.92,53217.28
1-9-2006,CEU3133210001,31332100,3321,Forging and stamping,113.5,20.28,42.8,45135.17,52736.74
1-10-2006,CEU3133210001,31332100,3321,Forging and stamping,113,20.01,42.7,44430.2,52196.02
1-11-2006,CEU3133210001,31332100,3321,Forging and stamping,112.9,20.99,41.7,45514.71,53549.7
1-12-2006,CEU3133210001,31332100,3321,Forging and stamping,113.1,20.06,42.3,44123.98,51836.27
1-1-2007,CEU3133210001,31332100,3321,Forging and stamping,113.1,20.19,42.1,44199.95,51767.5
1-2-2007,CEU3133210001,31332100,3321,Forging and stamping,112.1,20.39,42.3,44849.84,52249.11
1-3-2007,CEU3133210001,31332100,3321,Forging and stamping,111.5,20.33,43.1,45563.6,52601.65
1-4-2007,CEU3133210001,31332100,3321,Forging and stamping,111.2,20.4,40.3,42750.24,49035.18
1-5-2007,CEU3133210001,31332100,3321,Forging and stamping,110.5,20.36,42.2,44677.98,50935.08
1-6-2007,CEU3133210001,31332100,3321,Forging and stamping,109.9,20.41,42.3,44893.84,51082.16
1-7-2007,CEU3133210001,31332100,3321,Forging and stamping,109.3,20.36,42,44466.24,50608.5
1-8-2007,CEU3133210001,31332100,3321,Forging and stamping,109.1,20.42,42.2,44809.65,51093.05
1-9-2007,CEU3133210001,31332100,3321,Forging and stamping,108.5,20.46,42,44684.64,50810.48
1-10-2007,CEU3133210001,31332100,3321,Forging and stamping,108.9,20.74,41.8,45080.46,51151.14
1-11-2007,CEU3133210001,31332100,3321,Forging and stamping,108.3,20.84,42.4,45948.03,51827.7
1-12-2007,CEU3133210001,31332100,3321,Forging and stamping,108,20.9,40.9,44450.12,50171.77
1-1-2008,CEU3133210001,31332100,3321,Forging and stamping,108.1,20.98,42.1,45929.41,51585.08
1-2-2008,CEU3133210001,31332100,3321,Forging and stamping,108.8,20.84,41.8,45297.82,50728.39
1-3-2008,CEU3133210001,31332100,3321,Forging and stamping,109.5,21.1,41.8,45862.96,50919.9
1-4-2008,CEU3133210001,31332100,3321,Forging and stamping,109.4,21,42,45864,50614.09
1-5-2008,CEU3133210001,31332100,3321,Forging and stamping,108.9,21.16,41.7,45883.34,50212.6
1-6-2008,CEU3133210001,31332100,3321,Forging and stamping,108.8,21.23,41.7,46035.13,49876.11
1-7-2008,CEU3133210001,31332100,3321,Forging and stamping,108.1,21.45,42,46846.8,50490.37
1-8-2008,CEU3133210001,31332100,3321,Forging and stamping,107.7,21.54,41.3,46259.3,50056.99
1-9-2008,CEU3133210001,31332100,3321,Forging and stamping,106.6,21.38,41.1,45693.34,49513.04
1-10-2008,CEU3133210001,31332100,3321,Forging and stamping,105.7,21.29,40.9,45279.57,49565.36
1-11-2008,CEU3133210001,31332100,3321,Forging and stamping,104.3,21.06,40.3,44133.34,49253.99
1-12-2008,CEU3133210001,31332100,3321,Forging and stamping,102.1,21.22,39.7,43806.57,49400.23
1-1-2009,CEU3133210001,31332100,3321,Forging and stamping,99.2,21.2,39.1,43103.84,48397.12
1-2-2009,CEU3133210001,31332100,3321,Forging and stamping,95.5,21.14,38.5,42322.28,47284.44
1-3-2009,CEU3133210001,31332100,3321,Forging and stamping,93.1,21.2,37.5,41340,46074.95
1-4-2009,CEU3133210001,31332100,3321,Forging and stamping,90.4,22.06,37.3,42787.57,47569.57
1-5-2009,CEU3133210001,31332100,3321,Forging and stamping,89.6,21.79,37.5,42490.5,47103.23
1-6-2009,CEU3133210001,31332100,3321,Forging and stamping,87.7,21.61,37.1,41690.01,45822.23
1-7-2009,CEU3133210001,31332100,3321,Forging and stamping,86.7,21.88,37.6,42779.78,47094.68
1-8-2009,CEU3133210001,31332100,3321,Forging and stamping,86.3,21.86,37.7,42854.34,47071.2
1-9-2009,CEU3133210001,31332100,3321,Forging and stamping,86.1,21.99,38.2,43680.94,47949.14
1-10-2009,CEU3133210001,31332100,3321,Forging and stamping,84.9,22.01,38.4,43949.57,48197.6
1-11-2009,CEU3133210001,31332100,3321,Forging and stamping,84.7,22.21,38.3,44233.44,48474.6
1-12-2009,CEU3133210001,31332100,3321,Forging and stamping,83.7,22.33,39.6,45981.94,50479.65
1-1-2010,CEU3133210001,31332100,3321,Forging and stamping,84.6,22.4,39.7,46242.56,50592.86
1-2-2010,CEU3133210001,31332100,3321,Forging and stamping,85.8,22.58,40.2,47201.23,51628.86
1-3-2010,CEU3133210001,31332100,3321,Forging and stamping,86.4,22.48,40.5,47342.88,51572.02
1-4-2010,CEU3133210001,31332100,3321,Forging and stamping,87.1,22.37,40.6,47227.54,51357.18
1-5-2010,CEU3133210001,31332100,3321,Forging and stamping,87.5,22.27,41,47479.64,51591.33
1-6-2010,CEU3133210001,31332100,3321,Forging and stamping,88.6,22.28,40.9,47385.11,51538.93
1-7-2010,CEU3133210001,31332100,3321,Forging and stamping,89.6,21.87,41,46626.84,50703.48
1-8-2010,CEU3133210001,31332100,3321,Forging and stamping,90,21.99,40.9,46768.33,50787.23
1-9-2010,CEU3133210001,31332100,3321,Forging and stamping,91,22.05,40.7,46666.62,50647.32
1-10-2010,CEU3133210001,31332100,3321,Forging and stamping,91.4,22.16,40.8,47014.66,50961.58
1-11-2010,CEU3133210001,31332100,3321,Forging and stamping,91.8,22.12,41.1,47274.86,51222.09
1-12-2010,CEU3133210001,31332100,3321,Forging and stamping,92.7,22.1,40.9,47002.28,50839.38
1-1-2011,CEU3133210001,31332100,3321,Forging and stamping,93.5,21.91,41,46712.12,50286.01
1-2-2011,CEU3133210001,31332100,3321,Forging and stamping,93.4,21.92,41,46733.44,50062.09
1-3-2011,CEU3133210001,31332100,3321,Forging and stamping,94,21.95,41.4,47253.96,50130.85
1-4-2011,CEU3133210001,31332100,3321,Forging and stamping,94.4,21.94,41.4,47232.43,49787.41
1-5-2011,CEU3133210001,31332100,3321,Forging and stamping,95.1,21.96,41,46818.72,49120.24
1-6-2011,CEU3133210001,31332100,3321,Forging and stamping,96,21.72,41.3,46645.87,48991.37
1-7-2011,CEU3133210001,31332100,3321,Forging and stamping,95.9,21.87,41,46626.84,48928.03
1-8-2011,CEU3133210001,31332100,3321,Forging and stamping,95.7,22.02,40.7,46603.13,48768.66
1-9-2011,CEU3133210001,31332100,3321,Forging and stamping,95.9,21.98,40.8,46632.77,48725.7
1-10-2011,CEU3133210001,31332100,3321,Forging and stamping,96,22.15,40.8,46993.44,49204.05
1-11-2011,CEU3133210001,31332100,3321,Forging and stamping,95.8,22.17,41,47266.44,49531.67
1-12-2011,CEU3133210001,31332100,3321,Forging and stamping,96,22.12,41,47159.84,49542.16
1-1-2012,CEU3133210001,31332100,3321,Forging and stamping,96.8,22.18,41.5,47864.44,50062.07
1-2-2012,CEU3133210001,31332100,3321,Forging and stamping,97.7,22.1,40.9,47002.28,48944.82
1-3-2012,CEU3133210001,31332100,3321,Forging and stamping,98.4,22.03,40.5,46395.18,47948.48
1-4-2012,CEU3133210001,31332100,3321,Forging and stamping,98,22.12,40.7,46814.77,48236.39
1-5-2012,CEU3133210001,31332100,3321,Forging and stamping,98.6,22.1,40.5,46542.6,48012.3
1-6-2012,CEU3133210001,31332100,3321,Forging and stamping,98.5,21.97,40.3,46040.33,47563.92
1-7-2012,CEU3133210001,31332100,3321,Forging and stamping,99.6,21.88,41.9,47672.14,49330.13
1-8-2012,CEU3133210001,31332100,3321,Forging and stamping,98.1,21.85,41.1,46697.82,48054.49
1-9-2012,CEU3133210001,31332100,3321,Forging and stamping,97.9,21.93,40.9,46640.72,47782.52
1-10-2012,CEU3133210001,31332100,3321,Forging and stamping,97.6,21.74,40.9,46236.63,47386.97
1-11-2012,CEU3133210001,31332100,3321,Forging and stamping,99.5,21.66,40.8,45953.86,47321.37
1-12-2012,CEU3133210001,31332100,3321,Forging and stamping,99.2,21.61,40.8,45847.78,47339.62
1-1-2013,CEU3133210001,31332100,3321,Forging and stamping,98.1,21.67,40.8,45975.07,47331.08
1-2-2013,CEU3133210001,31332100,3321,Forging and stamping,98.8,21.71,41,46285.72,47263.8
1-3-2013,CEU3133210001,31332100,3321,Forging and stamping,98.7,21.7,41,46264.4,47118.84
1-4-2013,CEU3133210001,31332100,3321,Forging and stamping,99.1,21.52,40.8,45656.83,46548.45
1-5-2013,CEU3133210001,31332100,3321,Forging and stamping,98.8,21.7,41.4,46715.76,47543.41
1-6-2013,CEU3133210001,31332100,3321,Forging and stamping,99,21.76,41.3,46731.78,47445.85
1-7-2013,CEU3133210001,31332100,3321,Forging and stamping,98.8,21.79,40.8,46229.66,46917.58
1-8-2013,CEU3133210001,31332100,3321,Forging and stamping,99.5,21.99,40.6,46425.29,47059.51
1-9-2013,CEU3133210001,31332100,3321,Forging and stamping,99.5,21.84,40.7,46222.18,46799.19
1-10-2013,CEU3133210001,31332100,3321,Forging and stamping,100,21.68,40.9,46109.02,46805.16
1-11-2013,CEU3133210001,31332100,3321,Forging and stamping,100.3,21.76,41.4,46844.93,47649.5
1-12-2013,CEU3133210001,31332100,3321,Forging and stamping,100.9,22.1,41,47117.2,47930.56
1-1-2014,CEU3133210001,31332100,3321,Forging and stamping,101,22.1,40.5,46542.6,47170.55
1-2-2014,CEU3133210001,31332100,3321,Forging and stamping,102.2,22.34,41,47628.88,48093.64
1-3-2014,CEU3133210001,31332100,3321,Forging and stamping,102.7,22.18,41.2,47518.43,47675.09
1-3-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,54.6,20.2,38,39915.2,47361.24
1-4-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,54.3,20.11,37.2,38900.79,45768.17
1-5-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,54,20.08,37.6,39260.41,45963.18
1-6-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,54.4,20.09,38.1,39802.31,46505.73
1-7-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,54.4,19.93,38.1,39485.32,45999.33
1-8-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,54.2,19.78,37.7,38776.71,45085.2
1-9-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,54,19.87,37.9,39159.8,45755.01
1-10-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,53.8,20.05,37.8,39410.28,46298.68
1-11-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,53.8,20.06,38.1,39742.87,46758.92
1-12-2006,CEU3133220001,31332200,3322,Cutlery and hand tools,53.6,19.87,38.6,39883.06,46854.1
1-1-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,53.1,19.92,38.7,40087.01,46950.38
1-2-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,53.1,20.02,36.9,38414.38,44751.93
1-3-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,52.2,19.62,39.6,40401.5,46642.18
1-4-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,52.3,19.56,38.9,39565.97,45382.77
1-5-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,52.1,19.63,37.8,38584.73,43988.47
1-6-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,51.7,19.62,37.9,38667.1,43997.11
1-7-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,51.5,19.16,38.1,37959.79,43203.3
1-8-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,50.9,19.61,37.7,38443.45,43834.15
1-9-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,50.7,19.51,38.1,38653.21,43952.2
1-10-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,50.4,19.57,38.5,39179.14,44455.13
1-11-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,50.6,19.43,38.8,39201.97,44218.39
1-12-2007,CEU3133220001,31332200,3322,Cutlery and hand tools,50.5,19.75,39,40053,45208.65
1-1-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,50.4,19.53,40.2,40825.51,45852.69
1-2-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,50.6,19.7,39.6,40566.24,45429.56
1-3-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,50.6,19.91,39.5,40895.14,45404.32
1-4-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,48.6,20.06,39.9,41620.49,45931.08
1-5-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,49.6,20.01,40,41620.8,45547.87
1-6-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,49.2,19.99,39.5,41059.46,44485.29
1-7-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,48.9,20.33,39.3,41546.39,44777.71
1-8-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,48.9,20.06,39.4,41098.93,44472.97
1-9-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,48.5,20.13,38.8,40614.29,44009.41
1-10-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,48.2,20.18,38.5,40400.36,44224.32
1-11-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,48,20.23,38,39974.48,44612.59
1-12-2008,CEU3133220001,31332200,3322,Cutlery and hand tools,46.5,20.49,37.5,39955.5,45057.42
1-1-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,45.6,20.53,37.4,39926.74,44829.86
1-2-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,45.1,20.64,37,39711.36,44367.4
1-3-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,43.6,20.77,36.6,39529.46,44057.04
1-4-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,42.8,20.63,36.5,39155.74,43531.84
1-5-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,42.2,20.49,35.8,38144.18,42285.08
1-6-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,41.6,20.58,37.1,39702.94,43638.2
1-7-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,41.4,20.45,38.1,40515.54,44602.07
1-8-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,41,20.63,38.1,40872.16,44893.96
1-9-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,40.9,20.57,38.1,40753.29,44735.41
1-10-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,40.6,20.53,38.1,40674.04,44605.46
1-11-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,40.3,20.46,38.6,41067.31,45004.9
1-12-2009,CEU3133220001,31332200,3322,Cutlery and hand tools,40.2,20.12,39,40803.36,44794.53
1-1-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,41.6,20.38,38.9,41224.66,45102.91
1-2-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,40,20.24,37.9,39888.99,43630.71
1-3-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,40.1,20.18,39.2,41134.91,44809.5
1-4-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,40,20.1,39.5,41285.4,44895.45
1-5-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,39.8,20.9,39.6,43037.28,46764.27
1-6-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,39.9,20.76,39.1,42209.23,45909.33
1-7-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,39.9,21.11,38.7,42481.77,46196
1-8-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,40,20.68,38.8,41723.97,45309.39
1-9-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,39.9,20.98,38.8,42329.25,45939.96
1-10-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,39.9,20.82,38.7,41898.17,45415.56
1-11-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,40.1,21.11,38.7,42481.77,46028.79
1-12-2010,CEU3133220001,31332200,3322,Cutlery and hand tools,40.4,20.86,38,41219.36,44584.36
1-1-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,40.5,20.89,37.7,40952.76,44086
1-2-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,40.5,20.59,37.8,40471.7,43354.35
1-3-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,40.2,20.77,38.3,41365.53,43883.93
1-4-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,41,20.6,38,40705.6,42907.52
1-5-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,40.4,20.68,38.6,41508.89,43549.4
1-6-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,40.5,20.16,39,40884.48,42940.28
1-7-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,40.1,20.2,39.4,41385.76,43428.29
1-8-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,39.9,20.18,39.3,41239.85,43156.16
1-9-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,39.8,20.06,39.4,41098.93,42943.49
1-10-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,39.7,19.84,39.8,41060.86,42992.39
1-11-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,39.7,19.98,39.1,40623.34,42570.2
1-12-2011,CEU3133220001,31332200,3322,Cutlery and hand tools,39.7,20.07,39.2,40910.69,42977.32
1-1-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.8,20.47,39,41513.16,43419.18
1-2-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.5,20.19,38.5,40420.38,42090.9
1-3-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.4,20.21,40.1,42141.89,43552.79
1-4-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.9,20.41,39.2,41603.74,42867.13
1-5-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.7,20.4,39.7,42113.76,43443.61
1-6-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.7,20.52,39.6,42254.79,43653.1
1-7-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,40.2,20.91,39.5,42949.14,44442.87
1-8-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.5,20.98,39.3,42874.73,44120.33
1-9-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.4,21.1,39.6,43449.12,44512.79
1-10-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39.1,21.25,40.1,44310.5,45412.91
1-11-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,39,21.24,40.4,44620.99,45948.84
1-12-2012,CEU3133220001,31332200,3322,Cutlery and hand tools,38.5,21.95,40.8,46569.12,48084.43
1-1-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.8,21.19,41.4,45617.83,46963.31
1-2-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.9,21.29,41.4,45833.11,46801.63
1-3-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.9,21.34,41.1,45607.85,46450.16
1-4-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.6,21.25,41.2,45526,46415.06
1-5-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.7,21.48,40.3,45013.49,45810.98
1-6-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.6,21.61,40.4,45398.29,46091.98
1-7-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.1,21.48,40.2,44901.79,45569.95
1-8-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.2,21.6,40.4,45377.28,45997.18
1-9-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38,21.49,40.2,44922.7,45483.49
1-10-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.3,21.78,39.6,44849.38,45526.49
1-11-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.4,21.48,40.8,45571.97,46354.68
1-12-2013,CEU3133220001,31332200,3322,Cutlery and hand tools,38.7,21.92,40,45593.6,46380.66
1-1-2014,CEU3133220001,31332200,3322,Cutlery and hand tools,38.5,21.65,40.1,45144.58,45753.67
1-2-2014,CEU3133220001,31332200,3322,Cutlery and hand tools,38.2,21.47,40.1,44769.24,45206.1
1-3-2014,CEU3133220001,31332200,3322,Cutlery and hand tools,37.9,21.39,40.6,45158.57,45307.44
1-3-2006,CEU3133230001,31332300,3323,Architectural and structural metals,411.7,17.79,39.6,36633.17,43466.96
1-4-2006,CEU3133230001,31332300,3323,Architectural and structural metals,413.9,17.84,39.7,36828.89,43330.52
1-5-2006,CEU3133230001,31332300,3323,Architectural and structural metals,413.4,18.02,39.5,37013.08,43332.17
1-6-2006,CEU3133230001,31332300,3323,Architectural and structural metals,412.4,18.28,39.6,37642.18,43981.79
1-7-2006,CEU3133230001,31332300,3323,Architectural and structural metals,412.5,18.42,39,37355.76,43518.45
1-8-2006,CEU3133230001,31332300,3323,Architectural and structural metals,411.9,18.48,39.3,37765.73,43909.74
1-9-2006,CEU3133230001,31332300,3323,Architectural and structural metals,411.8,18.47,39.8,38225.51,44663.38
1-10-2006,CEU3133230001,31332300,3323,Architectural and structural metals,410.4,18.73,39.7,38666.21,45424.56
1-11-2006,CEU3133230001,31332300,3323,Architectural and structural metals,413,18.45,39.7,38088.18,44812.11
1-12-2006,CEU3133230001,31332300,3323,Architectural and structural metals,412.7,18.6,39.5,38204.4,44882.03
1-1-2007,CEU3133230001,31332300,3323,Architectural and structural metals,413.4,18.83,39.5,38676.82,45298.75
1-2-2007,CEU3133230001,31332300,3323,Architectural and structural metals,413.1,18.9,39,38329.2,44652.7
1-3-2007,CEU3133230001,31332300,3323,Architectural and structural metals,414.4,18.83,39.8,38970.57,44990.21
1-4-2007,CEU3133230001,31332300,3323,Architectural and structural metals,416,19.03,39.9,39483.45,45288.12
1-5-2007,CEU3133230001,31332300,3323,Architectural and structural metals,416.2,18.99,40,39499.2,45031.01
1-6-2007,CEU3133230001,31332300,3323,Architectural and structural metals,419.4,19.11,39.6,39351.31,44775.64
1-7-2007,CEU3133230001,31332300,3323,Architectural and structural metals,421,19.2,39.7,39636.48,45111.59
1-8-2007,CEU3133230001,31332300,3323,Architectural and structural metals,418.4,19.17,39.9,39773.91,45351.18
1-9-2007,CEU3133230001,31332300,3323,Architectural and structural metals,419.4,19.17,39.8,39674.23,45113.19
1-10-2007,CEU3133230001,31332300,3323,Architectural and structural metals,418.4,19.13,39.8,39591.45,44922.96
1-11-2007,CEU3133230001,31332300,3323,Architectural and structural metals,416.9,19.3,39.5,39642.2,44714.96
1-12-2007,CEU3133230001,31332300,3323,Architectural and structural metals,417.5,19.25,39.7,39739.7,44855.02
1-1-2008,CEU3133230001,31332300,3323,Architectural and structural metals,417.5,18.95,39.6,39021.84,43826.92
1-2-2008,CEU3133230001,31332300,3323,Architectural and structural metals,417.8,19.2,39.6,39536.64,44276.53
1-3-2008,CEU3133230001,31332300,3323,Architectural and structural metals,416.2,19.37,39.7,39987.43,44396.52
1-4-2008,CEU3133230001,31332300,3323,Architectural and structural metals,411.5,19.26,39.4,39459.89,43546.71
1-5-2008,CEU3133230001,31332300,3323,Architectural and structural metals,409.8,19.29,39.3,39421.04,43140.56
1-6-2008,CEU3133230001,31332300,3323,Architectural and structural metals,407.2,19.26,39.4,39459.89,42752.25
1-7-2008,CEU3133230001,31332300,3323,Architectural and structural metals,402.7,19.27,39.4,39480.38,42551.01
1-8-2008,CEU3133230001,31332300,3323,Architectural and structural metals,407.3,19.45,39.2,39646.88,42901.71
1-9-2008,CEU3133230001,31332300,3323,Architectural and structural metals,403.2,19.48,38.9,39404.14,42698.1
1-10-2008,CEU3133230001,31332300,3323,Architectural and structural metals,397.6,19.57,38.9,39586.2,43333.1
1-11-2008,CEU3133230001,31332300,3323,Architectural and structural metals,392.9,19.63,39,39809.64,44428.63
1-12-2008,CEU3133230001,31332300,3323,Architectural and structural metals,386,19.8,38.8,39948.48,45049.5
1-1-2009,CEU3133230001,31332300,3323,Architectural and structural metals,378.8,19.82,38.3,39473.51,44320.98
1-2-2009,CEU3133230001,31332300,3323,Architectural and structural metals,367.9,20.04,38.3,39911.66,44591.19
1-3-2009,CEU3133230001,31332300,3323,Architectural and structural metals,358.8,20.25,38,40014,44597.07
1-4-2009,CEU3133230001,31332300,3323,Architectural and structural metals,351.2,20.21,37.9,39829.87,44281.31
1-5-2009,CEU3133230001,31332300,3323,Architectural and structural metals,348.9,20.22,37.9,39849.57,44175.61
1-6-2009,CEU3133230001,31332300,3323,Architectural and structural metals,343.2,20.2,38.3,40230.32,44217.86
1-7-2009,CEU3133230001,31332300,3323,Architectural and structural metals,339.6,20.26,37.9,39928.41,43955.71
1-8-2009,CEU3133230001,31332300,3323,Architectural and structural metals,335,20.06,37.9,39534.25,43424.4
1-9-2009,CEU3133230001,31332300,3323,Architectural and structural metals,332.1,20.26,38.1,40139.11,44061.23
1-10-2009,CEU3133230001,31332300,3323,Architectural and structural metals,329.7,20.26,38.2,40244.46,44134.37
1-11-2009,CEU3133230001,31332300,3323,Architectural and structural metals,329.4,20.13,38.3,40090.91,43934.88
1-12-2009,CEU3133230001,31332300,3323,Architectural and structural metals,325.1,20.25,38.6,40645.8,44621.56
1-1-2010,CEU3133230001,31332300,3323,Architectural and structural metals,320.9,20.26,39.1,41192.63,45067.86
1-2-2010,CEU3133230001,31332300,3323,Architectural and structural metals,320.2,20.23,38.9,40921.24,44759.79
1-3-2010,CEU3133230001,31332300,3323,Architectural and structural metals,318.5,20.31,39.2,41399.9,45098.16
1-4-2010,CEU3133230001,31332300,3323,Architectural and structural metals,319.9,20.45,39.4,41897.96,45561.57
1-5-2010,CEU3133230001,31332300,3323,Architectural and structural metals,319.3,20.46,39.6,42131.23,45779.75
1-6-2010,CEU3133230001,31332300,3323,Architectural and structural metals,319.4,20.44,39.3,41771.18,45432.88
1-7-2010,CEU3133230001,31332300,3323,Architectural and structural metals,320.4,20.42,39.7,42155.05,45840.72
1-8-2010,CEU3133230001,31332300,3323,Architectural and structural metals,322.4,20.53,40.1,42809.16,46487.83
1-9-2010,CEU3133230001,31332300,3323,Architectural and structural metals,325.5,20.66,39.9,42865.37,46521.81
1-10-2010,CEU3133230001,31332300,3323,Architectural and structural metals,322.3,20.6,39.6,42419.52,45980.68
1-11-2010,CEU3133230001,31332300,3323,Architectural and structural metals,321.4,20.79,39.9,43135.09,46736.66
1-12-2010,CEU3133230001,31332300,3323,Architectural and structural metals,320.8,20.97,39.9,43508.55,47060.44
1-1-2011,CEU3133230001,31332300,3323,Architectural and structural metals,322.7,20.97,39.9,43508.55,46837.34
1-2-2011,CEU3133230001,31332300,3323,Architectural and structural metals,323.8,20.98,39.9,43529.3,46629.73
1-3-2011,CEU3133230001,31332300,3323,Architectural and structural metals,326.2,20.9,40.1,43580.68,46233.94
1-4-2011,CEU3133230001,31332300,3323,Architectural and structural metals,325.7,20.96,40.5,44141.76,46529.55
1-5-2011,CEU3133230001,31332300,3323,Architectural and structural metals,328,21.14,40.6,44630.77,46824.74
1-6-2011,CEU3133230001,31332300,3323,Architectural and structural metals,328.9,20.97,41,44708.04,46956.1
1-7-2011,CEU3133230001,31332300,3323,Architectural and structural metals,328.9,21.29,41.1,45500.99,47746.61
1-8-2011,CEU3133230001,31332300,3323,Architectural and structural metals,328.6,21.48,41.2,46018.75,48157.13
1-9-2011,CEU3133230001,31332300,3323,Architectural and structural metals,329.3,21.38,40.9,45470.98,47511.77
1-10-2011,CEU3133230001,31332300,3323,Architectural and structural metals,329,21.44,41.2,45933.05,48093.78
1-11-2011,CEU3133230001,31332300,3323,Architectural and structural metals,332.7,21.4,40.8,45402.24,47578.13
1-12-2011,CEU3133230001,31332300,3323,Architectural and structural metals,335.3,21.18,41.3,45486.17,47783.94
1-1-2012,CEU3133230001,31332300,3323,Architectural and structural metals,338.1,21.06,41.5,45447.48,47534.14
1-2-2012,CEU3133230001,31332300,3323,Architectural and structural metals,340.1,21.24,41.5,45835.92,47730.26
1-3-2012,CEU3133230001,31332300,3323,Architectural and structural metals,340.4,21.21,41.5,45771.18,47303.59
1-4-2012,CEU3133230001,31332300,3323,Architectural and structural metals,340.6,21.19,41.1,45287.27,46662.51
1-5-2012,CEU3133230001,31332300,3323,Architectural and structural metals,341.5,21.23,40.8,45041.57,46463.87
1-6-2012,CEU3133230001,31332300,3323,Architectural and structural metals,342.2,21.34,40.9,45385.91,46887.84
1-7-2012,CEU3133230001,31332300,3323,Architectural and structural metals,341.6,21.4,41.1,45736.08,47326.73
1-8-2012,CEU3133230001,31332300,3323,Architectural and structural metals,341.8,21.28,41.2,45590.27,46914.77
1-9-2012,CEU3133230001,31332300,3323,Architectural and structural metals,341,21.11,41.5,45555.38,46670.61
1-10-2012,CEU3133230001,31332300,3323,Architectural and structural metals,339.6,21.34,41.4,45940.75,47083.73
1-11-2012,CEU3133230001,31332300,3323,Architectural and structural metals,342.4,21.36,41.6,46205.95,47580.96
1-12-2012,CEU3133230001,31332300,3323,Architectural and structural metals,343,21.32,41.4,45897.7,47391.16
1-1-2013,CEU3133230001,31332300,3323,Architectural and structural metals,344.2,21.37,41.6,46227.59,47591.05
1-2-2013,CEU3133230001,31332300,3323,Architectural and structural metals,346.1,21.19,41.9,46168.77,47144.38
1-3-2013,CEU3133230001,31332300,3323,Architectural and structural metals,346.9,21.37,41.6,46227.59,47081.34
1-4-2013,CEU3133230001,31332300,3323,Architectural and structural metals,347.5,21.27,41.7,46121.87,47022.56
1-5-2013,CEU3133230001,31332300,3323,Architectural and structural metals,347.5,21.27,41.7,46121.87,46938.99
1-6-2013,CEU3133230001,31332300,3323,Architectural and structural metals,347.6,21.31,41.7,46208.61,46914.68
1-7-2013,CEU3133230001,31332300,3323,Architectural and structural metals,347.7,21.19,41.5,45728.02,46408.47
1-8-2013,CEU3133230001,31332300,3323,Architectural and structural metals,348.1,21.18,41.7,45926.71,46554.12
1-9-2013,CEU3133230001,31332300,3323,Architectural and structural metals,349.9,21.23,41.6,45924.73,46498.04
1-10-2013,CEU3133230001,31332300,3323,Architectural and structural metals,349.8,21.19,41.5,45728.02,46418.4
1-11-2013,CEU3133230001,31332300,3323,Architectural and structural metals,352.2,21.19,41.8,46058.59,46849.65
1-12-2013,CEU3133230001,31332300,3323,Architectural and structural metals,352.5,21.29,41.6,46054.53,46849.54
1-1-2014,CEU3133230001,31332300,3323,Architectural and structural metals,352.6,21.57,41.3,46323.73,46948.73
1-2-2014,CEU3133230001,31332300,3323,Architectural and structural metals,352,21.51,41.2,46083.02,46532.7
1-3-2014,CEU3133230001,31332300,3323,Architectural and structural metals,352.6,21.59,41.3,46366.68,46519.54
1-3-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,178.9,18.49,39.4,37882.31,44949.13
1-4-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,179.4,18.55,39.5,38101.7,44828.02
1-5-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,178.6,18.58,39.7,38356.55,44905.01
1-6-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,178.9,18.91,39.4,38742.81,45267.79
1-7-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,180.7,19.06,38.7,38356.34,44684.11
1-8-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,180.2,19.07,39.7,39368.11,45772.81
1-9-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,181.9,19.02,40,39561.6,46224.48
1-10-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,181.4,19.37,40.1,40390.32,47450.02
1-11-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,182.4,19.05,39.8,39425.88,46385.96
1-12-2006,CEU3133231001,31332310,33231,Plate work and fabricated structural products,182.5,19.22,39.2,39178.05,46025.86
1-1-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,182.5,19.53,39.5,40114.62,46982.71
1-2-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,183.8,19.56,38.6,39260.83,45738.04
1-3-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,184.4,19.28,40.4,40503.43,46759.85
1-4-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,185.9,19.68,39.9,40832.06,46835
1-5-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,186.5,19.82,39.9,41122.54,46881.7
1-6-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,186.8,19.98,39.5,41038.92,46695.88
1-7-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,186.6,20.15,39.9,41807.22,47582.18
1-8-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,184.7,20.05,39.7,41391.22,47195.27
1-9-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,186.2,20,39.6,41184,46829.94
1-10-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,186.7,19.81,39.5,40689.74,46169.15
1-11-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,188.1,19.93,39.1,40521.68,45706.97
1-12-2007,CEU3133231001,31332310,33231,Plate work and fabricated structural products,190,19.91,40.3,41723.39,47094.06
1-1-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,192.2,19.45,40.1,40557.14,45551.27
1-2-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,191.6,19.84,39.9,41164.03,46099.02
1-3-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,191,19.86,39.9,41205.53,45748.93
1-4-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,190.2,19.81,39.8,40998.78,45244.98
1-5-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,190.2,19.9,39.8,41185.04,45070.99
1-6-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,190.3,19.79,39.5,40648.66,44040.21
1-7-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,189.1,19.64,39.3,40136.3,43257.96
1-8-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,190.9,19.99,39.2,40747.62,44092.82
1-9-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,189.8,19.83,38.6,39802.78,43130.06
1-10-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,186.1,19.91,38.9,40273.95,44085.95
1-11-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,183.7,20,38.8,40352,45033.92
1-12-2008,CEU3133231001,31332310,33231,Plate work and fabricated structural products,179.1,20.09,38.9,40638.05,45827.12
1-1-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,175.8,20,38.3,39832,44723.49
1-2-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,171,20.11,38,39737.36,44396.45
1-3-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,168.5,20.11,37.9,39632.79,44172.2
1-4-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,161,20.31,37.8,39921.34,44383
1-5-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,160.6,20.07,37.8,39449.59,43732.2
1-6-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,158.3,20,38.3,39832,43780.06
1-7-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,156.1,20.07,38.4,40075.78,44117.95
1-8-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,153.1,19.86,38.3,39553.18,43445.2
1-9-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,150.8,20.08,38.7,40408.99,44357.48
1-10-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,151.1,19.95,39,40458.6,44369.21
1-11-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,150.5,19.68,39.3,40218.05,44074.21
1-12-2009,CEU3133231001,31332310,33231,Plate work and fabricated structural products,149.3,19.96,39.3,40790.26,44780.15
1-1-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,148.2,20.09,39.6,41369.33,45261.18
1-2-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,147.1,20.25,39.4,41488.2,45379.92
1-3-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,145.7,20.23,39.9,41973.2,45722.67
1-4-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,146.8,20.33,40.3,42603.55,46328.86
1-5-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,145.6,20.37,41.1,43534.77,47304.83
1-6-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,144.8,20.42,40.5,43004.52,46774.34
1-7-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,145.8,20.41,40.4,42877.33,46626.15
1-8-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,147,20.58,40.7,43555.51,47298.32
1-9-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,148,20.71,40.6,43722.95,47452.55
1-10-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,147.2,20.47,40.6,43216.27,46844.31
1-11-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,145.1,20.89,40.5,43994.34,47667.65
1-12-2010,CEU3133231001,31332310,33231,Plate work and fabricated structural products,143.9,21.13,40.6,44609.66,48251.43
1-1-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,146,21.14,40.5,44520.84,47927.07
1-2-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,147.3,21.01,41.2,45011.82,48217.85
1-3-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,149.1,21.1,41.3,45314.36,48073.16
1-4-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,149.8,20.94,41.6,45297.41,47747.71
1-5-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,151.8,21.42,41.8,46558.51,48847.25
1-6-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,152.6,21.14,42.6,46829.33,49184.05
1-7-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,151.4,21.41,43,47872.76,50235.45
1-8-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,152,21.78,42.8,48473.57,50726.02
1-9-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,152.8,21.54,42.9,48051.43,50208.03
1-10-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,153.8,21.66,43,48431.76,50710.03
1-11-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,156.3,21.62,42.3,47555.35,49834.43
1-12-2011,CEU3133231001,31332310,33231,Plate work and fabricated structural products,158.4,21.4,42.9,47739.12,50150.7
1-1-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,159.4,21.37,43.2,48005.57,50209.67
1-2-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,160,21.54,42.9,48051.43,50037.34
1-3-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,160,21.65,43.2,48634.56,50262.84
1-4-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,159,21.71,42.9,48430.67,49901.36
1-5-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,159.2,21.79,42.8,48495.82,50027.21
1-6-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,159.9,21.99,42.7,48826.6,50442.39
1-7-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,161.1,22.02,42.6,48778.7,50475.18
1-8-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,159.6,21.93,42.6,48579.34,49990.67
1-9-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,159.9,21.64,42.9,48274.51,49456.3
1-10-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,160,21.94,42.9,48943.75,50161.44
1-11-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,160.3,22.01,43.1,49328.81,50796.75
1-12-2012,CEU3133231001,31332310,33231,Plate work and fabricated structural products,159.3,21.98,42.7,48804.39,50392.44
1-1-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,159.9,22,43.1,49306.4,50760.67
1-2-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,160.7,21.75,43.2,48859.2,49891.66
1-3-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,161.6,21.81,43,48767.16,49667.82
1-4-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,162.5,21.81,42.8,48540.34,49488.26
1-5-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,162.9,21.69,42.6,48047.69,48898.93
1-6-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,163.8,21.81,42.4,48086.69,48821.46
1-7-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,163.7,21.51,42.4,47425.25,48130.95
1-8-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,164,21.57,42.6,47781.86,48434.61
1-9-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,164.2,21.72,42.6,48114.14,48714.78
1-10-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,163.7,21.72,42,47436.48,48152.66
1-11-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,164.7,21.76,43.1,48768.51,49606.12
1-12-2013,CEU3133231001,31332310,33231,Plate work and fabricated structural products,165.1,22.01,42.7,48871,49714.64
1-1-2014,CEU3133231001,31332310,33231,Plate work and fabricated structural products,164.6,22.46,41.9,48935.85,49596.09
1-2-2014,CEU3133231001,31332310,33231,Plate work and fabricated structural products,163.5,22.53,41.5,48619.74,49094.17
1-3-2014,CEU3133231001,31332310,33231,Plate work and fabricated structural products,164.4,22.66,41.4,48782.45,48943.27
1-3-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,94.3,18.9,39.2,38525.76,45712.61
1-4-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,94.8,18.97,39.2,38668.45,45494.82
1-5-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,94.6,18.81,39.8,38929.18,45575.39
1-6-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,94.7,18.89,39.1,38407.15,44875.6
1-7-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,96.3,19.73,39,40012.44,46613.41
1-8-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,95.6,19.35,39.8,40046.76,46561.87
1-9-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,95.3,19.67,39.8,40709.03,47565.16
1-10-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,95.8,19.86,39.7,40998.98,48165.07
1-11-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,96,19.7,39.3,40258.92,47366.07
1-12-2006,CEU3133231201,31332312,332312,Fabricated structural metal products,96.3,20.02,39.3,40912.87,48063.91
1-1-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,96.9,20.32,38.9,41103.3,48140.66
1-2-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,97.7,20.41,38.1,40436.29,47107.42
1-3-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,98.5,20.24,39.9,41993.95,48480.61
1-4-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,99.4,20.49,39.4,41979.91,48151.6
1-5-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,99.5,20.52,40.1,42788.3,48780.75
1-6-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,99.3,21.04,38.4,42012.67,47803.85
1-7-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,99.3,20.56,40.1,42871.71,48793.71
1-8-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,98.2,20.55,39.3,41995.98,47884.84
1-9-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,98.9,20.49,38.9,41447.17,47129.19
1-10-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,99,20.36,38.7,40972.46,46489.95
1-11-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,100,20.37,39.1,41416.29,46716.06
1-12-2007,CEU3133231201,31332312,332312,Fabricated structural metal products,101.4,20.16,41.1,43085.95,48632.01
1-1-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,101.8,19.84,40,41267.2,46348.77
1-2-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,101.7,20.14,39.8,41681.74,46678.8
1-3-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,101.4,20.24,39.4,41467.71,46040.02
1-4-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,100.1,20.07,40,41745.6,46069.15
1-5-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,100.2,20.39,39.4,41775.03,45716.65
1-6-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,100.2,20.45,39.2,41685.28,45163.32
1-7-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,99.5,20.68,39.2,42154.11,45432.7
1-8-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,99.6,20.8,39.4,42615.04,46113.55
1-9-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,99.8,20.77,39.3,42445.57,45993.77
1-10-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,99,20.67,39.6,42563.66,46592.39
1-11-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,98,21.01,39.8,43482.3,48527.41
1-12-2008,CEU3133231201,31332312,332312,Fabricated structural metal products,95.9,21.12,39.9,43819.78,49415.12
1-1-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,94.6,21.08,39.8,43627.17,48984.71
1-2-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,92.9,21.21,39,43013.88,48057.13
1-3-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,91.2,21.23,39,43054.44,47985.76
1-4-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,89.2,21.37,39.1,43449.48,48305.46
1-5-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,89.2,21.14,38.7,42542.14,47160.47
1-6-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,87.6,21.16,39.3,43242.57,47528.68
1-7-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,86.6,21,39.5,43134,47484.63
1-8-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,85.4,20.69,39.2,42174.5,46324.45
1-9-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,84.3,20.77,39.9,43093.6,47304.41
1-10-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,83.2,20.81,40.2,43501.22,47705.92
1-11-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,82.1,20.45,40.2,42748.68,46847.48
1-12-2009,CEU3133231201,31332312,332312,Fabricated structural metal products,81,20.86,39.9,43280.33,47513.79
1-1-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,79.5,20.92,39.7,43187.25,47250.12
1-2-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,77.7,20.95,40,43576,47663.57
1-3-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,76.8,20.81,40.2,43501.22,47387.19
1-4-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,77.8,20.84,40.5,43889.04,47726.75
1-5-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,76.2,20.81,41.1,44475.13,48326.63
1-6-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,76.4,20.79,40.6,43891.85,47739.45
1-7-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,76.5,20.62,40.7,43640.17,47455.68
1-8-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,77.2,20.82,41,44388.24,48202.61
1-9-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,77.6,20.58,41,43876.56,47619.26
1-10-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,77.8,20.41,41.8,44363.18,48087.51
1-11-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,76.3,20.66,41.3,44369.41,48074.04
1-12-2010,CEU3133231201,31332312,332312,Fabricated structural metal products,75.6,21,40.9,44662.8,48308.91
1-1-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,75.8,20.98,40.9,44620.27,48034.11
1-2-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,76.6,20.66,41.5,44584.28,47759.85
1-3-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,77.5,20.54,41.6,44432.13,47137.22
1-4-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,77.2,20.55,41.5,44346.9,46745.79
1-5-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,77.9,20.94,42,45732.96,47981.11
1-6-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,78.8,20.76,43.2,46635.27,48980.23
1-7-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,77.1,21.03,43.9,48007.29,50376.61
1-8-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,77,21.14,43.7,48038.54,50270.77
1-9-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,77,21.32,43.8,48558.43,50737.79
1-10-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,77.8,21.41,43.6,48540.75,50824.14
1-11-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,79.3,21.47,43.2,48230.21,50541.62
1-12-2011,CEU3133231201,31332312,332312,Fabricated structural metal products,81.2,21.27,44,48665.76,51124.15
1-1-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,82.5,21.26,44.2,48863.98,51107.5
1-2-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,83.2,21.43,43.5,48474.66,50478.05
1-3-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,83.4,21.64,43.6,49062.21,50704.8
1-4-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,83.5,21.74,43.6,49288.93,50785.69
1-5-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,83.6,21.91,42.8,48762.89,50302.71
1-6-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,84.4,22.08,42.6,48911.62,50530.23
1-7-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,84.9,22.14,42.6,49044.53,50750.25
1-8-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,85,21.96,42.7,48759.98,50176.57
1-9-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,85,22,43.3,49535.2,50747.86
1-10-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,85.2,22.14,43,49505.04,50736.69
1-11-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,84.8,22.12,42.9,49345.3,50813.73
1-12-2012,CEU3133231201,31332312,332312,Fabricated structural metal products,83.3,22.11,43,49437.96,51046.63
1-1-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,84.2,21.98,43.5,49718.76,51185.19
1-2-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,85,21.78,43.8,49606.13,50654.38
1-3-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,85.4,21.95,43.7,49879.18,50800.38
1-4-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,86.6,21.74,43.3,48949.79,49905.71
1-5-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,86.8,21.38,43.5,48361.56,49218.36
1-6-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,88.4,21.41,43,47872.76,48604.27
1-7-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,87.4,21.04,42.8,46826.63,47523.43
1-8-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,87.4,21.19,42.2,46499.34,47134.57
1-9-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,87.6,21.32,41.1,45565.11,46133.92
1-10-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,88.2,21.23,41.4,45703.95,46393.96
1-11-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,89.4,21.15,42.1,46301.58,47096.82
1-12-2013,CEU3133231201,31332312,332312,Fabricated structural metal products,89.4,21.08,41.8,45819.49,46610.45
1-1-2014,CEU3133231201,31332312,332312,Fabricated structural metal products,89.6,22.16,40.5,46668.96,47298.62
1-2-2014,CEU3133231201,31332312,332312,Fabricated structural metal products,90.1,22.26,40,46300.8,46752.61
1-3-2014,CEU3133231201,31332312,332312,Fabricated structural metal products,90.7,22.34,40.3,46815.7,46970.04
1-3-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,232.5,17.19,40,35755.2,42425.21
1-4-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,234.5,17.34,39.8,35886.86,42222.18
1-5-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,234.3,17.6,39.4,36058.88,42215.07
1-6-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,233.5,17.82,39.5,36602.28,42766.76
1-7-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,232.6,17.92,39.3,36621.31,42662.84
1-8-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,231.8,18.05,38.9,36511.54,42451.51
1-9-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,230.1,18.02,39,36544.56,42699.32
1-10-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,230,18.17,39.4,37226.7,43733.43
1-11-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,230.8,17.93,39.4,36734.98,43220.03
1-12-2006,CEU3133232001,31332320,33232,Ornamental and architectural metal products,230.3,18.1,39.8,37459.76,44007.24
1-1-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,230.9,18.33,39.5,37649.82,44095.91
1-2-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,229,18.32,39.2,37343.49,43504.37
1-3-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,229.6,18.4,39.6,37889.28,43741.91
1-4-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,229.9,18.53,40,38542.4,44208.72
1-5-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,229.2,18.32,40.1,38200.86,43550.85
1-6-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,232.7,18.44,39.7,38067.54,43314.9
1-7-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,235.7,18.42,39.6,37930.46,43169.92
1-8-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,232.9,18.5,40,38480,43875.83
1-9-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,232.8,18.53,39.9,38446.04,43716.63
1-10-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,232.2,18.53,39.9,38446.04,43623.31
1-11-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,228.8,18.73,39.7,38666.21,43614.08
1-12-2007,CEU3133232001,31332320,33232,Ornamental and architectural metal products,227.4,18.68,39.2,38077.31,42978.65
1-1-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,225.5,18.57,39.2,37853.09,42514.25
1-2-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,225.9,18.6,39.1,37817.52,42351.31
1-3-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,224.5,18.9,39.7,39017.16,43319.27
1-4-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,221.1,18.85,39.1,38325.82,42295.19
1-5-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,218.8,18.8,39,38126.4,41723.76
1-6-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,216.8,18.81,39.2,38342.3,41541.43
1-7-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,214.9,18.91,39.5,38841.14,41862.06
1-8-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,216.2,18.99,39.3,38807.96,41993.93
1-9-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,213.4,19.19,39.2,39116.89,42386.84
1-10-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,212.1,19.23,39,38998.44,42689.71
1-11-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,209.3,19.3,39,39140.4,43681.74
1-12-2008,CEU3133232001,31332320,33232,Ornamental and architectural metal products,206.7,19.55,38.7,39342.42,44366.05
1-1-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,203.4,19.71,38.5,39459.42,44305.16
1-2-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,196.8,19.93,38.5,39899.86,44578
1-3-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,189.9,20.33,38.2,40383.51,45008.91
1-4-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,190.6,20.09,37.9,39593.37,44018.38
1-5-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,188.2,20.36,38.2,40443.11,44833.57
1-6-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,185,20.4,38.2,40522.56,44539.06
1-7-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,184,20.47,37.7,40129.39,44176.96
1-8-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,182.3,20.28,37.6,39651.46,43553.14
1-9-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,180.1,20.42,37.8,40137.55,44059.52
1-10-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,178.7,20.48,37.7,40148.99,44029.67
1-11-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,178.5,20.52,37.4,39907.3,43733.66
1-12-2009,CEU3133232001,31332320,33232,Ornamental and architectural metal products,175.5,20.49,38.1,40594.79,44565.56
1-1-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,173,20.46,38.7,41173.7,45047.15
1-2-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,173.1,20.18,38.5,40400.36,44190.04
1-3-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,172.6,20.34,38.7,40932.21,44588.69
1-4-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,173.4,20.51,38.7,41274.32,44883.41
1-5-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,173.8,20.54,38.6,41227.89,44798.18
1-6-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,174.8,20.5,38.2,40721.2,44290.86
1-7-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,175.1,20.46,39,41492.88,45120.66
1-8-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,175.7,20.53,39.6,42275.38,45908.18
1-9-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,177.1,20.62,39.1,41924.59,45500.78
1-10-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,175.8,20.67,38.6,41488.82,44971.85
1-11-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176,20.69,39.4,42389.67,45929
1-12-2010,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176.6,20.87,39.7,43084.03,46601.25
1-1-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176.9,20.89,39.4,42799.43,46073.96
1-2-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176.5,20.93,38.7,42119.53,45119.55
1-3-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,177,20.72,39.1,42127.9,44692.71
1-4-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,175.9,20.94,39.7,43228.54,45566.93
1-5-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176.3,20.9,39.6,43037.28,45152.92
1-6-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176.4,20.89,39.6,43016.69,45179.7
1-7-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,177.9,21.1,39.6,43449.12,45593.48
1-8-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176.9,21.23,39.8,43937.61,45979.28
1-9-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176.3,21.23,38.7,42723.25,44640.71
1-10-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,175.6,21.17,39.7,43703.35,45759.18
1-11-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176,21.15,39.5,43442.1,45524.05
1-12-2011,CEU3133232001,31332320,33232,Ornamental and architectural metal products,176.6,20.98,39.9,43529.3,45728.22
1-1-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,178.8,20.82,40,43305.6,45293.92
1-2-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,180.1,20.97,39.9,43508.55,45306.71
1-3-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,180.5,20.77,39.8,42985.59,44424.74
1-4-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,182,20.72,39.6,42666.63,43962.28
1-5-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,182.4,20.72,39.2,42235.65,43569.35
1-6-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,182.6,20.79,39.3,42486.45,43892.43
1-7-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,181,20.76,39.9,43072.85,44570.88
1-8-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,180.8,20.68,39.8,42799.33,44042.74
1-9-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,180.5,20.62,40.1,42996.82,44049.42
1-10-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,179.9,20.71,40,43076.8,44148.52
1-11-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,182,20.68,40.3,43337.01,44626.64
1-12-2012,CEU3133232001,31332320,33232,Ornamental and architectural metal products,183.4,20.69,40.2,43250.38,44657.7
1-1-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,184.4,20.84,40.3,43672.3,44960.4
1-2-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,185.6,20.69,40.4,43465.55,44384.04
1-3-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,185.5,20.97,40.5,44162.82,44978.45
1-4-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,185.3,20.78,40.8,44086.85,44947.8
1-5-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,184.6,20.92,40.9,44492.66,45280.92
1-6-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,183.9,20.87,41.1,44603.36,45284.91
1-7-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,184.4,20.87,40.8,44277.79,44936.66
1-8-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,182.8,20.8,40.8,44129.28,44732.13
1-9-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,185.3,20.78,40.7,43978.79,44527.8
1-10-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,186.1,20.66,41,44047.12,44712.13
1-11-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,187.4,20.66,40.8,43832.26,44585.09
1-12-2013,CEU3133232001,31332320,33232,Ornamental and architectural metal products,187.3,20.61,40.3,43190.32,43935.89
1-1-2014,CEU3133232001,31332320,33232,Ornamental and architectural metal products,188.2,20.73,40.8,43980.77,44574.16
1-2-2014,CEU3133232001,31332320,33232,Ornamental and architectural metal products,188.2,20.63,41,43983.16,44412.35
1-3-2014,CEU3133232001,31332320,33232,Ornamental and architectural metal products,188.1,20.64,41.5,44541.12,44687.96
1-3-2006,CEU3133232101,31332321,332321,Metal windows and doors,83.4,16.05,40.4,33717.84,40007.79
1-4-2006,CEU3133232101,31332321,332321,Metal windows and doors,83.6,16.13,41.5,34808.54,40953.5
1-5-2006,CEU3133232101,31332321,332321,Metal windows and doors,83,16.19,40.1,33759.39,39522.99
1-6-2006,CEU3133232101,31332321,332321,Metal windows and doors,82.8,16.43,40.4,34516.14,40329.28
1-7-2006,CEU3133232101,31332321,332321,Metal windows and doors,81.7,16.53,39.3,33780.71,39353.61
1-8-2006,CEU3133232101,31332321,332321,Metal windows and doors,80.5,16.87,39.7,34826.43,40492.26
1-9-2006,CEU3133232101,31332321,332321,Metal windows and doors,79,16.75,40.1,34927.1,40809.45
1-10-2006,CEU3133232101,31332321,332321,Metal windows and doors,78.5,17.12,40.2,35787.65,42042.86
1-11-2006,CEU3133232101,31332321,332321,Metal windows and doors,78.7,17.03,40,35422.4,41675.73
1-12-2006,CEU3133232101,31332321,332321,Metal windows and doors,78.2,17.05,39.7,35198.02,41350.17
1-1-2007,CEU3133232101,31332321,332321,Metal windows and doors,78.9,17.29,39.9,35873.29,42015.22
1-2-2007,CEU3133232101,31332321,332321,Metal windows and doors,77.6,17.54,39.5,36027.16,41970.88
1-3-2007,CEU3133232101,31332321,332321,Metal windows and doors,77.9,17.04,40,35443.2,40917.99
1-4-2007,CEU3133232101,31332321,332321,Metal windows and doors,76.9,17.25,40.4,36238.8,41566.46
1-5-2007,CEU3133232101,31332321,332321,Metal windows and doors,76.3,17.35,40.3,36358.66,41450.64
1-6-2007,CEU3133232101,31332321,332321,Metal windows and doors,76.9,17.36,40,36108.8,41086.17
1-7-2007,CEU3133232101,31332321,332321,Metal windows and doors,76.8,17.47,40.2,36519.29,41563.81
1-8-2007,CEU3133232101,31332321,332321,Metal windows and doors,76.5,17,40.4,35713.6,40721.51
1-9-2007,CEU3133232101,31332321,332321,Metal windows and doors,76.1,17.37,39,35226.36,40055.56
1-10-2007,CEU3133232101,31332321,332321,Metal windows and doors,76.1,17.13,39.7,35363.17,40125.29
1-11-2007,CEU3133232101,31332321,332321,Metal windows and doors,74.7,17.32,39.5,35575.28,40127.62
1-12-2007,CEU3133232101,31332321,332321,Metal windows and doors,73.8,17.39,40.8,36894.63,41643.73
1-1-2008,CEU3133232101,31332321,332321,Metal windows and doors,72.1,17.5,40.1,36491,40984.44
1-2-2008,CEU3133232101,31332321,332321,Metal windows and doors,71.8,17.43,40.3,36526.31,40905.3
1-3-2008,CEU3133232101,31332321,332321,Metal windows and doors,70.6,17.5,40,36400,40413.54
1-4-2008,CEU3133232101,31332321,332321,Metal windows and doors,69.2,18.28,39.5,37547.12,41435.84
1-5-2008,CEU3133232101,31332321,332321,Metal windows and doors,69.2,17.74,39.6,36530.21,39976.96
1-6-2008,CEU3133232101,31332321,332321,Metal windows and doors,67.7,17.74,39.7,36622.46,39678.08
1-7-2008,CEU3133232101,31332321,332321,Metal windows and doors,66.5,17.72,39.9,36765.46,39624.94
1-8-2008,CEU3133232101,31332321,332321,Metal windows and doors,65.9,18.03,39.7,37221.13,40276.82
1-9-2008,CEU3133232101,31332321,332321,Metal windows and doors,65.6,18.21,40.8,38634.34,41863.94
1-10-2008,CEU3133232101,31332321,332321,Metal windows and doors,65.5,18.29,39.8,37852.98,41435.83
1-11-2008,CEU3133232101,31332321,332321,Metal windows and doors,63.6,18.41,39.7,38005.61,42415.28
1-12-2008,CEU3133232101,31332321,332321,Metal windows and doors,63,18.31,39.2,37323.11,42088.89
1-1-2009,CEU3133232101,31332321,332321,Metal windows and doors,61.8,19,36.2,35765.6,40157.72
1-2-2009,CEU3133232101,31332321,332321,Metal windows and doors,59.5,18.87,38.5,37777.74,42207.06
1-3-2009,CEU3133232101,31332321,332321,Metal windows and doors,57.1,19.17,38.4,38278.66,42662.97
1-4-2009,CEU3133232101,31332321,332321,Metal windows and doors,57.2,18.88,38.1,37405.05,41585.5
1-5-2009,CEU3133232101,31332321,332321,Metal windows and doors,56.1,19.11,38.3,38059.48,42191.18
1-6-2009,CEU3133232101,31332321,332321,Metal windows and doors,55.7,18.9,38.2,37542.96,41264.14
1-7-2009,CEU3133232101,31332321,332321,Metal windows and doors,55.5,18.9,37.8,37149.84,40896.89
1-8-2009,CEU3133232101,31332321,332321,Metal windows and doors,55.1,18.83,37.9,37110.16,40761.79
1-9-2009,CEU3133232101,31332321,332321,Metal windows and doors,54.6,19.19,37,36921.56,40529.28
1-10-2009,CEU3133232101,31332321,332321,Metal windows and doors,53.9,19.27,37.3,37376.09,40988.75
1-11-2009,CEU3133232101,31332321,332321,Metal windows and doors,53.5,19.4,36.1,36417.68,39909.46
1-12-2009,CEU3133232101,31332321,332321,Metal windows and doors,52.5,19.47,36.9,37359.04,41013.3
1-1-2010,CEU3133232101,31332321,332321,Metal windows and doors,51.4,19.24,37,37017.76,40500.24
1-2-2010,CEU3133232101,31332321,332321,Metal windows and doors,51.5,19.46,37.9,38351.77,41949.29
1-3-2010,CEU3133232101,31332321,332321,Metal windows and doors,51.2,19.78,37.9,38982.43,42464.73
1-4-2010,CEU3133232101,31332321,332321,Metal windows and doors,50.9,19.97,38.5,39979.94,43475.84
1-5-2010,CEU3133232101,31332321,332321,Metal windows and doors,51.1,19.9,38.2,39529.36,42952.56
1-6-2010,CEU3133232101,31332321,332321,Metal windows and doors,51,19.98,37.9,39376.59,42828.38
1-7-2010,CEU3133232101,31332321,332321,Metal windows and doors,50.6,20.22,38.5,40480.44,44019.7
1-8-2010,CEU3133232101,31332321,332321,Metal windows and doors,50.8,20.21,38.4,40355.33,43823.14
1-9-2010,CEU3133232101,31332321,332321,Metal windows and doors,51.3,20.12,38.9,40698.73,44170.36
1-10-2010,CEU3133232101,31332321,332321,Metal windows and doors,50.6,20.23,38.5,40500.46,43900.52
1-11-2010,CEU3133232101,31332321,332321,Metal windows and doors,50.7,20.18,39,40925.04,44342.08
1-12-2010,CEU3133232101,31332321,332321,Metal windows and doors,50.7,20.43,39.1,41538.28,44929.31
1-1-2011,CEU3133232101,31332321,332321,Metal windows and doors,51,20.4,39,41371.2,44536.46
1-2-2011,CEU3133232101,31332321,332321,Metal windows and doors,50.8,20.91,38.4,41753.09,44727
1-3-2011,CEU3133232101,31332321,332321,Metal windows and doors,50.7,20.56,38.4,41054.21,43553.65
1-4-2011,CEU3133232101,31332321,332321,Metal windows and doors,50.7,20.64,38.6,41428.61,43669.64
1-5-2011,CEU3133232101,31332321,332321,Metal windows and doors,50.8,20.67,38.5,41381.34,43415.57
1-6-2011,CEU3133232101,31332321,332321,Metal windows and doors,51,20.74,38.5,41521.48,43609.31
1-7-2011,CEU3133232101,31332321,332321,Metal windows and doors,50.6,20.63,38.3,41086.71,43114.47
1-8-2011,CEU3133232101,31332321,332321,Metal windows and doors,50,20.84,38.7,41938.41,43887.19
1-9-2011,CEU3133232101,31332321,332321,Metal windows and doors,49.6,21.04,38.3,41903.27,43783.93
1-10-2011,CEU3133232101,31332321,332321,Metal windows and doors,49.7,21.27,39.9,44131,46206.95
1-11-2011,CEU3133232101,31332321,332321,Metal windows and doors,49.4,20.9,39.3,42711.24,44758.16
1-12-2011,CEU3133232101,31332321,332321,Metal windows and doors,49.8,20.81,39.3,42527.32,44675.62
1-1-2012,CEU3133232101,31332321,332321,Metal windows and doors,50,20.24,39.3,41362.46,43261.56
1-2-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.4,20.66,39.9,42865.37,44636.94
1-3-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.3,20.22,39.6,41637.02,43031.02
1-4-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.6,20.52,39.5,42148.08,43427.99
1-5-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.9,20.15,38.6,40445.08,41722.23
1-6-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.5,20.33,39.7,41969.25,43358.12
1-7-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.5,20.34,40.3,42624.5,44106.94
1-8-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.4,20.38,40.7,43132.23,44385.31
1-9-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.2,19.95,41.1,42637.14,43680.93
1-10-2012,CEU3133232101,31332321,332321,Metal windows and doors,50.6,20.03,40.8,42495.65,43552.91
1-11-2012,CEU3133232101,31332321,332321,Metal windows and doors,51.1,20.04,41.3,43037.9,44318.64
1-12-2012,CEU3133232101,31332321,332321,Metal windows and doors,51.2,19.74,41.5,42598.92,43985.05
1-1-2013,CEU3133232101,31332321,332321,Metal windows and doors,51.4,19.95,41.4,42948.36,44215.1
1-2-2013,CEU3133232101,31332321,332321,Metal windows and doors,52,19.59,41.3,42071.48,42960.51
1-3-2013,CEU3133232101,31332321,332321,Metal windows and doors,52.4,19.8,41.5,42728.4,43517.53
1-4-2013,CEU3133232101,31332321,332321,Metal windows and doors,52.2,19.53,41.6,42247.3,43072.33
1-5-2013,CEU3133232101,31332321,332321,Metal windows and doors,51.8,19.66,41.8,42732.98,43490.06
1-6-2013,CEU3133232101,31332321,332321,Metal windows and doors,52.1,19.66,42.1,43039.67,43697.33
1-7-2013,CEU3133232101,31332321,332321,Metal windows and doors,52.3,19.83,42.3,43618.07,44267.12
1-8-2013,CEU3133232101,31332321,332321,Metal windows and doors,52.6,19.35,41.7,41958.54,42531.73
1-9-2013,CEU3133232101,31332321,332321,Metal windows and doors,53,19.24,42.1,42120.21,42646.02
1-10-2013,CEU3133232101,31332321,332321,Metal windows and doors,53.2,19.08,42.7,42365.23,43004.84
1-11-2013,CEU3133232101,31332321,332321,Metal windows and doors,53.7,19.18,42,41889.12,42608.57
1-12-2013,CEU3133232101,31332321,332321,Metal windows and doors,53.3,19.02,42,41539.68,42256.76
1-1-2014,CEU3133232101,31332321,332321,Metal windows and doors,53.6,19.15,41.7,41524.86,42085.11
1-2-2014,CEU3133232101,31332321,332321,Metal windows and doors,53.7,18.95,42.6,41978.04,42387.66
1-3-2014,CEU3133232101,31332321,332321,Metal windows and doors,53.9,18.94,42.6,41955.89,42094.2
1-3-2006,CEU3133232201,31332322,332322,Sheet metal work,108,17.62,40.6,37199.34,44138.75
1-4-2006,CEU3133232201,31332322,332322,Sheet metal work,108.8,17.88,40.4,37562.3,44193.4
1-5-2006,CEU3133232201,31332322,332322,Sheet metal work,109.1,17.99,40,37419.2,43807.63
1-6-2006,CEU3133232201,31332322,332322,Sheet metal work,108.9,18.2,40,37856,44231.63
1-7-2006,CEU3133232201,31332322,332322,Sheet metal work,108.3,18.2,40,37856,44101.22
1-8-2006,CEU3133232201,31332322,332322,Sheet metal work,108.7,18.43,39.6,37951.05,44125.22
1-9-2006,CEU3133232201,31332322,332322,Sheet metal work,108.8,18.46,40,38396.8,44863.51
1-10-2006,CEU3133232201,31332322,332322,Sheet metal work,108.9,18.49,40.3,38747.64,45520.23
1-11-2006,CEU3133232201,31332322,332322,Sheet metal work,109.2,18.54,39.9,38466.79,45257.57
1-12-2006,CEU3133232201,31332322,332322,Sheet metal work,109.1,18.37,40.7,38878.27,45673.68
1-1-2007,CEU3133232201,31332322,332322,Sheet metal work,109.4,18.71,40.3,39208.68,45921.66
1-2-2007,CEU3133232201,31332322,332322,Sheet metal work,109.7,18.86,40,39228.8,45700.72
1-3-2007,CEU3133232201,31332322,332322,Sheet metal work,109.6,19.29,40.7,40825.36,47131.5
1-4-2007,CEU3133232201,31332322,332322,Sheet metal work,110.3,19.64,41.1,41974.61,48145.52
1-5-2007,CEU3133232201,31332322,332322,Sheet metal work,111.6,18.78,41.2,40234.27,45869.03
1-6-2007,CEU3133232201,31332322,332322,Sheet metal work,112.9,19.15,40.7,40529.06,46115.73
1-7-2007,CEU3133232201,31332322,332322,Sheet metal work,114.6,19.05,39.7,39326.82,44759.16
1-8-2007,CEU3133232201,31332322,332322,Sheet metal work,114.6,19.43,40.6,41020.62,46772.7
1-9-2007,CEU3133232201,31332322,332322,Sheet metal work,114.6,19.16,41.7,41546.54,47242.18
1-10-2007,CEU3133232201,31332322,332322,Sheet metal work,114.9,19.21,41.7,41654.96,47264.36
1-11-2007,CEU3133232201,31332322,332322,Sheet metal work,112.9,20.08,40.2,41975.23,47346.53
1-12-2007,CEU3133232201,31332322,332322,Sheet metal work,111.8,19.05,38.7,38336.22,43270.89
1-1-2008,CEU3133232201,31332322,332322,Sheet metal work,110,18.73,38.6,37594.86,42224.22
1-2-2008,CEU3133232201,31332322,332322,Sheet metal work,110.5,18.98,38.9,38392.74,42995.49
1-3-2008,CEU3133232201,31332322,332322,Sheet metal work,110.9,19.35,39.3,39543.66,43903.82
1-4-2008,CEU3133232201,31332322,332322,Sheet metal work,110.2,19.1,38.9,38635.48,42636.92
1-5-2008,CEU3133232201,31332322,332322,Sheet metal work,108.3,19.11,39,38755.08,42411.76
1-6-2008,CEU3133232201,31332322,332322,Sheet metal work,106.6,18.93,39.2,38586.91,41806.44
1-7-2008,CEU3133232201,31332322,332322,Sheet metal work,107,19.16,39.3,39155.38,42200.73
1-8-2008,CEU3133232201,31332322,332322,Sheet metal work,107.3,19.11,39.5,39251.94,42474.36
1-9-2008,CEU3133232201,31332322,332322,Sheet metal work,106.9,19.06,39.1,38752.79,41992.3
1-10-2008,CEU3133232201,31332322,332322,Sheet metal work,105.9,19.33,39.3,39502.79,43241.8
1-11-2008,CEU3133232201,31332322,332322,Sheet metal work,104.8,19.47,39.6,40092.63,44744.45
1-12-2008,CEU3133232201,31332322,332322,Sheet metal work,104.4,19.89,39,40336.92,45487.54
1-1-2009,CEU3133232201,31332322,332322,Sheet metal work,102.7,19.75,39.3,40361.1,45317.57
1-2-2009,CEU3133232201,31332322,332322,Sheet metal work,99.4,19.85,39.5,40771.9,45552.28
1-3-2009,CEU3133232201,31332322,332322,Sheet metal work,95.9,20.1,39,40762.8,45431.64
1-4-2009,CEU3133232201,31332322,332322,Sheet metal work,95.6,20.18,38.8,40715.17,45265.55
1-5-2009,CEU3133232201,31332322,332322,Sheet metal work,94.6,20.26,38.8,40876.57,45314.09
1-6-2009,CEU3133232201,31332322,332322,Sheet metal work,92.9,20.54,38.7,41334.7,45431.7
1-7-2009,CEU3133232201,31332322,332322,Sheet metal work,92.3,20.6,38.2,40919.84,45047.15
1-8-2009,CEU3133232201,31332322,332322,Sheet metal work,91.7,20.46,38.6,41067.31,45108.32
1-9-2009,CEU3133232201,31332322,332322,Sheet metal work,90.9,20.67,38.7,41596.31,45660.81
1-10-2009,CEU3133232201,31332322,332322,Sheet metal work,91,20.56,39,41695.68,45725.86
1-11-2009,CEU3133232201,31332322,332322,Sheet metal work,91.5,20.64,38.9,41750.59,45753.7
1-12-2009,CEU3133232201,31332322,332322,Sheet metal work,90,20.49,39.7,42299.55,46437.08
1-1-2010,CEU3133232201,31332322,332322,Sheet metal work,88.2,20.39,40.1,42517.23,46517.07
1-2-2010,CEU3133232201,31332322,332322,Sheet metal work,89.3,20.35,39.9,42222.18,46182.75
1-3-2010,CEU3133232201,31332322,332322,Sheet metal work,90.1,20.25,40,42120,45882.58
1-4-2010,CEU3133232201,31332322,332322,Sheet metal work,90.3,20.24,39.9,41993.95,45665.96
1-5-2010,CEU3133232201,31332322,332322,Sheet metal work,90.5,20.3,39.5,41696.2,45307.05
1-6-2010,CEU3133232201,31332322,332322,Sheet metal work,92.1,20.24,39,41046.72,44644.91
1-7-2010,CEU3133232201,31332322,332322,Sheet metal work,92.6,20.19,40.5,42520.14,46237.73
1-8-2010,CEU3133232201,31332322,332322,Sheet metal work,93,20.48,41.2,43876.35,47646.73
1-9-2010,CEU3133232201,31332322,332322,Sheet metal work,93.7,20.55,40.7,43492.02,47201.92
1-10-2010,CEU3133232201,31332322,332322,Sheet metal work,93.3,20.63,40.2,43124.95,46745.34
1-11-2010,CEU3133232201,31332322,332322,Sheet metal work,93.7,20.65,40.4,43381.52,47003.66
1-12-2010,CEU3133232201,31332322,332322,Sheet metal work,93.9,20.92,40.2,43731.17,47301.22
1-1-2011,CEU3133232201,31332322,332322,Sheet metal work,93.7,20.77,39.9,43093.6,46390.64
1-2-2011,CEU3133232201,31332322,332322,Sheet metal work,93.5,20.84,39.1,42371.89,45389.88
1-3-2011,CEU3133232201,31332322,332322,Sheet metal work,94.8,20.55,39.8,42530.28,45119.59
1-4-2011,CEU3133232201,31332322,332322,Sheet metal work,93.2,20.74,40.5,43678.44,46041.17
1-5-2011,CEU3133232201,31332322,332322,Sheet metal work,93.4,20.82,41,44388.24,46570.29
1-6-2011,CEU3133232201,31332322,332322,Sheet metal work,92.8,20.71,40.8,43938.34,46147.69
1-7-2011,CEU3133232201,31332322,332322,Sheet metal work,94.1,20.91,40.7,44253.93,46438
1-8-2011,CEU3133232201,31332322,332322,Sheet metal work,93.8,21.08,40.5,44394.48,46457.38
1-9-2011,CEU3133232201,31332322,332322,Sheet metal work,93.7,20.75,40.1,43267.9,45209.8
1-10-2011,CEU3133232201,31332322,332322,Sheet metal work,93.1,20.62,40.4,43318.5,45356.23
1-11-2011,CEU3133232201,31332322,332322,Sheet metal work,93.7,20.57,39.8,42571.67,44611.9
1-12-2011,CEU3133232201,31332322,332322,Sheet metal work,93.9,20.42,40.5,43004.52,45176.93
1-1-2012,CEU3133232201,31332322,332322,Sheet metal work,95.2,20.42,40.9,43429.26,45423.25
1-2-2012,CEU3133232201,31332322,332322,Sheet metal work,96.9,20.45,40.8,43386.72,45179.84
1-3-2012,CEU3133232201,31332322,332322,Sheet metal work,97.1,20.18,40.6,42604.02,44030.39
1-4-2012,CEU3133232201,31332322,332322,Sheet metal work,97.1,20.08,40.5,42288.48,43572.66
1-5-2012,CEU3133232201,31332322,332322,Sheet metal work,97.4,20.17,40.3,42268.25,43602.98
1-6-2012,CEU3133232201,31332322,332322,Sheet metal work,97.4,20.15,39.9,41807.22,43190.72
1-7-2012,CEU3133232201,31332322,332322,Sheet metal work,96.2,20.21,40.4,42457.17,43933.79
1-8-2012,CEU3133232201,31332322,332322,Sheet metal work,96.3,20.16,40.2,42142.46,43366.79
1-9-2012,CEU3133232201,31332322,332322,Sheet metal work,95.7,20.26,40.4,42562.21,43604.16
1-10-2012,CEU3133232201,31332322,332322,Sheet metal work,94.8,20.36,40.3,42666.41,43727.93
1-11-2012,CEU3133232201,31332322,332322,Sheet metal work,96,20.43,40.3,42813.11,44087.16
1-12-2012,CEU3133232201,31332322,332322,Sheet metal work,96.9,20.56,39.9,42657.89,44045.93
1-1-2013,CEU3133232201,31332322,332322,Sheet metal work,97.3,20.85,40.5,43910.1,45205.21
1-2-2013,CEU3133232201,31332322,332322,Sheet metal work,98.1,20.97,40.5,44162.82,45096.04
1-3-2013,CEU3133232201,31332322,332322,Sheet metal work,99,21.24,40.8,45062.79,45895.03
1-4-2013,CEU3133232201,31332322,332322,Sheet metal work,98.4,21.23,40.9,45151.96,46033.72
1-5-2013,CEU3133232201,31332322,332322,Sheet metal work,98.3,21.12,41.1,45137.66,45937.35
1-6-2013,CEU3133232201,31332322,332322,Sheet metal work,98.1,21.17,41,45134.44,45824.11
1-7-2013,CEU3133232201,31332322,332322,Sheet metal work,97.5,20.99,40.6,44314.09,44973.5
1-8-2013,CEU3133232201,31332322,332322,Sheet metal work,96.7,21.2,40.8,44977.92,45592.37
1-9-2013,CEU3133232201,31332322,332322,Sheet metal work,97.6,21.28,40.6,44926.34,45487.17
1-10-2013,CEU3133232201,31332322,332322,Sheet metal work,98.2,21.26,40.8,45105.21,45786.2
1-11-2013,CEU3133232201,31332322,332322,Sheet metal work,98.7,21.37,40.5,45005.22,45778.19
1-12-2013,CEU3133232201,31332322,332322,Sheet metal work,99.1,21.29,40.3,44615.32,45385.5
1-1-2014,CEU3133232201,31332322,332322,Sheet metal work,99.7,21.29,40.5,44836.74,45441.68
1-2-2014,CEU3133232201,31332322,332322,Sheet metal work,99.2,21.41,40.6,45200.79,45641.86
1-3-2014,CEU3133232201,31332322,332322,Sheet metal work,99.8,21.3,41.3,45743.88,45894.68
1-3-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.5,18.47,37.4,35920.46,42621.29
1-4-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.9,19.33,36.5,36688.34,43165.15
1-5-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.4,19.27,36.5,36574.46,42818.67
1-6-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.7,19.7,36.9,37800.36,44166.62
1-7-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.4,19.87,36,37196.64,43333.08
1-8-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.3,19.59,36,36672.48,42638.64
1-9-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.1,19.31,37.2,37353.27,43644.23
1-10-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42,19.24,37.5,37518,44075.66
1-11-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.5,19.4,37,37325.6,43914.91
1-12-2006,CEU3133232301,31332323,332323,Ornamental and architectural metal work,43,18.93,37.3,36716.63,43134.21
1-1-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.2,18.79,36.1,35272.59,41311.67
1-2-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.3,18.61,36.9,35708.87,41600.07
1-3-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.3,18.59,36.2,34993.82,40399.19
1-4-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.5,18.59,36.6,35380.49,40581.96
1-5-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.4,18.68,37.2,36134.59,41195.2
1-6-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.6,18.3,36.6,34828.56,39629.45
1-7-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,44.2,18.22,37.1,35150.02,40005.41
1-8-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.5,18.64,37,35863.36,40892.27
1-9-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.1,18.89,37.2,36540.82,41550.22
1-10-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.4,19.01,37.2,36772.95,41724.91
1-11-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.3,18.76,37.9,36972.21,41703.3
1-12-2007,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.3,19.77,37.1,38140.29,43049.73
1-1-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,43.1,19.54,38.3,38915.86,43707.89
1-2-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,44.4,19.86,38.1,39346.63,44063.74
1-3-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42.8,20.1,39.8,41598.96,46185.74
1-4-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.2,19.76,39,40073.28,44223.63
1-5-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.3,19.57,38.3,38975.61,42653.1
1-6-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,42,20.07,37.9,39553.96,42854.17
1-7-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41,20.01,38.4,39955.97,43063.6
1-8-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,43.5,20.23,37.8,39764.09,43028.55
1-9-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.2,21.36,37.6,41763.07,45254.22
1-10-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.3,20.4,37.5,39780,43545.25
1-11-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,41.2,20.53,36.6,39072.7,43606.18
1-12-2008,CEU3133232301,31332323,332323,Ornamental and architectural metal work,39.4,20.49,36.9,39316.21,44336.5
1-1-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,38.3,20.34,37,39134.16,43939.95
1-2-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,38.1,22.29,35.8,41495.06,46360.23
1-3-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,37.5,22.88,35.7,42474.43,47339.32
1-4-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,37.6,21.83,36.3,41206.31,45811.59
1-5-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,37.2,22.4,36.1,42049.28,46614.11
1-6-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,36.3,22.25,36.4,42114.8,46289.13
1-7-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,36.1,22.47,36.3,42414.37,46692.42
1-8-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,35.4,22.32,34.8,40390.27,44364.66
1-9-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.6,21.86,35.8,40694.57,44670.97
1-10-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.1,22.24,35.2,40708.1,44642.82
1-11-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33.6,22.06,35.6,40837.47,44753.02
1-12-2009,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33.1,22.08,35.1,40300.41,44242.39
1-1-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.9,22.25,34.7,40147.9,43924.84
1-2-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.5,21.25,35.7,39448.5,43148.89
1-3-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,31.9,21.6,36.1,40547.52,44169.63
1-4-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32,22.14,35.1,40409.93,43943.43
1-5-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.1,22.16,36.6,42174.91,45827.21
1-6-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,31.7,22.01,36.1,41317.17,44939.07
1-7-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,31.8,21.55,36,40341.6,43868.72
1-8-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,31.8,21.38,36.9,41023.95,44549.21
1-9-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32,21.58,36.4,40846.63,44330.87
1-10-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,31.8,21.54,36,40322.88,43708.02
1-11-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,31.7,21.65,37,41654.6,45132.56
1-12-2010,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32,21.54,37.7,42227.02,45674.28
1-1-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,31.8,21.61,38.3,43038.48,46331.3
1-2-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.2,21.5,38.5,43043,46108.79
1-3-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.2,21.41,38.1,42417.49,44999.93
1-4-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32,21.71,38.7,43689.2,46052.52
1-5-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.1,21.37,37,41115.88,43137.06
1-6-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.4,21.5,38.4,42931.2,45089.91
1-7-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.7,22.23,38.4,44388.86,46579.6
1-8-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.9,22.45,39.7,46345.78,48499.36
1-9-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.9,22.82,38.3,45448.31,47488.08
1-10-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.8,22.75,38.8,45900.4,48059.59
1-11-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33,23.13,38.8,46667.09,48903.59
1-12-2011,CEU3133232301,31332323,332323,Ornamental and architectural metal work,32.8,23.07,38,45586.32,47889.15
1-1-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33.3,22.61,38.3,45030.07,47097.57
1-2-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33.2,23.36,37.6,45673.47,47561.1
1-3-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33.8,23.33,37.9,45978.77,47518.13
1-4-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.5,23.33,37,44886.92,46250
1-5-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.1,23.18,36.7,44236.71,45633.6
1-6-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.4,23.31,37.4,45333.29,46833.48
1-7-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33.9,23.03,37.7,45148.01,46718.21
1-8-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.5,22.93,37.7,44951.97,46257.92
1-9-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.5,22.74,38.2,45170.73,46276.55
1-10-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.4,22.87,39.1,46499.29,47656.16
1-11-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.8,23.3,38.1,46161.96,47535.66
1-12-2012,CEU3133232301,31332323,332323,Ornamental and architectural metal work,35.3,22.35,39.4,45790.68,47280.66
1-1-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,35.5,21.89,37.9,43140.81,44413.23
1-2-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,35.7,21.68,39.2,44192.51,45126.36
1-3-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.8,21.9,38.2,43502.16,44305.59
1-4-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.7,21.63,39,43865.64,44722.28
1-5-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.5,22.19,39.1,45116.71,45916.02
1-6-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33.6,22.07,39.1,44872.72,45558.39
1-7-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.2,22.2,39.2,45252.48,45925.86
1-8-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,33.9,22.18,39.4,45442.38,46063.17
1-9-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.5,21.85,39.3,44652.66,45210.08
1-10-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.7,21.68,39.6,44643.46,45317.47
1-11-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.9,21.6,39.3,44141.76,44899.91
1-12-2013,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.9,21.22,38.7,42703.13,43440.29
1-1-2014,CEU3133232301,31332323,332323,Ornamental and architectural metal work,35,21.55,39.2,43927.52,44520.19
1-2-2014,CEU3133232301,31332323,332323,Ornamental and architectural metal work,35.1,21.11,39.5,43359.94,43783.05
1-3-2014,CEU3133232301,31332323,332323,Ornamental and architectural metal work,34.8,21.53,40.1,44894.36,45042.36
1-3-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",92.6,19.9,40.3,41702.44,49481.89
1-4-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",93.3,20.08,41.1,42914.98,50491.01
1-5-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",92.8,19.41,41.3,41684.91,48801.61
1-6-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",93.6,19.85,41.5,42836.3,50050.7
1-7-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94.1,19.96,41.4,42969.89,50058.76
1-8-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94,20.19,41.1,43150.07,50170.04
1-9-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94,20.34,40.9,43259.11,50544.72
1-10-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94.3,20.18,41.2,43233.63,50790.3
1-11-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94.9,20.39,40.6,43047.37,50646.78
1-12-2006,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",95.9,20.99,40,43659.2,51290.26
1-1-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96,20.85,40.5,43910.1,51428.03
1-2-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.8,20.72,40.8,43959.55,51211.94
1-3-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.1,20.77,41.2,44497.65,51371.04
1-4-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.3,20.99,43.3,47261.09,54209.19
1-5-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.6,21.22,41.1,45351.38,51702.79
1-6-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.1,21.45,41.4,46177.56,52542.84
1-7-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.1,21.25,41.8,46189,52569.23
1-8-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.3,21.02,41.6,45470.46,51846.52
1-9-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.4,21.25,42.1,46520.5,52898.02
1-10-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.2,21.62,40.8,45868.99,52045.86
1-11-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.6,21.76,41.3,46731.78,52711.74
1-12-2007,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.8,21.54,40.9,45811.27,51708.14
1-1-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.8,21.59,42.1,47264.83,53084.93
1-2-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.7,21.77,41.8,47319.27,52992.19
1-3-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.8,21.79,42.2,47815.98,53088.26
1-4-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.3,21.57,41.9,46996.71,51864.12
1-5-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.2,21.71,42,47414.64,51888.38
1-6-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.9,21.87,42.4,48218.98,52242.16
1-7-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96,21.88,42,47785.92,51502.54
1-8-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.9,21.9,41.9,47715.72,51632.97
1-9-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.6,21.93,41.9,47781.09,51775.31
1-10-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",98.4,22.04,41.8,47906.14,52440.54
1-11-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.9,22.1,42.1,48381.32,53994.86
1-12-2008,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.6,21.91,41.7,47509.64,53576.15
1-1-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",95.1,22.81,41,48630.92,54602.95
1-2-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",93.6,22.17,41.9,48304,53967.49
1-3-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",91.2,22.36,40,46508.8,51835.77
1-4-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",90.6,22.52,40.6,47544.22,52857.83
1-5-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",89.3,22.45,40.9,47746.66,52929.99
1-6-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",88.6,22.33,40.2,46678.63,51305.31
1-7-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",85.6,22.49,39.8,46545.3,51240.02
1-8-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",87.2,22.64,41.1,48386.21,53147.39
1-9-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",86.6,22.27,40.8,47248.03,51864.79
1-10-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",85.6,21.9,41.3,47032.44,51578.45
1-11-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",85.6,22.04,40.9,46874.67,51369.08
1-12-2009,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",84.2,22.27,41.3,47827.05,52505.24
1-1-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",84.4,22.3,41.3,47891.48,52396.91
1-2-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",84.5,22.18,40.8,47057.09,51471.2
1-3-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",84.7,22.22,40.6,46910.86,51101.41
1-4-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",84.5,22.29,40.4,46826.83,50921.43
1-5-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",85.1,22.2,40.5,46753.2,50801.98
1-6-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",85.3,22.17,41.1,47381.72,51535.25
1-7-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",85.6,22.29,42.3,49029.09,53315.76
1-8-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",85.4,22.38,41.6,48412.41,52572.59
1-9-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",86,22.39,42.4,49365.47,53576.38
1-10-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",86.1,22.36,42.5,49415.6,53564.09
1-11-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",85.7,22.39,43.1,50180.47,54370.29
1-12-2010,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",86.8,22.58,43.3,50841.13,54991.62
1-1-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",87.1,22.97,43.3,51719.25,55676.23
1-2-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",87.2,22.84,42.7,50713.94,54326.1
1-3-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",87.7,22.6,43,50533.6,53610.16
1-4-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",89.1,22.78,43.9,52002.18,54815.18
1-5-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",89.5,23.17,43.7,52651.51,55239.76
1-6-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",90.3,22.95,43.3,51674.22,54272.56
1-7-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",91.1,22.79,43.5,51550.98,54095.2
1-8-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",90.9,22.82,43.4,51500.18,53893.26
1-9-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",90.9,22.9,43.5,51799.8,54124.63
1-10-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",91.4,22.84,43.2,51307.78,53721.33
1-11-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",91.8,22.88,43,51159.68,53611.49
1-12-2011,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",92,22.91,42.5,50631.1,53188.77
1-1-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",92.7,22.78,43.6,51646.82,54018.11
1-2-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94,22.56,44.5,52203.84,54361.36
1-3-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94.9,22.51,44.7,52322.24,54073.98
1-4-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",95.8,22.51,44.9,52556.35,54152.33
1-5-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97,22.6,44.4,52178.88,53826.56
1-6-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.9,22.74,44.4,52502.11,54239.54
1-7-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.9,22.69,43.4,51206.79,52987.71
1-8-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.3,22.73,43.6,51533.46,53030.61
1-9-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.3,22.89,43.3,51539.13,52800.84
1-10-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.2,22.88,43.6,51873.54,53164.11
1-11-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.3,22.85,43.6,51805.52,53347.16
1-12-2012,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.3,22.78,43.9,52002.18,53694.28
1-1-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.6,22.67,42.8,50454.35,51942.48
1-2-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.3,22.82,43.5,51618.84,52709.62
1-3-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96.4,22.85,43.7,51924.34,52883.31
1-4-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",96,22.79,43.5,51550.98,52557.7
1-5-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",95.2,22.7,44.1,52055.64,52977.89
1-6-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",95.2,22.82,44.3,52568.15,53371.41
1-7-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",95.9,22.86,44.1,52422.55,53202.62
1-8-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",95.6,22.79,44.5,52736.06,53456.49
1-9-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",98,22.8,44.5,52759.2,53417.82
1-10-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",97.9,22.81,45,53375.4,54181.24
1-11-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",95.6,23.49,45.3,55333.04,56283.4
1-12-2013,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94.9,23.75,45.1,55698.5,56659.99
1-1-2014,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94.6,24.27,45.3,57170.41,57941.75
1-2-2014,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94.6,24.07,45.6,57074.79,57631.72
1-3-2014,CEU3133240001,31332400,3324,"Boilers, tanks, and shipping containers",94.1,23.42,45.3,55168.15,55350.03
1-3-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,350.3,19.48,40.3,40822.29,48437.55
1-4-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,349.6,19.4,40.3,40654.64,47831.65
1-5-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,350.4,19.43,40.7,41121.65,48142.18
1-6-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,351.3,19.6,40.5,41277.6,48229.49
1-7-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,353.8,19.62,40.3,41115.67,47898.65
1-8-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,355,19.59,40.3,41052.8,47731.59
1-9-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,355.3,19.71,40.8,41816.73,48859.42
1-10-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,355.8,19.68,40.3,41241.41,48449.86
1-11-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,353.5,19.7,40.3,41283.32,48571.31
1-12-2006,CEU3133270001,31332700,3327,Machine shops and threaded products,355.8,19.81,40.3,41513.84,48769.91
1-1-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,357.6,19.76,40,41100.8,48137.74
1-2-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,357.5,19.77,39.8,40915.99,47666.26
1-3-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,359.2,19.68,40.5,41446.08,47848.11
1-4-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,361,19.9,40.5,41909.4,48070.72
1-5-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,360.7,20.14,40.2,42100.66,47996.8
1-6-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,361.8,19.84,40.4,41679.87,47425.18
1-7-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,360.3,19.98,40.2,41766.19,47535.49
1-8-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,361,20,40.1,41704,47551.91
1-9-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,361.4,19.87,40.4,41742.89,47465.45
1-10-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,362.3,19.94,40.3,41786.27,47413.34
1-11-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,366.3,19.87,40.5,41846.22,47201.01
1-12-2007,CEU3133270001,31332700,3327,Machine shops and threaded products,364.3,20.13,40.2,42079.75,47496.29
1-1-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,364.4,19.98,40.2,41766.19,46909.2
1-2-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,367,20.1,40.2,42017.04,47054.29
1-3-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,366.6,20.01,40.2,41828.9,46441.04
1-4-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,366.6,20.09,40.2,41996.14,46345.64
1-5-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,366.8,20.16,40.1,42037.63,46004.03
1-6-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,365.5,20.08,40.1,41870.82,45364.34
1-7-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,363,20.2,39.5,41490.8,44717.8
1-8-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,360.6,20.24,39.9,41993.95,45441.47
1-9-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,358.2,20.4,39.6,42007.68,45519.28
1-10-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,354.5,20.48,39.6,42172.41,46164.11
1-11-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,353.6,20.67,39.2,42133.73,47022.37
1-12-2008,CEU3133270001,31332700,3327,Machine shops and threaded products,345.3,20.69,38.9,41851.73,47195.78
1-1-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,338.9,20.76,38.7,41777.43,46907.82
1-2-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,332.1,21.13,38.5,42302.26,47262.07
1-3-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,324.3,21.18,37.9,41741.54,46522.48
1-4-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,314.4,21.17,38.3,42162.17,46874.28
1-5-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,307,21.01,38,41515.76,46022.67
1-6-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,302.5,21.37,38,42227.12,46412.58
1-7-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,296.8,21.16,38.3,42142.26,46392.86
1-8-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,298.9,21.45,38.3,42719.82,46923.43
1-9-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,298.3,21.41,38.6,42974.15,47173.29
1-10-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,297.9,21.42,38.5,42882.84,47027.76
1-11-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,298,21.48,39,43561.44,47738.17
1-12-2009,CEU3133270001,31332700,3327,Machine shops and threaded products,298.3,21.44,39.7,44260.73,48590.09
1-1-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,299.4,21.5,39.5,44161,48315.48
1-2-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,300.5,21.31,39.8,44103.18,48240.2
1-3-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,301.9,21.22,40.2,44358.29,48320.82
1-4-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,305.2,21.21,40.3,44447.68,48334.24
1-5-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,307.3,21.16,40.8,44893.05,48780.75
1-6-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,310.4,21.17,40.7,44804.19,48731.76
1-7-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,314.6,21.25,40.6,44863,48785.43
1-8-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,317.6,21.18,41.2,45376.03,49275.29
1-9-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,319.8,21.15,41,45091.8,48938.16
1-10-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,322.7,21.16,41.1,45223.15,49019.68
1-11-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,325.3,21.05,41.1,44988.06,48744.34
1-12-2010,CEU3133270001,31332700,3327,Machine shops and threaded products,327.5,20.97,41.2,44926.13,48593.74
1-1-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,330.1,21.07,41.3,45249.93,48711.95
1-2-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,333.2,21,41.1,44881.2,48077.92
1-3-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,336.4,21.11,41,45006.52,47746.58
1-4-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,339.4,21.12,41,45027.84,47463.56
1-5-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,341.8,21.17,41,45134.44,47353.17
1-6-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,344.6,21.23,40.7,44931.17,47190.45
1-7-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,345,21.08,41.2,45161.79,47390.68
1-8-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,345.6,21.13,40.8,44829.41,46912.52
1-9-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,347.4,21.15,40.8,44871.84,46885.73
1-10-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,349.2,21.2,41,45198.4,47324.56
1-11-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,351.2,21.14,41.1,45180.41,47345.66
1-12-2011,CEU3133270001,31332700,3327,Machine shops and threaded products,353.5,21.32,41.1,45565.11,47866.86
1-1-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,356.5,21.24,41.1,45394.13,47478.34
1-2-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,358.6,21.22,41.2,45461.73,47340.6
1-3-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,360.4,21.19,40.8,44956.7,46461.84
1-4-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,362.3,21.43,40.7,45354.45,46731.73
1-5-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,364.1,21.45,40.6,45285.24,46715.24
1-6-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,365.4,21.45,40.7,45396.78,46899.07
1-7-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,367.9,21.51,40.7,45523.77,47107.04
1-8-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,367.2,21.49,40.3,45034.45,46342.79
1-9-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,364.8,21.61,40.6,45623.03,46739.91
1-10-2012,CEU3133270001,31332700,3327,Machine shops and threaded products,364.2,21.67,40.5,45637.02,46772.44
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment