Skip to content

Instantly share code, notes, and snippets.

@syntagmatic
Last active May 26, 2023 20:16
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save syntagmatic/05a5b0897a48890133beb59c815bd953 to your computer and use it in GitHub Desktop.
Save syntagmatic/05a5b0897a48890133beb59c815bd953 to your computer and use it in GitHub Desktop.
Nutrient Parallel Coordinates IV
<!DOCTYPE html>
<meta charset="utf-8">
<title>Nutrient Parallel Coordinates IV</title>
<body>
<script src="https://d3js.org/d3.v4.js"></script>
<script src="render-queue.js"></script>
<link rel="stylesheet" href="style.css"></link>
<script>
var margin = {top: 66, right: 110, bottom: 20, left: 188},
width = document.body.clientWidth - margin.left - margin.right,
height = 340 - margin.top - margin.bottom,
innerHeight = height - 2;
var devicePixelRatio = window.devicePixelRatio || 1;
var color = d3.scaleOrdinal()
.range(["#5DA5B3","#D58323","#DD6CA7","#54AF52","#8C92E8","#E15E5A","#725D82","#776327","#50AB84","#954D56","#AB9C27","#517C3F","#9D5130","#357468","#5E9ACF","#C47DCB","#7D9E33","#DB7F85","#BA89AD","#4C6C86","#B59248","#D8597D","#944F7E","#D67D4B","#8F86C2"]);
var types = {
"Number": {
key: "Number",
coerce: function(d) { return +d; },
extent: d3.extent,
within: function(d, extent, dim) { return extent[0] <= dim.scale(d) && dim.scale(d) <= extent[1]; },
defaultScale: d3.scaleLinear().range([innerHeight, 0])
},
"String": {
key: "String",
coerce: String,
extent: function (data) { return data.sort(); },
within: function(d, extent, dim) { return extent[0] <= dim.scale(d) && dim.scale(d) <= extent[1]; },
defaultScale: d3.scalePoint().range([0, innerHeight])
},
"Date": {
key: "Date",
coerce: function(d) { return new Date(d); },
extent: d3.extent,
within: function(d, extent, dim) { return extent[0] <= dim.scale(d) && dim.scale(d) <= extent[1]; },
defaultScale: d3.scaleTime().range([0, innerHeight])
}
};
var dimensions = [
{
key: "food_group",
description: "Food Group",
type: types["String"],
axis: d3.axisLeft()
.tickFormat(function(d,i) {
return d;
})
},
{
key: "Total lipid (fat) (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Sugars, total (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Calcium, Ca (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Sodium, Na (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Phosphorus, P (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Potassium, K (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Thiamin (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Riboflavin (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Niacin (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Iron, Fe (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Magnesium, Mg (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Protein (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Zinc, Zn (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin B-6 (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin B-12 (mcg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Folic acid (mcg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Selenium, Se (mcg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin A, IU (IU)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin K (phylloquinone) (mcg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin C, total ascorbic acid (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin D (IU)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Cholesterol (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Fiber, total dietary (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Carbohydrate, by difference (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "manufac_name",
description: "Manufacturer",
type: types["String"],
axis: d3.axisRight()
.tickFormat(function(d,i) {
if (d == null) return "(null)";
return i % 5 == 0 ? d.slice(0,22) : "";
})
}
];
var xscale = d3.scalePoint()
.domain(d3.range(dimensions.length))
.range([0, width]);
var yAxis = d3.axisLeft();
var container = d3.select("body").append("div")
.attr("class", "parcoords")
.style("width", width + margin.left + margin.right + "px")
.style("height", height + margin.top + margin.bottom + "px");
var svg = container.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 + ")");
var canvas = container.append("canvas")
.attr("width", width * devicePixelRatio)
.attr("height", height * devicePixelRatio)
.style("width", width + "px")
.style("height", height + "px")
.style("margin-top", margin.top + "px")
.style("margin-left", margin.left + "px");
var ctx = canvas.node().getContext("2d");
ctx.globalCompositeOperation = 'darken';
ctx.globalAlpha = 0.15;
ctx.lineWidth = 1.5;
ctx.scale(devicePixelRatio, devicePixelRatio);
var output = d3.select("body").append("pre");
var axes = svg.selectAll(".axis")
.data(dimensions)
.enter().append("g")
.attr("class", function(d) { return "axis " + d.key.replace(/ /g, "_"); })
.attr("transform", function(d,i) { return "translate(" + xscale(i) + ")"; });
d3.csv("nutrient.csv", function(error, data) {
if (error) throw error;
// shuffle the data!
data = d3.shuffle(data);
console.log(data);
data.forEach(function(d) {
dimensions.forEach(function(p) {
d[p.key] = !d[p.key] ? null : p.type.coerce(d[p.key]);
});
// truncate long text strings to fit in data table
for (var key in d) {
if (d[key] && d[key].length > 35) d[key] = d[key].slice(0,36);
}
});
// type/dimension default setting happens here
dimensions.forEach(function(dim) {
if (!("domain" in dim)) {
// detect domain using dimension type's extent function
dim.domain = d3_functor(dim.type.extent)(data.map(function(d) { return d[dim.key]; }));
}
if (!("scale" in dim)) {
// use type's default scale for dimension
dim.scale = dim.type.defaultScale.copy();
}
dim.scale.domain(dim.domain);
});
var render = renderQueue(draw).rate(50);
ctx.clearRect(0,0,width,height);
ctx.globalAlpha = d3.min([0.85/Math.pow(data.length,0.3),1]);
render(data);
axes.append("g")
.each(function(d) {
var renderAxis = "axis" in d
? d.axis.scale(d.scale) // custom axis
: yAxis.scale(d.scale); // default axis
d3.select(this).call(renderAxis);
})
.append("text")
.attr("class", "title")
.attr("text-anchor", "start")
.text(function(d) { return "description" in d ? d.description : d.key; });
// Add and store a brush for each axis.
axes.append("g")
.attr("class", "brush")
.each(function(d) {
d3.select(this).call(d.brush = d3.brushY()
.extent([[-10,0], [10,height]])
.on("start", brushstart)
.on("brush", brush)
.on("end", brush)
)
})
.selectAll("rect")
.attr("x", -8)
.attr("width", 16);
d3.selectAll(".axis.food_group .tick text")
.style("fill", color);
output.text(d3.tsvFormat(data.slice(0,24)));
function project(d) {
return dimensions.map(function(p,i) {
// check if data element has property and contains a value
if (
!(p.key in d) ||
d[p.key] === null
) return null;
return [xscale(i),p.scale(d[p.key])];
});
};
function draw(d) {
ctx.strokeStyle = color(d.food_group);
ctx.beginPath();
var coords = project(d);
coords.forEach(function(p,i) {
// this tricky bit avoids rendering null values as 0
if (p === null) {
// this bit renders horizontal lines on the previous/next
// dimensions, so that sandwiched null values are visible
if (i > 0) {
var prev = coords[i-1];
if (prev !== null) {
ctx.moveTo(prev[0],prev[1]);
ctx.lineTo(prev[0]+6,prev[1]);
}
}
if (i < coords.length-1) {
var next = coords[i+1];
if (next !== null) {
ctx.moveTo(next[0]-6,next[1]);
}
}
return;
}
if (i == 0) {
ctx.moveTo(p[0],p[1]);
return;
}
ctx.lineTo(p[0],p[1]);
});
ctx.stroke();
}
function brushstart() {
d3.event.sourceEvent.stopPropagation();
}
// Handles a brush event, toggling the display of foreground lines.
function brush() {
render.invalidate();
var actives = [];
svg.selectAll(".axis .brush")
.filter(function(d) {
return d3.brushSelection(this);
})
.each(function(d) {
actives.push({
dimension: d,
extent: d3.brushSelection(this)
});
});
var selected = data.filter(function(d) {
if (actives.every(function(active) {
var dim = active.dimension;
// test if point is within extents for each active brush
return dim.type.within(d[dim.key], active.extent, dim);
})) {
return true;
}
});
// show ticks for active brush dimensions
// and filter ticks to only those within brush extents
/*
svg.selectAll(".axis")
.filter(function(d) {
return actives.indexOf(d) > -1 ? true : false;
})
.classed("active", true)
.each(function(dimension, i) {
var extent = extents[i];
d3.select(this)
.selectAll(".tick text")
.style("display", function(d) {
var value = dimension.type.coerce(d);
return dimension.type.within(value, extent, dimension) ? null : "none";
});
});
// reset dimensions without active brushes
svg.selectAll(".axis")
.filter(function(d) {
return actives.indexOf(d) > -1 ? false : true;
})
.classed("active", false)
.selectAll(".tick text")
.style("display", null);
*/
ctx.clearRect(0,0,width,height);
ctx.globalAlpha = d3.min([0.85/Math.pow(selected.length,0.3),1]);
render(selected);
output.text(d3.tsvFormat(selected.slice(0,24)));
}
});
function d3_functor(v) {
return typeof v === "function" ? v : function() { return v; };
};
</script>
We can't make this file beautiful and searchable because it's too large.
id,food_group_id,long_desc,short_desc,common_names,manufac_name,survey,ref_desc,refuse,sci_name,nitrogen_factor,protein_factor,fat_factor,calorie_factor,food_group,Protein (g),Total lipid (fat) (g),"Carbohydrate, by difference (g)",Energy (kcal),"Sugars, total (g)","Fiber, total dietary (g)","Calcium, Ca (mg)","Iron, Fe (mg)","Magnesium, Mg (mg)","Phosphorus, P (mg)","Potassium, K (mg)","Sodium, Na (mg)","Zinc, Zn (mg)","Selenium, Se (mcg)","Vitamin A, IU (IU)",Vitamin D (IU),"Vitamin C, total ascorbic acid (mg)",Thiamin (mg),Riboflavin (mg),Niacin (mg),Vitamin B-6 (mg),Vitamin B-12 (mcg),Vitamin K (phylloquinone) (mcg),Folic acid (mcg),Cholesterol (mg)
1001,100,"Butter, salted","BUTTER,WITH SALT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.85,81.11,0.06,717,0.06,,24,0.02,2,24,24,643,0.09,1,2499,,,0.005,0.034,0.042,0.003,0.17,7,,215
1002,100,"Butter, whipped, with salt","BUTTER,WHIPPED,W/ SALT",,,Y,,0,,6.38,,,,Dairy and Egg Products,0.49,78.3,2.87,718,0.06,0,23,0.05,1,24,41,583,0.05,0,2468,0,0,0.007,0.064,0.022,0.008,0.07,4.6,0,225
1003,100,"Butter oil, anhydrous","BUTTER OIL,ANHYDROUS",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.28,99.48,0,876,0,0,4,0,0,3,5,2,0.01,0,3069,0,0,0.001,0.005,0.003,0.001,0.01,8.6,0,256
1004,100,"Cheese, blue","CHEESE,BLUE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.4,28.74,2.34,353,0.5,0,528,0.31,23,387,256,1146,2.66,14.5,721,21,0,0.029,0.382,1.016,0.166,1.22,2.4,0,75
1005,100,"Cheese, brick","CHEESE,BRICK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.24,29.68,2.79,371,0.51,0,674,0.43,24,451,136,560,2.6,14.5,1080,22,0,0.014,0.351,0.118,0.065,1.26,2.5,0,94
1006,100,"Cheese, brie","CHEESE,BRIE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,20.75,27.68,0.45,334,0.45,0,184,0.5,20,188,152,629,2.38,14.5,592,20,0,0.07,0.52,0.38,0.235,1.65,2.3,0,100
1007,100,"Cheese, camembert","CHEESE,CAMEMBERT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,19.8,24.26,0.46,300,0.46,0,388,0.33,20,347,187,842,2.38,14.5,820,18,0,0.028,0.488,0.63,0.227,1.3,2,0,72
1008,100,"Cheese, caraway","CHEESE,CARAWAY",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,25.18,29.2,3.06,376,,0,673,0.64,22,490,93,690,2.94,14.5,1054,,0,0.031,0.45,0.18,0.074,0.27,,0,93
1009,100,"Cheese, cheddar","CHEESE,CHEDDAR",,,Y,,0,,,,,,Dairy and Egg Products,22.87,33.31,3.09,404,0.48,0,710,0.14,27,455,76,653,3.64,28.5,1242,24,0,0.029,0.428,0.059,0.066,1.1,2.4,0,99
1010,100,"Cheese, cheshire","CHEESE,CHESHIRE",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.37,30.6,4.78,387,,0,643,0.21,21,464,95,700,2.79,14.5,985,,0,0.046,0.293,0.08,0.074,0.83,,0,103
1011,100,"Cheese, colby","CHEESE,COLBY",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.76,32.11,2.57,394,0.52,0,685,0.76,26,457,127,604,3.07,14.5,994,24,0,0.015,0.375,0.093,0.079,0.83,2.7,0,95
1012,100,"Cheese, cottage, creamed, large or small curd","CHEESE,COTTAGE,CRMD,LRG OR SML CURD",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.12,4.3,3.38,98,2.67,0,83,0.07,8,159,104,364,0.4,9.7,140,3,0,0.027,0.163,0.099,0.046,0.43,0,0,17
1013,100,"Cheese, cottage, creamed, with fruit","CHEESE,COTTAGE,CRMD,W/FRUIT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,10.69,3.85,4.61,97,2.38,0.2,53,0.16,7,113,90,344,0.33,7.7,146,0,1.4,0.033,0.142,0.15,0.068,0.53,0.4,0,13
1014,100,"Cheese, cottage, nonfat, uncreamed, dry, large or small curd","CHEESE,COTTAGE,NONFAT,UNCRMD,DRY,LRG OR SML CURD",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,10.34,0.29,6.66,72,1.85,0,86,0.15,11,190,137,372,0.47,9.4,8,0,0,0.023,0.226,0.144,0.016,0.46,0,0,7
1015,100,"Cheese, cottage, lowfat, 2% milkfat","CHEESE,COTTAGE,LOWFAT,2% MILKFAT",,,Y,,0,,,,,,Dairy and Egg Products,10.45,2.27,4.76,81,4,0,111,0.13,9,150,125,308,0.51,11.9,225,0,0,0.02,0.251,0.103,0.057,0.47,0,0,12
1016,100,"Cheese, cottage, lowfat, 1% milkfat","CHEESE,COTTAGE,LOWFAT,1% MILKFAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,12.39,1.02,2.72,72,2.72,0,61,0.14,5,134,86,406,0.38,9,41,0,0,0.021,0.165,0.128,0.068,0.63,0.1,0,4
1017,100,"Cheese, cream","CHEESE,CREAM",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,6.15,34.44,5.52,350,3.76,0,97,0.11,9,107,132,314,0.5,8.6,1111,0,0,0.023,0.23,0.091,0.056,0.22,2.1,0,101
1018,100,"Cheese, edam","CHEESE,EDAM",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.99,27.8,1.43,357,1.43,0,731,0.44,30,536,188,812,3.75,14.5,825,20,0,0.037,0.389,0.082,0.076,1.54,2.3,0,89
1019,100,"Cheese, feta","CHEESE,FETA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,14.21,21.28,4.09,264,4.09,0,493,0.65,19,337,62,917,2.88,15,422,16,0,0.154,0.844,0.991,0.424,1.69,1.8,0,89
1020,100,"Cheese, fontina","CHEESE,FONTINA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,25.6,31.14,1.55,389,1.55,0,550,0.23,14,346,64,800,3.5,14.5,913,23,0,0.021,0.204,0.15,0.083,1.68,2.6,0,116
1021,100,"Cheese, gjetost","CHEESE,GJETOST",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,9.65,29.51,42.65,466,,0,400,0.52,70,444,1409,600,1.14,14.5,1113,,0,0.315,1.382,0.813,0.271,2.42,,0,94
1022,100,"Cheese, gouda","CHEESE,GOUDA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.94,27.44,2.22,356,2.22,0,700,0.24,29,546,121,819,3.9,14.5,563,20,0,0.03,0.334,0.063,0.08,1.54,2.3,0,114
1023,100,"Cheese, gruyere","CHEESE,GRUYERE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,29.81,32.34,0.36,413,0.36,0,1011,0.17,36,605,81,714,3.9,14.5,948,24,0,0.06,0.279,0.106,0.081,1.6,2.7,0,110
1024,100,"Cheese, limburger","CHEESE,LIMBURGER",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,20.05,27.25,0.49,327,0.49,0,497,0.13,21,393,128,800,2.1,14.5,1155,20,0,0.08,0.503,0.158,0.086,1.04,2.3,0,90
1025,100,"Cheese, monterey","CHEESE,MONTEREY",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.48,30.28,0.68,373,0.5,0,746,0.72,27,444,81,600,3,14.5,769,22,0,0.015,0.39,0.093,0.079,0.83,2.5,0,89
1026,100,"Cheese, mozzarella, whole milk","CHEESE,MOZZARELLA,WHL MILK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,22.17,22.35,2.19,300,1.03,0,505,0.44,20,354,76,627,2.92,17,676,16,0,0.03,0.283,0.104,0.037,2.28,2.3,0,79
1027,100,"Cheese, mozzarella, whole milk, low moisture","CHEESE,MOZZARELLA,WHL MILK,LO MOIST",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.6,24.64,2.47,318,1.01,0,575,0.2,21,412,75,710,2.46,16.1,745,18,0,0.016,0.27,0.094,0.062,0.73,2.5,0,89
1028,100,"Cheese, mozzarella, part skim milk","CHEESE,MOZZARELLA,PART SKIM MILK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.26,15.92,2.77,254,1.13,0,782,0.22,23,463,84,619,2.76,14.4,481,12,0,0.018,0.303,0.105,0.07,0.82,1.6,0,64
1029,100,"Cheese, mozzarella, low moisture, part-skim","CHEESE,MOZZARELLA,LO MOIST,PART-SKIM",,,Y,,0,,,,,,Dairy and Egg Products,23.75,19.78,5.58,295,1.9,0,697,0.22,27,548,188,666,3.62,27.6,829,15,0,0.024,0.353,0.111,0.1,1.68,1.3,0,64
1030,100,"Cheese, muenster","CHEESE,MUENSTER",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.41,30.04,1.12,368,1.12,0,717,0.41,27,468,134,628,2.81,14.5,1012,22,0,0.013,0.32,0.103,0.056,1.47,2.5,0,96
1031,100,"Cheese, neufchatel","CHEESE,NEUFCHATEL",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,9.15,22.78,3.59,253,3.19,0,117,0.13,10,138,152,334,0.82,3,841,,0,0.022,0.155,0.21,0.041,0.3,1.7,0,74
1032,100,"Cheese, parmesan, grated","CHEESE,PARMESAN,GRATED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,28.42,27.84,13.91,420,0.07,0,853,0.49,34,627,180,1804,4.2,34.4,974,21,0,0.026,0.358,0.08,0.081,1.4,1.7,0,86
1033,100,"Cheese, parmesan, hard","CHEESE,PARMESAN,HARD",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,35.75,25.83,3.22,392,0.8,0,1184,0.82,44,694,92,1376,2.75,22.5,781,19,0,0.039,0.332,0.271,0.091,1.2,1.7,0,68
1034,100,"Cheese, port de salut","CHEESE,PORT DE SALUT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.78,28.2,0.57,352,0.57,0,650,0.43,24,360,136,534,2.6,14.5,1092,21,0,0.014,0.24,0.06,0.053,1.5,2.4,0,123
1035,100,"Cheese, provolone","CHEESE,PROVOLONE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,25.58,26.62,2.14,351,0.56,0,756,0.52,28,496,138,876,3.23,14.5,880,20,0,0.019,0.321,0.156,0.073,1.46,2.2,0,69
1036,100,"Cheese, ricotta, whole milk","CHEESE,RICOTTA,WHOLE MILK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.26,12.98,3.04,174,0.27,0,207,0.38,11,158,105,84,1.16,14.5,445,10,0,0.013,0.195,0.104,0.043,0.34,1.1,0,51
1037,100,"Cheese, ricotta, part skim milk","CHEESE,RICOTTA,PART SKIM MILK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.39,7.91,5.14,138,0.31,0,272,0.44,15,183,125,99,1.34,16.7,384,6,0,0.021,0.185,0.078,0.02,0.29,0.7,0,31
1038,100,"Cheese, romano","CHEESE,ROMANO",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,31.8,26.94,3.63,387,0.73,0,1064,0.77,41,760,86,1433,2.58,14.5,415,20,0,0.037,0.37,0.077,0.085,1.12,2.2,0,104
1039,100,"Cheese, roquefort","CHEESE,ROQUEFORT",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.54,30.64,2,369,,0,662,0.56,30,392,91,1809,2.08,14.5,1047,,0,0.04,0.586,0.734,0.124,0.64,,0,90
1040,100,"Cheese, swiss","CHEESE,SWISS",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,26.96,30.99,1.44,393,0,0,890,0.13,33,574,72,187,4.37,30,1047,0,0,0.011,0.302,0.064,0.071,3.06,1.4,0,93
1041,100,"Cheese, tilsit","CHEESE,TILSIT",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.41,25.98,1.88,340,,0,700,0.23,13,500,65,753,3.5,14.5,1045,,0,0.061,0.359,0.205,0.065,2.1,,0,102
1042,100,"Cheese, pasteurized process, American, fortified with vitamin D","CHEESE,PAST PROCESS,AMERICAN,FORT W/ VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,18.13,30.71,4.78,366,2.26,0,1045,0.63,26,641,132,1671,2.49,20.2,1131,301,0,0.015,0.234,0.076,0.054,1.5,3.7,0,100
1043,100,"Cheese, pasteurized process, pimento","CHEESE,PAST PROCESS,PIMENTO",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,22.13,31.2,1.73,375,0.62,0.1,614,0.42,22,744,162,915,2.98,14.5,1030,22,2.3,0.027,0.354,0.078,0.071,0.7,2.9,0,94
1044,100,"Cheese, pasteurized process, swiss","CHEESE,PAST PROCESS,SWISS",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.73,25.01,2.1,334,1.23,0,772,0.61,29,762,216,1370,3.61,15.9,746,18,0,0.014,0.276,0.038,0.036,1.23,2.2,0,85
1045,100,"Cheese food, cold pack, American","CHEESE FD,COLD PK,AMERICAN",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,19.66,24.46,8.32,331,,0,497,0.84,30,400,363,966,3.01,16.2,705,,0,0.03,0.446,0.074,0.141,1.28,,0,64
1046,100,"Cheese food, pasteurized process, American, vitamin D fortified","CHEESE FD,PAST PROCESS,AMERICAN,VITAMIN D FORT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,16.86,25.63,8.56,330,5.59,0,682,0.26,27,438,255,1284,2.31,19.6,761,102,0,0.035,0.36,0.155,0.102,1.33,3.4,0,98
1047,100,"Cheese food, pasteurized process, swiss","CHEESE FD,PAST PROCESS,SWISS",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.92,24.14,4.5,323,,0,723,0.6,28,526,284,1552,3.55,16.1,856,,0,0.014,0.4,0.104,0.035,2.3,,0,82
1048,100,"Cheese spread, pasteurized process, American","CHEESE SPRD,PAST PROCESS,AMERICAN",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,16.41,21.23,8.73,290,7.32,0,562,0.33,29,875,242,1625,2.59,11.3,653,16,0,0.048,0.431,0.131,0.117,0.4,1.8,0,55
1049,100,"Cream, fluid, half and half","CREAM,FLUID,HALF AND HALF",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.13,10.39,4.73,123,4.13,0,107,0.05,10,95,132,61,0.39,3.2,354,2,0.9,0.03,0.194,0.109,0.05,0.19,1.3,0,35
1050,100,"Cream, fluid, light (coffee cream or table cream)","CREAM,FLUID,LT (COFFEE CRM OR TABLE CRM)",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.96,19.1,2.82,191,3.67,0,91,0.05,9,92,136,72,0.32,4.6,656,44,0.8,0.023,0.19,0.09,0.044,0.14,1.7,0,59
1052,100,"Cream, fluid, light whipping","CREAM,FLUID,LT WHIPPING",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.17,30.91,2.96,292,2.96,0,69,0.03,7,61,97,34,0.25,0.5,1013,23,0.6,0.024,0.125,0.042,0.028,0.2,2.7,0,111
1053,100,"Cream, fluid, heavy whipping","CREAM,FLUID,HVY WHIPPING",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.84,36.08,2.74,340,2.92,0,66,0.1,7,58,95,27,0.24,3,1470,63,0.6,0.02,0.188,0.064,0.035,0.16,3.2,0,113
1054,100,"Cream, whipped, cream topping, pressurized","CREAM,WHIPPED,CRM TOPPING,PRESSURIZED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.2,22.22,12.49,257,8,0,101,0.05,11,89,147,8,0.37,1.4,685,16,0,0.037,0.065,0.07,0.041,0.29,1.9,0,76
1055,100,"Cream, sour, reduced fat, cultured","CREAM,SOUR,RED FAT,CULTURED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.94,12,4.26,135,0.16,0,104,0.07,10,95,129,89,0.5,2.1,372,9,0.9,0.035,0.149,0.067,0.016,0.3,0.6,0,39
1056,100,"Cream, sour, cultured","CREAM,SOUR,CULTURED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.44,19.35,4.63,198,3.41,0,101,0.07,10,76,125,31,0.33,3.7,447,0,0.9,0.02,0.168,0.093,0.041,0.21,1.5,0,59
1057,100,Eggnog,EGGNOG,,,Y,,0,,6.37,4.27,8.79,3.9,Dairy and Egg Products,4.55,4.19,8.05,88,8.05,0,130,0.2,19,109,165,54,0.46,4.2,206,49,1.5,0.034,0.19,0.105,0.05,0.45,0.3,0,59
1058,100,"Sour dressing, non-butterfat, cultured, filled cream-type","SOUR DRSNG,NON-BUTTERFAT,CULTURED,FILLED CREAM-TYPE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.25,16.57,4.68,178,4.68,0,113,0.03,10,87,162,48,0.37,2.3,10,0,0.9,0.038,0.163,0.074,0.017,0.33,4.1,0,5
1059,100,"Milk, filled, fluid, with blend of hydrogenated vegetable oils","MILK,FILLED,FLUID,W/BLEND OF HYDR VEG OILS",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.33,3.46,4.74,63,,0,128,0.05,13,97,139,57,0.36,2,7,,0.9,0.03,0.123,0.087,0.04,0.34,,0,2
1060,100,"Milk, filled, fluid, with lauric acid oil","MILK,FILLED,FLUID,W/LAURIC ACID OIL",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.33,3.4,4.74,63,4.74,0,128,0.05,13,97,139,57,0.36,2,7,0,0.9,0.03,0.123,0.087,0.04,0.34,0.8,0,2
1061,100,"Cheese, American, nonfat or fat free","CHEESE,AMERICAN,NONFAT OR FAT FREE",,,Y,,0,,6.25,,,,Dairy and Egg Products,21.05,0,10.53,126,5.26,0,789,0,115,316,393,1316,4.11,14.6,189,5,0,0.412,0.545,5.56,0.567,1.85,0.2,0,26
1067,100,"Cream substitute, liquid, with hydrogenated vegetable oil and soy protein","CREAM SUB,LIQ,W/HYDR VEG OIL&SOY PROT",,,Y,,0,,5.71,4.27,8.79,3.87,Dairy and Egg Products,1,9.97,11.38,136,11.38,0,9,0.03,0,64,191,67,0.02,1.1,15,0,0,0,0,0,0,0,2.5,0,0
1068,100,"Cream substitute, liquid, with lauric acid oil and sodium caseinate","CREAM SUB,LIQ,W/LAURIC ACID OIL&NA CASEINATE",,,,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,1,9.97,11.38,136,,0,9,0.03,0,64,191,79,0.02,1.1,89,,0,0,0,0,0,0,,0,0
1069,100,"Cream substitute, powdered","CREAM SUBSTITUTE,POWDERED",,,Y,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,2.48,32.92,59.29,529,7.77,0,2,0.26,1,288,669,124,0.07,0,0,0,0,0,0,0,0,0,1.7,0,0
1070,100,"Dessert topping, powdered","DESSERT TOPPING,POWDERED",,,,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,4.9,39.92,52.54,577,52.54,0,17,0.03,7,74,166,122,0.08,0.6,0,0,0,0,0,0,0,0,9.9,0,0
1071,100,"Dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk","DESSERT TOPPING,PDR,1.5 OZ PREP W/1/2 CUP MILK",,,Y,,0,,6.35,4.27,8.79,3.87,Dairy and Egg Products,3.61,12.72,17.13,194,17.13,0,90,0.04,10,86,151,66,0.27,4.8,120,38,0.7,0.027,0.117,0.06,0.03,0.26,2.7,0,10
1072,100,"Dessert topping, pressurized","DESSERT TOPPING,PRESSURIZED",,,Y,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,0.98,22.3,16.07,264,16.07,0,5,0.02,1,18,19,62,0.01,1.5,78,0,0,0,0,0,0,0,5.5,0,0
1073,100,"Dessert topping, semi solid, frozen","DESSERT TOPPING,SEMI SOLID,FRZ",,,Y,,0,,6.29,4.27,8.84,3.87,Dairy and Egg Products,1.25,25.31,23.05,318,23.05,0,6,0.12,2,8,18,25,0.03,2.1,143,0,0,0,0,0,0,0,6.3,0,0
1074,100,"Sour cream, imitation, cultured","SOUR CRM,IMITN,CULTURED",,,Y,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,2.4,19.52,6.63,208,6.63,0,3,0.39,6,45,161,102,1.18,2.5,0,0,0,0,0,0,0,0,4.8,0,0
1076,100,"Milk substitutes, fluid, with lauric acid oil","MILK SUBSTITUTES,FLUID,W/LAURIC ACID OIL",,,,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,1.75,3.41,6.16,61,,0,33,0.39,6,74,114,78,1.18,1.9,0,,0,0.012,0.088,0,0,0,,0,0
1077,100,"Milk, whole, 3.25% milkfat, with added vitamin D","MILK,WHL,3.25% MILKFAT,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.15,3.25,4.8,61,5.05,0,113,0.03,10,84,132,43,0.37,3.7,162,51,0,0.046,0.169,0.089,0.036,0.45,0.3,0,10
1078,100,"Milk, producer, fluid, 3.7% milkfat","MILK,PRODUCER,FLUID,3.7% MILKFAT",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.28,3.66,4.65,64,,0,119,0.05,13,93,151,49,0.38,2,138,,1.5,0.038,0.161,0.084,0.042,0.36,,0,14
1079,100,"Milk, reduced fat, fluid, 2% milkfat, with added vitamin A and vitamin D","MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.3,1.98,4.8,50,5.06,0,120,0.02,11,92,140,47,0.48,2.5,190,49,0.2,0.039,0.185,0.092,0.038,0.53,0.2,0,8
1080,100,"Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids and vitamin A and vitamin D","MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED NFMS, VIT A & VIT D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.48,1.92,4.97,51,,0,128,0.05,14,100,162,52,0.4,2.3,204,40,1,0.04,0.173,0.09,0.045,0.38,,0,8
1081,100,"Milk, reduced fat, fluid, 2% milkfat, protein fortified, with added vitamin A and vitamin D","MILK,RED FAT,FLUID,2% MILKFAT,PROT FORT,W/ ADDED VIT A & D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.95,1.98,5.49,56,5.26,0,143,0.06,16,112,182,59,0.45,2.6,5,40,1.1,0.045,0.194,0.101,0.051,0.43,0.1,0,8
1082,100,"Milk, lowfat, fluid, 1% milkfat, with added vitamin A and vitamin D","MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.37,0.97,4.99,42,5.2,0,125,0.03,11,95,150,44,0.42,3.3,196,48,0,0.02,0.185,0.093,0.037,0.47,0.1,0,5
1083,100,"Milk, lowfat, fluid, 1% milkfat, with added nonfat milk solids, vitamin A and vitamin D","MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADD NONFAT MILK SOL,VIT A/ D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.48,0.97,4.97,43,,0,128,0.05,14,100,162,52,0.4,2.3,204,40,1,0.04,0.173,0.09,0.045,0.38,,0,4
1084,100,"Milk, lowfat, fluid, 1% milkfat, protein fortified, with added vitamin A and vitamin D","MILK,LOWFAT,FLUID,1% MILKFAT,PROT FORT,W/ ADDED VIT A & D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.93,1.17,5.52,48,,0,142,0.06,16,111,180,58,0.45,2.5,203,40,1.2,0.045,0.192,0.1,0.05,0.43,,0,4
1085,100,"Milk, nonfat, fluid, with added vitamin A and vitamin D (fat free or skim)","MILK,NONFAT,FLUID,W/ ADDED VIT A & VIT D (FAT FREE OR SKIM)",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.37,0.08,4.96,34,5.09,0,122,0.03,11,101,156,42,0.42,3.1,204,47,0,0.045,0.182,0.094,0.037,0.5,0,0,2
1086,100,"Milk, nonfat, fluid, with added nonfat milk solids, vitamin A and vitamin D (fat free or skim)","MILK,NONFAT,FLUID,W/ ADDED NONFAT MILK SOL,VIT A & VIT D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.57,0.25,5.02,37,5.02,0,129,0.05,15,104,171,53,0.41,2.2,214,49,1,0.041,0.175,0.091,0.046,0.39,0,0,2
1087,100,"Milk, nonfat, fluid, protein fortified, with added vitamin A and vitamin D (fat free and skim)","MILK,NONFAT,FLUID,PROT FORT,W/ ADD VIT A & D (FAT FREE/SKIM)",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.96,0.25,5.56,41,,0,143,0.06,16,112,182,59,0.45,2.4,203,40,1.1,0.045,0.194,0.101,0.05,0.43,,0,2
1088,100,"Milk, buttermilk, fluid, cultured, lowfat","MILK,BTTRMLK,FLUID,CULTURED,LOWFAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.31,0.88,4.79,40,4.79,0,116,0.05,11,89,151,190,0.42,2,47,1,1,0.034,0.154,0.058,0.034,0.22,0.1,0,4
1089,100,"Milk, low sodium, fluid","MILK,LO NA,FLUID",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.1,3.46,4.46,61,4.46,0,101,0.05,5,86,253,3,0.38,2,105,51,0.9,0.02,0.105,0.043,0.034,0.36,0.3,0,14
1090,100,"Milk, dry, whole, with added vitamin D","MILK,DRY,WHL,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,26.32,26.71,38.42,496,38.42,0,912,0.47,85,776,1330,371,3.34,16.3,934,420,8.6,0.283,1.205,0.646,0.302,3.25,2.2,0,97
1091,100,"Milk, dry, nonfat, regular, without added vitamin A and vitamin D","MILK,DRY,NONFAT,REG,WO/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,36.16,0.77,51.98,362,51.98,0,1257,0.32,110,968,1794,535,4.08,27.3,22,0,6.8,0.415,1.55,0.951,0.361,4.03,0.1,0,20
1092,100,"Milk, dry, nonfat, instant, with added vitamin A and vitamin D","MILK,DRY,NONFAT,INST,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,35.1,0.72,52.19,358,52.19,0,1231,0.31,117,985,1705,549,4.41,27.3,2365,440,5.6,0.413,1.744,0.891,0.345,3.99,0,0,18
1093,100,"Milk, dry, nonfat, calcium reduced","MILK,DRY,NONFAT,CA RED",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,35.5,0.2,51.8,354,,0,280,0.32,60,1011,680,2280,4.03,27.3,8,,6.7,0.163,1.642,0.665,0.298,3.98,,0,2
1094,100,"Milk, buttermilk, dried","MILK,BUTTERMILK,DRIED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,34.3,5.78,49,387,49,0,1184,0.3,110,933,1592,517,4.02,20.3,175,20,5.7,0.392,1.579,0.876,0.338,3.82,0.4,0,69
1095,100,"Milk, canned, condensed, sweetened","MILK,CND,COND,SWTND",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,7.91,8.7,54.4,321,54.4,0,284,0.19,26,253,371,127,0.94,14.8,267,6,2.6,0.09,0.416,0.21,0.051,0.44,0.6,0,34
1096,100,"Milk, canned, evaporated, with added vitamin D and without added vitamin A","MILK,CND,EVAP,W/ ADDED VITAMIN D & WO/ ADDED VIT A",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,6.81,7.56,10.04,134,10.04,0,261,0.19,24,203,303,106,0.77,2.3,233,79,1.9,0.047,0.316,0.194,0.05,0.16,0.5,0,29
1097,100,"Milk, canned, evaporated, nonfat, with added vitamin A and vitamin D","MILK,CND,EVAP,NONFAT,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,7.55,0.2,11.35,78,11.35,0,290,0.29,27,195,332,115,0.9,2.5,394,79,1.2,0.045,0.309,0.174,0.055,0.24,0,0,4
1102,100,"Milk, chocolate, fluid, commercial, whole, with added vitamin A and vitamin D","MILK,CHOC,FLUID,COMM,WHL,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.17,3.39,10.34,83,9.54,0.8,112,0.24,13,101,167,60,0.41,1.9,98,51,0.9,0.037,0.162,0.125,0.04,0.33,0.3,0,12
1103,100,"Milk, chocolate, fluid, commercial, reduced fat, with added vitamin A and vitamin D","MILK,CHOC,FLUID,COMM,RED FAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.99,1.9,12.13,76,9.55,0.7,109,0.24,14,102,169,66,0.39,3.4,227,49,0,0.045,0.183,0.164,0.024,0.33,0.2,0,8
1104,100,"Milk, chocolate, lowfat, with added vitamin A and vitamin D","MILK,CHOC,LOWFAT,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.46,1,9.86,62,9.94,0.1,129,0.23,13,96,172,65,0.43,1.9,174,43,0.4,0.031,0.247,0.124,0.047,0.23,0.1,0,5
1105,100,"Milk, chocolate beverage, hot cocoa, homemade","MILK,CHOC BEV,HOT COCOA,HOMEMADE",,,,,0,,,,,,Dairy and Egg Products,3.52,2.34,10.74,77,9.66,1,114,0.42,23,105,197,44,0.63,2.7,176,45,0.2,0.039,0.182,0.133,0.04,0.49,0.2,0,8
1106,100,"Milk, goat, fluid, with added vitamin D","MILK,GOAT,FLUID,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.56,4.14,4.45,69,4.45,0,134,0.05,14,111,204,50,0.3,1.4,198,51,1.3,0.048,0.138,0.277,0.046,0.07,0.3,0,11
1107,100,"Milk, human, mature, fluid","MILK,HUMAN,MATURE,FLUID",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,1.03,4.38,6.89,70,6.89,0,32,0.03,3,14,51,17,0.17,1.8,212,3,5,0.014,0.036,0.177,0.011,0.05,0.3,0,14
1108,100,"Milk, indian buffalo, fluid","MILK,INDIAN BUFFALO,FLUID",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.75,6.89,5.18,97,,0,169,0.12,31,117,178,52,0.22,,178,,2.3,0.052,0.135,0.091,0.023,0.36,,0,19
1109,100,"Milk, sheep, fluid","MILK,SHEEP,FLUID",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,5.98,7,5.36,108,,0,193,0.1,18,158,137,44,0.54,1.7,147,,4.2,0.065,0.355,0.417,0.06,0.71,,0,27
1110,100,"Milk shakes, thick chocolate","MILK SHAKES,THICK CHOC",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.05,2.7,21.15,119,20.85,0.3,132,0.31,16,126,224,111,0.48,1.9,67,41,0,0.047,0.222,0.124,0.025,0.32,0.2,0,11
1111,100,"Milk shakes, thick vanilla","MILK SHAKES,THICK VANILLA",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.86,3.03,17.75,112,17.75,0,146,0.1,12,115,183,95,0.39,2.3,91,48,0,0.03,0.195,0.146,0.042,0.52,0.2,0,12
1112,100,"Whey, acid, fluid","WHEY,ACID,FLUID",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.76,0.09,5.12,24,5.12,0,103,0.08,10,78,143,48,0.43,1.8,7,,0.1,0.042,0.14,0.079,0.042,0.18,0,0,1
1113,100,"Whey, acid, dried","WHEY,ACID,DRIED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.73,0.54,73.45,339,73.45,0,2054,1.24,199,1349,2289,968,6.31,27.3,59,0,0.9,0.622,2.06,1.16,0.62,2.5,0,0,3
1114,100,"Whey, sweet, fluid","WHEY,SWEET,FLUID",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.85,0.36,5.14,27,5.14,0,47,0.06,8,46,161,54,0.13,1.9,12,,0.1,0.036,0.158,0.074,0.031,0.28,0,0,2
1115,100,"Whey, sweet, dried","WHEY,SWEET,DRIED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,12.93,1.07,74.46,353,74.46,0,796,0.88,176,932,2080,1079,1.97,27.2,30,0,1.5,0.519,2.208,1.258,0.584,2.37,0.1,0,6
1116,100,"Yogurt, plain, whole milk, 8 grams protein per 8 ounce","YOGURT,PLN,WHL MILK,8 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.47,3.25,4.66,61,4.66,0,121,0.05,12,95,155,46,0.59,2.2,99,2,0.5,0.029,0.142,0.075,0.032,0.37,0.2,0,13
1117,100,"Yogurt, plain, low fat, 12 grams protein per 8 ounce","YOGURT,PLN,LOFAT,12 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,5.25,1.55,7.04,63,7.04,0,183,0.08,17,144,234,70,0.89,3.3,51,1,0.8,0.044,0.214,0.114,0.049,0.56,0.2,0,6
1118,100,"Yogurt, plain, skim milk, 13 grams protein per 8 ounce","YOGURT,PLN,SKIM MILK,13 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,5.73,0.18,7.68,56,7.68,0,199,0.09,19,157,255,77,0.97,3.6,7,0,0.9,0.048,0.234,0.124,0.053,0.61,0.2,0,2
1119,100,"Yogurt, vanilla, low fat, 11 grams protein per 8 ounce","YOGURT,VANILLA,LOFAT,11 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.93,1.25,13.8,85,13.8,0,171,0.07,16,135,219,66,0.83,4.9,43,1,0.8,0.042,0.201,0.107,0.045,0.53,0.1,0,5
1120,100,"Yogurt, fruit, low fat, 9 grams protein per 8 ounce","YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.98,1.15,18.64,99,18.64,0,138,0.06,13,109,177,53,0.67,2.8,40,1,0.6,0.034,0.162,0.086,0.037,0.43,0.1,0,5
1121,100,"Yogurt, fruit, low fat, 10 grams protein per 8 ounce","YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.37,1.08,19.05,102,19.05,0,152,0.07,15,119,195,58,0.74,3.1,36,1,0.7,0.037,0.178,0.095,0.04,0.47,0.1,0,4
1122,100,"Yogurt, fruit, low fat, 11 grams protein per 8 ounce","YOGURT,FRUIT,LOFAT,11 GRAMS PROT PER 8 OZ",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.86,1.41,18.6,105,,0,169,0.07,16,133,216,65,0.82,3.1,60,,0.7,0.041,0.198,0.105,0.045,0.52,,0,6
1123,100,"Egg, whole, raw, fresh","EGG,WHL,RAW,FRSH",,,Y,Shell,12,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.56,9.51,0.72,143,0.37,0,56,1.75,12,198,138,142,1.29,30.7,540,82,0,0.04,0.457,0.075,0.17,0.89,0.3,0,372
1124,100,"Egg, white, raw, fresh","EGG,WHITE,RAW,FRESH",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,10.9,0.17,0.73,52,0.71,0,7,0.08,11,15,163,166,0.03,20,0,0,0,0.004,0.439,0.105,0.005,0.09,0,0,0
1125,100,"Egg, yolk, raw, fresh","EGG,YOLK,RAW,FRSH",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,15.86,26.54,3.59,322,0.56,0,129,2.73,5,390,109,48,2.3,56,1442,218,0,0.176,0.528,0.024,0.35,1.95,0.7,0,1085
1126,100,"Egg, yolk, raw, frozen, pasteurized","EGG,YOLK,RAW,FRZ,PAST",,,,,0,,,,,,Dairy and Egg Products,15.53,25.6,0.81,296,0.16,0,134,4.55,11,420,121,67,3.17,56.4,1469,238,0,0.223,0.563,0.031,0.412,1.9,0.7,0,991
1127,100,"Egg, yolk, raw, frozen, sugared, pasteurized","EGG,YOLK,RAW,FRZ,SUGARED,PAST",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.87,22.82,10.95,307,10.3,0,124,3.7,10,404,105,70,3.06,53.5,1103,123,0,0.14,0.523,0.037,0.398,1.64,0.7,0,917
1128,100,"Egg, whole, cooked, fried","EGG,WHL,CKD,FRIED",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.61,14.84,0.83,196,0.4,0,62,1.89,13,215,152,207,1.39,33.1,787,88,0,0.044,0.495,0.082,0.184,0.97,5.6,0,401
1129,100,"Egg, whole, cooked, hard-boiled","EGG,WHL,CKD,HARD-BOILED",,,Y,Shell,12,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.58,10.61,1.12,155,1.12,0,50,1.19,10,172,126,124,1.05,30.8,520,87,0,0.066,0.513,0.064,0.121,1.11,0.3,0,373
1130,100,"Egg, whole, cooked, omelet","EGG,WHOLE,COOKED,OMELET",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,10.57,11.66,0.64,154,0.31,0,48,1.48,11,167,117,155,1.09,25.8,617,69,0,0.034,0.386,0.064,0.143,0.76,4.5,0,313
1131,100,"Egg, whole, cooked, poached","EGG,WHL,CKD,POACHED",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.51,9.47,0.71,143,0.37,0,56,1.75,12,197,138,297,1.29,30.6,538,82,0,0.032,0.387,0.063,0.144,0.71,0.3,0,370
1132,100,"Egg, whole, cooked, scrambled","EGG,WHL,CKD,SCRMBLD",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,9.99,10.98,1.61,149,1.39,0,66,1.31,11,165,132,145,1.04,23.5,578,72,0,0.04,0.376,0.076,0.134,0.76,4,0,277
1133,100,"Egg, whole, dried","EGG,WHL,DRIED",,,Y,,0,,,,,,Dairy and Egg Products,48.05,43.9,1.13,592,0.56,0,244,7.2,34,629,540,476,3.15,164.7,999,331,0,0.183,1.977,0.34,0.499,2.96,1.2,0,1630
1134,100,"Egg, whole, dried, stabilized, glucose reduced","EGG,WHL,DRIED,STABILIZED,GLUCOSE RED",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,48.17,43.95,2.38,615,,0,222,8.28,49,715,515,548,5.71,121.1,2050,,0,0.325,1.232,0.259,0.42,10.51,,0,2017
1135,100,"Egg, white, dried, flakes, stabilized, glucose reduced","EGG,WHITE,DRIED,FLAKES,STABILIZED,GLUCOSE RED",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,76.92,0.04,4.17,351,0,0,83,0.23,67,83,1042,1156,0.15,116.8,0,0,0,0.035,2.162,0.675,0.023,0.49,0,0,0
1136,100,"Egg, white, dried, powder, stabilized, glucose reduced","EGG,WHITE,DRIED,PDR,STABILIZED,GLUCOSE RED",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,82.4,0.04,4.47,376,0,0,89,0.24,72,89,1116,1238,0.16,125.1,0,0,0,0.037,2.316,0.723,0.024,0.53,0,0,0
1137,100,"Egg, yolk, dried","EGG,YOLK,DRIED",,,Y,,0,,,,,,Dairy and Egg Products,33.63,59.13,0.66,669,0.23,0,289,9.56,26,1040,264,149,7.73,139.3,1590,417,0,0.387,1.257,0.083,0.742,5.11,1.5,0,2307
1138,100,"Egg, duck, whole, fresh, raw","EGG,DUCK,WHOLE,FRESH,RAW",,,Y,Shell,12,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.81,13.77,1.45,185,0.93,0,64,3.85,17,220,222,146,1.41,36.4,674,69,0,0.156,0.404,0.2,0.25,5.4,0.4,0,884
1139,100,"Egg, goose, whole, fresh, raw","EGG,GOOSE,WHOLE,FRESH,RAW",,,Y,Shell,13,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.87,13.27,1.35,185,0.94,0,60,3.64,16,208,210,138,1.33,36.9,650,66,0,0.147,0.382,0.189,0.236,5.1,0.4,0,852
1140,100,"Egg, quail, whole, fresh, raw","EGG,QUAIL,WHOLE,FRESH,RAW",,,Y,Shell,8,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.05,11.09,0.41,158,0.4,0,64,3.65,13,226,132,141,1.47,32,543,55,0,0.13,0.79,0.15,0.15,1.58,0.3,0,844
1141,100,"Egg, turkey, whole, fresh, raw","EGG,TURKEY,WHL,FRSH,RAW",,,,Shell,12,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.68,11.88,1.15,171,,0,99,4.1,13,170,142,151,1.58,34.3,554,,0,0.11,0.47,0.024,0.131,1.69,,0,933
1144,100,"Egg substitute, powder","EGG SUBSTITUTE,POWDER",,,Y,,0,,6.25,4.36,9.02,3.87,Dairy and Egg Products,55.5,13,21.8,444,21.8,0,326,3.16,65,478,744,800,1.82,127.7,1230,0,0.8,0.226,1.76,0.577,0.143,3.52,0.4,0,572
1145,100,"Butter, without salt","BUTTER,WITHOUT SALT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.85,81.11,0.06,717,0.06,0,24,0.02,2,24,24,11,0.09,1,2499,0,0,0.005,0.034,0.042,0.003,0.17,7,0,215
1146,100,"Cheese, parmesan, shredded","CHEESE,PARMESAN,SHREDDED",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,37.86,27.34,3.41,415,0.9,0,1253,0.87,51,735,97,1696,3.19,23.9,865,21,0,0.041,0.352,0.287,0.105,1.4,1.9,0,72
1151,100,"Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)","MILK,NONFAT,FLUID,WO/ ADDED VIT A & VIT D (FAT FREE OR SKIM)",,,Y,,0,,,,,,Dairy and Egg Products,3.37,0.08,4.96,34,5.09,0,122,0.03,11,101,156,42,0.42,3.1,15,0,0,0.045,0.182,0.094,0.037,0.5,0,0,2
1152,100,"Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids, without added vitamin A","MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL,WO/ VIT A",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.95,1.98,5.49,56,,0,143,0.06,15,112,182,59,0.41,2.6,75,,1.1,0.045,0.194,0.101,0.046,0.39,,0,8
1153,100,"Milk, canned, evaporated, with added vitamin A","MILK,CND,EVAP,W/ VIT A",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,6.81,7.56,10.04,134,,0,261,0.19,24,203,303,106,0.77,2.3,397,,1.9,0.047,0.316,0.194,0.05,0.16,,0,29
1154,100,"Milk, dry, nonfat, regular, with added vitamin A and vitamin D","MILK,DRY,NONFAT,REG,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,36.16,0.77,51.98,362,51.98,0,1257,0.32,110,968,1794,535,4.08,27.3,2179,440,6.8,0.415,1.55,0.951,0.361,4.03,0.1,0,20
1155,100,"Milk, dry, nonfat, instant, without added vitamin A and vitamin D","MILK,DRY,NONFAT,INST,WO/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,35.1,0.72,52.19,358,52.19,0,1231,0.31,117,985,1705,549,4.41,27.3,15,0,5.6,0.413,1.744,0.891,0.345,3.99,0,0,18
1156,100,"Cheese, goat, hard type","CHEESE,GOAT,HARD TYPE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,30.52,35.59,2.17,452,2.17,0,895,1.88,54,729,48,423,1.59,5.5,1745,26,0,0.14,1.19,2.4,0.08,0.12,3,0,105
1157,100,"Cheese, goat, semisoft type","CHEESE,GOAT,SEMISOFT TYPE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.58,29.84,0.12,364,0.12,0,298,1.62,29,375,158,415,0.66,3.8,1464,22,0,0.072,0.676,1.148,0.06,0.22,2.5,0,79
1159,100,"Cheese, goat, soft type","CHEESE,GOAT,SOFT TYPE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,18.52,21.08,0,264,0,0,140,1.9,16,256,26,459,0.92,2.8,1033,15,0,0.07,0.38,0.43,0.25,0.19,1.8,0,46
1160,100,"Egg, yolk, raw, frozen, salted, pasteurized","EGG,YOLK,RAW,FRZ,SALTED,PAST",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,14.07,22.93,1.77,275,0.07,0,113,3.4,7,414,111,3487,2.87,56.9,1043,126,0,0.14,0.427,0.027,0.402,1.61,0.7,0,912
1161,100,"Cheese substitute, mozzarella","CHEESE SUB,MOZZARELLA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.47,12.22,23.67,248,23.67,0,610,0.4,41,583,455,685,1.92,19.2,1457,0,0.1,0.026,0.444,0.317,0.051,0.81,1,0,0
1164,100,"Cheese sauce, prepared from recipe","CHEESE SAU,PREP FROM RECIPE",,,Y,,0,,6.38,4.08,8.92,3.95,Dairy and Egg Products,10.33,14.92,5.48,197,0.19,0.1,311,0.35,19,229,142,493,1.26,6.6,310,41,0.6,0.044,0.243,0.204,0.045,0.35,0.9,2,38
1165,100,"Cheese, mexican, queso anejo","CHEESE,MEXICAN,QUESO ANEJO",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.44,29.98,4.63,373,4.63,0,680,0.47,28,444,87,1131,2.94,14.5,220,22,0,0.02,0.209,0.032,0.047,1.38,2.5,0,105
1166,100,"Cheese, mexican, queso asadero","CHEESE,MEXICAN,QUESO ASADERO",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,22.6,28.26,2.87,356,2.87,0,661,0.51,26,443,86,705,3.02,14.5,190,21,0,0.021,0.223,0.181,0.053,1,2.4,0,105
1167,100,"Cheese, mexican, queso chihuahua","CHEESE,MEXICAN,QUESO CHIHUAHUA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.56,29.68,5.56,374,5.56,0,651,0.47,23,442,52,617,3.5,14.5,193,22,0,0.018,0.225,0.15,0.055,1.03,2.5,0,105
1168,100,"Cheese, low fat, cheddar or colby","CHEESE,LOFAT,CHEDDAR OR COLBY",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.35,7,1.91,173,0.52,0,415,0.42,16,484,66,873,1.82,14.5,207,5,0,0.012,0.221,0.051,0.045,0.49,0.6,0,21
1169,100,"Cheese, low-sodium, cheddar or colby","CHEESE,LOW-SODIUM,CHEDDAR OR COLBY",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.35,32.62,1.91,398,0.49,0,703,0.72,27,484,112,21,3.09,14.5,996,24,0,0.021,0.375,0.086,0.076,0.83,2.7,0,100
1171,100,"Egg, whole, raw, frozen, pasteurized","EGG,WHL,RAW,FRZ,PAST",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.33,9.95,1.01,147,0.25,0,62,1.74,9,193,135,128,1.32,37.2,570,105,0,0.067,0.523,0.103,0.188,1,0.3,0,372
1172,100,"Egg, white, raw, frozen, pasteurized","EGG,WHITE,RAW,FRZ,PAST",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,10.2,0,1.04,48,0.25,0,8,0.04,11,13,169,169,0.07,9.2,0,0,0,0.023,0.423,0.093,0.005,0.03,0,0,0
1173,100,"Egg, white, dried","EGG,WHITE,DRIED",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,81.1,0,7.8,382,5.4,0,62,0.15,88,111,1125,1280,0.1,125.1,0,0,0,0.005,2.53,0.865,0.036,0.18,0,0,0
1174,100,"Milk, reduced fat, fluid, 2% milkfat, without added vitamin A and vitamin D","MILK,RED FAT,FLUID,2% MILKFAT,WO/ ADDED VIT A & VIT D",,,Y,,0,,0,4.27,8.79,3.87,Dairy and Egg Products,3.3,1.98,4.8,50,5.06,0,120,0.02,11,92,140,47,0.48,2.5,102,1,0.2,0.039,0.185,0.092,0.038,0.53,0.2,0,8
1175,100,"Milk, fluid, 1% fat, without added vitamin A and vitamin D","MILK,FLUID,1% FAT,WO/ ADDED VIT A & VIT D",,,Y,,0,,0,4.27,8.79,3.87,Dairy and Egg Products,3.37,0.97,4.99,42,5.2,0,125,0.03,11,95,150,44,0.42,3.3,47,1,0,0.02,0.185,0.093,0.037,0.47,0.1,0,5
1178,100,"Sour cream, reduced fat","SOUR CREAM,REDUCED FAT",,,Y,,0,,,,,,Dairy and Egg Products,7,14.1,7,181,0.3,0,141,0.06,11,85,211,70,0.27,4.1,436,10,0.9,0.04,0.24,0.07,0.02,0.3,0.7,0,35
1179,100,"Sour cream, light","SOUR CREAM,LIGHT",,,Y,,0,,,,,,Dairy and Egg Products,3.5,10.6,7.1,136,0.22,0,141,0.07,10,71,212,83,0.5,3.1,328,8,0.9,0.04,0.12,0.07,0.02,0.42,0.5,0,35
1180,100,"Sour cream, fat free","SOUR CREAM,FAT FREE",,,Y,,0,,,,,,Dairy and Egg Products,3.1,0,15.6,74,0.39,0,125,0,10,95,129,141,0.5,5.3,255,0,0,0.04,0.15,0.07,0.02,0.3,0,0,9
1182,100,"USDA Commodity, cheese, cheddar, reduced fat","USDA COMMODITY,CHS,CHEDDAR,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,27.2,18.3,2,282,0.58,0,905,0.13,35,583,93,725,4.3,15.5,633,13,0,0.03,0.3,0.06,0.084,1.66,1.5,0,56
1184,100,"Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener","YOGURT,VAN OR LEM FLAV,NONFAT MILK,SWTND W/LOW-CALORIE SWTNR",,,Y,,0,,,,,,Dairy and Egg Products,3.86,0.18,7.5,43,7.5,0,143,0.12,13,109,177,59,0.67,3.1,6,0,1.1,0.034,0.162,0.086,0.037,0.43,0,0,2
1185,100,"Parmesan cheese topping, fat free","PARMESAN CHS TOPPING,FAT FREE",,,Y,,0,,,4.27,8.79,3.87,Dairy and Egg Products,40,5,40,370,1.5,0,800,5,40,700,600,1150,3,43.3,151,0,0,0.05,0.05,0.2,0.1,1.1,0.4,0,20
1186,100,"Cheese, cream, fat free","CHEESE,CREAM,FAT FREE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,15.69,1,7.66,105,5.48,0,351,0.19,22,523,278,702,1.5,4.9,53,0,0,0.04,0.265,0.23,0.05,0.95,0.2,0,12
1187,100,"Yogurt, chocolate, nonfat milk","YOGURT,CHOC,NONFAT MILK",,,Y,,0,,,,,,Dairy and Egg Products,3.53,0,23.53,112,14.97,1.2,88,0.42,40,166,339,135,1.13,7,0,0,0,0.047,0.215,0.223,0.047,0.5,0,0,1
1188,100,KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce,KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,12,21,9.2,276,6.7,0.3,359,0.19,,806,240,1638,1.64,,649,,0.4,,0.24,,,,,,75
1189,100,KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product,KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,16.3,9.5,16.2,215,8.2,0.2,418,0.16,,943,297,1705,2.36,,628,,0.4,,0.33,,,,,,35
1190,100,KRAFT FREE Singles American Nonfat Pasteurized Process Cheese Product,KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,22.7,1,11.7,148,6.7,0.2,712,0.05,,923,236,1298,2.5,,2166,,0.2,,0.28,,,,,,16
1191,100,KRAFT VELVEETA Pasteurized Process Cheese Spread,KRAFT VELVEETA PAST PROCESS CHS SPRD,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,16.3,22,9.8,303,8.1,0,466,0.18,,863,335,1499,1.84,,1107,,0.2,,0.35,,,,,,80
1192,100,KRAFT VELVEETA LIGHT Reduced Fat Pasteurized Process Cheese Product,KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,19.6,10.6,11.8,222,8.5,0,574,0.14,,1024,345,1586,2.49,,982,,0.1,,0.65,,,,,,42
1193,100,KRAFT BREAKSTONE'S Reduced Fat Sour Cream,KRAFT BREAKSTONE'S RED FAT SOUR CRM,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,4.5,12,6.5,152,6.4,0.1,161,0.06,,110,210,59,,,1053,,1.1,,,,,,,,50
1194,100,KRAFT BREAKSTONE'S FREE Fat Free Sour Cream,KRAFT BREAKSTONE'S FREE FAT FREE SOUR CRM,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,4.7,1.3,15.1,91,7.2,0,141,0.05,,116,219,72,,,679,,1.2,,,,,,,,9
1199,100,"Cream, half and half, fat free","CREAM,HALF & HALF,FAT FREE",,,Y,,0,,6.38,,,,Dairy and Egg Products,2.6,1.4,9,59,5,0,96,0,16,151,206,100,0.81,2.9,43,0,0.7,0.056,0.237,0.124,0.062,0.52,0.2,0,5
1200,100,Reddi Wip Fat Free Whipped Topping,REDDI WIP FAT FREE WHIPPED TOPPING,,,Y,,0,,6.38,,,,Dairy and Egg Products,3,5,25,149,16,0.4,108,0.03,8,68,108,72,0.31,3,175,0,0,0.148,0.619,0.364,0.123,1.48,0.3,0,16
1202,100,"Milk, chocolate, fluid, commercial, reduced fat, with added calcium","MILK,CHOC,FLUID,COMM,RED FAT,W/ ADDED CA",,,,,0,,,,,,Dairy and Egg Products,2.99,1.9,12.13,78,9.55,0.7,194,0.24,14,76,123,66,0.39,3.4,227,,0,0.045,0.565,0.164,0.024,0.33,0.2,0,8
1203,100,"Yogurt, fruit, lowfat, with low calorie sweetener","YOGURT,FRUIT,LOFAT,W/LO CAL SWEETENER",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.86,1.41,18.6,105,2.9,0,152,0.07,16,133,194,58,0.82,3.1,443,1,0.7,0.041,0.18,0.105,0.045,0.52,1.2,0,6
1204,100,"Cheese, parmesan, dry grated, reduced fat","CHEESE,PARMESAN,DRY GRATED,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,20,20,1.37,265,0,0,1109,0.9,38,729,125,1529,3.87,17.7,605,15,0,0.029,0.486,0.114,0.049,2.26,1.7,0,88
1205,100,"Cream substitute, flavored, liquid","CREAM SUB,FLAV,LIQ",,,Y,,0,,,,,,Dairy and Egg Products,0.69,13.5,35.07,251,33.04,1.1,6,0.59,19,28,96,67,0.25,0.7,0,0,0,0.004,0.024,0.091,0.004,0,3.3,0,0
1206,100,"Cream substitute, flavored, powdered","CREAM SUB,FLAV,PDR",,,Y,,0,,6.38,,,,Dairy and Egg Products,0.68,21.47,75.42,482,58.01,1.2,5,0.63,17,28,90,123,0.23,1.3,0,0,0,0.004,0.027,0.084,0.004,0,9.1,0,0
1208,100,"Cheese, provolone, reduced fat","CHEESE,PROVOLONE,RED FAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.7,17.6,3.5,274,0.55,0,756,0.52,28,496,138,615,3.23,14.5,532,13,0,0.019,0.321,0.156,0.073,1.46,1.5,0,55
1209,100,"Cheese, Mexican, blend, reduced fat","CHEESE,MEXICAN,BLEND,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,24.69,19.4,3.41,282,0.56,0,1146,0.13,35,583,93,776,4.3,15.5,586,14,0,0.03,0.3,0.06,0.084,1.66,1.6,0,62
1210,100,"Egg Mix, USDA Commodity","EGG MIX,USDA CMDTY",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,35.6,34.5,23.97,555,2.46,,171,3.23,11,451,373,576,2.76,118,398,296,,0.19,1.277,0.267,0.207,2.9,0.7,0,975
1211,100,"Milk, whole, 3.25% milkfat, without added vitamin A and vitamin D","MILK,WHL,3.25% MILKFAT,WO/ ADDED VIT A & VITAMIN D",,,Y,,0,,,,,,Dairy and Egg Products,3.15,3.27,4.78,61,5.05,0,113,0.03,10,84,132,43,0.37,3.7,162,2,0,0.046,0.169,0.089,0.036,0.45,0.3,0,10
1212,100,"Milk, dry, whole, without added vitamin D","MILK,DRY,WHL,WO/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,26.32,26.71,38.42,496,38.42,0,912,0.47,85,776,1330,371,3.34,16.3,934,20,8.6,0.283,1.205,0.646,0.302,3.25,2.2,0,97
1214,100,"Milk, canned, evaporated, without added vitamin A and vitamin D","MILK,CND,EVAP,WO/ ADDED VIT A & VITAMIN D",,,Y,,0,,,,,,Dairy and Egg Products,6.81,7.56,10.04,135,10.04,0,261,0.19,24,203,303,106,0.77,2.3,239,6,1.9,0.047,0.316,0.194,0.05,0.16,0.6,0,29
1215,100,"Cheese product, pasteurized process, American, reduced fat, fortified with vitamin D","CHEESE PRODUCT,PAST PROCESS,AMERICAN,RED FAT,FORT W/ VIT D",,,Y,,0,,,,,,Dairy and Egg Products,17.6,14.1,10.6,240,8.02,0,529,0.2,33,829,330,1201,2.36,12.4,945,212,0,0.07,0.48,0.18,0.08,1.11,2.6,0,53
1216,100,"Yogurt, fruit, low fat, 9 grams protein per 8 ounce, fortified with vitamin D","YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.98,1.15,18.64,99,18.64,0,138,0.06,13,109,177,53,0.67,2.8,40,52,0.6,0.034,0.162,0.086,0.037,0.43,0.1,0,5
1217,100,"Yogurt, fruit, low fat, 10 grams protein per 8 ounce, fortified with vitamin D","YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.37,1.08,19.05,102,19.05,0,152,0.07,15,119,195,58,0.74,3.1,36,52,0.7,0.037,0.178,0.095,0.04,0.47,0.1,0,4
1218,100,"Yogurt, fruit variety, nonfat, fortified with vitamin D","YOGURT,FRUIT VAR,NONFAT,FORT W/ VITAMIN D",,,Y,,0,,,,,,Dairy and Egg Products,4.4,0.2,19,95,19,0,152,0.07,15,119,194,58,0.74,6,12,52,0.7,0.04,0.18,0.1,0.04,0.47,1.1,0,2
1219,100,"Yogurt, fruit, lowfat, with low calorie sweetener, fortified with vitamin D","YOGURT,FRUIT,LOWFAT,W/ LO CAL SWTNR,FORT W/ VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.86,1.41,18.6,105,2.9,0,152,0.07,16,133,194,58,0.82,3.1,443,52,0.7,0.041,0.18,0.105,0.045,0.52,1.2,0,6
1220,100,"Yogurt, vanilla, low fat, 11 grams protein per 8 ounce, fortified with vitamin D","YOGURT,VANILLA,LOFAT,11 GRAMS PROT PER 8 OZ,FORT W/ VIT D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.93,1.25,13.8,85,13.8,0,171,0.07,16,135,219,66,0.83,4.9,43,47,0.8,0.042,0.201,0.107,0.045,0.53,0.1,0,5
1221,100,"Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener, fortified with vitamin D","YOGURT,VAN/LEM FLAV,NONFAT MILK,W/ LO-CAL SWTNR,FORT W/VIT D",,,Y,,0,,,,,,Dairy and Egg Products,3.86,0.18,7.5,43,7.5,0,143,0.12,13,109,177,59,0.67,3.1,6,47,1.1,0.034,0.162,0.086,0.037,0.43,0,0,2
1222,100,"Yogurt, chocolate, nonfat milk, fortified with vitamin D","YOGURT,CHOC,NONFAT MILK,FORT W/ VITAMIN D",,,Y,,0,,,,,,Dairy and Egg Products,3.53,0,23.53,112,14.97,1.2,88,0.42,40,166,339,135,1.13,7,0,47,0,0.047,0.215,0.223,0.047,0.5,0,0,1
1223,100,"Protein supplement, milk based, Muscle Milk, powder","PROTEIN SUPP,MILK BSD,MUSCLE MILK,PDR",,,Y,,0,,6.38,,,,Dairy and Egg Products,45.71,17.14,18.5,411,5.71,7.1,500,8.57,200,643,1129,329,7.14,33.8,2500,200,30,0.714,0.857,10,1,3,0.5,200,21
1224,100,"Protein supplement, milk based, Muscle Milk Light, powder","PROTEIN SUPP,MILK BSD,MUSCLE MILK LT,PDR",,,Y,,0,,6.38,,,,Dairy and Egg Products,50,12,22,396,4,2,1200,12,280,700,840,250,10,33.8,3500,280,42,1,1.2,14,1.4,4.2,0.5,280,10
1225,100,Dulce de Leche,DULCE DE LECHE,,,Y,,0,,,,,,Dairy and Egg Products,6.84,7.35,55.35,315,49.74,0,251,0.17,22,193,350,129,0.79,2.7,267,6,2.6,0.016,0.405,0.21,0.016,0.31,1.3,0,29
1226,100,"Egg substitute, liquid or frozen, fat free","EGG SUB,LIQ OR FRZ,FAT FREE",,,Y,,0,,6.25,4.36,8.84,3.68,Dairy and Egg Products,10,0,2,48,2,0,73,1.98,15,72,213,199,0.98,41.3,225,66,0.5,0.12,0.386,0.14,0.133,0.34,0.2,0,0
1227,100,"Cheese, dry white, queso seco","CHEESE,DRY WHITE,QUESO SECO",,,,,0,,,,,,Dairy and Egg Products,24.51,24.35,2.04,325,0.55,,661,0.18,27,475,116,1808,3.28,22.4,800,73,,0.038,0.23,0.083,0.091,1.7,1.5,,78
1228,100,"Cheese, fresh, queso fresco","CHEESE,FRSH,QUESO FRESCO",,,Y,,0,,,,,,Dairy and Egg Products,18.09,23.82,2.98,299,2.32,0,566,0.2,24,385,129,751,2.58,19.3,806,110,0,0.042,0.173,0.027,0.076,1.68,1,0,69
1229,100,"Cheese, white, queso blanco","CHEESE,WHITE,QUESO BLANCO",,,,,0,,,,,,Dairy and Egg Products,20.38,24.31,2.53,310,1.76,,690,0.18,29,467,126,704,3.06,13.8,555,27,,0.048,0.23,0.035,0.086,1.75,1.6,,70
1230,100,"Milk, buttermilk, fluid, whole","MILK,BTTRMLK,FLUID,WHL",,,Y,,0,,,,,,Dairy and Egg Products,3.21,3.31,4.88,62,4.88,0,115,0.03,10,85,135,105,0.38,3.7,165,52,0,0.047,0.172,0.09,0.036,0.46,0.3,0,11
1231,100,"Yogurt, vanilla flavor, lowfat milk, sweetened with low calorie sweetener","YOGURT,VANILLA FLAVOR,LOWFAT MILK,SWTND W/ LO CAL SWTNR",,,Y,,0,,,,,,Dairy and Egg Products,4.93,1.25,13.8,86,5.43,0,171,0.07,16,135,219,66,0.83,4.9,43,1,0.8,0.042,0.201,0.107,0.045,0.53,0.1,0,5
1235,100,"Yogurt, frozen, flavors not chocolate, nonfat milk, with low-calorie sweetener","YOGURT,FRZ,FLAVORS NOT CHOC,NONFAT MILK,W/ LOW-CALORIE SWTNR",,,Y,,0,,,,,,Dairy and Egg Products,4.4,0.8,19.7,104,12.61,2,159,0.04,40,129,339,81,0.49,2.8,17,0,0.7,0.04,0.18,0.2,0.04,0.49,0.3,0,4
1236,100,"Ice cream, soft serve, chocolate","ICE CRM,SOFT SERVE,CHOC",,,Y,,0,,,,,,Dairy and Egg Products,4.1,13,22.2,222,21.16,0.7,131,0.21,12,116,177,61,0.52,3,589,29,0.8,0.049,0.182,0.095,0.048,0.5,0.9,0,91
1237,100,"Ice cream, bar or stick, chocolate covered","ICE CRM,BAR OR STK,CHOC COVERED",,,Y,,0,,,,,,Dairy and Egg Products,4.1,24.1,24.5,331,18.3,0.8,119,0.29,28,173,305,68,0.82,2.4,123,7,0,0.062,0.261,0.175,0.043,0.49,1.3,0,28
1238,100,Ice cream sandwich,ICE CRM SNDWCH,,,Y,,0,,,,,,Dairy and Egg Products,4.29,8.57,37.14,237,18.57,0,86,0.26,29,72,115,129,0.6,3.1,286,0,0,0.111,0.146,1.566,0.028,0.05,1.3,27,21
1239,100,Ice cream cookie sandwich,ICE CRM COOKIE SNDWCH,,,Y,,0,,,,,,Dairy and Egg Products,3.7,7.4,39.6,240,21.3,1.2,73,1.1,16,54,68,162,0.32,3.1,122,0,0,0.03,0.03,0.237,0.028,0.01,1.3,0,6
1240,100,"Ice cream cone, chocolate covered, with nuts, flavors other than chocolate","ICE CRM CONE,CHOC COVERED,W/ NUTS,FLAVORS OTHER THAN CHOC",,,Y,,0,,6.25,,,,Dairy and Egg Products,5.21,21.88,34.38,354,25,1,63,0,29,108,222,94,0.86,2.6,104,3,0,0.108,0.252,0.829,0.046,0.36,1.1,16,21
1241,100,"Ice cream sandwich, made with light ice cream, vanilla","ICE CRM SNDWCH,MADE W/ LT ICE CRM,VANILLA",,,Y,,0,,6.25,,,,Dairy and Egg Products,4.29,3.04,39.64,186,17.86,0,30,0.09,10,26,41,146,0.21,1.1,321,0,0,0.039,0.052,0.555,0.01,0.02,0.5,10,7
1242,100,"Ice cream sandwich, vanilla, light, no sugar added","ICE CRM SNDWCH,VANILLA,LT,NO SUGAR ADDED",,,Y,,0,,,,,,Dairy and Egg Products,5.71,2.86,42.86,200,6.58,7.1,86,0,10,26,41,164,0.21,1.1,429,0,0,0.039,0.052,0.555,0.01,0.02,0.5,10,21
1243,100,"Fat free ice cream, no sugar added, flavors other than chocolate","FAT FREE ICE CRM,NO SUGAR ADDED,FLAVORS OTHER THAN CHOC",,,Y,,0,,,,,,Dairy and Egg Products,4.41,0,27.94,129,8.82,7.4,147,0,9,75,196,110,0.31,1.9,461,0,0,0.029,0.122,0.074,0.029,0.52,0,0,0
1244,100,"Milk dessert bar, frozen, made from lowfat milk","MILK DSSRT BAR,FRZ,MADE FROM LOWFAT MILK",,,Y,,0,,,,,,Dairy and Egg Products,4.41,1.47,33.09,147,22.06,6.6,184,0.53,20,83,316,92,0.43,2.2,424,5,0.9,0.023,0.129,0.126,0.023,0.14,0.6,0,7
1250,100,"Nutritional supplement for people with diabetes, liquid","NUTRITIONAL SUPP FOR PEOPLE W/ DIABETES,LIQ",,,Y,,0,,6.38,,,,Dairy and Egg Products,4.4,3.08,11.88,88,2.64,2.2,110,1.98,44,110,176,92,1.65,7.7,550,44,26.4,0.165,0.187,2.201,0.22,0.66,8.8,44,2
1251,100,"Cheese, Mexican blend","CHEESE,MEXICAN BLEND",,,Y,,0,,,,,,Dairy and Egg Products,23.54,28.51,1.75,358,1.23,0,659,0.59,25,438,85,338,3.01,15,659,21,0,0.023,0.318,0.114,0.061,1.23,2.5,0,95
1252,100,"Cheese product, pasteurized process, American, vitamin D fortified","CHEESE PRODUCT,PAST PROCESS,AMERICAN,VITAMIN D FORT",,,Y,,0,,,,,,Dairy and Egg Products,17.12,23.11,8.8,312,6.19,0,1360,0.89,33,799,283,1309,2.13,16.2,1261,259,0,0.04,0.425,0.17,0.124,1.52,3.1,0,78
1253,100,"Cheese, pasteurized process, American, without added vitamin D","CHEESE,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,18.13,31.79,3.7,371,2.26,0,1045,0.63,26,641,132,1671,2.49,20.2,945,23,0,0.015,0.234,0.076,0.054,1.5,2.6,0,100
1254,100,"Cheese food, pasteurized process, American, without added vitamin D","CHEESE FD,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,16.86,25.63,8.56,330,5.59,0,682,0.26,27,438,255,1441,2.31,19.6,890,102,0,0.035,0.36,0.155,0.102,1.33,2.6,0,98
1255,100,"Egg, whole, raw, frozen, salted, pasteurized","EGG,WHL,RAW,FRZ,SALTED,PAST",,,,,0,,,,,,Dairy and Egg Products,10.97,10.07,0.83,138,0.07,0,55,1.71,9,186,128,3663,1.3,30.4,497,61,0,0.06,0.443,0.077,0.226,1.21,0.3,0,387
1256,100,"Yogurt, Greek, plain, nonfat","YOGURT,GREEK,PLN,NONFAT",,,Y,,0,,,,,,Dairy and Egg Products,10.19,0.39,3.6,59,3.24,0,110,0.07,11,135,141,36,0.52,9.7,4,0,0,0.023,0.278,0.208,0.063,0.75,0,0,5
1258,100,"Egg, white, dried, stabilized, glucose reduced","EGG,WHITE,DRIED,STABILIZED,GLUCOSE RED",,,,,0,,,,,,Dairy and Egg Products,84.08,0.32,4.51,357,0,0,101,0.18,82,104,884,1299,0.13,192,0,0,0,0,3.71,0.773,0.032,0.2,0,0,0
1259,100,"Cheese spread, American or Cheddar cheese base, reduced fat","CHEESE SPRD,AMERICAN OR CHEDDAR CHS BASE,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,13.41,8.88,10.71,176,7.06,0,557,0.36,27,931,250,1102,1.81,15.5,656,0,0,0.038,0.442,0.153,0.099,1.17,0,0,38
1260,100,"Cheese, cheddar, reduced fat","CHEESE,CHEDDAR,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,27.35,20.41,4.06,309,0.26,0,761,0.12,27,520,63,628,4.44,35.8,522,13,0,0.021,0.397,0.145,0.084,1.41,1.5,0,76
1263,100,"Ice cream, light, soft serve, chocolate","ICE CRM,LT,SOFT SERVE,CHOC",,,Y,,0,,6.25,,,,Dairy and Egg Products,3.36,3.69,23.15,141,19.46,0,134,0.6,36,113,207,64,0.67,2.3,336,26,0,0.033,0.124,0.186,0.038,0.26,0.4,12,15
1264,100,"Ice cream bar, stick or nugget, with crunch coating","ICE CRM BAR,STK OR NUGGET,W/ CRUNCH COATING",,,Y,,0,,6.38,,,,Dairy and Egg Products,2.11,25.26,37.12,358,21.05,1.1,63,0,11,57,71,84,0.32,4,105,3,0,0.043,0.069,0.548,0.106,0.09,22.3,0,16
1265,100,"Cheese, cheddar, nonfat or fat free","CHEESE,CHEDDAR,NONFAT OR FAT FREE",,,Y,,0,,6.25,,,,Dairy and Egg Products,32.14,0,7.14,157,0,0,893,0,16,484,66,1000,1.82,14.5,207,5,0,0.012,0.221,0.051,0.045,0.49,0.6,0,18
1266,100,"Cheese, Swiss, nonfat or fat free","CHEESE,SWISS,NONFAT OR FAT FREE",,,Y,,0,,,,,,Dairy and Egg Products,28.4,0,3.4,127,1.33,0,961,0.17,36,605,111,1000,3.9,12.7,152,4,0,0.02,0.36,0.09,0.08,1.68,0.5,0,18
1267,100,"Cheese, mexican, queso cotija","CHEESE,MEXICAN,QUESO COTIJA",,,Y,,0,,6.25,,,,Dairy and Egg Products,20,30,3.97,366,0,0,800,0,38,729,125,1400,3.87,17.7,865,21,0,0.029,0.486,0.114,0.049,2.26,1.9,0,100
1270,100,"Cheese, cheddar, sharp, sliced","CHEESE,CHEDDAR,SHARP,SLICED",,,Y,,0,,,,,,Dairy and Egg Products,24.25,33.82,2.13,410,0.27,0,711,0.16,27,460,76,644,3.74,28.3,994,41,0,0.027,0.434,0.039,0.075,0.88,2.4,0,99
1271,100,"Cheese, mozzarella, low moisture, part-skim, shredded","CHEESE,MOZZARELLA,LO MOIST,PART-SKIM,SHREDDED",,,Y,,0,,,,,,Dairy and Egg Products,23.63,19.72,8.06,304,2.24,0,716,0.23,29,537,131,682,3.61,26.8,846,14,0,0.029,0.367,0.151,0.111,1.33,1.3,0,65
1275,100,"Yogurt, Greek, nonfat, vanilla, CHOBANI","YOGURT,GREEK,NONFAT,VANILLA,CHOBANI",,Chobani,,,0,,,,,,Dairy and Egg Products,9.07,0.22,8.09,71,7.61,0.3,106,0.05,11,126,130,36,0.49,10.6,,,,0.028,0.233,0.217,0.053,0.7,,,
1276,100,"Yogurt, Greek, strawberry, DANNON OIKOS","YOGURT,GREEK,STRAWBERRY,DANNON OIKOS",,Danone,,,0,,,,,,Dairy and Egg Products,8.25,2.92,11.67,106,11,1,86,0.07,10,110,131,34,0.39,9.5,13,0,,0.036,0.227,0.21,0.05,0.56,,,13
1278,100,"Yogurt, Greek, nonfat, vanilla, DANNON OIKOS","YOGURT,GREEK,NONFAT,VANILLA,DANNON OIKOS",,Danone,,,0,,,,,,Dairy and Egg Products,8.12,0.14,12.72,85,11.4,0.5,89,0.04,10,112,115,32,0.4,8.2,,35,,0.033,0.26,0.187,0.047,0.66,,,
1280,100,"Yogurt, Greek, nonfat, strawberry, DANNON OIKOS","YOGURT,GREEK,NONFAT,STRAWBERRY,DANNON OIKOS",,Danone,,,0,,,,,,Dairy and Egg Products,8.03,0.22,12.53,84,11.63,0.4,94,0.06,11,114,145,33,0.45,8.9,,40,0.2,0.033,0.217,0.22,0.051,0.59,,,
1281,100,"Yogurt, Greek, nonfat, strawberry, CHOBANI","YOGURT,GREEK,NONFAT,STRAWBERRY,CHOBANI",,Chobani,,,0,,,,,,Dairy and Egg Products,8.03,0.12,11.62,80,10.86,0.7,99,0.12,10,112,124,33,0.44,9.5,,,0.3,0.031,0.28,0.213,0.05,0.45,,,
1284,100,"Yogurt, Greek, strawberry, lowfat","YOGURT,GREEK,STRAWBERRY,LOWFAT",,,Y,,0,,,,,,Dairy and Egg Products,8.17,2.57,11.89,103,11.23,1,88,0.07,10,109,129,33,0.41,9.6,111,0,0.7,0.037,0.235,0.205,0.049,0.5,0,0,12
1285,100,"Yogurt, Greek, strawberry, nonfat","YOGURT,GREEK,STRAWBERRY,NONFAT",,,Y,,0,,,,,,Dairy and Egg Products,8.05,0.15,12.07,82,11.27,0.6,97,0.09,10,113,132,33,0.45,9.4,4,40,0.3,0.037,0.253,0.213,0.05,0.49,0,0,4
1286,100,"Yogurt, Greek, vanilla, nonfat","YOGURT,GREEK,VANILLA,NONFAT",,,Y,,0,,,,,,Dairy and Egg Products,8.64,0.18,10.37,78,9.54,0.5,99,0.04,10,119,123,34,0.46,9.7,0,35,0,0.042,0.24,0.201,0.05,0.64,0.1,0,3
1287,100,"Yogurt, Greek, plain, lowfat","YOGURT,GREEK,PLN,LOWFAT",,,Y,,0,,,,,,Dairy and Egg Products,9.95,1.92,3.94,73,3.56,0,115,0.04,11,137,141,34,0.6,12.4,309,0,0.8,0.044,0.233,0.197,0.055,0.52,0.2,0,10
1289,100,"Kefir, lowfat, plain, LIFEWAY","KEFIR,LOWFAT,PLN,LIFEWAY",,,Y,,0,,,,,,Dairy and Egg Products,3.79,0.93,4.48,41,4.61,0,130,0.04,12,105,164,40,0.46,3.6,569,41,0.2,0.03,0.135,0.15,0.058,0.29,0.1,0,5
1290,100,"Kefir, lowfat, strawberry, LIFEWAY","KEFIR,LOWFAT,STRAWBERRY,LIFEWAY",,,Y,,0,,,,,,Dairy and Egg Products,3.39,0.9,10.2,62,9.21,0,119,0.04,11,96,154,37,0.44,3.6,599,44,1.5,0.03,0.21,0.105,0.06,0.31,1.2,0,5
1291,100,"Milk, evaporated, 2% fat, with added vitamin A and vitamin D","MILK,CND,EVAP,WO/ VIT A",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,6.67,2,15.74,107,6.67,0,267,0.19,24,203,303,100,0.77,2.3,192,160,16,0.047,0.316,0.194,0.05,0.16,0.2,0,0
1292,100,"Milk, chocolate, fat free, with added vitamin A and vitamin D","MILK,CHOC,FAT FREE,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.25,,,,Dairy and Egg Products,3.39,0,13.46,67,9.32,0,127,0.27,13,101,182,110,0.41,1.9,227,42,1,0.045,0.166,0.164,0.024,0.32,0.2,0,2
1293,100,"Yogurt, Greek, plain, whole milk","YOGURT,GREEK,PLN,WHL MILK",,,Y,,0,,6.25,,,,Dairy and Egg Products,9,5,3.98,97,4,0,100,0,11,135,141,35,0.52,9.7,15,0,0,0.023,0.278,0.208,0.063,0.75,0,0,13
1294,100,"Yogurt, Greek, fruit, whole milk","YOGURT,GREEK,FRUIT,WHL MILK",,,Y,,0,,,,,,Dairy and Egg Products,7.33,3,12.29,106,12,0,100,0,10,109,113,37,0.41,9.6,162,0,0,0.046,0.235,0.205,0.049,0.5,0.3,0,10
1295,100,"Yogurt, vanilla, non-fat","YOGURT,VANILLA,NON-FAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.94,0,17.04,78,5.88,0,118,0,16,88,141,47,0.83,4.9,204,35,0,0.042,0.2,0.107,0.045,0.53,0,0,3
1297,100,"Yogurt, Greek, vanilla, lowfat","YOGURT,GREEK,VANILLA,LOWFAT",,,Y,,0,,,,,,Dairy and Egg Products,8.64,2.5,9.54,95,9.54,0,100,0.04,10,119,123,40,0.46,9.7,371,35,0,0.038,0.24,0.201,0.05,0.64,0.2,0,5
1298,100,"Yogurt, frozen, flavors other than chocolate, lowfat","YOGURT,FRZ,FLAVORS OTHER THAN CHOC,LOWFAT",,,Y,,0,,,,,,Dairy and Egg Products,8,2.5,21,139,21,0,200,0,7,62,108,45,0.19,1.3,122,2,0,0.028,0.125,0.049,0.028,0.05,0.2,0,45
1300,100,"Ice cream bar, covered with chocolate and nuts","ICE CRM BAR,COVERED W/ CHOC & NUTS",,,Y,,0,,,,,,Dairy and Egg Products,5.62,25.84,11.89,303,10.8,1.1,90,1.21,37,146,304,56,0.81,3.1,281,9,0,0.051,0.23,1.228,0.281,0.49,1.7,0,56
1301,100,Ice cream sundae cone,ICE CRM SUNDAE CONE,,,Y,,0,,6.38,,,,Dairy and Egg Products,3,14,28.89,254,21.26,1,60,0.36,20,128,204,115,0.56,2.3,410,4,0,0.09,0.213,1.111,0.05,0.35,0.5,14,15
1302,100,"Light ice cream, Creamsicle","LIGHT ICE CRM,CREAMSICLE",,,Y,,0,,6.25,,,,Dairy and Egg Products,1.54,3.08,32.75,165,18.46,0,62,0,12,84,174,46,0.66,1.8,324,2,13.8,0.045,0.206,0.113,0.038,0.36,0.3,0,8
1303,100,"Cream, half and half, lowfat","CREAM,HALF & HALF,LOWFAT",,,Y,,0,,6.25,,,,Dairy and Egg Products,3.33,5,3.33,72,3.33,0,133,0,10,95,132,50,0.39,3.2,170,1,0,0.03,0.194,0.109,0.05,0.19,0.6,0,17
1305,100,"Milk, chocolate, lowfat, reduced sugar","MILK,CHOC,LOWFAT,RED SUGAR",,,Y,,0,,,,,,Dairy and Egg Products,3.43,1.04,7.68,54,7.29,0,122,0.16,13,98,168,66,0.46,1.9,319,60,0,0.035,0.225,0.122,0.05,0.2,0.1,0,5
1306,100,"Ice cream, lowfat, no sugar added, cone, added peanuts and chocolate sauce","ICE CRM,LOWFAT,NO SUGAR ADDED,CONE,ADDED PNUTS & CHOC SAU",,,Y,,0,,6.25,,,,Dairy and Egg Products,5.33,9.33,40.01,265,10.67,9.3,133,0.48,65,143,213,113,1.06,3.9,89,8,0,0.182,0.2,3.528,0.093,0.07,0.7,0,7
2001,200,"Spices, allspice, ground","ALLSPICE,GROUND",,,,,0,Pimenta dioica,6.25,3.36,8.37,2.35,Spices and Herbs,6.09,8.69,72.12,263,,21.6,661,7.06,135,113,1044,77,1.01,2.7,540,0,39.2,0.101,0.063,2.86,0.21,0,,0,0
2002,200,"Spices, anise seed",ANISE SEED,,,,,0,Pimpinella anisum,6.25,3.36,8.37,2.9,Spices and Herbs,17.6,15.9,50.02,337,,14.6,646,36.96,170,440,1441,16,5.3,5,311,0,21,0.34,0.29,3.06,0.65,0,,0,0
2003,200,"Spices, basil, dried","SPICES,BASIL,DRIED",,,Y,,0,Ocimum basilicum,6.25,2.44,8.37,3,Spices and Herbs,22.98,4.07,47.75,233,1.71,37.7,2240,89.8,711,274,2630,76,7.1,3,744,0,0.8,0.08,1.2,4.9,1.34,0,1714.5,0,0
2004,200,"Spices, bay leaf","SPICES,BAY LEAF",,,,,0,Laurus nobilis,6.25,2.44,8.37,3,Spices and Herbs,7.61,8.36,74.97,313,,26.3,834,43,120,113,529,23,3.7,2.8,6185,0,46.5,0.009,0.421,2.005,1.74,0,,0,0
2005,200,"Spices, caraway seed",CARAWAY SEED,,,Y,,0,Carum carvi,6.25,3.36,8.37,2.9,Spices and Herbs,19.77,14.59,49.9,333,0.64,38,689,16.23,258,568,1351,17,5.5,12.1,363,0,21,0.383,0.379,3.606,0.36,0,0,0,0
2006,200,"Spices, cardamom","SPICES,CARDAMOM",,,,,0,Elettaria cardamomum,6.25,3.36,8.37,3.2,Spices and Herbs,10.76,6.7,68.47,311,,28,383,13.97,229,178,1119,18,7.47,,0,0,21,0.198,0.182,1.102,0.23,0,,,0
2007,200,"Spices, celery seed",CELERY SEED,,,Y,,0,Apium graveolens,6.25,3.36,8.37,2.9,Spices and Herbs,18.07,25.27,41.35,392,0.67,11.8,1767,44.9,440,547,1400,160,6.93,12.1,52,0,17.1,0.34,0.29,3.06,0.89,0,0,0,0
2008,200,"Spices, chervil, dried","CHERVIL,DRIED",,,,,0,Anthriscus cerefolium,6.25,2.44,8.37,3,Spices and Herbs,23.2,3.9,49.1,237,,11.3,1346,31.95,130,450,4740,83,8.8,29.3,5850,0,50,0.38,0.68,5.4,0.93,0,,0,0
2009,200,"Spices, chili powder",CHILI POWDER,,,Y,,0,,6.25,3.23,8.37,2.39,Spices and Herbs,13.46,14.28,49.7,282,7.19,34.8,330,17.3,149,300,1950,2867,4.3,20.4,29650,0,0.7,0.25,0.94,11.6,2.094,0,105.7,0,0
2010,200,"Spices, cinnamon, ground","CINNAMON,GROUND",Cassia,,Y,,0,Cinnamomum aromaticum,6.25,1.82,8.37,2.85,Spices and Herbs,3.99,1.24,80.59,247,2.17,53.1,1002,8.32,60,64,431,10,1.83,3.1,295,0,3.8,0.022,0.041,1.332,0.158,0,31.2,0,0
2011,200,"Spices, cloves, ground","CLOVES,GROUND",,,Y,,0,Syzygium aromaticum,6.25,1.82,8.37,2.35,Spices and Herbs,5.97,13,65.53,274,2.38,33.9,632,11.83,259,104,1020,277,2.32,7.2,160,0,0.2,0.158,0.22,1.56,0.391,0,141.8,0,0
2012,200,"Spices, coriander leaf, dried","CORIANDER LEAF,DRIED","Chinese parsley, cilantro",,Y,,0,Coriandrum sativum,6.25,2.44,8.37,3.57,Spices and Herbs,21.93,4.78,52.1,279,7.27,10.4,1246,42.46,694,481,4466,211,4.72,29.3,5850,0,566.7,1.252,1.5,10.707,0.61,0,1359.5,0,0
2013,200,"Spices, coriander seed",CORIANDER SEED,,,,,0,Coriandrum sativum,6.25,3.36,8.37,1.95,Spices and Herbs,12.37,17.77,54.99,298,,41.9,709,16.32,330,409,1267,35,4.7,26.2,0,0,21,0.239,0.29,2.13,,0,,0,0
2014,200,"Spices, cumin seed",CUMIN SEED,,,Y,,0,Cuminum cyminum,6.25,3.36,8.37,2.9,Spices and Herbs,17.81,22.27,44.24,375,2.25,10.5,931,66.36,366,499,1788,168,4.8,5.2,1270,0,7.7,0.628,0.327,4.579,0.435,0,5.4,0,0
2015,200,"Spices, curry powder",CURRY POWDER,,,Y,,0,,6.18,3.12,8.37,2.92,Spices and Herbs,14.29,14.01,55.83,325,2.76,53.2,525,19.1,255,367,1170,52,4.7,40.3,19,0,0.7,0.176,0.2,3.26,0.105,0,99.8,0,0
2016,200,"Spices, dill seed",DILL SEED,,,,,0,Anethum graveolens,6.25,3.36,8.37,2.35,Spices and Herbs,15.98,14.54,55.17,305,,21.1,1516,16.33,256,277,1186,20,5.2,12.1,53,0,21,0.418,0.284,2.807,0.25,0,,0,0
2017,200,"Spices, dill weed, dried","DILL WEED,DRIED",,,,,0,Anethum graveolens,6.25,2.44,8.37,3,Spices and Herbs,19.96,4.36,55.82,253,,13.6,1784,48.78,451,543,3308,208,3.3,,5850,0,50,0.418,0.284,2.807,1.71,0,,,0
2018,200,"Spices, fennel seed",FENNEL SEED,,,,,0,Foeniculum vulgare,6.25,3.36,8.37,3.2,Spices and Herbs,15.8,14.87,52.29,345,,39.8,1196,18.54,385,487,1694,88,3.7,,135,0,21,0.408,0.353,6.05,0.47,0,,,0
2019,200,"Spices, fenugreek seed",FENUGREEK SEED,,,,,0,Trigonella foenum-graecum,5.3,3.47,8.37,3.25,Spices and Herbs,23,6.41,58.35,323,,24.6,176,33.53,191,296,770,67,2.5,6.3,60,0,3,0.322,0.366,1.64,0.6,0,,0,0
2020,200,"Spices, garlic powder",GARLIC POWDER,,,Y,,0,Allium sativum,6.25,2.78,8.37,3.84,Spices and Herbs,16.55,0.73,72.73,331,2.43,9,79,5.65,77,414,1193,60,2.99,23.9,0,0,1.2,0.435,0.141,0.796,1.654,0,0.4,0,0
2021,200,"Spices, ginger, ground","GINGER,GROUND",,,Y,,0,Zingiber officinale,6.25,2.78,8.37,3.84,Spices and Herbs,8.98,4.24,71.62,335,3.39,14.1,114,19.8,214,168,1320,27,3.64,55.8,30,0,0.7,0.046,0.17,9.62,0.626,0,0.8,0,0
2022,200,"Spices, mace, ground","MACE,GROUND",,,,,0,Myristica fragrans,6.25,3.36,8.37,3.6,Spices and Herbs,6.71,32.38,50.5,475,,20.2,252,13.9,163,110,463,80,2.3,2.7,800,0,21,0.312,0.448,1.35,0.16,0,,0,0
2023,200,"Spices, marjoram, dried","MARJORAM,DRIED",,,Y,,0,Origanum majorana,6.25,2.44,8.37,3,Spices and Herbs,12.66,7.04,60.56,271,4.09,40.3,1990,82.71,346,306,1522,77,3.6,4.5,8068,0,51.4,0.289,0.316,4.12,1.19,0,621.7,0,0
2024,200,"Spices, mustard seed, ground","SPICES,MUSTARD SD,GROUND",,,Y,,0,Sinapis alba and Brassica juncea,5.4,3.47,8.37,4.07,Spices and Herbs,26.08,36.24,28.09,508,6.79,12.2,266,9.21,370,828,738,13,6.08,208.1,31,0,7.1,0.805,0.261,4.733,0.397,0,5.4,0,0
2025,200,"Spices, nutmeg, ground","NUTMEG,GROUND",,,Y,,0,Myristica fragrans,5.3,3.47,8.37,4.07,Spices and Herbs,5.84,36.31,49.29,525,2.99,20.8,184,3.04,183,213,350,16,2.15,1.6,102,0,3,0.346,0.057,1.299,0.16,0,0,0,0
2026,200,"Spices, onion powder",ONION POWDER,,,Y,,0,Allium cepa,6.25,2.78,8.37,3.84,Spices and Herbs,10.41,1.04,79.12,341,6.63,15.2,384,3.9,113,322,985,73,4.05,14.3,0,0,23.4,0.457,0.08,0.321,0.718,0,4.1,0,0
2027,200,"Spices, oregano, dried","SPICES,OREGANO,DRIED",,,Y,,0,Origanum vulgare,6.25,2.44,8.37,3,Spices and Herbs,9,4.28,68.92,265,4.09,42.5,1597,36.8,270,148,1260,25,2.69,4.5,1701,0,2.3,0.177,0.528,4.64,1.044,0,621.7,0,0
2028,200,"Spices, paprika",PAPRIKA,,,Y,,0,Capsicum annuum,6.25,3.36,8.37,2.35,Spices and Herbs,14.14,12.89,53.99,282,10.34,34.9,229,21.14,178,314,2280,68,4.33,6.3,49254,0,0.9,0.33,1.23,10.06,2.141,0,80.3,0,0
2029,200,"Spices, parsley, dried","PARSLEY,DRIED",,,Y,,0,Petroselinum crispum,6.25,2.44,8.37,3.57,Spices and Herbs,26.63,5.48,50.64,292,7.27,26.7,1140,22.04,400,436,2683,452,5.44,14.1,1939,0,125,0.196,2.383,9.943,0.9,0,1359.5,0,0
2030,200,"Spices, pepper, black","PEPPER,BLACK",,,Y,,0,Piper nigrum,5.35,1.83,8.37,3.2,Spices and Herbs,10.39,3.26,63.95,251,0.64,25.3,443,9.71,171,158,1329,20,1.19,4.9,547,0,0,0.108,0.18,1.143,0.291,0,163.7,0,0
2031,200,"Spices, pepper, red or cayenne","PEPPER,RED OR CAYENNE",,,Y,,0,Capsicum frutescens or Capsicum annuum,6.25,3.36,8.37,2.35,Spices and Herbs,12.01,17.27,56.63,318,10.34,27.2,148,7.8,152,293,2014,30,2.48,8.8,41610,0,76.4,0.328,0.919,8.701,2.45,0,80.3,0,0
2032,200,"Spices, pepper, white","PEPPER,WHITE",,,,,0,Piper nigrum,5.35,1.83,8.37,3.78,Spices and Herbs,10.4,2.12,68.61,296,,26.2,265,14.31,90,176,73,5,1.13,3.1,0,0,21,0.022,0.126,0.212,0.1,0,,0,0
2033,200,"Spices, poppy seed",POPPY SEED,,,Y,,0,Papaver somniferum,5.3,3.47,8.37,4.07,Spices and Herbs,17.99,41.56,28.13,525,2.99,19.5,1438,9.76,347,870,719,26,7.9,13.5,0,0,1,0.854,0.1,0.896,0.247,0,0,0,0
2034,200,"Spices, poultry seasoning",POULTRY SEASONING,,,Y,,0,,5.89,2.36,8.37,3.38,Spices and Herbs,9.59,7.53,65.59,307,1.8,11.3,996,35.3,224,171,684,27,3.14,7.2,2632,0,12,0.264,0.191,2.97,1.32,0,805.4,0,0
2035,200,"Spices, pumpkin pie spice",PUMPKIN PIE SPICE,,,Y,,0,,6.06,2.5,8.37,3.19,Spices and Herbs,5.76,12.6,69.28,342,7.76,14.8,682,19.71,136,118,663,52,2.37,9.3,261,0,23.4,0.131,0.137,2.243,0.4,0,28.4,0,0
2036,200,"Spices, rosemary, dried","ROSEMARY,DRIED",,,,,0,Rosmarinus officinalis,6.25,2.44,8.37,3,Spices and Herbs,4.88,15.22,64.06,331,,42.6,1280,29.25,220,70,955,50,3.23,4.6,3128,0,61.2,0.514,0.428,1,1.74,0,,0,0
2037,200,"Spices, saffron",SAFFRON,,,,,0,Crocus sativus,6.25,2.44,8.37,3.57,Spices and Herbs,11.43,5.85,65.37,310,,3.9,111,11.1,264,252,1724,148,1.09,5.6,530,0,80.8,0.115,0.267,1.46,1.01,0,,0,0
2038,200,"Spices, sage, ground","SAGE,GROUND",,,Y,,0,Salvia officinalis,6.25,2.44,8.37,3,Spices and Herbs,10.63,12.75,60.73,315,1.71,40.3,1652,28.12,428,91,1070,11,4.7,3.7,5900,0,32.4,0.754,0.336,5.72,2.69,0,1714.5,0,0
2039,200,"Spices, savory, ground","SAVORY,GROUND",,,,,0,Satureja hortensis,6.25,2.44,8.37,3,Spices and Herbs,6.73,5.91,68.73,272,,45.7,2132,37.88,377,140,1051,24,4.3,4.6,5130,0,50,0.366,,4.08,1.81,0,,,0
2041,200,"Spices, tarragon, dried","SPICES,TARRAGON,DRIED",,,,,0,Artemisia dracunculus,6.25,2.44,8.37,3.57,Spices and Herbs,22.77,7.24,50.22,295,,7.4,1139,32.3,347,313,3020,62,3.9,4.4,4200,0,50,0.251,1.339,8.95,2.41,0,,0,0
2042,200,"Spices, thyme, dried","SPICES,THYME,DRIED",,,Y,,0,Thymus vulgaris,6.25,2.44,8.37,3,Spices and Herbs,9.11,7.43,63.94,276,1.71,37,1890,123.6,220,201,814,55,6.18,4.6,3800,0,50,0.513,0.399,4.94,0.55,0,1714.5,0,0
2043,200,"Spices, turmeric, ground","TURMERIC,GROUND",,,Y,,0,Curcuma longa L.,6.25,2.78,8.37,3.84,Spices and Herbs,9.68,3.25,67.14,312,3.21,22.7,168,55,208,299,2080,27,4.5,6.2,0,0,0.7,0.058,0.15,1.35,0.107,0,13.4,0,0
2044,200,"Basil, fresh","BASIL,FRESH",,,Y,"Tough stems, flower heads and trimmings",36,Ocimum basilicum,6.25,2.44,8.37,3.57,Spices and Herbs,3.15,0.64,2.65,23,0.3,1.6,177,3.17,64,56,295,4,0.81,0.3,5275,0,18,0.034,0.076,0.902,0.155,0,414.8,0,0
2045,200,"Dill weed, fresh","DILL WEED,FRSH",,,,Tough stems and trimmings,41,Anethum graveolens,6.25,2.44,8.37,3.57,Spices and Herbs,3.46,1.12,7.02,43,,2.1,208,6.59,55,66,738,61,0.91,,7718,0,85,0.058,0.296,1.57,0.185,0,,0,0
2046,200,"Mustard, prepared, yellow","MUSTARD,PREPARED,YELLOW",,,Y,,0,,6.25,3.47,8.37,3.34,Spices and Herbs,3.74,3.34,5.83,60,0.92,4,63,1.61,48,108,152,1104,0.64,33.5,109,0,0.3,0.177,0.07,0.565,0.07,0,1.4,0,0
2047,200,"Salt, table","SALT,TABLE",,,Y,,0,,0,,,,Spices and Herbs,0,0,0,0,0,0,24,0.33,1,0,8,38758,0.1,0.1,0,0,0,0,0,0,0,0,0,0,0
2048,200,"Vinegar, cider","VINEGAR,CIDER",,,Y,,0,,0,,,,Spices and Herbs,0,0,0.93,21,0.4,0,7,0.2,5,8,73,5,0.04,0.1,0,0,0,0,0,0,0,0,0,0,0
2049,200,"Thyme, fresh","THYME,FRSH",,,,Stems,32,Thymus vulgaris,6.25,2.44,8.37,3,Spices and Herbs,5.56,1.68,24.45,101,,14,405,17.45,160,106,609,9,1.81,,4751,0,160.1,0.048,0.471,1.824,0.348,0,,0,0
2050,200,Vanilla extract,VANILLA EXTRACT,,,,,0,,6.25,2.44,8.37,3.9,Spices and Herbs,0.06,0.06,12.65,288,12.65,0,11,0.12,12,6,148,9,0.11,0,0,0,0,0.011,0.095,0.425,0.026,0,0,0,0
2051,200,"Vanilla extract, imitation, alcohol","VANILLA EXTRACT,IMITN,ALCOHOL",,,,,0,,6.25,2.44,8.37,3.9,Spices and Herbs,0.05,0,2.41,237,,0,0,0.13,5,22,98,4,0.06,,0,0,0,0.008,0.071,0.318,0.019,0,,0,0
2052,200,"Vanilla extract, imitation, no alcohol","VANILLA EXTRACT,IMITN,NO ALCOHOL",,,Y,,0,,6.25,2.44,8.37,3.9,Spices and Herbs,0.03,0,14.4,56,14.4,0,3,0.05,1,0,0,3,0.01,0,0,0,0,0.003,0.029,0.129,0.008,0,0,0,0
2053,200,"Vinegar, distilled","VINEGAR,DISTILLED",,,Y,,0,,,,,,Spices and Herbs,0,0,0.04,18,0.04,0,6,0.03,1,4,2,2,0.01,0.5,0,0,0,0,0,0,0,0,0,0,0
2054,200,"Capers, canned","CAPERS,CANNED",,,Y,,0,Capparis spinosa,6.25,1.82,8.37,2.35,Spices and Herbs,2.36,0.86,4.89,23,0.41,3.2,40,1.67,33,10,40,2348,0.32,1.2,138,0,4.3,0.018,0.139,0.652,0.023,0,24.6,0,0
2055,200,"Horseradish, prepared","HORSERADISH,PREPARED",,,Y,,0,,6.25,2.78,8.37,3.44,Spices and Herbs,1.18,0.69,11.29,48,7.99,3.3,56,0.42,27,31,246,420,0.83,2.8,2,0,24.9,0.008,0.024,0.386,0.073,0,1.3,0,0
2063,200,"Rosemary, fresh","ROSEMARY,FRESH",,,,Stems,35,Rosmarinus officinalis,6.25,2.44,8.37,3.57,Spices and Herbs,3.31,5.86,20.7,131,,14.1,317,6.65,91,66,668,26,0.93,,2924,0,21.8,0.036,0.152,0.912,0.336,0,,0,0
2064,200,"Peppermint, fresh","PEPPERMINT,FRESH",mint,,,Stems,39,Mentha x piperita L. nothosubsp. piperita,6.25,2.44,8.37,3.57,Spices and Herbs,3.75,0.94,14.89,70,,8,243,5.08,80,73,569,31,1.11,,4248,0,31.8,0.082,0.266,1.706,0.129,0,,0,0
2065,200,"Spearmint, fresh","SPEARMINT,FRESH",mint,,,Stems,59,Mentha spicata,6.25,2.44,8.37,3.57,Spices and Herbs,3.29,0.73,8.41,44,,6.8,199,11.87,63,60,458,30,1.09,,4054,0,13.3,0.078,0.175,0.948,0.158,0,,0,0
2066,200,"Spearmint, dried","SPEARMINT,DRIED",mint,,,,0,,6.25,2.44,8.37,3.57,Spices and Herbs,19.93,6.03,52.04,285,,29.8,1488,87.47,602,276,1924,344,2.41,,10579,0,0,0.288,1.421,6.561,2.579,0,,0,0
2068,200,"Vinegar, red wine","VINEGAR,RED WINE",,,,,0,,6.25,,,,Spices and Herbs,0.04,0,0.27,19,0,0,6,0.45,4,8,39,8,0.03,,0,,0.5,,,,,,,,
2069,200,"Vinegar, balsamic","VINEGAR,BALSAMIC",,,,,0,,,,,,Spices and Herbs,0.49,0,17.03,88,14.95,,27,0.72,12,19,112,23,0.08,,0,,0,,,,,,,,
2073,200,"PACE, Dry Taco Seasoning Mix","PACE,DRY TACO SEAS MIX",,Campbell Soup Co.,,,0,,6.25,,,,Spices and Herbs,0,0,56.29,188,18.76,18.8,,6.75,,,,8068,,,9381,,45,,,,,,,,0
2074,200,"Seasoning mix, dry, sazon, coriander & annatto","SEASONING MIX,DRY,SAZON,CORIANDER & ANNATTO",,,,,0,,6.25,,,,Spices and Herbs,0,0,0,0,0,0,0,0,,,,17000,,,0,,0,,,,,,,,0
2075,200,"Seasoning mix, dry, taco, original","SEASONING MIX,DRY,TACO,ORIGINAL",,,,,0,,,,,,Spices and Herbs,4.5,0,58,322,10.83,13.3,0,7.2,,,1000,7203,,,3744,,0,,,,,,,,0
2076,200,"Seasoning mix, dry, chili, original","SEASONING MIX,DRY,CHILI,ORIGINAL",,,,,0,,,,,,Spices and Herbs,10.82,7.3,56.56,335,8.67,10.8,0,3.9,,,,4616,,,2816,,5.9,,,,,,,,0
3000,300,Clif Z bar,CLIF Z BAR,,,Y,,0,,,,,,Baby Foods,5.55,9.72,74.72,409,30.56,8.3,444,2.7,82,244,333,375,1.15,14.8,7,0,39.1,0.411,0.1,0.478,0.073,0,8.7,0,0
3001,300,"Babyfood, juice treats, fruit medley, toddler","BABYFOOD,JUC TREATS,FRUIT MEDLEY,TODD",,,Y,,0,,,,,,Baby Foods,0,0.02,86.68,347,57.4,0,12,0.24,7,9,54,89,0.03,1.9,2,0,8,0.015,0.01,0.057,0.014,0,0,0,0
3002,300,"Babyfood, meat, beef, strained","BABYFOOD,MEAT,BF,STR",,,Y,,0,,6.25,,,,Baby Foods,12.03,2.52,2.43,81,0,0,5,0.98,11,93,187,41,2.22,2.9,0,15,2.1,0.013,0.135,2.495,0.039,1.26,0.6,0,51
3003,300,"Babyfood, meat, beef, junior","BABYFOOD,MEAT,BF,STR",,,Y,,0,,6.25,,,,Baby Foods,12.03,2.52,2.43,81,0,0,5,0.98,11,93,187,41,2.22,2.9,0,15,2.1,0.013,0.135,2.495,0.039,1.26,0.6,0,51
3005,300,"Babyfood, meat, veal, strained","BABYFOOD,MEAT,VEAL,STR",,,Y,,0,,,,,,Baby Foods,13.12,2.45,1.51,81,0,0,6,0.76,11,98,170,39,2.5,3.5,0,26,0,0.023,0.116,2.85,0.049,1.65,0,0,33
3007,300,"Babyfood, meat, pork, strained","BABYFOOD,MEAT,PORK,STR",,,,,0,,6.25,4.27,9.02,,Baby Foods,14,7.1,0,124,0,0,5,1,10,94,223,42,2.27,12.9,38,,1.8,0.146,0.203,2.269,0.205,0.99,,0,48
3008,300,"Babyfood, meat, ham, strained","BABYFOOD,MEAT,HAM,STR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,11.3,3.8,3.7,97,0,0,6,1.03,13,81,204,44,2.25,14.2,5,18,2.1,0.139,0.154,2.633,0.252,0.1,0,0,24
3009,300,"Babyfood, meat, ham, junior","BABYFOOD,MEAT,HAM,JUNIOR",,,,,0,,6.25,4.27,9.02,,Baby Foods,11.3,3.8,3.7,97,0,0,5,1.01,11,89,210,44,1.7,15,0,18,2.1,0.142,0.194,2.84,0.2,0.1,0,0,29
3010,300,"Babyfood, meat, lamb, strained","BABYFOOD,MEAT,LAMB,STR",,,Y,,0,,,,,,Baby Foods,14.07,3.41,0.85,87,0,0,7,1.19,13,104,193,43,2.43,2.2,0,4,1.2,0.02,0.174,2.908,0.037,1.9,0.6,0,36
3011,300,"Babyfood, meat, lamb, junior","BABYFOOD,MEAT,LAMB,JUNIOR",,,,,0,,6.25,4.27,9.02,,Baby Foods,15.2,5.2,0,112,0,0,7,1.66,10,91,211,42,2.6,7,27,4,1.7,0.019,0.191,3.193,0.183,2.27,,0,38
3012,300,"Babyfood, meat, chicken, strained","BABYFOOD,MEAT,CHICK,STR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,13.7,7.9,0.1,130,0,0,64,1.4,13,97,141,49,1.21,11,21,11,1.7,0.014,0.152,3.255,0.2,0.4,1,0,61
3013,300,"Babyfood, meat, chicken, junior","BABYFOOD,MEAT,CHICK,JR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,14,9.6,0,146,0,0,55,0.99,11,90,122,49,1.01,10.3,40,2,1.5,0.014,0.163,3.42,0.188,0.4,1.7,0,59
3014,300,"Babyfood, meat, chicken sticks, junior","BABYFOOD,MEAT,CHICK STKS,JR",,,Y,,0,,6.25,4,8.7,2.7,Baby Foods,14.6,14.4,1.5,188,1.4,0.2,73,1.56,14,121,106,408,1.01,10.3,11,4,1.7,0.017,0.197,2.005,0.103,0.4,0.4,0,78
3015,300,"Babyfood, meat, turkey, strained","BABYFOOD,MEAT,TURKEY,STR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,11.5,6.2,1.4,111,0,0,41,0.7,12,117,135,49,1.77,12,0,34,2.2,0.008,0.163,2.61,0.029,1.11,0,0,58
3016,300,"Babyfood, meat, turkey, junior","BABYFOOD,MEAT,TURKEY,JR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,11.5,6.2,1.4,111,0,0,41,0.7,12,117,135,49,1.77,12,0,34,0,0.008,0.163,2.61,0.029,1.11,0,0,58
3017,300,"Babyfood, meat, turkey sticks, junior","Babyfood, meat, turkey sticks, junior",,,Y,,0,,6.25,,,,Baby Foods,13.7,14.2,1.4,188,1.4,0.5,83,0.92,10,120,120,440,2.4,13.5,19,15,1.5,0.008,0.181,1.94,0.023,1.3,0,0,65
3019,300,"Babyfood, snack, GERBER GRADUATE FRUIT STRIPS, Real Fruit Bars","BABYFOOD,SNACK,GERBER GRADUATE FRUIT STRIPS,REAL FRUIT BARS",,,Y,,0,,,,,,Baby Foods,0.82,2.24,76.61,330,68.65,2,18,1.05,9,23,312,14,0.14,1.4,233,0,179.9,0.041,0.046,0.334,0.201,0,2.5,0,0
3021,300,"Babyfood, meat, meat sticks, junior","BABYFOOD,MEAT,MEAT STKS,JR",,,Y,,0,,6.25,4,8.7,2.7,Baby Foods,13.4,14.6,1.1,184,0.8,0.2,34,1.38,11,103,114,423,1.9,13.3,69,9,2.4,0.059,0.172,1.481,0.08,0.29,0.5,0,70
3022,300,"Babyfood, GERBER, 2nd Foods, apple, carrot and squash, organic","BABYFOOD,GERBER,2ND FOODS,APPL,CARROT & SQUASH,ORGANIC",,,Y,,0,,,,,,Baby Foods,1.1,0,14.82,64,9.09,1.2,6,0.15,5,17,106,20,0.22,0.8,417,0,2732,0.02,0.036,0.255,0.057,0,1,0,2
3023,300,"Finger snacks, GERBER GRADUATE PUFFS, apple and cinnamon","FINGER SNACKS,GERBER GRADUATE PUFFS,APPL & CINN",,,Y,,0,,,,,,Baby Foods,6.19,2.3,85.79,389,17.84,3.8,535,24.74,60,448,196,13,17.46,6.2,13,0,1.3,1.563,2.267,28.767,1.8,0,1.3,0,0
3024,300,"Babyfood, water, bottled, GERBER, without added fluoride.","BABYFOOD,H2O,BTLD,GERBER,WO/ ADDED FLUORIDE.",,,Y,,0,,,,,,Baby Foods,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
3025,300,"Babyfood, GERBER, 3rd Foods, apple, mango and kiwi","BABYFOOD,GERBER,3RD FOODS,APPL,MANGO & KIWI",,,Y,,0,,,,,,Baby Foods,0.47,0,12.88,53,10.18,2,9,0.17,6,11,123,2,0.06,0.3,294,0,23.3,0.018,0.018,0.25,0.059,0,5.9,0,0
3026,300,"Babyfood, tropical fruit medley","BABYFOOD,TROPICAL FRUIT MEDLEY",,,Y,,0,,,,,,Baby Foods,0.31,0.14,12.22,51,9.78,1.3,0,0,5,11,141,0,0.05,0,88,0,15.9,0.019,0.027,0.138,0.039,0,0.8,0,0
3041,300,"Babyfood, dinner, vegetables and dumplings and beef, strained","BABYFOOD,DINNER,VEG&DUMPLINGS&BF,STR",,,,,0,,6.03,4.1,8.9,4.1,Baby Foods,2,0.9,7.7,48,0,,14,0.39,6,28,46,49,0.4,2.1,416,,0.8,0.049,0.04,0.574,0.047,0.09,,0,
3042,300,"Babyfood, dinner, vegetables and dumplings and beef, junior","BABYFOOD,DINNER,VEG&DUMPLINGS&BF,JR",,,,,0,,6.03,4.1,8.9,4.1,Baby Foods,2.1,0.8,8,48,0,,14,0.47,7,29,47,52,0.33,2.1,660,,0.8,0.039,0.036,0.49,0.048,0.09,,0,
3043,300,"Babyfood, dinner, beef lasagna, toddler","BABYFOOD,DINNER,BF LASAGNA,TODD",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,4.2,2.1,10,77,0,,18,0.87,11,40,122,41,0.7,8.4,1163,,1.9,0.072,0.089,1.353,0.071,0.51,,0,
3044,300,"Babyfood, dinner, macaroni and tomato and beef, strained","BABYFOOD,DINNER,MACARONI&TOMATO&BF,STR",,,Y,,0,,,,,,Baby Foods,2.36,1.47,9.45,61,2.09,1.2,17,0.46,12,39,112,38,0.54,8.4,878,2,0.3,0.038,0.043,0.715,0.056,0.15,29.3,4,7
3045,300,"Babyfood, dinner, macaroni and tomato and beef, junior","BABYFOOD,DINNER,MACARONI&TOMATO&BF,JR",,,Y,,0,,5.98,4.1,8.9,4.1,Baby Foods,2.5,1.1,9.4,59,2.43,1.1,14,0.36,7,44,72,35,0.36,8.4,691,1,1.5,0.048,0.055,0.751,0.047,0.24,6.7,3,4
3046,300,"Babyfood, ravioli, cheese filled, with tomato sauce","BABYFOOD,RAVIOLI,CHS FILLED,W/TOMATO SAU",,,Y,,0,,,,,,Baby Foods,3.6,2.2,16.3,99,0.59,0.1,54,0.8,7,56,32,282,0.35,13.4,494,1,0.1,0.12,0.14,1.65,0.09,0.05,9.4,0,7
3047,300,"Babyfood, dinner, beef noodle, strained","BABYFOOD,DINNER,BF NOODLE,STR",,,Y,,0,,,,,,Baby Foods,2.44,2.26,8.18,63,1.42,1.3,10,0.41,10,38,87,15,0.6,3.6,716,0,0.1,0.035,0.035,0.616,0.036,0.19,1.6,4,8
3048,300,"Babyfood, macaroni and cheese, toddler","BABYFOOD,MACARONI&CHS,TODD",,,Y,,0,,,,,,Baby Foods,3.5,2.6,11.2,82,0.79,0.5,102,0.6,9,81,18,112,0.43,6.6,73,2,0,0.04,0.09,0.79,0.05,0.06,0.2,22,7
3049,300,"Babyfood, dinner, beef and rice, toddler","BABYFOOD,DINNER,BF&RICE,TODD",,,,,0,,6.14,4.1,8.9,4.1,Baby Foods,5,2.9,8.8,82,0,,11,0.69,8,35,120,32,0.92,8.4,502,,3.9,0.016,0.069,1.343,0.139,0.51,,0,
3050,300,"Babyfood, dinner, spaghetti and tomato and meat, junior","BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,JR",,,Y,,0,,,,,,Baby Foods,2.57,1.37,11.42,68,2.72,1.1,15,0.53,11,35,122,30,0.53,8.4,1255,1,0.2,0.048,0.068,0.967,0.064,0.03,0.8,24,5
3051,300,"Babyfood, dinner, spaghetti and tomato and meat, toddler","BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,TODD",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,5.3,1,10.8,75,,,22,0.9,15,45,163,239,0.48,8.4,443,,4.1,0.062,0.101,1.558,0.083,0.23,,26,
3052,300,"Babyfood, dinner, beef stew, toddler","BABYFOOD,DINNER,BF STEW,TODD",,,Y,,0,,6.25,3.7,8.9,3.9,Baby Foods,5.1,1.2,5.5,51,1.39,1.1,9,0.72,11,44,142,106,0.87,4.5,1649,1,3,0.014,0.065,1.313,0.074,0.51,2.5,0,13
3053,300,"Babyfood, dinner, vegetables and beef, strained","BABYFOOD,DINNER,VEG&BF,STR",,,Y,,0,,,,,,Baby Foods,2.21,3.6,8.84,77,2.34,1.3,17,0.35,10,33,145,31,0.38,2.2,4926,1,0.2,0.008,0.048,0.789,0.063,0.18,5.2,3,7
3054,300,"Babyfood, dinner, vegetables and beef, junior","BABYFOOD,DINNER,VEG&BF,JR",,,Y,,0,,,,,,Baby Foods,2.21,3.6,8.84,77,2.34,1.3,17,0.35,10,33,145,31,0.38,2.2,4926,1,0.2,0.008,0.048,0.789,0.063,0.33,5.2,3,7
3055,300,"Babyfood, dinner, beef with vegetables","BABYFOOD,DINNER,BF W/VEG",,,Y,,0,,,,,,Baby Foods,2.03,6.93,6.36,96,2.16,1.8,19,0.33,15,24,127,38,0.35,2.2,4436,1,0,0.03,0.06,0.7,0.083,0.09,11.6,0,12
3059,300,"Babyfood, dinner, vegetables and bacon, strained","BABYFOOD,DINNER,VEG&BACON,STR",,,Y,,0,,,,,,Baby Foods,1.92,2.95,8.81,69,1.77,1.7,14,0.3,10,28,116,49,0.3,1.7,2284,1,0.3,0.032,0.039,0.474,0.058,0.06,9.1,0,4
3061,300,"Babyfood, dinner, vegetables and ham, strained","BABYFOOD,DINNER,VEG&HAM,STR",,,Y,,0,,,,,,Baby Foods,2.19,2.14,7.8,59,1.37,1.6,16,0.41,12,33,141,16,0.32,2.4,2872,4,1.6,0.035,0.054,0.676,0.072,0.06,2.7,0,5
3062,300,"Babyfood, dinner, vegetables and ham, junior","BABYFOOD,DINNER,VEG&HAM,JR",,,Y,,0,,,,,,Baby Foods,2.02,1.89,8.64,60,0.99,1,14,0.24,8,33,97,45,0.3,2.4,2872,1,1.1,0.032,0.04,0.512,0.046,0.03,2.7,0,3
3066,300,"Babyfood, dinner, vegetables and lamb, strained","BABYFOOD,DINNER,VEG&LAMB,STR",,,Y,,0,,6.25,3.7,8.9,3.9,Baby Foods,2,2,6.9,52,0.94,1.1,12,0.35,7,49,94,20,0.22,2.4,1995,0,1.2,0.018,0.034,0.529,0.046,0.16,2.3,0,6
3067,300,"Babyfood, dinner, vegetables and lamb, junior","BABYFOOD,DINNER,VEG&LAMB,JR",,,,,0,,6.25,3.7,8.9,3.9,Baby Foods,2.1,1.7,7.1,51,0.94,1.1,13,0.34,7,49,95,13,0.22,2.4,1483,0,1.7,0.021,0.032,0.554,0.044,0.16,,0,5
3068,300,"Babyfood, dinner, chicken noodle, strained","BABYFOOD,DINNER,CHICK NOODLE,STR",,,Y,,0,,,,,,Baby Foods,2.69,2.06,9.08,66,2.5,2.1,27,0.64,14,46,139,38,0.55,3.7,2182,3,0.1,0.044,0.061,0.723,0.064,0.02,1.9,3,16
3069,300,"Babyfood, dinner, chicken noodle, junior","BABYFOOD,DINNER,CHICK NOODLE,JR",,,Y,,0,,,,,,Baby Foods,2.37,1.18,8.79,55,1.07,0.9,21,0.38,7,79,39,35,0.4,3.7,1729,2,0.1,0.032,0.04,0.703,0.052,0.01,1.6,2,9
3070,300,"Babyfood, dinner, chicken soup, strained","BABYFOOD,DINNER,CHICK SOUP,STR",,,Y,,0,,6.25,4.27,9.02,3.84,Baby Foods,1.6,1.7,7.2,50,1.72,1.1,37,0.27,5,24,66,16,0.22,1.4,1384,3,1,0.017,0.032,0.293,0.037,0.12,6.9,0,4
3072,300,"Babyfood, dinner, chicken stew, toddler",BABYFOOD DINNER CHICK STEW TODD,,,Y,,0,,6.25,3.7,8.9,3.9,Baby Foods,5.2,3.7,6.4,78,1.68,0.6,36,0.66,10,51,92,25,0.41,5.5,1010,7,1.9,0.031,0.074,1.153,0.046,0.14,3.7,15,29
3073,300,"Babyfood, dinner, vegetables chicken, strained","BABYFOOD,DINNER,VEG CHICK,STR",,,Y,,0,,,,,,Baby Foods,2.47,1.73,8.42,59,1.58,2.1,27,0.53,14,47,158,24,0.48,2.8,4132,3,0.1,0.032,0.052,0.72,0.072,0.01,3.4,0,11
3075,300,"Babyfood, dinner, vegetables, noodles and chicken, strained","BABYFOOD,DINNER,VEG,NOODLES&CHICK,STR",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,2,2.5,7.9,63,,1.1,28,0.35,10,31,55,20,0.25,3.2,1417,,0.7,0.032,0.049,0.407,0.021,0.08,,0,
3076,300,"Babyfood, dinner, vegetables, noodles and chicken, junior","BABYFOOD,DINNER,VEG,NOODLES&CHICK,JR",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,1.7,2.2,9.1,64,,1.1,26,0.49,11,33,59,26,0.32,3.2,1051,,0.8,0.042,0.037,0.675,0.023,0.09,,0,
3077,300,"Babyfood, dinner, pasta with vegetables","BABYFOOD,DINNER,PASTA W/VEG",,,Y,,0,,,,,,Baby Foods,1.7,2.1,8.4,60,1.2,1.5,14,0.5,24,50,133,11,0.4,6.4,555,0,2.9,0.06,0.05,0.56,0.11,0,2.1,0,5
3079,300,"Babyfood, dinner, vegetables and noodles and turkey, strained","BABYFOOD,DINNER,VEG&NOODLES&TURKEY,STR",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,1.2,1.2,6.8,44,,1.1,32,0.19,8,25,63,21,0.27,2.8,991,,0.8,0.018,0.044,0.25,0.016,0.1,,0,
3081,300,"Babyfood, dinner, vegetables and noodles and turkey, junior","BABYFOOD,DINNER,VEG&NOODLES&TURKEY,JR",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,1.8,1.5,7.6,52,,1.1,32,0.26,9,29,73,17,0.3,2.8,994,,0.8,0.024,0.04,0.299,0.018,0.12,,0,
3082,300,"Babyfood, dinner, turkey and rice, strained","BABYFOOD,DINNER,TURKEY&RICE,STR",,,Y,,0,,,,,,Baby Foods,2.27,1.24,7.94,52,1.66,0.9,18,0.29,8,34,91,19,0.4,3,1622,0,0.2,0.022,0.04,0.648,0.052,0.02,1.5,0,5
3083,300,"Babyfood, dinner, turkey and rice, junior","BABYFOOD,DINNER,TURKEY & RICE,JR",,,Y,,0,,,,,,Baby Foods,2.37,0.92,9.57,56,1.25,1,24,0.41,9,37,86,23,0.47,3.3,1886,0,0.3,0.033,0.044,0.692,0.052,0.02,3,0,4
3084,300,"Babyfood, dinner, vegetables and turkey, strained","BABYFOOD,DINNER,VEG&TURKEY,STR",,,Y,,0,,,,,,Baby Foods,2.32,0.9,7.62,48,1.54,1.5,27,0.37,13,44,102,20,0.7,1.9,4396,1,0.7,0.02,0.024,0.466,0.044,0.02,3.9,0,4
3085,300,"Babyfood, dinner, vegetables and turkey, junior","BABYFOOD,DINNER,VEG&TURKEY,JR",,,Y,,0,,,,,,Baby Foods,1.72,1.74,7.55,53,1.36,0.9,16,0.36,9,32,98,45,0.3,1.9,4325,0,0.4,0.022,0.032,0.539,0.052,0.01,4.8,0,4
3089,300,"Babyfood, dinner, macaroni and cheese, strained","BABYFOOD,DINNER,MACARONI&CHS,STR",,,Y,,0,,,,,,Baby Foods,3.14,2.11,8.95,67,1.27,0.7,66,0.21,8,86,67,119,0.4,3.8,56,2,0.1,0.038,0.076,0.516,0.036,0.27,0.2,6,7
3090,300,"Babyfood, dinner, macaroni and cheese, junior","BABYFOOD,DINNER,MACARONI&CHS,JR",,,Y,,0,,6,4.2,8.7,4,Baby Foods,2.6,2,8.2,61,1.32,0.3,51,0.3,7,59,44,266,0.32,3.8,106,2,1.3,0.056,0.064,0.545,0.016,0.03,0.2,10,6
3091,300,"Babyfood, vegetables, green beans, strained","BABYFOOD,VEG,GRN BNS,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.2,0.17,6.29,27,1.88,2.2,39,0.67,20,41,146,7,0.22,0.1,355,0,0.3,0.026,0.079,0.361,0.038,0,42.4,0,0
3092,300,"Babyfood, vegetables, green beans, junior","BABYFOOD,VEG,GRN BNS,JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.2,0.1,5.8,24,1.08,1.9,65,1.08,22,19,128,5,0.19,0.3,433,0,8.4,0.021,0.102,0.321,0.035,0,11.1,0,0
3093,300,"Babyfood, green beans, dices, toddler","BABYFOOD,GRN BNS,DICES,TODD",,,Y,,0,,,,,,Baby Foods,1.2,0.2,5.7,29,1.06,1.3,27,0.4,19,22,116,37,0.1,0.4,481,0,1.7,0.02,0.04,0.23,0.03,0,11,0,0
3096,300,"Babyfood, vegetable, green beans and potatoes","BABYFOOD,VEG,GRN BNS&POTATOES",,,Y,,0,,,,,,Baby Foods,2.2,1.9,9,62,2.35,1.4,60,0.5,20,61,148,18,0.3,0.7,85,0,1.1,0.04,0.11,0.46,0.08,0.15,1.4,0,5
3098,300,"Babyfood, vegetables, beets, strained","BABYFOOD,VEG,BEETS,STR",,,Y,,0,,6.25,2.78,8.37,3.84,Baby Foods,1.3,0.1,7.7,34,6.09,1.9,14,0.32,14,14,182,83,0.12,0.1,27,0,2.4,0.011,0.043,0.132,0.024,0,0.2,0,0
3099,300,"Babyfood, vegetables, carrots, strained","BABYFOOD,VEG,CARROTS,STR",,,Y,,0,,6.25,2.78,8.37,3.84,Baby Foods,0.8,0.1,6,26,3.64,1.7,22,0.37,9,20,196,69,0.15,0.2,11461,0,5.7,0.023,0.04,0.463,0.073,0,14.4,0,0
3100,300,"Babyfood, vegetables, carrots, junior","BABYFOOD,VEG,CARROTS,JR",,,Y,,0,,6.25,2.78,8.37,3.84,Baby Foods,0.8,0.2,7.2,32,3.16,1.7,23,0.39,11,20,202,49,0.18,0.2,11810,0,5.5,0.024,0.041,0.497,0.08,0,12.5,0,0
3104,300,"Babyfood, vegetables, squash, strained","BABYFOOD,VEG,SQUASH,STR",,,Y,,0,,6.25,,,,Baby Foods,0.81,0.2,5.73,28,3.37,0.9,24,0.32,14,21,185,5,0.19,0.2,1703,0,0.3,0.029,0.048,0.683,0.07,0,4.7,0,0
3105,300,"Babyfood, vegetables, squash, junior","BABYFOOD,VEG,SQUASH,JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,0.81,0.2,5.73,24,3.24,0.9,24,0.32,14,21,185,5,0.19,0.2,1703,0,0.3,0.029,0.048,0.683,0.07,0,4.7,0,0
3108,300,"Babyfood, vegetables, sweet potatoes strained","BABYFOOD,VEG,SWT POTATOES,STR",,,Y,,0,,6.25,2.78,8.37,4.03,Baby Foods,1.1,0.1,13.2,57,4.05,1.5,16,0.37,13,24,263,22,0.21,0.7,6438,0,9.9,0.028,0.033,0.358,0.093,0,1.4,0,0
3109,300,"Babyfood, vegetables, sweet potatoes, junior","BABYFOOD,VEG,SWT POTATOES,JR",,,Y,,0,,6.25,2.78,8.37,4.03,Baby Foods,1.1,0.1,14,60,4.24,1.5,16,0.39,12,24,243,18,0.11,0.7,6636,0,9.6,0.026,0.034,0.384,0.113,0,1.5,0,0
3112,300,"Babyfood, potatoes, toddler","BABYFOOD,POTATOES,TODDLER",,,Y,,0,,,,,,Baby Foods,1,0.1,11.73,52,0.91,0.9,4,0.2,15,23,110,57,0.17,0.8,0,0,10.5,0.02,0.01,0.35,0.07,0,0.2,0,0
3114,300,"Babyfood, vegetable, butternut squash and corn","BABYFOOD,VEG,BUTTERNUT SQUASH&CORN",,,Y,,0,,,,,,Baby Foods,2,0.6,9.26,50,2.93,2,32,0.4,26,35,352,5,0.3,0.6,2793,0,4.9,0.06,0.06,0.56,0.11,0,2.4,0,0
3115,300,"Babyfood, apples, dices, toddler","BABYFOOD,APPLS,DICES,TODD",,,Y,,0,,,,,,Baby Foods,0.2,0.1,12.1,51,10.83,0.9,10,0.2,6,13,50,6,0.04,0.3,31,0,31.3,0.01,0.02,0.08,0.05,0,0.6,0,0
3116,300,"Babyfood, fruit, applesauce, strained","BABYFOOD,FRUIT,APPLSAUC,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,10.8,41,9.87,1.7,4,0.22,3,7,71,0,0.02,0.3,28,0,38.3,0.012,0.028,0.061,0.031,0,0.5,0,0
3117,300,"Babyfood, fruit, applesauce, junior","BABYFOOD,FRUIT,APPLSAUC,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0,0,10.3,37,8.48,1.7,5,0.22,3,6,77,1,0.04,0.3,9,0,37.8,0.012,0.027,0.063,0.03,0,0.3,0,0
3118,300,"Babyfood, fruit, apricot with tapioca, strained","BABYFOOD,FRUIT,APRICOT W/TAPIOCA,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0,16.3,60,1.41,1.5,9,0.3,4,10,121,0,0.05,0.3,725,0,21.6,0.008,0.013,0.195,0.03,0,0.4,0,0
3119,300,"Babyfood, vegetables, corn, creamed, strained","BABYFOOD,VEG,CORN,CRMD,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.4,0.4,14.1,57,1.23,2.1,20,0.28,8,33,90,43,0.19,1.3,69,0,2.1,0.013,0.047,0.512,0.041,0.02,0,0,1
3120,300,"Babyfood, vegetables, corn, creamed, junior","BABYFOOD,VEG,CORN,CRMD,JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.4,0.4,16.25,65,1.48,2.1,4,0.27,8,33,81,52,0.23,1.3,34,0,2.2,0.013,0.048,0.504,0.041,0.02,0,0,1
3121,300,"Babyfood, vegetables, peas, strained","BABYFOOD,VEG,PEAS,STR",,,Y,,0,,,,,,Baby Foods,3.27,0.43,8.36,50,2.01,2,18,0.95,17,50,106,5,0.47,0.1,216,0,0.6,0.087,0.065,1.119,0.016,0,15.5,0,0
3122,300,"Babyfood, peas, dices, toddler","BABYFOOD,PEAS,DICES,TODD",,,Y,,0,,,,,,Baby Foods,3.9,0.8,10.3,64,4.13,3.9,21,1,19,67,81,48,0.5,0.1,304,0,6,0.1,0.06,0.85,0.06,0,18,0,0
3127,300,"Babyfood, vegetables, spinach, creamed, strained","BABYFOOD,VEG,SPINACH,CRMD,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,2.5,1.3,5.7,37,2.33,1.8,89,0.62,55,54,191,49,0.31,2.4,4170,0,8.7,0.015,0.104,0.216,0.075,0.06,196.7,0,5
3128,300,"Babyfood, fruit, apricot with tapioca, junior","BABYFOOD,FRUIT,APRICOT W/TAPIOCA,JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,0.3,0,17.3,63,1.4,1.5,8,0.27,4,10,125,0,0.04,0.3,723,0,17.9,0.008,0.013,0.196,0.028,0,0.4,0,0
3129,300,"Babyfood, fruit, bananas with tapioca, strained","BABYFOOD,FRUIT,BANANAS W/TAPIOCA,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,0.4,0.1,15.3,56,0.38,1.6,5,0.2,10,7,88,0,0.06,0.6,43,0,16.7,0.012,0.031,0.183,0.115,0,0,0,0
3130,300,"Babyfood, fruit, peaches, strained","BABYFOOD,FRUIT,PEACHES,STR",,,Y,,0,,,,,,Baby Foods,0.94,0.33,14.48,65,11.5,1.3,4,0.23,7,15,195,4,0.11,0.1,234,0,46.1,0.015,0.077,1.64,0.018,0,6.6,0,0
3131,300,"Babyfood, fruit, peaches, junior","BABYFOOD,FRUIT,PEACHES,JR",,,Y,,0,,,,,,Baby Foods,0.94,0.33,14.48,65,11.5,1.3,4,0.23,7,15,195,4,0.11,0.1,686,0,46.1,0.015,0.077,1.64,0.018,0,6.6,0,0
3132,300,"Babyfood, fruit, pears, strained","BABYFOOD,FRUIT,PEARS,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.2,10.8,42,6.98,2.8,8,0.24,8,12,130,1,0.08,0.4,17,0,24.5,0.013,0.028,0.189,0.008,0,3.2,0,0
3133,300,"Babyfood, fruit, pears, junior","BABYFOOD,FRUIT,PEARS,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.1,11.6,44,7.34,2.8,8,0.25,9,12,115,1,0.08,0.4,18,0,22,0.014,0.03,0.188,0.01,0,3.4,0,0
3134,300,"Babyfood, fruit, plums with tapioca, without ascorbic acid, strained","BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.1,0,19.7,71,13.34,1.2,6,0.2,4,6,85,0,0.08,0.4,142,0,1.1,0.008,0.028,0.213,0.024,0,3.5,0,0
3135,300,"Babyfood, fruit, plums with tapioca, without ascorbic acid, junior","BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.1,0,20.5,74,13.64,1.2,6,0.22,4,6,83,0,0.08,0.4,94,0,0.8,0.006,0.03,0.206,0.029,0,3.4,0,0
3136,300,"Babyfood, fruit, prunes with tapioca, without ascorbic acid, strained","BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.6,0.1,18.5,69,10.97,2.7,15,0.35,10,15,177,5,0.09,0.5,453,0,0.8,0.022,0.075,0.525,0.081,0,15.6,0,0
3137,300,"Babyfood, fruit, prunes with tapioca, without ascorbic acid, junior","BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,JR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.6,0.1,18.7,70,10.97,2.7,15,0.33,10,15,162,2,0.1,0.5,208,,0.8,0.022,0.083,0.526,0.086,0,15.8,0,0
3139,300,"Babyfood, prunes, without vitamin c, strained","BABYFOOD,PRUNES,WO/VIT C,STR",,,Y,,0,,,,,,Baby Foods,1,0.2,23.52,100,14.28,2.7,21,0.4,17,30,306,1,0.2,0.8,60,0,1.3,0.02,0.21,0.72,0.11,0,22.1,0,0
3140,300,"Babyfood, fruit dessert, mango with tapioca","BABYFOOD,FRUIT DSSRT,MANGO W/ TAPIOCA",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.2,19,70,13,1.1,8,0.2,6,4,66,4,0.03,0.4,450,0,15.8,0.02,0.02,0.2,0.08,0,2.5,0,0
3141,300,"Babyfood, pears, dices, toddler","BABYFOOD,PEARS,DICES,TODD",,,Y,,0,,,,,,Baby Foods,0.3,0.1,13.6,57,8.66,1.2,10,0.2,7,13,51,6,0.09,0.4,21,0,31.3,0.01,0.02,0.13,0.04,0,4,0,0
3142,300,"Babyfood, fruit, applesauce and apricots, strained","BABYFOOD,FRUIT,APPLSAUC&APRICOTS,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,11.64,44,9.25,1.8,6,0.25,4,9,120,0,0.04,0.3,339,0,18.9,0.014,0.029,0.14,0.03,0,1,0,0
3143,300,"Babyfood, fruit, applesauce and apricots, junior","BABYFOOD,FRUIT,APPLSAUC&APRICOTS,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,12.4,47,8.72,1.8,6,0.26,4,10,109,0,0.03,0.3,33,0,17.9,0.014,0.03,0.145,0.03,0,0.5,0,0
3144,300,"Babyfood, fruit, applesauce and cherries, strained","BABYFOOD,FRUIT,APPLSAUC&CHERRIES,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0,0,14.1,51,10.81,1.1,1,0.3,4,8,132,1,0.03,0.3,45,0,42.8,0.01,0.03,0.14,0.037,0,2,0,0
3145,300,"Babyfood, fruit, applesauce and cherries, junior","BABYFOOD,FRUIT,APPLSAUC & CHERRIES,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0,0,14.1,51,10.61,1.1,1,0.3,4,8,132,1,0.03,0.3,45,0,42.8,0.01,0.03,0.14,0.039,0,1.2,0,0
3147,300,"Babyfood, fruit, applesauce with banana, junior","BABYFOOD,FRUIT,APPLSAUC W/BANANA,JR",,,Y,,0,,,,,,Baby Foods,0.37,0.1,16.16,66,4.35,1.6,5,0.24,9,12,131,3,0.05,0.4,6,0,17.3,0.01,0.031,0.163,0.1,0,0.3,0,0
3150,300,"Babyfood, fruit, applesauce and pineapple, strained","BABYFOOD,FRUIT,APPLSAUC&PNAPPL,STR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.1,0.1,10.1,37,,1.5,4,0.1,3,6,78,2,0.02,0.3,0,,28.1,0.021,0.026,0.078,0.039,0,,0,0
3151,300,"Babyfood, fruit, applesauce and pineapple, junior","BABYFOOD,FRUIT,APPLSAUC&PNAPPL,JR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.1,0.1,10.5,39,,1.5,4,0.1,4,6,76,2,0.03,0.3,21,,26.8,0.022,0.027,0.079,0.039,0,,0,0
3152,300,"Babyfood, fruit, apple and raspberry, strained","BABYFOOD,FRUIT,APPL & RASPBERRY,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,15.6,58,12.96,2.1,5,0.22,4,8,80,0,0.03,0.3,22,0,26.8,0.014,0.028,0.106,0.034,0,0.8,0,0
3153,300,"Babyfood, fruit, apple and raspberry, junior","BABYFOOD,FRUIT,APPL & RASPBERRY,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,15.4,58,12.96,2.1,5,0.22,4,8,72,0,0.03,0.3,34,0,28.9,0.012,0.029,0.104,0.034,0,0.8,0,0
3154,300,"Babyfood, fruit and vegetable, apple and sweet potato","BABYFOOD,FRUIT & VEG,APPL & SWT POTATO",,,Y,,0,,,,,,Baby Foods,0.3,0.22,15.3,64,11.6,1.4,8,0.2,6,17,149,3,0.1,0.3,2050,0,6.4,0.01,0.02,0.1,0.05,0,0.8,0,0
3156,300,"Babyfood, fruit, bananas and pineapple with tapioca, junior","BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.1,18.4,68,8.41,1.6,7,0.13,6,5,78,0,0.03,0.6,40,0,21.2,0.015,0.019,0.182,0.092,0,0.6,0,0
3157,300,"Babyfood, fruit, bananas and pineapple with tapioca, strained","BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0,17.8,65,10.73,1.6,7,0.23,6,5,68,0,0.04,0.6,60,0,19.2,0.019,0.019,0.168,0.082,0,0.6,0,0
3158,300,"Babyfood, fruit, pears and pineapple, strained","BABYFOOD,FRUIT,PEARS&PNAPPL,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.1,10.9,41,7.79,2.6,10,0.25,7,9,116,0,0.07,0.4,29,0,27.5,0.021,0.028,0.207,0.016,0,1.6,0,0
3159,300,"Babyfood, fruit, pears and pineapple, junior","BABYFOOD,FRUIT,PEARS&PNAPPL,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.2,11.4,44,7.36,2.6,10,0.21,7,10,118,0,0.13,0.4,32,0,16.8,0.024,0.023,0.183,0.013,0,3,0,0
3160,300,"Babyfood, fruit, guava and papaya with tapioca, strained","BABYFOOD,FRUIT,GUAVA&PAPAYA W/TAPIOCA,STR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.1,17,63,,,7,0.2,5,6,74,4,0.06,0.4,184,,80.9,0.01,0.022,0.263,0.014,0,,0,
3161,300,"Babyfood, peaches, dices, toddler","BABYFOOD,PEACHES,DICES,TODD",,,Y,,0,,,,,,Baby Foods,0.5,0.2,11.8,51,9.49,0.8,6,0.2,8,17,83,9,0.12,0.4,138,0,31.3,0.01,0.02,0.47,0.04,0,2.9,0,0
3162,300,"Babyfood, fruit, papaya and applesauce with tapioca, strained","BABYFOOD,FRUIT,PAPAYA&APPLSAUC W/TAPIOCA,STR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.1,18.9,70,,1.4,7,0.44,5,5,79,5,0.03,0.4,76,,113.1,0.01,0.028,0.108,0.023,0,,0,
3163,300,"Babyfood, fruit, bananas with apples and pears, strained","BABYFOOD,FRUIT,BANANAS W/APPLS&PEARS,STR",,,Y,,0,,,,,,Baby Foods,0.9,0.22,19.31,83,12.76,1.4,5,0.3,25,19,233,2,0.1,0.6,56,0,13.9,0.01,0.03,0.55,0.29,0,0.6,0,0
3164,300,"Babyfood, fruit, apple and blueberry, strained","BABYFOOD,FRUIT,APPL&BLUEBERRY,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,16.3,61,13.93,1.8,4,0.2,3,8,69,1,0.03,0.4,20,0,27.8,0.017,0.034,0.12,0.037,0,3.5,0,0
3165,300,"Babyfood, fruit, apple and blueberry, junior","BABYFOOD,FRUIT,APPL&BLUEBERRY,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,16.6,62,8.83,1.8,5,0.4,3,7,65,1,0.04,0.4,41,0,13.9,0.018,0.043,0.103,0.042,0,8.8,0,0
3166,300,"Babyfood, juice, apple","BABYFOOD,JUICE,APPLE",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0,0.1,11.7,47,10.7,0.1,4,0.57,3,5,91,8,0.03,0.1,18,0,57.9,0.007,0.016,0.083,0.029,0,0,0,0
3167,300,"Babyfood, apple-banana juice","BABYFOOD,APPLE-BANANA JUC",,,Y,,0,,,,,,Baby Foods,0.2,0.1,12.3,51,11,0.2,7,0.2,6,8,123,4,0.04,0.3,9,0,27.9,0.01,0.01,0.14,0.06,0,0,0,0
3168,300,"Babyfood, juice, apple and peach","BABYFOOD,JUC,APPL&PEACH",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.2,0.1,10.5,43,9.59,0.1,3,0.56,3,4,97,0,0.03,0.3,63,0,58.5,0.008,0.011,0.213,0.022,0,0.5,0,0
3169,300,"Babyfood, apple-cranberry juice","BABYFOOD,APPLE-CRANBERRY JUC",,,Y,,0,,,,,,Baby Foods,0,0.02,11.49,46,6.88,0,6,0.22,3,7,97,5,0.05,0.1,28,0,27.9,0,0.02,0.07,0.03,0,2.4,0,0
3170,300,"Babyfood, juice, apple and plum","BABYFOOD,JUC,APPL&PLUM",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.1,0,12.3,49,11.54,0.1,5,0.62,3,3,101,0,0.03,0.3,43,0,58.2,0.02,0.017,0.195,0.028,0,0.8,0,0
3171,300,"Babyfood, juice, apple and prune","BABYFOOD,JUC,APPL&PRUNE",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.2,0.1,18.1,72,10.58,0.1,9,0.95,7,15,148,8,0.05,0.3,16,0,67.5,0.005,0.002,0.301,0.035,0,1.3,0,0
3172,300,"Babyfood, juice, orange","BABYFOOD,JUICE,ORANGE",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.6,0.3,10.2,45,8.26,0.1,12,0.17,9,11,184,0,0.06,0.1,55,0,62.5,0.045,0.028,0.239,0.054,0,0.1,0,0
3173,300,"Babyfood, juice, orange and apple","BABYFOOD,JUC,ORANGE&APPL",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.4,0.2,10.1,43,,,10,0.2,5,7,138,3,0.03,0.1,73,,76.9,0.038,0.028,0.185,0.038,0,,0,
3174,300,"Babyfood, juice, orange and apple and banana","BABYFOOD,JUC,ORANGE&APPL&BANANA",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.4,0.1,11.5,47,10.03,0.1,5,0.35,6,8,134,0,0.03,0.1,27,0,32.1,0.043,0.027,0.263,0.062,0,0.1,0,0
3175,300,"Babyfood, juice, orange and apricot","BABYFOOD,JUC,ORANGE&APRICOT",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.8,0.1,10.9,46,,0.1,6,0.38,7,12,199,6,0.04,0.1,216,,85.9,0.058,0.028,0.267,0.056,0,,0,0
3176,300,"Babyfood, juice, orange and banana","BABYFOOD,JUC,ORANGE&BANANA",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.7,0.1,11.9,50,,,17,0.11,14,13,200,3,0.09,0.1,46,,34,0.051,0.042,0.18,0.054,0,,0,
3177,300,"Babyfood, juice, orange and pineapple","BABYFOOD,JUC,ORANGE&PNAPPL",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.5,0.1,11.7,48,,0.1,8,0.42,9,9,141,2,0.04,0.1,31,,53.4,0.05,0.023,0.194,0.062,0,,0,0
3178,300,"Babyfood, juice, prune and orange","BABYFOOD,JUC,PRUNE&ORANGE",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.6,0.3,16.8,70,,,12,0.87,8,10,181,2,0.04,0.1,131,,63.8,0.044,0.12,0.396,0.061,0,,0,
3179,300,"Babyfood, juice, mixed fruit","BABYFOOD,JUC,MXD FRUIT",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.1,0.1,11.7,47,8.46,0.1,8,0.34,5,5,101,8,0.03,0.5,42,0,63.6,0.023,0.014,0.123,0.043,0,0.9,0,0
3181,300,"Babyfood, cereal, barley, dry fortified","BABYFOOD,CRL,BARLEY,DRY FORT",,,Y,,0,,5.83,3.55,8.37,3.95,Baby Foods,13.2,6.6,69.4,376,13.2,6.6,795,47.5,115,439,395,12,3.13,30.2,0,0,2.2,2.737,2.699,35.988,0.374,0,2.3,0,0
3184,300,"Babyfood, cereal, whole wheat, with apples, dry fortified","BABYFOOD,CRL,WHL WHEAT,W/ APPLS,DRY FORT",,,Y,,0,,,,,,Baby Foods,12.6,4.8,77.2,402,22.2,12.2,600,45,140,500,516,25,2.6,64.7,20,0,58.3,1.5,1.8,13.33,0.3,0,8.3,0,0
3185,300,"Babyfood, cereal, mixed, dry fortified","BABYFOOD,CRL,MXD,DRY FORT",,,Y,,0,,5.9,3.4,8.4,4.1,Baby Foods,12.2,4.4,73.4,379,0.87,7.5,733,47.5,100,392,437,3,2.4,25.9,20,0,2.3,2.438,2.717,34.714,0.189,0,1.5,0,0
3186,300,"Babyfood, cereal, mixed, with bananas, dry","BABYFOOD,CRL,MXD,W/ BANANAS,DRY",,,Y,,0,,6.1,3.4,8.4,4.1,Baby Foods,10.7,4.6,77.1,391,6.68,7.8,696,47.5,90,367,668,0,1.4,20,125,0,3.6,3.78,3.56,20.56,0.408,0.24,3.5,0,0
3187,300,"Babyfood, cereal, mixed, with applesauce and bananas, strained","BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,STR",,,Y,,0,,6.1,3.4,8.4,4.1,Baby Foods,1.2,0.5,18,82,7.79,1.2,6,6.62,8,23,41,3,0.19,2.6,18,0,25.5,0.28,0.35,3.963,0.137,0,0.3,0,0
3188,300,"Babyfood, cereal, mixed, with applesauce and bananas, junior","BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,JR",,,Y,,0,,6.1,3.4,8.4,4.1,Baby Foods,1.2,0.4,18.4,83,7.79,1.2,4,5.61,7,29,32,3,0.22,2.6,19,0,9.1,0.285,0.356,4.039,0.139,0,0.3,0,0
3189,300,"Babyfood, cereal, oatmeal, dry fortified","BABYFOOD,CRL,OATMEAL,DRY FORT",,,Y,,0,,5.83,3.46,8.37,4.12,Baby Foods,10.99,6.39,73.47,394,11.69,7.3,1160,64.07,111,505,549,21,12.67,23.7,0,510,0,1.429,1.587,21.307,0.855,4.6,1.4,0,0
3190,300,"Babyfood, cereal, oatmeal, with bananas, dry","BABYFOOD,CRL,OATMEAL,W/ BANANAS,DRY",,,Y,,0,,6.04,3.5,8.4,4.1,Baby Foods,12,6,73.4,393,13.75,5.2,651,47.5,118,444,731,6,1.9,20.5,69,0,4.7,3.6,3.71,20.11,0.423,0.22,3,0,0
3191,300,"Babyfood, cereal, oatmeal, with applesauce and bananas, strained","BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,STR",,,Y,,0,,6.04,3.5,8.4,4.1,Baby Foods,1.3,0.7,15.4,74,10.49,0.8,9,5.65,11,41,47,3,0.35,3,30,0,21.8,0.42,0.365,5.042,0.2,0,2.2,0,0
3192,300,"Babyfood, cereal, oatmeal, with applesauce and bananas, junior","BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,JR",,,Y,,0,,6.04,3.5,8.4,4.1,Baby Foods,1.3,0.7,15.8,75,9.48,0.8,6,7.5,11,41,48,3,7.5,3,28,0,24.5,0.25,0.484,5.6,0.24,0,0.6,0,0
3193,300,"Babyfood, cereal, oatmeal, with honey, dry","BABYFOOD,CRL,OATMEAL,W/HONEY,DRY",,,,,0,,5.83,3.5,8.4,4.1,Baby Foods,13.5,7,69.3,391,,,1154,67.23,146,733,259,47,3.7,36.4,23,,0,2.771,2.842,36.292,0.154,0,,0,
3194,300,"Babyfood, cereal, rice, dry fortified","BABYFOOD,CRL,RICE,DRY FORT",,,Y,,0,,5.95,3.82,8.37,4.16,Baby Foods,6.65,2.19,83.14,390,4.85,1.3,860,53.01,37,273,281,32,10.92,5,0,341,2.4,1.195,1.459,23.006,0.885,4.6,0.5,0,0
3195,300,"Babyfood, cereal, rice, with applesauce and bananas, strained","BABYFOOD,CRL,RICE,W/ APPLSAUC & BANANAS,STR",,,Y,,0,,6,3.8,8.4,4.2,Baby Foods,1.2,0.4,17.1,80,2.24,1,17,6.73,3,12,28,4,0.08,2.1,21,0,31.6,0.26,0.422,4.017,0.234,0,0.2,0,0
3197,300,"Babyfood, cereal, with egg yolks, strained","BABYFOOD,CRL,W/EGG YOLKS,STR",,,,,0,,6.03,4.2,8.8,3.9,Baby Foods,1.9,1.8,7,51,,0.9,24,0.47,3,40,39,33,0.29,,141,,0.7,0.009,0.044,0.049,0.021,0.07,,0,63
3198,300,"Babyfood, cereal, with egg yolks, junior","BABYFOOD,CRL,W/EGG YOLKS,JR",,,,,0,,6.03,4.2,8.8,3.9,Baby Foods,1.9,1.8,7.1,52,,0.9,24,0.51,3,40,35,33,0.29,,144,,0.7,0.008,0.045,0.048,0.02,0.06,,0,63
3199,300,"Babyfood, cereal, with eggs, strained","BABYFOOD,CRL,W/EGGS,STR",,,,,0,,6.03,4.2,8.8,3.9,Baby Foods,2.2,1.5,8,58,,,27,0.54,3,46,44,38,0.33,,161,,0.8,0.01,0.05,0.056,0.024,0.08,,0,51
3201,300,"Babyfood, cereal, egg yolks and bacon, junior","BABYFOOD,CRL,EGG YOLKS&BACON,JR",,,,,0,,6.03,4.2,8.8,3.9,Baby Foods,2.5,5,6.2,79,,0.9,28,0.47,5,50,35,48,0.27,,94,,0.9,0.05,0.077,0.266,0.026,0.09,,0,94
3205,300,"Babyfood, oatmeal cereal with fruit, dry, instant, toddler fortified","BABYFOOD,OATMEAL CRL W/ FRUIT,DRY,INST,TODD FORT",,,Y,,0,,,,,,Baby Foods,10.5,7.05,74.1,402,11.09,7.8,286,14.3,107,429,346,0,5.7,20.5,89,0,2.7,0.75,0.86,9.6,0.38,0,7.5,0,0
3206,300,"Babyfood, cookie, baby, fruit","BABYFOOD,COOKIE,BABY,FRUIT",,,Y,,0,,,,,,Baby Foods,6.8,12.6,73.7,435,24.2,3.4,83,2.9,30,189,425,9,0.8,20.5,2348,0,1.5,0.44,0.42,3.6,0.21,0.22,3.2,82,4
3209,300,"Babyfood, crackers, vegetable","BABYFOOD,CRACKERS,VEG",,,Y,,0,,,,,,Baby Foods,8.4,19.6,66.85,477,13,4,41,4.2,37,198,245,571,0.9,13.7,3571,0,50.5,0.35,0.33,4.05,0.12,0,7.1,70,0
3211,300,"Babyfood, cereal, high protein, with apple and orange, dry","BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,DRY",,,,,0,,5.85,3.5,8.4,4,Baby Foods,25.4,6.5,57.6,374,,7.1,751,47.5,159,539,1330,104,2.7,28.3,54,,3.1,3.79,4.33,23.83,0.351,0.3,,0,0
3212,300,"Babyfood, cereal, rice, with bananas, dry","BABYFOOD,CRL,RICE,W/ BANANAS,DRY",,,Y,,0,,6,3.8,8.4,4.2,Baby Foods,8.7,4.2,79.9,404,16.7,1,691,47.5,141,410,769,0,1.5,11.6,29,0,2,3.97,3.8,23.32,0.686,0,3.8,0,0
3213,300,"Babyfood, cookies","BABYFOOD,COOKIES",,,Y,,0,,5.7,4,8.4,4.1,Baby Foods,11.8,13.2,67.1,433,24.2,0.2,101,4.18,49,179,501,300,1.1,17.2,23,0,7,1.459,3.229,15.966,5.899,0.46,1.1,74,12
3214,300,"Babyfood, cookies, arrowroot","BABYFOOD,COOKIES,ARROWROOT",,,,,0,,5.75,4,8.4,4.1,Baby Foods,7.6,10,75.4,424,,0.2,32,3,22,116,156,319,0.53,17.2,0,0,5.5,0.499,0.429,5.739,0.04,0.07,0.5,25,0
3215,300,"Babyfood, pretzels","BABYFOOD,PRETZELS",,,Y,,0,,5.7,4,8.4,4.1,Baby Foods,10.8,2,82.2,397,3.08,2.3,25,3.77,28,110,137,269,0.78,7.6,8,0,3.8,0.463,0.357,3.56,0.083,0,0.3,65,0
3216,300,"Babyfood, teething biscuits","BABYFOOD,TEETHING BISCUITS",,,Y,,0,,5.85,4,8.4,4.1,Baby Foods,10.7,4.2,76.4,392,12.65,1.4,263,3.55,35,164,323,285,0.93,23.5,116,21,9.1,0.233,0.537,4.33,0.111,0.07,0.5,29,7
3217,300,Zwieback,ZWIEBACK,,,Y,,0,,5.85,4,8.4,4.1,Baby Foods,10.1,9.7,74.2,426,12.5,2.5,20,0.6,14,55,305,227,0.54,28.7,58,0,5.3,0.208,0.239,1.319,0.082,0,0.9,67,8
3220,300,"Babyfood, dessert, dutch apple, strained","BABYFOOD,DSSRT,DUTCH APPL,STR",,,Y,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.2,0.4,19.74,75,17.89,1.4,5,0.2,2,3,33,0,0.01,0.2,49,0,21.4,0.011,0.013,0.048,0.011,0,0.5,0,0
3221,300,"Babyfood, dessert, dutch apple, junior","BABYFOOD,DSSRT,DUTCH APPL,JR",,,Y,,0,,,,,,Baby Foods,0.2,0.16,19.18,79,17.89,1.4,3,0.11,4,7,67,3,0.03,0.2,18,0,18,0.01,0.012,0.048,0.017,0,0.5,0,0
3222,300,"Babyfood, cherry cobbler, junior","BABYFOOD,CHERRY COBBLER,JR",,,Y,,0,,,,,,Baby Foods,0.3,0.1,19.2,78,10.39,0.2,5,0.1,2,6,45,0,0.05,0.9,31,0,9.3,0.01,0.01,0.06,0.02,0,0.5,0,0
3224,300,"Babyfood, dessert, cherry vanilla pudding, strained","BABYFOOD,DSSRT,CHERRY VANILLA PUDD,STR",,,Y,,0,,6.25,4.3,8.9,3.6,Baby Foods,0.2,0.3,17.8,68,9.15,0.3,5,0.19,2,7,34,0,0.04,0.6,261,1,1.1,0.008,0.011,0.038,0.011,0.01,0.2,0,10
3225,300,"Babyfood, dessert, cherry vanilla pudding, junior","BABYFOOD,DSSRT,CHERRY VANILLA PUDD,JR",,,Y,,0,,6.25,4.3,8.9,3.6,Baby Foods,0.2,0.2,18.4,69,16.98,0.3,5,0.17,2,7,33,0,0.03,0.6,261,1,1.1,0.007,0.011,0.038,0.012,0.01,0.2,0,10
3226,300,"Babyfood, dessert, fruit pudding, orange, strained","BABYFOOD,DSSRT,FRUIT PUDD,ORANGE,STR",,,,,0,,6.33,4.3,8.9,3.8,Baby Foods,1.1,0.9,17.7,80,,0.6,32,0.1,5,28,86,20,0.17,0.6,115,,9.1,0.04,0.057,0.119,0.027,0.01,,0,3
3227,300,"Babyfood, dessert, peach cobbler, strained","BABYFOOD,DSSRT,PEACH COBBLER,STR",,,Y,,0,,6.2,3.4,8.4,3.6,Baby Foods,0.3,0,17.8,65,10.62,0.7,4,0.1,2,5,54,7,0.3,1,138,0,20.5,0.009,0.014,0.259,0.007,0,1.1,0,0
3228,300,"Babyfood, dessert, peach cobbler, junior","BABYFOOD,DSSRT,PEACH COBBLER,JR",,,Y,,0,,6.2,3.4,8.4,3.6,Baby Foods,0.3,0,18.3,67,11.89,0.7,4,0.1,2,6,56,0,0.03,1,138,0,20.5,0.01,0.015,0.259,0.007,0,1.1,1,0
3229,300,"Babyfood, dessert, peach melba, strained","BABYFOOD,DSSRT,PEACH MELBA,STR",,,,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.2,0,16.5,60,,,10,0.33,2,5,83,9,0.28,,184,,31.4,0.006,0.036,0.343,0.006,0,,,
3230,300,"Babyfood, dessert, peach melba, junior","BABYFOOD,DSSRT,PEACH MELBA,JR",,,,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.3,0,16.4,60,,,11,0.3,2,5,93,9,0.28,,196,,26,0.007,0.03,0.272,0.006,0,,,
3233,300,"Babyfood, dessert, fruit pudding, pineapple, strained","BABYFOOD,DSSRT,FRUIT PUDD,PNAPPL,STR",,,Y,,0,,6.2,4.3,8.9,3.6,Baby Foods,1.3,0.3,20.3,81,10.28,0.7,31,0.18,9,31,81,0,0.2,1.2,37,0,27.2,0.038,0.046,0.107,0.04,0.06,0,0,0
3235,300,"Babyfood, dessert, fruit dessert, without ascorbic acid, strained","BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,STR",,,Y,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.3,0,16,59,12.6,0.6,9,0.22,5,7,94,0,0.04,0.4,132,0,2.5,0.016,0.009,0.143,0.037,0,1.5,0,0
3236,300,"Babyfood, dessert, fruit dessert, without ascorbic acid, junior","BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,JR",,,Y,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.3,0,17.2,63,12,0.6,9,0.21,5,8,95,0,0.05,0.4,132,0,3,0.021,0.012,0.144,0.033,0,1.5,0,0
3238,300,"Babyfood, dessert, tropical fruit, junior","BABYFOOD,DSSRT,TROPICAL FRUIT,JR",,,,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.2,0,16.4,60,,,10,0.26,5,8,58,7,0.05,0.4,20,,18.8,0.011,0.031,0.08,0.031,0,,0,
3245,300,"Babyfood, dessert, custard pudding, vanilla, strained","BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,STR",,,Y,,0,,6.33,4.3,8.9,3.8,Baby Foods,1.6,2,16,85,11.5,0,55,0.24,5,45,66,0,0.28,2.4,64,21,0.8,0.012,0.08,0.04,0.02,0.01,0,0,8
3246,300,"Babyfood, dessert, custard pudding, vanilla, junior","BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,JR",,,Y,,0,,,,,,Baby Foods,1.76,0.98,17.58,86,12.2,0.2,54,0.22,5,55,68,26,0.3,2.4,47,19,0.4,0.012,0.054,0.076,0.03,0.23,0,0,38
3265,300,"Babyfood, juice, apple and grape","BABYFOOD,JUC,APPL&GRAPE",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.1,0.2,11.34,46,10.9,0.1,6,0.39,6,5,90,0,0.04,0.1,4,0,31.5,0.007,0.021,0.109,0.034,0,0,0,0
3267,300,"Babyfood, juice, fruit punch, with calcium","BABYFOOD,JUC,FRUIT PUNCH,W/CA",,,Y,,0,,,,,,Baby Foods,0.2,0.1,12.7,52,10.6,0.4,64,0.3,7,11,86,4,0.04,0.1,3,0,21.2,0.01,0.02,0.1,0.05,0,0.1,0,0
3268,300,"Babyfood, juice, apple and cherry","BABYFOOD,JUC,APPL&CHERRY",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.1,0.2,9.9,41,8.98,0.1,5,0.66,3,6,98,0,0.03,0.1,5,0,58.3,0.008,0.015,0.094,0.031,0,0.4,0,0
3269,300,"Babyfood, juice, apple, with calcium","BABYFOOD,JUC,APPL,W/CA",,,Y,,0,,,,,,Baby Foods,0.06,0.1,11.1,46,9,0.4,127,0.2,6,8,92,3,0.03,0.1,0,0,21.2,0.02,0.02,0.08,0.03,0,0,0,0
3274,300,"Babyfood, dinner, vegetables and chicken, junior","BABYFOOD,DINNER,VEG&CHICK,JR",,,Y,,0,,,,,,Baby Foods,2.04,1.12,8.66,53,1.46,1.1,27,0.33,8,32,83,34,0.3,2.1,2612,2,0.2,0.025,0.046,0.628,0.046,0.02,2.1,0,7
3278,300,"Babyfood, dinner, mixed vegetable, strained","BABYFOOD,DINNER,MXD VEG,STR",,,,,0,,6.07,3,8.4,3.8,Baby Foods,1.2,0.1,9.5,41,,,22,0.33,11,24,121,38,0.16,0.7,2728,,2.8,0.015,0.031,0.502,0.075,0,,0,
3279,300,"Babyfood, dinner, mixed vegetable, junior","BABYFOOD,DINNER,MXD VEG,JR",,,Y,,0,,6.07,3,8.4,3.8,Baby Foods,1.01,0.11,7.88,34,3.08,1,17,0.31,13,30,112,40,0.24,0.3,9246,0,3.3,0.014,0.042,0.566,0.114,0,5.7,0,0
3280,300,"Babyfood, fruit, bananas with tapioca, junior","BABYFOOD,FRUIT,BANANAS W/TAPIOCA,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.4,0.2,17.8,67,7.1,1.6,8,0.3,12,9,108,0,0.07,0.6,44,0,25.7,0.015,0.02,0.218,0.139,0,0.2,0,0
3282,300,"Babyfood, vegetables, mix vegetables junior","BABYFOOD,VEG,MIX VEG JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.4,0.4,8.2,36,1.78,1.5,11,0.41,11,25,170,36,0.27,0.7,4195,0,2.5,0.029,0.032,0.665,0.081,0,7.4,0,0
3283,300,"Babyfood, vegetables, garden vegetable, strained","BABYFOOD,VEG,GARDEN VEG,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,2.3,0.2,6.8,32,2.57,1.5,28,0.83,21,28,168,31,0.26,0.7,6067,0,5.7,0.061,0.069,0.779,0.1,0,24.5,0,0
3286,300,"Babyfood, vegetables, mix vegetables strained","BABYFOOD,VEG,MIX VEG STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1,0.5,8.25,36,1.57,1.5,13,0.32,10,22,127,0,0.15,0.7,3166,0,1.7,0.022,0.025,0.327,0.055,0,7,0,0
3287,300,"Babyfood, dinner, beef noodle, junior","BABYFOOD,DINNER,BF NOODLE,JR",,,Y,,0,,5.98,4.1,8.9,4.1,Baby Foods,2.5,1.9,7.3,57,1.45,1.1,8,0.43,7,30,46,26,0.4,5.7,656,1,1.4,0.028,0.036,0.582,0.031,0.1,4.6,7,8
3289,300,"Babyfood, apples with ham, strained","BABYFOOD,APPLS W/HAM,STR",,,Y,,0,,,,,,Baby Foods,2.6,0.9,10.9,62,7.98,1.8,4,0.3,7,34,120,9,0.4,4.6,6,3,0.1,0.06,0.06,0.73,0.07,0.02,0.5,0,8
3290,300,"Babyfood, carrots and beef, strained","BABYFOOD,CARROTS&BF,STR",,,Y,,0,,,,,,Baby Foods,3.4,2.5,5.7,59,2.04,2.6,22,0.5,13,45,226,69,0.8,2.8,14452,1,0.8,0.02,0.06,0.93,0.1,0.3,7.4,0,8
3293,300,"Babyfood, plums, bananas and rice, strained","BABYFOOD,PLUMS,BANANAS&RICE,STR",,,Y,,0,,,,,,Baby Foods,1.1,0.3,12.7,57,9.3,1.3,3,0,11,32,265,0,0.13,2.4,133,0,12.3,0.04,0.05,0.8,0.13,0,5.7,0,0
3296,300,"Babyfood, dinner, turkey, rice, and vegetables, toddler","BABYFOOD,TURKEY,RICE&VEG,TODD",,,Y,,0,,,,,,Baby Foods,3.8,1.6,7.5,60,1.12,0.8,11,0.4,14,63,107,183,0.61,3.3,2268,2,0.3,0.07,0.07,2.11,0.13,0.1,2.5,0,7
3297,300,"Babyfood, dinner, apples and chicken, strained","BABYFOOD,DINNER,APPLS&CHICK,STR",,,Y,,0,,,,,,Baby Foods,2.16,1.38,10.88,65,6.06,1.8,18,0.38,6,32,95,12,0.36,2.5,30,1,0.2,0.02,0.057,0.577,0.083,0.02,0.6,0,5
3298,300,"Babyfood, dinner, broccoli and chicken, junior","BABYFOOD,DINNER,BROCCOLI & CHICK,JR",,,Y,,0,,,,,,Baby Foods,3.59,2.48,6.34,62,1.43,1.4,37,0.52,12,58,170,17,0.39,2.2,474,1,17.7,0.019,0.098,0.964,0.052,0.33,73.5,10,13
3301,300,"Babyfood, beverage, GERBER GRADUATE FRUIT SPLASHERS","Babyfood, beverage, GERBER GRADUATE FRUIT SPLASHERS",,,Y,,0,,6.25,,,,Baby Foods,0,0,7.4,31,6.12,0,71,0,3,3,22,11,0.71,0.1,4,0,35.3,0.007,0.013,0.06,0.022,0,0.2,0,0
3302,300,"Babyfood, snack, GERBER GRADUATE YOGURT MELTS","BABYFOOD,SNACK,GERBER GRADUATE YOGURT MELTS",,,Y,,0,,6.25,,,,Baby Foods,14.29,4,71.43,429,57.14,2.3,457,0,53,382,714,286,1.77,11.8,1396,3,57.1,0.113,0.817,3.301,0.168,1.7,12.2,0,0
3303,300,"Babyfood, dinner, sweet potatoes and chicken, strained","BABYFOOD,DINNER,SWT POTATOES&CHICK,STR",,,Y,,0,,,,,,Baby Foods,2.51,2.17,11.04,74,2.65,1.3,30,0.45,13,25,200,22,0.37,1.7,4318,4,0,0.02,0.04,1.04,0.137,0.05,1.3,0,11
3304,300,"Babyfood, dinner, potatoes with cheese and ham, toddler","BABYFOOD,DINNER,POTATOES W/CHS&HAM,TODD",,,Y,,0,,,,,,Baby Foods,3.5,2,11.97,78,0.8,1.2,53,0.4,14,108,143,205,0.6,5.5,31,1,0.1,0.05,0.1,1.06,0.16,0.07,1.3,0,6
3681,300,"Babyfood, cereal, barley, prepared with whole milk","BABYFOOD,CRL,BARLEY,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.73,3.26,9.94,84,5.1,0.6,162,3.49,18,110,151,43,0.57,5.6,150,47,0.2,0.242,0.353,2.707,0.06,0.42,0.4,0,10
3682,300,"Babyfood, cereal, high protein, prepared with whole milk","BABYFOOD,CRL,HI PROT,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,8.7,3.8,11.6,111,,,218,12.14,48,177,349,49,1.04,,105,,,0.47,0.579,5.668,0.113,0.3,,0,
3685,300,"Babyfood, cereal, mixed, prepared with whole milk","BABYFOOD,CRL,MXD,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,4.14,3.38,12.3,96,4.78,0.8,220,10.43,20,118,166,42,0.59,6.1,146,45,0.3,0.308,0.448,3.88,0.053,0.4,0.4,0,9
3686,300,"Babyfood, cereal, mixed, with bananas, prepared with whole milk","BABYFOOD,CRL,MXD,W/BANANAS,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.82,3.46,10,86,5.9,0.4,153,3.63,18,111,178,48,0.49,4.9,155,47,0.4,0.315,0.437,1.605,0.065,0.43,0.5,0,10
3689,300,"Babyfood, cereal, oatmeal, prepared with whole milk","BABYFOOD,CRL,OATMEAL,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,5,4.1,15.3,116,,1.1,220,12.14,35,160,204,46,0.92,,105,,1.3,0.506,0.563,5.981,0.06,0.3,,0,11
3690,300,"Babyfood, cereal, oatmeal, with bananas, prepared with whole milk","BABYFOOD,CRL,OATMEAL,W/BANANAS,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.82,3.46,10,86,5.9,0.4,153,3.63,18,111,178,48,0.49,4.9,155,47,0.4,0.315,0.437,1.605,0.104,0.43,0.5,0,10
3693,300,"Babyfood, cereal, oatmeal, with honey, prepared with whole milk","BABYFOOD,CRL,OATMEAL,W/HONEY,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,5,3.9,15.3,115,,,289,11.09,35,198,170,49,0.93,,,,,0.487,0.602,6.034,0.06,0.3,,0,
3694,300,"Babyfood, cereal, rice, prepared with whole milk","BABYFOOD,CRL,RICE,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.45,3.38,10.31,85,4.87,0,168,3.63,25,122,151,42,0.49,4.3,150,47,0.2,0.243,0.324,2.449,0.069,0.41,0.2,0,10
3696,300,"Babyfood, cereal, rice, with honey, prepared with whole milk","BABYFOOD,CRL,RICE,W/HONEY,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.9,3.3,17.1,115,,,291,10.81,45,181,141,49,0.65,,108,,0,0.476,0.608,6.083,0.115,0.3,,0,
3704,300,"Babyfood, cereal, mixed, with honey, prepared with whole milk","BABYFOOD,CRL,MXD,W/HONEY,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,5,3.6,15.9,115,,,294,11.27,28,184,171,48,0.72,,,,,0.447,0.583,6.26,0.067,0.3,,0,
3711,300,"Babyfood, cereal, high protein, with apple and orange, prepared with whole milk","BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,6.9,3.9,13.4,112,,,223,14.42,37,166,346,58,0.76,,,,,0.655,0.847,3.987,0.092,0.35,,0,
3712,300,"Babyfood, cereal, rice, with bananas, prepared with whole milk","BABYFOOD,CRL,RICE,W/BANANAS,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.57,3.32,10.49,86,6.13,0.1,156,3.63,20,109,180,47,0.46,4.3,152,47,0.2,0.684,0.444,1.849,0.085,0.43,0.5,0,10
3800,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, ready-to-feed","INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.45,3.37,7.39,66,5,0,42,0.99,5,24,71,18,0.53,1.3,200,42,5.9,0.066,0.092,0.693,0.05,0.22,5.3,10,4
3801,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, liquid concentrate, not reconstituted","INF FORMULA,NES,G START SUPR,W/ IRON,LIQ CONC,NOT RECON",,,Y,,0,,,,,,Baby Foods,2.79,6.5,14.2,127,9.7,0,81,1.9,9,46,137,34,1.02,1.6,381,76,11,0.127,0.178,1.33,0.095,0.42,10,19,2
3802,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, powder","INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,PDR",,,Y,,0,,,,,,Baby Foods,11.3,26.1,57.32,509,39.3,0,343,7.7,36,184,553,138,4.1,10.2,1537,307,46.1,0.512,0.717,5.38,0.384,1.1,41,77,32
3803,300,"Infant formula, MEAD JOHNSON, ENFAMIL, with iron, ready-to-feed","INF FORMULA, MEAD JOHNSON, ENFAMIL, W/IRON, RTF",,,Y,,0,,,,,,Baby Foods,1.38,3.5,7.2,63,7.18,0,51,1.18,5,35,71,18,0.66,1.8,193,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3805,300,"Infant formula, MEAD JOHNSON, ENFAMIL, with iron, powder","INF FORMULA,MEAD JOHNSON,ENFAMIL,W/ IRON,PDR",,,Y,,0,,,,,,Baby Foods,10.8,27,56.2,520,56,0,400,9.3,41,270,560,139,5.2,14.5,1567,310,62,0.41,0.72,5.2,0.31,1.55,41,83,17
3806,300,"Infant formula, MEAD JOHNSON, ENFAMIL, low iron, ready-to-feed","INFANT FORMULA,MEAD JOHNSON,ENFAMIL,LO IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.38,3.5,7.18,63,7.18,0,51,0.46,5,35,71,18,0.66,1.8,193,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3808,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, with iron, powder, with ARA and DHA","INF FORMULA,MEAD JOHNSON,ENFAMILLIPIL,W/IRN,PDR,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,10.8,27,56.2,511,56,0,400,9.3,41,270,560,139,5.2,14.5,1550,310,62,0.41,0.72,5.2,0.31,1.55,41,83,17
3809,300,"Infant formula, MEAD JOHNSON, ENFAMIL, low iron, powder, not reconstituted","INF FORMULA, MEAD JOHNSON, ENFAMIL, LO IRON, POWD, NOT RECON",,,Y,,0,,,,,,Baby Foods,10.8,27,56.2,511,56,0,400,3.6,41,270,560,139,5.2,14.5,1550,310,62,0.41,0.72,5.2,0.31,1.55,41,83,17
3812,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, with iron, liquid concentrate, with ARA and DHA","INF FORMU,MEAD JOHNS,ENFA,LIPIL,W/ IRO,LIQ CONC,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,2.76,6.96,14.34,131,14,0,102,2.36,11,70,142,35,1.31,3.6,394,78,15.8,0.105,0.184,1.313,0.079,0.39,10.3,21,1
3813,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.83,3.5,6.81,66,5.13,0,62,1.18,7,42,72,31,0.66,1.8,194,33,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3814,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, powder, not reconstituted","INF FORM,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN,W/IRON,PDR,NOTRECN",,,Y,,0,,,,,,Baby Foods,14.2,25,55,502,55,0,470,8.9,55,310,550,230,5,13.9,1490,250,60,0.4,0.45,5,0.3,1.49,40,79,0
3815,300,"Infant formula, MEAD JOHNSON, ENFAMIL LIPIL, with iron, ready-to-feed, with ARA and DHA","INF FORMULA, MEAD JOHN, ENFAMIL LIPIL,W/ IRON,RTF,W/ AR & DH",,,Y,,0,,,,,,Baby Foods,1.38,3.5,7.1,64,7.1,0,51,1.18,5,35,71,18,0.66,1.8,193,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3816,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, liquid concentrate, not reconstituted","INF FORM,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN,W/IRON,LC,NOT RECON",,Mead Johnson,Y,,0,,,,,,Baby Foods,3.53,6.73,13.12,127,13.08,0,120,2.28,14,80,138,60,1.27,3.5,374,64,15.1,0.101,0.114,1.27,0.077,0.37,10.1,20,0
3818,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, liquid concentrate, with ARA and DHA","INF FORM,ME JOHNS,ENFAM,LIP,LO IRON,LIQ CONC,W/ ARA & DHA",,,,,0,,,,,,Baby Foods,2.76,7.16,14.24,131,14.24,0,102,0.92,11,70,142,39,1.31,3.6,394,79,15.8,0.105,0.184,1.313,0.079,0.39,10,21,2
3819,300,"Child formula, MEAD JOHNSON, PORTAGEN, with iron, powder, not reconstituted","CHILD FORMULA,MEAD JOHNSON,PORTAGEN,W/ IRON,PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,16.5,22,54.8,483,54,0,440,8.8,98,330,590,260,4.4,0,3700,370,38,0.74,0.88,9.8,0.98,2.9,74,74,4
3820,300,"Child formula, MEAD JOHNSON, PORTAGEN, with iron, prepared from powder","CHILD FORMULA,MEAD JOHNSON,PORTAGEN,W/ IRON,PREP FROM PDR",,,Y,,0,,,,,,Baby Foods,3.33,4.48,8.57,88,7.4,0,88,1.75,19,66,118,52,0.88,0,740,65,7.6,0.148,0.176,1.944,0.194,0.57,15.1,15,1
3821,300,"Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, powder, not reconstituted","INF FORMULA. MEAD JOHNSON, PREGESTIMIL, W/IRON, PDR,NO RECON",,,Y,,0,,,,,,Baby Foods,14,28,52.8,519,51,0,580,9.4,55,380,550,240,5,14,1900,278,60,0.4,0.45,5,0.3,1.5,60,80,2
3822,300,"Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, prepared from powder","INF FORMULA, MEAD JOHNSON, PREGESTIMIL, W/IRON, PREP FRO PDR",,,Y,,0,,,,,,Baby Foods,1.82,3.65,6.63,67,6.63,0,75,1.17,7,49,71,31,0.65,1.8,250,35,7.8,0.052,0.059,0.654,0.039,0.19,7.8,10,0
3823,300,"Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready-to-feed","INF FORMULA,MEAD JOHNSON,PROSOBEE,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.64,3.5,6.11,63,6.11,0,69,1.18,7,54,79,23,0.79,1.8,194,40,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3824,300,"Infant formula, MEAD JOHNSON, PROSOBEE, with iron, liquid concentrate, not reconstituted","INF FORMULA, MEAD JOHNSON, PROSOBEE,W/IRON ,LIQ CNC, NOT REC",,,Y,,0,,,,,,Baby Foods,3.19,7.13,13.58,131,13.58,0,134,2.3,14,106,153,45,1.53,3.6,377,77,15.3,0.102,0.115,1.28,0.077,0.38,10.2,20,0
3825,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, ready to feed, with ARA and DHA","INF FOR,ME JOHN,ENFAM,LIPIL,LO IRON,READY TO FE,W/ ARA & DHA",,,,,0,,,,,,Baby Foods,1.38,3.5,7.18,64,7.18,0,51,0.46,5,35,71,18,0.66,1.8,194,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3826,300,"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, with iron, powder, not reconstituted","INF FORMULA,MEAD JOHNSON,ENFAMIL,PROSOBEE,IRON,PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,12.5,27,54.3,510,53,0,530,9,55,420,600,180,6,14,1500,300,60,0.4,0.45,5,0.3,1.5,40,80,0
3827,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE LIPIL, with iron, powder, with ARA and DHA","INF FORMULA, ME JOHN, ENFA, LACF LIP, W/IRO, POW, W/AR AN DH",,,Y,,0,,,,,,Baby Foods,10.9,28,56.3,521,54.77,0,430,9.4,42,290,570,156,5.2,14.6,1567,310,62,0.42,0.73,5.2,0.31,1.56,42,83,7
3830,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, LIPIL, with iron, liquid concentrate, not reconstituted, with ARA and DHA","INF FORMU, ME JOH, ENF, LAC, LI, W/ IR,LI CO,N RE,W/ AR & DH",,,Y,,0,,,,,,Baby Foods,2.68,7.11,14.42,132,13.96,0,104,2.3,10,70,140,38,1.28,3.6,377,77,15.3,0.102,0.179,1.283,0.077,0.38,10.2,20,2
3832,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, ready-to-feed, with ARA and DHA","INF FORMULA,MEAD JOHNSON,ENFAMIL,LIPIL,RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.38,3.5,6.44,66,6.44,0,54,1.18,5,36,72,19,0.66,1.8,194,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3837,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, PM 60/40, powder not reconstituted","INF FORMULA, ABBOTT NUTR, SIMILAC, PM 60/40, PDR NOT RECON",,,Y,,0,,,,,,Baby Foods,11.4,28.71,54.94,524,52.38,0,288,1.13,31,144,411,123,3.85,9.8,1541,308,46.2,0.514,0.77,5.392,0.308,1.28,41.1,77,17
3838,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN LIPIL, with iron, powder, not reconstituted, with ARA and DHA","INF FOR,ME JOH,ENF,NUTR LIPIL,W/ IRO,PDR,NOT RE,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,13.9,26,51,494,51,0,470,8.9,55,310,550,230,5,13.9,1500,250,60,0.4,0.45,5,0.3,1.49,40,79,0
3839,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, NATURAL CARE, ADVANCE, ready-to-feed, with ARA and DHA","INF FORMULA, ABB NUT,SIMI,NAT CA,AD,RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,2.12,4.24,8.2,78,8.2,0,163,0.29,9,91,101,34,1.17,1.4,973,117,28.9,0.195,0.484,3.902,0.195,0.43,9.4,29,2
3840,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, SPECIAL CARE, ADVANCE 24, with iron, ready-to-feed, with ARA and DHA","INF FORMULA, AB NUT, SIM, SP CA, ADV 24,W/ IR, RT,W/ AR & DH",,,Y,,0,,,,,,Baby Foods,1.8,3.26,8.73,71,8.3,0,141,1.41,9,79,101,34,1.18,1.4,982,106,29.1,0.196,0.487,3.927,0.196,0.43,9.4,29,2
3841,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, ready-to-feed","INF FORMULA, ABBO NUTR, SIMIL,ISOMI,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.61,3.59,6.7,66,6.7,0,69,1.18,5,49,71,29,0.49,1.4,197,39,5.9,0.039,0.059,0.887,0.039,0.3,7.2,10,0
3842,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, liquid concentrate","INF FORMULA, ABBOTT NUTR, SIMILAC, ISOMIL,W/ IRON,LIQ CONC",,,Y,,0,,,,,,Baby Foods,3.13,6.98,13.21,128,13.1,0,134,2.3,10,96,138,56,0.96,2.7,380,77,11.5,0.077,0.115,1.725,0.077,0.58,14.1,19,0
3843,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, powder, not reconstituted","INF FORMULA, ABBO NUTR, SIMILA, ISOMI, W/ IRON,PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,12.6,28.09,53.57,517,52.97,0,540,9.26,39,386,555,226,3.86,10.8,1543,309,46.3,0.309,0.463,6.943,0.309,2.31,56.6,77,0
3844,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, LIPIL, with iron, liquid concentrate not reconstituted, with ARA and DHA","INF FO,ME JO,ENF,NUTR,LIPIL,W/ IR,LIQ CO NOT RE,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,3.53,6.73,13.12,126,9.87,0,123,2.28,14,80,138,60,1.27,3.5,374,64,15.1,0.101,0.114,1.271,0.077,0.37,10.1,20,0
3845,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, LIPIL, with iron, ready-to-feed, with ARA and DHA","INF FORMU,ME JOHNS,ENFAM,NUTRA,LIPI,W/ IRO,RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.83,3.5,6.81,66,5.13,0,62,1.18,7,42,72,31,0.66,1.8,193,33,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3846,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, with iron, ready-to-feed","INF FORMULA, ABBOTT NUTR, SIMILAC, ALIMENTUM, W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.8,3.63,6.77,66,4.4,0,69,1.18,5,49,77,29,0.49,1.2,197,29,5.9,0.039,0.059,0.885,0.039,0.3,9.8,10,1
3849,300,"Infant formula, MEAD JOHNSON, ENFAMIL, ENFACARE LIPIL, with iron, powder, with ARA and DHA","INF FORMU, ME JOHNS, ENFAM, ENFA LIP, W/IRO, POW, W/AR/AN DH",,,Y,,0,,6.38,,,,Baby Foods,12.5,27,56,514,51,0,590,8.9,39,330,565,173,6.2,14.6,1580,390,79,0.2,0.99,9.9,0.49,1.48,41.3,84,16
3850,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, ready-to-feed","INF FORMULA, ABBOTT NUTR, SIMILAC, W/ IRON, RTF",,,Y,,0,,,,,,Baby Foods,1.36,3.55,6.92,65,6.9,0,51,1.18,4,28,69,16,0.49,1.2,197,39,5.9,0.066,0.099,0.69,0.039,0.16,5.3,10,2
3851,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, liquid concentrate, not reconstituted","INF FORM, AB NUTR, SIMILAC, W/ IRON, LIQ CONC, NOT RECON",,,Y,,0,,,,,,Baby Foods,2.64,6.89,13.76,127,13.76,0,99,2.3,8,54,134,31,0.96,2.8,382,76,11.5,0.127,0.191,1.339,0.076,0.32,10.2,19,3
3852,300,"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE LIPIL, with iron, powder, not reconstituted, with ARA and DHA","INF FORMULA, MEA JOH,EN,PR LIPI,W/ IRO,PD,NO RE,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,12.5,27,53,510,53,0,530,9.5,55,420,600,171,6,13.3,1420,300,60,0.4,0.45,5,0.3,1.42,40,80,0
3853,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, powder, not reconstituted","INF FORMULA, ABBOTT NUTR, SIMILAC, W/ IRON, PDR, NOT RECON",,,Y,,0,,,,,,Baby Foods,10.89,28.87,54.73,522,54.73,0,410,9.47,32,221,552,126,3.94,11.6,1577,316,47.3,0.526,0.789,5.522,0.316,1.32,42.1,79,14
3854,300,"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, LIPIL, liquid concentrate, not reconstituted, with ARA and DHA","INFFORMULA, MEAD JOHNS,ENFAMIL,PROSOB,LIPI,LC,NOTREC,ARA&DHA",,,Y,,0,,,,,,Baby Foods,3.19,7.11,13.58,131,13.58,0,134,2.3,14,106,153,45,1.53,3.6,377,77,15.3,0.102,0.115,1.283,0.077,0.38,10.2,20,0
3855,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, ready-to-feed","INF FORMULA, ABBOTT NUTR, SIMILAC, LO IRON, RTF",,,Y,,0,,,,,,Baby Foods,1.36,3.55,6.93,65,6.93,0,51,0.14,4,28,69,16,0.49,1.4,197,39,5.9,0.066,0.099,0.69,0.039,0.16,5.3,10,2
3856,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, liquid concentrate, not reconstituted","INF FORMULA, ABBOTT NUTR, SIMILAC, LO IRON,LIQ CONC,NOT RECO",,,Y,,0,,,,,,Baby Foods,2.64,6.89,13.76,127,13.76,0,99,0.89,8,54,134,31,0.96,2.8,382,76,11.5,0.127,0.191,1.339,0.076,0.32,10.2,19,3
3857,300,"Infant formula, MEAD JOHNSON, PROSOBEE LIPIL, with iron, ready to feed, with ARA and DHA","INF FORMULA,MEJOHN,PROSOBE LIPI,W/ IRO,RE TO FE,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.64,3.5,6.11,64,6.11,0,69,1.18,7,54,79,23,0.79,1.8,194,40,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3858,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, powder, not reconstituted","INF FORMULA, ABBOTT NUTR, SIMILAC, LO IRON, PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,10.85,28.87,54.78,522,54.7,0,410,3.68,32,221,552,126,3.94,11.6,1578,316,47.3,0.526,0.789,5.522,0.316,1.32,42.1,79,14
3859,300,"Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, ready-to-feed","INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,RTF",,,Y,,0,,,,,,Baby Foods,1.6,3.28,7.13,64,5.68,0,67,1.15,7,41,74,26,0.58,1.9,193,39,7.7,0.039,0.06,0.864,0.038,0.19,5.8,10,2
3860,300,"Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed","CHILD FORMULA,ABBOTT NUTR,PEDIASURE,RTF (FORMERLY ROSS)",,,Y,,0,,,,,,Baby Foods,2.86,4.77,11.15,99,10.5,0,93,1.34,19,76,125,36,1.15,2.2,246,48,9.5,0.258,0.201,1.614,0.248,0.57,3.6,36,2
3861,300,"Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE LIPIL, powder, with ARA and DHA","INF FORM,MEAD JOHN,NEXT STEP,PROS LIPIL,PDR,W/ ARA & DHA",,,,,0,,,,,,Baby Foods,15.6,21,57.1,480,56,0,920,9.5,52,620,570,171,5.7,13.3,1420,284,57,0.38,0.43,4.7,0.28,1.42,38,76,0
3864,300,"Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE, LIPIL, ready to feed, with ARA and DHA","INF FORM,ME JO,NEXT STEP,PROSO,LIPIL,REATO FEED,W/ ARA & DHA",,,,,0,,,,,,Baby Foods,2.14,2.91,8.09,67,7.77,0,128,1.31,7,85,79,23,0.79,1.8,194,40,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3867,300,"Infant formula, NESTLE, GOOD START SOY, with ARA and DHA, powder","INF FORMULA,NESTLE,GOOD START SOY,W/ ARA & DHA,PDR",,,Y,,0,,,,,,Baby Foods,12.5,25.6,55.6,503,44.38,0,526,9,55,316,581,200,4.51,15,1503,301,60.1,0.301,0.471,6.764,0.301,1.5,45.1,80,6
3868,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, ready-to-feed","INF FORMULA, MEAD JOHNSON, ENFAMIL, LACTOFREE, RTF",,,Y,,0,,,,,,Baby Foods,1.38,3.5,7.18,63,7.18,0,53,1.18,5,36,72,19,0.66,1.8,194,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3869,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, with iron, powder, not reconstituted","INF FORMULA,MEAD JOHNSON,ENFAMIL,LACTOFREE,W/ IRN,PDR,NOTREC",,,Y,,0,,,,,,Baby Foods,10.85,28,57,521,57,0,430,9.4,42,290,580,156,5.2,14.6,1567,310,62,0.42,0.13,5.2,0.31,1.56,42,83,8
3870,300,"Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed, with iron and fiber","CHI FORMU,ABBT NUTR,PEDIASU,RTF,W/ IRON & FIB (FORMER ROSS)",,,Y,,0,,,,,,Baby Foods,2.8,4.7,11.28,99,7.6,0.5,92,1.32,19,80,124,36,0.56,3,152,48,9.6,0.256,0.2,0.96,0.248,0.56,5.6,28,2
3900,300,"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, ready-to-feed","INF FORMULA,NESTLE,GOOD START 2 ESSENTIALS,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.7,2.7,8.54,65,6.19,0,78,1.2,5,52,88,25,0.52,1.3,163,43,5.9,0.052,0.091,0.65,0.042,0.16,5.2,10,1
3901,300,"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, liquid concentrate, not reconstituted","INF FORMULA, NE,GOO STAR 2 ESSENT,W/ IRON,LIQ CONC,NOT RECON",,,Y,,0,,,,,,Baby Foods,3.25,5.13,16.5,125,11.9,0,150,2.25,10,100,169,49,1,2.5,313,82,11,0.1,0.175,1.25,0.081,0.31,10,19,2
3913,300,"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, powder","INF FORMULA,NESTLE,GOOD START 2 ESSENTIALS,W/ IRON,PDR",,,Y,,0,,,,,,Baby Foods,12.2,19.3,62.23,471,44.3,0,565,8.5,38,377,636,184,4,9.4,1178,309,42,0.377,0.659,4.71,0.306,1.2,38,71,6
3925,300,"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, ready-to-feed","INF FORMULA,NESTLE,GOOD START ESSENTIALS SOY,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.63,3.3,7.17,65,5.69,0,68,1.25,7,41,75,23,0.6,1.6,167,40,7.8,0.039,0.061,0.845,0.039,0.2,5.2,10,0
3926,300,"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, liquid concentrate, not reconstituted","INF FORM,NEST,GOOD START ESSENT SOY,W/ IRON,LIQ CON,NOT RECO",,,Y,,0,,,,,,Baby Foods,3.2,6.5,14.1,128,11.2,0,133,2.29,14,80,146,46,1.14,2.5,381,82,15.2,0.076,0.119,1.65,0.076,0.38,10.2,20,0
3928,300,"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, powder","INF FORMULA,NESTLE,GOOD START ESSENTIALS SOY,W/ IRON,PDR",,,Y,,0,,,,,,Baby Foods,12.5,25.5,55.7,502,44.38,0,526,9,55,316,581,180,4.51,10,1503,309,60.1,0.301,0.471,6.513,0.301,1.5,40.1,80,0
3929,300,"Infant formula, MEAD JOHNSON, NEXT STEP PROSOBEE, powder, not reconstituted","INF FORMULA, MEAD JOHNSON,NEXT STEP PROSOBEE,PDR,NOT RECON",,,Y,,0,,5.71,,,,Baby Foods,15.6,21,57.1,480,56,0,920,9.5,52,620,570,171,5.7,13.3,1420,284,57,0.38,0.43,4.7,0.28,1.42,38,76,0
3930,300,"Infant formula, MEAD JOHNSON,NEXT STEP PROSOBEE, prepared from powder","INF FORMULA,MEAD JOHNSON,NEXT STEP PROSOBEE,PREP FROM PDR",,,,,0,,,,,,Baby Foods,2.14,2.91,8.08,67,7.77,0,128,1.31,7,85,79,23,0.79,1.8,194,40,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3934,300,"Babyfood, corn and sweet potatoes, strained","BABYFOOD,CORN & SWT POTATOES,STR",,,Y,,0,,,,,,Baby Foods,1.26,0.28,15.23,68,4,1.8,18,0.31,10,29,154,14,0.19,1.1,2496,0,5,0.018,0.041,0.444,0.06,0.01,0.6,0,1
3935,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, ADVANCE, ready-to-feed, with ARA and DHA","INF FORM, ABBO NUTR, SIMIL, ALIMENT, ADVAN, RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.8,3.63,6.77,67,4.4,0,69,1.18,5,49,77,29,0.49,1.2,197,29,5.9,0.039,0.059,0.885,0.039,0.3,9.8,10,1
3936,300,"Infant formula, PBM PRODUCTS, store brand, ready-to-feed","INF FORMULA,PBM PRODUC,STO BRA,RTF (FORMERLY WYETH-AYERST)",,,Y,,0,,,,,,Baby Foods,1.4,3.5,6.39,63,6.4,0,41,1.18,5,28,55,14,0.53,1.4,197,38,5.6,0.07,0.1,0.49,0.04,0.13,5.1,5,4
3937,300,"Infant formula, PBM PRODUCTS, store brand, liquid concentrate, not reconstituted","INF FORM,PBM PROD,STORE BRAND,LC,NOT REC (FORM WYETH-AYERST)",,,Y,,0,,,,,,Baby Foods,2.9,7,13.9,130,13.9,0,83,2.36,9,55,109,29,1.06,2.6,393,76,11.2,0.13,0.2,0.99,0.08,0.26,10.6,10,8
3938,300,"Infant formula, PBM PRODUCTS, store brand, powder","INF FORMULA,PBM PRODUCTS,STORE BRAND,PDR",,,Y,,0,,,,,,Baby Foods,12,28,56,524,56,0,331,9.5,36,221,441,118,3.9,11,1577,303,43.3,0.53,0.79,3.94,0.33,1.02,43,39,32
3939,300,"Infant formula, PBM PRODUCTS, store brand, soy, ready-to-feed","INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,RTF",,,Y,,0,,,,,,Baby Foods,1.8,3.5,6.09,63,6.1,0,59,1.18,7,41,69,18,0.53,1.4,247,37,5.4,0.07,0.1,0.49,0.04,0.2,5.1,5,0
3940,300,"Infant formula, PBM PRODUCTS, store brand, soy, liquid concentrate, not reconstituted","INF FORMU,PBM PRODU,STORE BR,SOY,LIQ CONC,NOT RECON",,,Y,,0,,,,,,Baby Foods,3.6,7,12.18,126,12.18,0,118,2.36,14,82,138,36,1.06,3.6,393,86,10.8,0.14,0.2,0.98,0.08,0.4,10.2,10,0
3941,300,"Infant formula, PBM PRODUCTS, store brand, soy, powder","INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,PDR",,,Y,,0,,,,,,Baby Foods,13.6,27.2,52.2,508,52.2,0,453,9.1,51,317,528,151,3.8,11,1577,303,42,0.5,0.76,3.78,0.32,1.5,41.6,38,0
3942,300,"Infant formula, MEAD JOHNSON, ENFAMIL, AR LIPIL, ready-to-feed, with ARA and DHA","INF FORMULA, MEAD JOHNS, ENFAMI, AR LIPIL, RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.71,3.49,7.53,68,6.44,0,53,1.23,5,36,74,27,0.68,1.9,205,41,8.2,0.055,0.096,0.684,0.041,0.21,5.5,11,1
3943,300,"Infant formula, MEAD JOHNSON, ENFAMIL, AR LIPIL, powder, with ARA and DHA","INF FORMULA, MEA JOHNSO, ENFAMI, AR LIPIL, PDR, W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,12.73,25.97,56.03,509,56.03,0,397,9.16,41,269,550,204,5.09,14.3,1528,306,61.1,0.408,0.713,5.088,0.306,1.53,40.9,82,17
3944,300,"Infant formula, ABBOTT NUTRITION, SIMILAC NEOSURE, ready-to-feed, with ARA and DHA","INF FORM,ABBOT NUT,SIMIL NEOSU,RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.92,3.77,6.94,69,6.9,0,72,1.23,6,42,97,23,0.82,1.6,315,48,10.3,0.151,0.102,1.336,0.068,0.27,7.5,17,2
3945,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, NEOSURE, powder, with ARA and DHA","INF FORMULA, ABBOTT, SIMILAC, NEOSURE, PDR, W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,14.42,28.33,51.75,520,52.02,0,541,9.26,46,319,731,170,6.18,11.8,2371,361,77.2,1.133,0.773,10.043,0.515,2.06,56.7,128,14
3946,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE (LACTOSE FREE) ready-to-feed, with ARA and DHA","INF FORMULA, ABB NUTR, SIMI,SENS (LACT FRE) RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.48,3.74,7.4,68,7.4,0,58,1.24,3,39,74,21,0.52,1.2,208,40,6,0.069,0.104,0.726,0.042,0.17,5.5,10,2
3947,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), liquid concentrate, with ARA and DHA","INF FORMULA, ABB NUT,SIMIL,SENS,(LACT FR),LIQ CON,W/ AR & DH",,,Y,,0,,,,,,Baby Foods,2.73,6.95,13.64,128,13.78,0,108,2.32,8,72,138,39,0.97,2.9,385,74,11.5,0.129,0.279,1.351,0.077,0.32,10.3,19,4
3948,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), powder, with ARA and DHA","INF FORMULA, ABB NUTR,SIMIL,SENS,(LACTO FR), PD, W/ ARA & DH",,,Y,,0,,,,,,Baby Foods,11.13,28.14,55.67,520,55.67,0,436,9.33,30,293,557,158,3.91,9,1559,369,45.1,0.519,0.782,5.462,0.316,1.28,41.4,75,15
3949,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, ready-to-feed","INF FORMULA, ABBOTT NUTR, SIMILAC, ADVANCE, W/ IRON, RTF",,,Y,,0,,,,,,Baby Foods,1.36,3.7,6.77,66,6.9,0,53,1.18,4,28,69,16,0.49,1.2,197,39,5.9,0.066,0.099,0.69,0.039,0.16,5.3,10,2
3950,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, powder, not reconstituted","INF FORMULA,ABBOTT NUTR,SIMILAC,ADVANC,W/ IRON,PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,10.89,28.87,54.73,522,54.73,0,410,9.47,32,221,552,126,3.94,11.6,1578,316,47.3,0.526,0.789,5.522,0.316,1.32,42.1,79,14
3951,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, liquid concentrate, not reconstituted","INF FORMU,ABBO NUTR,SIMILAC,ADVAN,W/ IRON,LIQ CONC,NOT RECON",,,Y,,0,,,,,,Baby Foods,2.64,6.89,13.52,127,13.52,0,99,2.3,8,54,134,31,0.96,2.8,382,76,11.5,0.127,0.191,1.339,0.076,0.32,10.2,19,3
3952,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, liquid concentrate","INF FORMULA, ABB NUTR, SIMIL, ISOMIL, ADVA W/ IRON,LIQ CONC",,,Y,,0,,,,,,Baby Foods,3.13,6.98,13.21,128,13.1,0,134,2.3,10,96,138,56,0.96,2.7,380,77,11.5,0.077,0.115,1.725,0.077,0.58,14.1,19,0
3953,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, ready-to-feed","INF FORMULA, ABBO NUTR,SIMIL,ISOMIL, ADVANCE W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.61,3.59,6.7,66,6.7,0,69,1.18,5,49,71,29,0.49,1.4,197,39,5.9,0.039,0.059,0.887,0.039,0.3,7.2,10,0
3954,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, powder, not reconstituted","INF FORMULA, ABB NUTR, SIMI, ISOMI, ADVAN W/ IRO ,PD,NOT REC",,,Y,,0,,,,,,Baby Foods,12.6,28.09,53.57,517,52.97,0,540,9.26,39,386,555,226,3.86,10.8,1543,309,46.3,0.309,0.463,6.943,0.309,2.31,56.6,77,0
3955,300,"Infant Formula, MEAD JOHNSON, ENFAMIL, ENFACARE LIPIL, ready-to-feed, with ARA and DHA","INF FORMULA,MEAD JOHNSON,ENFAMIL,ENFACARE LIPIL,RTF, ARA&DHA",,,Y,,0,,,,,,Baby Foods,2,3.8,7.4,71,7.4,0,86,1.28,6,47,75,25,0.88,2,193,57,11.3,0.141,0.141,1.423,0.071,0.21,5.7,19,1
3956,300,"Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added DHA fortified","BABYFOOD,YOG,WHL MILK,W/ FRUIT,MULTIG CRL & ADD DHA FORT",,,Y,,0,,,,,,Baby Foods,3.4,3.53,13.22,98,11.46,0.3,107,0.15,15,95,149,41,0.59,2.8,86,3,1.4,0.047,0.129,0.119,0.034,0.32,0.3,0,14
3957,300,"Infant formula, ABBOTT NUTRITION, ALIMENTUM ADVANCE, with iron, powder, not reconstituted, with DHA and ARA","INF FORM,ABBOTT,ALIMENTUM ADVANCE,IRON,PDR,NOTREC,DHA&ARA",,,Y,,0,,6.25,,,,Baby Foods,13.99,28.19,51.91,517,34.18,0,534,9.16,38,382,598,224,3.82,9.3,1528,229,45.8,0.305,0.458,6.87,0.305,2.29,76.3,76,8
3959,300,"Babyfood, mashed cheddar potatoes and broccoli, toddlers","BABYFOOD,MSHD CHEDDAR POTATOES&BROCCOLI,TODDLER",,,Y,,0,,,,,,Baby Foods,1.11,1.47,7.47,48,1.17,1.2,20,0.16,8,24,118,176,0.16,0.5,84,0,1.5,0.03,0.02,0.419,0.089,0.01,8.1,0,4
3960,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, ready-to-feed","INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,DHA & ARA,RTF",,,Y,,0,,,,,,Baby Foods,1.45,3.37,7.39,66,5,0,42,0.99,5,24,71,18,0.53,1.3,200,42,5.9,0.066,0.092,0.693,0.05,0.22,5.3,10,4
3961,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, prepared from liquid concentrate","INF FORM,NESTLE,GOOD START SUPREME,IRON,DHA&ARA,PRP FR LC",,,,,0,,,,,,Baby Foods,1.45,3.37,7.39,66,5,0,42,0.99,5,24,71,18,0.53,1.3,200,42,5.9,0.066,0.092,0.693,0.05,0.22,5.3,10,4
3963,300,"Infant Formula, MEAD JOHNSON, ENFAMIL GENTLEASE LIPIL, with iron, prepared from powder","INFFORM,MEADJOHNSON,ENFAMIL GENTLEASE LIPIL,W/IRON,PREPFRPDR",,,Y,,0,,1.36,,,,Baby Foods,1.52,3.5,6.39,63,6.44,0,53,1.18,5,30,71,21,0.66,1.8,194,40,7.9,0.052,0.092,0.66,0.039,0.21,5.2,10,0
3964,300,"Babyfood, fortified cereal bar, fruit filling","BABYFOOD,FORT CRL BAR,FRUIT FILLING",,,Y,,0,,,,,,Baby Foods,5.43,5.3,68.63,344,42,1.7,1053,13.16,19,247,180,157,0.59,14.1,277,0,2.4,0.921,1.053,11.842,1.105,0.19,4.1,48,1
3965,300,"Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added iron fortified","BABYFOOD,YOGU,WHL MILK,W/ FRUI,MULTIGRA CRL & ADD IRON FORT",,,Y,,0,,,,,,Baby Foods,3.05,3.08,13,92,11.46,0.6,98,4.18,15,86,143,38,0.54,2.4,82,2,3.6,0.048,0.12,0.119,0.036,0.29,0.9,0,10
3966,300,"Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, liquid concentrate","INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,LIQ CONC",,,Y,,0,,,,,,Baby Foods,3.31,6.67,14.71,132,11.74,0,139,2.38,15,84,154,53,1.19,4,397,80,15.9,0.079,0.125,1.784,0.08,0.4,11.9,21,2
3967,300,"Toddler formula, MEAD JOHNSON, ENFAGROW, PREMIUM (formerly ENFAMIL, LIPIL, NEXT STEP), powder","TODDL FORM,ME JOHN,ENFA,PREM (FORME ENL,LIPIL,NEXT STEP),PDR",,,Y,,0,,6.25,,,,Baby Foods,13,26.9,56,501,53,0,600,9,40,420,650,210,4.5,14,1520,300,45,0.5,0.75,5.3,0.3,1.52,0,81,7
3968,300,"Toddler formula, MEAD JOHNSON, ENFAGROW PREMIUM (formerly ENFAMIL, LIPIL, NEXT STEP), ready-to-feed","TODDLER FORMULA, MEAD JOHNSON, ENFAGROW PREMIUM, RTF",,,Y,,0,,,,,,Baby Foods,1.78,3.63,7.18,64,7.18,0,133,1.37,5,89,89,25,0.68,1.9,193,41,8.2,0.055,0.096,0.684,0.041,0.21,5.5,11,1
3980,300,"Infant Formula, MEAD JOHNSON, ENFAMIL, GENTLEASE, powder","INF FORMULA,MEAD JOHNSON,ENFAMIL,GENTLEASE,PDR",,,Y,,0,,6.38,,,,Baby Foods,11.8,27,56,514,56,0,420,9.3,41,240,560,185,5.1,14.4,1540,310,62,0.41,0.72,5.1,0.31,1.54,46,82,0
3981,300,"Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, GENTLEASE, Toddler, ready-to-feed","INF FORMULA, MEAD JOHNS, ENFAMIL, ENFAGROW, GENTLEA,TOD, RTF",,,Y,,0,,6.25,,,,Baby Foods,1.71,3.5,6.9,66,6.9,0,128,1.31,5,85,85,26,0.66,1.8,199,39,7.9,0.053,0.092,0.657,0.039,0.2,5.9,11,0
3982,300,"Infant formula, MEAD JOHNSON, ENFAMIL, Enfagrow, Soy, Toddler ready-to-feed","INF FORMULA, MEAD JOHNSON, ENFAMIL, ENFAGROW, SOY, TODD RTF",,,Y,,0,,6.25,,,,Baby Foods,2.17,2.89,7.64,65,7.64,0,128,1.31,7,85,79,24,0.79,1.8,199,39,7.9,0.053,0.059,0.657,0.039,0.2,5.3,11,0
3983,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN AA, ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN AA,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.84,3.48,6.76,66,6.76,0,62,1.18,7,34,72,31,0.66,1.8,197,33,7.9,0.053,0.059,0.657,0.039,0.2,5.3,11,0
3984,300,"Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 20 calories ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMATURE,20 CAL RTF",,,Y,,0,,6.25,,,,Baby Foods,1.97,3.34,7.21,66,7.2,0,108,1.18,6,54,64,38,0.98,1.8,833,157,13.1,0.131,0.197,2.623,0.098,0.16,5.2,26,0
3985,300,"Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 24 calo ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMATURE,24 CALO RTF",,,Y,,0,,6.25,,,,Baby Foods,1.97,3.34,7.19,67,7.21,0,108,1.18,6,54,64,38,0.98,1.8,828,157,13.1,0.131,0.197,2.623,0.098,0.16,5.2,26,0
3986,300,"Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Newborn, ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,NEWBORN,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.38,3.48,7.39,66,7.39,0,51,1.18,5,28,71,18,0.66,1.8,199,49,7.9,0.053,0.092,0.657,0.039,0.2,5.9,11,0
3987,300,"Infant formula, GERBER, GOOD START 2 Soy, with iron, ready-to-feed","INF FORMULA, GERBER, GOOD START 2 SOY,W/ IRON,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.84,3.28,7.15,65,7.14,0,125,1.31,7,70,76,26,0.59,2,199,39,7.9,0.039,0.062,0.689,0.039,0.2,5.9,10,0
3988,300,"Infant formula, GERBER, GOOD START, PROTECT PLUS, ready-to-feed","INF FORMULA,GERBER,GOOD START,PROTECT PLUS,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.44,3.36,7.17,65,7.17,0,44,0.98,5,25,71,18,0.52,3,199,39,10,0.066,0.092,0.689,0.049,0,5.2,10,0
3989,300,"Infant Formula, GERBER GOOD START 2, GENTLE PLUS, ready-to-feed","INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.44,3.34,7.61,66,7.61,0,125,1.31,0,70,71,18,0.52,2,199,39,7.9,0.066,0.092,0.689,0.049,0.22,5.2,10,0
3990,300,"Infant formula, GERBER, GOOD START 2, PROTECT PLUS, ready-to-feed","INF FORMULA, GERBER, GOOD START 2,PROTECT PLUS, RTF",,,Y,,0,,6.25,,,,Baby Foods,1.44,3.37,7.39,66,7.34,0,44,0.98,5,25,71,18,0.52,3,199,39,10,0.066,0.092,0.689,0.049,0,5.2,10,0
3991,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, ready-to-feed, with ARA and DHA","INF FORMULA, ABBO NU,SIMIL,GO & GR,RTF,W/ ARA & DHA",,,Y,,0,,6.25,,,,Baby Foods,1.97,3.54,6.69,66,6.69,0,128,1.31,6,85,98,20,0.49,1.2,199,39,7.9,0.066,0.098,0.689,0.039,0.2,5.2,10,0
3992,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, Expert Care, Diarrhea, ready- to- feed with ARA and DHA","INF FORMU, ABBO NUTR, SIMIL, EXPERT CARE, DIARRH RT",,,Y,,0,,6.25,,,,Baby Foods,1.76,3.6,6.67,66,6.66,0.7,69,1.18,5,49,71,29,0.49,1.2,199,39,5.9,0.039,0.059,0.885,0.039,0.3,7.2,10,0
3993,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, ready-to-feed, with ARA and DHA","INF FORMULA, ABBO NUTR, SIMIL, FOR SPIT UP, RTF,W/ ARA & DHA",,,Y,,0,,6.25,,,,Baby Foods,1.4,3.54,7.19,66,7.19,0,55,1.18,4,37,70,20,0.49,1.2,199,39,5.9,0.066,0.098,0.689,0.039,0.16,5.2,10,0
3994,300,"Babyfood, fruit, banana and strawberry, junior","BABYFD,FRU,BAN AND STRAW, JU",,,Y,,0,,,,,,Baby Foods,0.71,0.37,25.78,109,19.29,1.4,0,0.14,30,24,395,1,0.23,1.1,69,0,12.9,0.035,0.08,0.728,0.395,0,0.6,0,0
3995,300,"Babyfood, banana with mixed berries, strained","BABYFOO,BAN WI MIX BERR,ST",,,Y,,0,,6.25,,,,Baby Foods,1.01,0.36,21.31,92,15,1,0,0,23,20,283,0,0.23,0.8,51,0,18.2,0.028,0.058,0.623,0.257,0,6.3,0,0
3996,300,"Babyfood, Multigrain whole grain cereal, dry fortified","Babyfood, Multigrain whole grain cereal, dry fortified",,,Y,,0,,,,,,Baby Foods,6.25,6.25,80.89,405,12.5,6.7,750,28.13,95,500,250,0,10,31.7,0,0,0,1.094,1.25,14.063,1.094,4.69,7,0,0
3997,300,"Babyfood, Baby MUM MUM Rice Biscuits","BABYFOOD,BABY MUM MUM RICE BISCUITS",,,Y,,0,,,,,,Baby Foods,12.5,0.87,83.21,391,12.5,0,0,0,47,127,504,313,0.65,8,1,0,0,0.174,0.037,2.896,0.571,0,0,0,0
3998,300,"Babyfood, Snack, GERBER, GRADUATES, LIL CRUNCHIES, baked whole grain corn snack","BABYFD,SNK,GE,GRAD,LIL CRUNCH,BKD,WHLGRN,CORN SNK",,,Y,,0,,6.25,,,,Baby Foods,0,28.57,61.59,503,0,0,285,6.4,69,1044,214,71,3.57,12.1,265,3,0,0.169,0.099,1.291,0.258,0.1,9.8,0,13
3999,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, powder, with ARA and DHA","INF FORMULA, ABBOTT NUTRIT, SIMILAC, FOR SPIT UP, POW",,,Y,,0,,6.25,,,,Baby Foods,11,27.75,55,514,55,0,432,9.3,31,288,550,154,3.83,9.3,1557,308,46,0.514,0.771,5.396,0.308,1.28,41,77,0
4001,400,"Fat, beef tallow","FAT,BEEF TALLOW",,,Y,,0,,0,,9.02,,Fats and Oils,0,100,0,902,0,0,0,0,0,0,0,0,0,0.2,0,28,0,0,0,0,0,0,0,0,109
4002,400,Lard,LARD,,,Y,,0,,0,,9.02,,Fats and Oils,0,100,0,902,0,0,0,0,0,0,0,0,0.11,0.2,0,102,0,0,0,0,0,0,0,0,95
4011,400,"Salad dressing, KRAFT Mayo Light Mayonnaise","SALAD DRSNG,KRAFT MAYO LT MAYO",,"Kraft Foods, Inc.",,,0,,,,,,Fats and Oils,0.6,32.9,8.5,334,4.2,0.1,6,0.2,,58,52,633,,,185,,0.3,,,,,,155.1,,35
4013,400,"Salad dressing, KRAFT Mayo Fat Free Mayonnaise Dressing","SALAD DRSNG,KRAFT MAYO FAT FREE MAYO DRSNG",,"Kraft Foods, Inc.",Y,,0,,,,,,Fats and Oils,0.2,0,15.8,64,6.8,2,6,0.1,2,27,50,750,0.07,2.6,50,0,0,0.008,0,0.01,0.002,0,0,0,0
4014,400,"Salad dressing, KRAFT MIRACLE WHIP FREE Nonfat Dressing","SALAD DRSNG,KRAFT MIRACLE WHIP FREE NONFAT DRSNG",,"Kraft Foods, Inc.",,,0,,,,,,Fats and Oils,0.2,2.7,15.5,84,10.3,1.9,6,0.12,,5,49,788,,,69,,0,,,,,,,,9
4015,400,"Salad dressing, russian dressing","SALAD DRSNG,RUSSIAN DRSNG",,,Y,,0,,6.25,3.4,8.84,3.8,Fats and Oils,0.69,26.18,31.9,355,17.68,0.7,13,0.6,10,20,173,1133,0.22,1.6,577,0,6,0.029,0.046,0.594,0.097,0,53.7,0,0
4016,400,"Salad dressing, sesame seed dressing, regular","SALAD DRSNG,SESAME SD DRSNG,REG",,,Y,,0,,6.25,4.03,8.84,3.8,Fats and Oils,3.1,45.2,8.6,443,8.32,1,19,0.6,0,37,157,1000,0.1,1.6,36,0,0,0,0,0,0,0,56,0,0
4017,400,"Salad dressing, thousand island, commercial, regular","SALAD DRSNG,1000 ISLAND,COMM,REG",,,Y,,0,,,,,,Fats and Oils,1.09,35.06,14.64,379,15.18,0.8,17,1.18,8,27,107,962,0.26,1.5,213,0,0,1.445,0.058,0.418,0,0,69.1,0,26
4018,400,"Salad dressing, mayonnaise type, regular, with salt","SALAD DRSNG,MAYO TYPE,REG,W/SALT",,,Y,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.65,21.6,14.78,250,10.02,0,5,0.12,2,13,36,653,0.07,0.4,29,0,0,0.01,0.03,0.004,0.009,0.04,42.2,0,19
4020,400,"Salad dressing, french dressing, reduced fat","SALAD DRSNG,FRENCH DRSNG,RED FAT",,,Y,,0,,6.25,2.44,8.84,3.8,Fats and Oils,0.58,11.52,31.22,222,16.86,1.5,11,0.73,8,16,107,838,0.2,1.6,541,0,4.8,0.024,0.052,0.467,0.055,0,17.8,0,0
4021,400,"Salad dressing, italian dressing, commercial, reduced fat","SALAD DRSNG,ITALIAN DRSNG,COMM,RED FAT",,,Y,,0,,,,,,Fats and Oils,0.39,6.68,9.99,102,9.16,0,15,0.25,4,12,90,891,0.06,1.6,12,0,0,0.012,0.008,0.094,0.055,0,12.5,0,0
4022,400,"Salad dressing, russian dressing, low calorie","SALAD DRSNG,RUSSIAN DRSNG,LO CAL",,,Y,,0,,6.25,2.44,8.84,3.8,Fats and Oils,0.5,4,27.6,141,21.87,0.3,19,0.6,0,37,157,868,0.1,1.6,33,0,6,0.007,0.013,0.002,0.009,0.12,6.7,0,6
4023,400,"Salad dressing, thousand island dressing, reduced fat","SALAD DRSNG,1000 ISLAND DRSNG,RED FAT",,,Y,,0,,6.25,3.9,8.84,3.8,Fats and Oils,0.83,11.32,24.06,195,17.31,1.2,27,0.9,7,14,202,955,0.19,0,311,0,1.5,0.049,0.043,0.437,0,0,27.6,0,11
4025,400,"Salad dressing, mayonnaise, regular","SALAD DRSNG,MAYO,REG",,,Y,,0,,,,,,Fats and Oils,0.96,74.85,0.57,680,0.57,0,8,0.21,1,21,20,635,0.15,2.3,65,7,0,0.01,0.019,0,0.008,0.12,163,0,42
4026,400,"Salad dressing, mayonnaise, soybean and safflower oil, with salt","SALAD DRSNG,MAYO,SOYBN&SAFFLOWER OIL,W/SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,1.1,79.4,2.7,717,0.48,0,18,0.5,1,28,34,568,0.12,1.6,280,,0,0,0,0.005,0.577,0.26,24.7,0,59
4027,400,"Salad dressing, mayonnaise, imitation, soybean","SALAD DRSNG,MAYO,IMITN,SOYBN",,,Y,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.3,19.2,16,232,6,0,0,0,0,0,10,497,0.11,1.6,0,0,0,0,0,0,0,0,42.2,0,24
4028,400,"Salad dressing, mayonnaise, imitation, milk cream","SALAD DRSNG,MAYO,IMITN,MILK CRM",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,2.1,5.1,11.1,97,,0,72,0.5,7,57,97,504,0.25,1.6,13,,0.3,0.024,0.097,0.054,0.021,0.23,,0,43
4029,400,"Salad dressing, mayonnaise, imitation, soybean without cholesterol","SALAD DRSNG,MAYO,IMITN,SOYBN WO/CHOL",,,Y,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.1,47.7,15.8,482,6,0,0,0.01,0,0,10,353,0.11,1.6,0,0,0,0,0,0,0,0,42.2,0,0
4030,400,"Sandwich spread, with chopped pickle, regular, unspecified oils","SANDWICH SPRD,W/CHOPD PICKLE,REG,UNSPEC OILS",,,Y,,0,,6.25,3.92,8.84,3.8,Fats and Oils,0.9,34,22.4,389,15.18,0.4,14,0.2,2,26,35,1000,0.81,1.6,220,4,0,0.01,0.02,0.01,0.02,0.21,24.7,0,76
4031,400,"Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)","SHORTENING,HOUSEHOLD,PARTIALLY HYDROG SOYBN -COTTONSEED",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4034,400,"Oil, soybean, salad or cooking, (partially hydrogenated)","OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED)",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4037,400,"Oil, rice bran","OIL,RICE BRAN",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.07,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4038,400,"Oil, wheat germ","OIL,WHEAT GERM",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4042,400,"Oil, peanut, salad or cooking","OIL,PNUT,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.03,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.7,0,0
4044,400,"Oil, soybean, salad or cooking","OIL,SOYBN,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.05,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,183.9,0,0
4047,400,"Oil, coconut","OIL,COCNT",,,Y,,0,,,,,,Fats and Oils,0,99.06,0,892,0,0,1,0.05,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0.6,0,0
4053,400,"Oil, olive, salad or cooking","OIL,OLIVE,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.56,0,0,1,2,0,0,0,0,0,0,0,0,0,0,60.2,0,0
4055,400,"Oil, palm","OIL,PALM",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.01,0,0,0,0,0,0,0,,0,0,0,0,0,0,8,0,0
4058,400,"Oil, sesame, salad or cooking","OIL,SESAME,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.6,0,0
4060,400,"Oil, sunflower, linoleic (less than 60%)","OIL,SUNFLOWER,LINOLEIC (LESS THAN 60%)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.03,0,0,0,0,0,0,0,,0,0,0,0,0,0,5.4,0,0
4073,400,"Margarine, regular, hard, soybean (hydrogenated)","MARGARINE,REG,HARD,SOYBN (HYDR)",,,,,0,,6.38,4.27,8.84,3.87,Fats and Oils,0.9,80.5,0.9,719,0,0,30,0,3,23,42,943,0,0,3577,,0.2,0.01,0.037,0.023,0.009,0.1,,0,0
4114,400,"Salad dressing, italian dressing, commercial, regular","SALAD DRSNG,ITALIAN DRSNG,COMM,REG",,,Y,,0,,,,,,Fats and Oils,0.41,21.12,12.12,240,10.77,0,13,0.26,5,15,84,993,0.07,2,36,0,0.4,0.02,0,0.131,0.064,0,56,0,0
4120,400,"Salad dressing, french dressing, commercial, regular","SALAD DRSNG,FRENCH DRSNG,COMM,REG",,,Y,,0,,6.25,2.44,8.84,3.8,Fats and Oils,0.77,44.81,15.58,457,15.95,0,24,0.8,5,19,67,836,0.29,0,464,0,3.6,0.019,0.053,0.188,0,0.14,121.4,0,0
4128,400,"Margarine-like, vegetable oil spread, unspecified oils, approximately 37% fat, with salt","VEG OIL SPRD,UNSPEC OILS,APPROX 37% FAT,W/ SALT",,,Y,,0,,,4.27,8.84,3.8,Fats and Oils,0.51,37.77,0.66,339,0,0,6,0.02,1,5,34,589,0.02,0,4322,0,0.1,0.011,0.005,0,0,0.06,74.6,0,0
4133,400,"Salad dressing, french, home recipe","SALAD DRSNG,FRENCH,HOME RECIPE",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.1,70.2,3.4,631,,0,6,0.2,0,3,24,658,0,1.6,514,,0.6,0.01,0.02,0.13,0,0,,0,0
4135,400,"Salad dressing, home recipe, vinegar and oil","SALAD DRSNG,HOME RECIPE,VINEGAR&OIL",,,Y,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0,50.1,2.5,449,2.5,0,0,0,0,0,8,1,0,1.6,0,0,0,0,0,0,0,0,98.8,0,0
4141,400,"Salad dressing, french dressing, commercial, regular, without salt","SALAD DRSNG,FRENCH DRSNG,COMM,REG,WO/ SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.77,44.81,15.58,459,15.95,0,24,0.8,5,19,67,0,0.29,0,464,,0,0.019,0.053,0.188,0,0,121.4,0,0
4142,400,"Salad dressing, french dressing, reduced fat, without salt","SALAD DRSNG,FRENCH DRSNG,RED FAT,WO/ SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.58,13.46,29.28,233,28.45,1.1,11,0.87,8,16,107,30,0.2,1.6,541,,0,0.024,0.052,0.467,0.055,0,4.8,0,0
4143,400,"Salad dressing, italian dressing, commercial, regular, without salt","SALAD DRSNG,ITALIAN DRSNG,COMM,REG,WO/ SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.38,28.37,10.43,292,8.32,0,7,0.63,3,9,48,30,0.13,2,36,,0,0.013,0.021,0,0.06,0,56,0,67
4144,400,"Salad dressing, italian dressing, reduced fat, without salt","SALAD DRSNG,ITALIAN DRSNG,RED FAT,WO/ SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.47,6.38,4.57,76,4.55,0,9,0.65,4,11,85,30,0.19,8,12,,0,0,0.015,0,0.07,0,12.5,0,6
4145,400,"Salad dressing, mayonnaise, soybean oil, without salt","SALAD DRSNG,MAYO,SOYBN OIL,WO/SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,1.1,79.4,2.7,717,,0,18,0.5,,28,34,30,,1.6,280,,0,0,0,0,,,,,59
4146,400,"Salad dressing, french, cottonseed, oil, home recipe","SALAD DRSNG,FRENCH,CTTNSD,OIL,HOME RECIPE",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.1,70.2,3.4,631,,0,6,0.2,,3,24,658,,1.6,0,,0,0.01,0.02,0.13,,,,,0
4367,400,"Salad dressing, french dressing, fat-free","SALAD DRSNG,FRENCH DRSNG,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,0.2,0.27,32.14,132,16.45,2.2,5,0.58,3,0,84,853,0.1,2,75,0,0,0.011,0.026,0.112,0,0,0.1,0,0
4501,400,"Oil, cocoa butter","OIL,COCOA BUTTER",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4502,400,"Oil, cottonseed, salad or cooking","OIL,CTTNSD,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4506,400,"Oil, sunflower, linoleic, (approx. 65%)","OIL,SUNFLOWER,LINOLEIC,(APPROX. 65%)",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,0
4510,400,"Oil, safflower, salad or cooking, linoleic, (over 70%)","OIL,SAFFLOWER,SALAD OR COOKING,LINOLEIC,(OVER 70%)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,7.1,0,0
4511,400,"Oil, safflower, salad or cooking, high oleic (primary safflower oil of commerce)","OIL,SAFFLOWER,SALAD OR COOKING,HI OLEIC",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1,0,0
4513,400,"Vegetable oil, palm kernel","VEGETABLE OIL,PALM KERNEL",,,Y,,0,,0,,8.62,,Fats and Oils,0,100,0,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4514,400,"Oil, poppyseed","OIL,POPPYSEED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4515,400,"Oil, tomatoseed","OIL,TOMATOSEED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4516,400,"Oil, teaseed","OIL,TEASEED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4517,400,"Oil, grapeseed","OIL,GRAPESEED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4518,400,"Oil, corn, industrial and retail, all purpose salad or cooking","OIL,CORN,INDUSTRIAL & RTL,ALLPURP SALAD OR COOKING",,,Y,,0,,,,,,Fats and Oils,0,100,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,0,0
4520,400,"Fat, mutton tallow","FAT,MUTTON TALLOW",,,Y,,0,,0,,9.02,,Fats and Oils,0,100,0,902,0,0,0,0,0,0,0,0,0,0.2,0,28,0,0,0,0,0,0,0,0,102
4528,400,"Oil, walnut","OIL,WALNUT",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0
4529,400,"Oil, almond","OIL,ALMOND",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0
4530,400,"Oil, apricot kernel","OIL,APRICOT KERNEL",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4531,400,"Oil, soybean lecithin","OIL,SOYBN LECITHIN",,,,,0,,0,,7.63,,Fats and Oils,0,100,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183.9,0,0
4532,400,"Oil, hazelnut","OIL,HAZELNUT",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4534,400,"Oil, babassu","OIL,BABASSU",,,,,0,,0,,8.82,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4536,400,"Oil, sheanut","OIL,SHEANUT",,,,,0,,0,,8.62,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4539,400,"Salad dressing, blue or roquefort cheese dressing, commercial, regular","SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,COMM,REG",,,Y,,0,,,,,,Fats and Oils,1.37,51.1,4.77,484,3.48,0.4,37,0.09,8,74,88,642,0.21,1,73,3,0.7,0.01,0.1,0.1,0.037,0.27,85.9,0,31
4541,400,"Oil, cupu assu","OIL,CUPU ASSU",,,,,0,,0,,8.62,,Fats and Oils,0,100,0,884,0,0,0,,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4542,400,"Fat, chicken","FAT,CHICKEN",,,Y,,0,,0,,9.02,,Fats and Oils,0,99.8,0,900,0,0,0,0,0,0,0,0,0,0.2,0,191,0,0,0,0,0,0,0,0,85
4543,400,"Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed","OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED) & CTTNSD",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4544,400,"Shortening, household, lard and vegetable oil","SHORTENING,HOUSEHOLD,LARD&VEG OIL",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.5,0,56
4545,400,"Oil, sunflower, linoleic, (partially hydrogenated)","OIL,SUNFLOWER,LINOLEIC,(PARTIALLY HYDROGENATED)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,5.4,0,0
4546,400,"Shortening bread, soybean (hydrogenated) and cottonseed","SHORTENING BREAD,SOYBN (HYDR)&CTTNSD",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4548,400,"Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)","SHORTENING CAKE MIX,SOYBN (HYDR)&CTTNSD (HYDR)",,,,,0,,0,,8.82,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4549,400,"Shortening industrial, lard and vegetable oil","SHORTENING INDUSTRIAL,LARD&VEG OIL",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,900,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,56
4550,400,"Shortening frying (heavy duty), beef tallow and cottonseed","SHORTENING FRYING (HVY DUTY),BF TALLOW&CTTNSD",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,900,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,100
4551,400,"Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)","SHORTENING CONFECTIONERY,COCNT (HYDR)&OR PALM KERNEL (HYDR)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4554,400,"Shortening industrial, soybean (hydrogenated) and cottonseed","SHORTENING INDUSTRIAL,SOYBN (HYDR)&CTTNSD",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4556,400,"Shortening frying (heavy duty), palm (hydrogenated)","SHORTENING FRYING (HVY DUTY),PALM (HYDR)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4559,400,Shortening household soybean (hydrogenated) and palm,SHORTENING HOUSEHOLD SOYBN (HYDR)&PALM,,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4560,400,"Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)","SHORTENING FRYING HVY DUTY,SOYBN HYDR,LINOLEIC (LESS THAN 1%",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,43,0,0
4570,400,"Shortening, confectionery, fractionated palm","SHORTENING,CONFECTIONERY,FRACTIONATED PALM",,,,,0,,0,,8.62,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4572,400,"Oil, nutmeg butter","OIL,NUTMEG BUTTER",,,,,0,,0,,8.62,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4573,400,"Oil, ucuhuba butter","OIL,UCUHUBA BUTTER",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4574,400,"Fat, duck","FAT,DUCK",,,Y,,0,,0,,8.84,,Fats and Oils,0,99.8,0,882,0,0,0,0,0,0,0,0,0,0.2,0,191,0,0,0,0,0,0,0,0,100
4575,400,"Fat, turkey","FAT,TURKEY",,,Y,,0,,0,,8.84,,Fats and Oils,0,99.8,0,900,0,0,0,0,0,0,0,0,0,0.2,0,191,0,0,0,0,0,0,0,0,102
4576,400,"Fat, goose","FAT,GOOSE",,,,,0,,0,,8.84,,Fats and Oils,0,99.8,0,900,,0,0,0,0,0,0,0,0,0.2,0,,0,0,0,0,0,0,,0,100
4581,400,"Oil, avocado","OIL,AVOCADO",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,
4582,400,"Oil, canola","OIL,CANOLA",low erucic acid rapeseed oil,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71.3,0,0
4583,400,"Oil, mustard","OIL,MUSTARD",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,
4584,400,"Oil, sunflower, high oleic (70% and over)","OIL,SUNFLOWER,HI OLEIC (70% & OVER)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,0
4585,400,"Margarine-like, margarine-butter blend, soybean oil and butter","MARGARINE-LIKE,MARGARINE-BUTTER BLEND,SOYBN OIL & BUTTER",,,Y,,0,,6.25,,,,Fats and Oils,0.31,80.32,0.77,727,0,0,10,0.04,1,10,22,719,0.03,0.2,3571,1,0.1,0.009,0.023,0.022,0.009,0,86.5,0,12
4586,400,"Shortening, special purpose for cakes and frostings, soybean (hydrogenated)","SHORTENING,SPL PURPOSE FOR CAKES&FROSTINGS,SOYBN (HYDR)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,43,0,0
4587,400,"Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed","SHORTENING,SPL PURPOSE FOR BAKING,SOYBN (HYDR) PALM&CTTNSD",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,43,0,0
4588,400,"Oil, oat","OIL,OAT",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4589,400,"Fish oil, cod liver","FISH OIL,COD LIVER",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,100000,10000,0,,0,0,0,0,,0,570
4590,400,"Fish oil, herring","FISH OIL,HERRING",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,766
4591,400,"Fish oil, menhaden","FISH OIL,MENHADEN",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,521
4592,400,"Fish oil, menhaden, fully hydrogenated","FISH OIL,MENHADEN,FULLY HYDR",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,500
4593,400,"Fish oil, salmon","FISH OIL,SALMON",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,485
4594,400,"Fish oil, sardine","FISH OIL,SARDINE",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0,0,0,,0,710
4595,400,"Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)","SHORTENING,MULTIPURPOSE,SOYBN (HYDR)&PALM (HYDR)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4600,400,"Margarine-like, vegetable oil-butter spread, tub, with salt","MARGARINE-LIKE,VEG OIL-BUTTER SPRD,TUB,W/ SALT",,,Y,,0,,,,,,Fats and Oils,1,40,1,362,0,0,24,0.04,2,20,36,786,0.01,0.5,3571,1,0.1,0.01,0.03,0.02,0.01,0.09,46.1,0,0
4601,400,"Butter, light, stick, with salt","BUTTER,LT,STK,W/SALT",,,Y,,0,,,,,,Fats and Oils,3.3,55.1,0,499,0,0,48,1.09,5,34,71,450,0.26,1,1698,0,0,0.01,0.07,0.02,0.01,0.13,4.8,0,106
4602,400,"Butter, light, stick, without salt","BUTTER,LT,STK,WO/SALT",,,Y,,0,,,,,,Fats and Oils,3.3,55.1,0,499,0,0,48,1.09,5,34,71,36,0.26,1,1698,0,0,0.01,0.07,0.02,0.01,0.13,4.8,0,106
4606,400,"Meat drippings (lard, beef tallow, mutton tallow)","MEAT DRIPPINGS (LARD,BF TALLOW,MUTTON TALLOW)",,,Y,,0,,,,,,Fats and Oils,0,98.59,0,889,0,0,0,0,0,0,0,545,0,0,0,100,0,0,0,0,0,0,0,0,101
4609,400,"Animal fat, bacon grease","ANIMAL FAT,BACON GREASE",,,Y,,0,,,,,,Fats and Oils,0,99.5,0,897,0,0,0,0,0,0,0,150,0.11,0,0,101,0,0,0,0,0,0,0,0,95
4610,400,"Margarine, regular, 80% fat, composite, stick, with salt","MARGARINE,REG,80% FAT,COMP,STK,W/ SALT",,,Y,,0,,,4.27,8.84,3.87,Fats and Oils,0.16,80.71,0.7,717,0,0,3,0.06,3,5,18,751,0,0,3571,0,0.2,0.01,0.037,0.023,0.009,0.1,93,0,0
4611,400,"Margarine, regular, 80% fat, composite, tub, with salt","MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT",,,Y,,0,,6.25,4.27,8.84,3.87,Fats and Oils,0.22,80.17,0.75,713,0,0,3,0,1,5,17,657,0,0,3571,0,0.1,0,0,0,0,0.08,91.7,0,0
4612,400,"Margarine-like, vegetable oil spread, 60% fat, stick, with salt","MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STK,W/ SALT",,,Y,,0,,6.25,3.87,8.84,4.27,Fats and Oils,0.12,60.39,0.69,537,0,0,21,0,2,16,30,785,0,0,3571,0,0.1,0.007,0.026,0.016,0.006,0.07,101.3,0,0
4613,400,"Margarine-like, vegetable oil spread, 60% fat, tub, with salt","MARGARINE-LIKE,VEG OIL SPRD,60% FAT,TUB,W/ SALT",,,Y,,0,,6.25,3.87,8.84,4.27,Fats and Oils,0.17,59.81,0.86,533,0,0,21,0,2,16,30,615,0,0,3571,0,0.1,0.007,0.026,0.016,3.75,10.8,101.3,0,1
4614,400,"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt","MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,W/ SALT",,,Y,,0,,6.25,3.87,8.84,4.27,Fats and Oils,0.6,59.17,0,526,0,0,21,0,2,16,30,700,0,0,3571,0,0.1,0.007,0.026,0.016,0.006,0.07,101.3,0,1
4615,400,"Shortening, vegetable, household, composite","SHORTENING,VEG,HOUSEHOLD,COMP",,,Y,,0,,6.25,,8.84,,Fats and Oils,0,99.97,0,884,0,0,1,0.07,0,0,0,4,0,0,0,0,0,0.02,0,0,0.001,0,53.2,0,0
4617,400,"Margarine, regular, 80% fat, composite, stick, without salt","MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT",,,Y,,0,,,,,,Fats and Oils,0.16,80.71,0.7,717,0,0,3,0.06,3,5,18,2,0,0,3577,0,0.2,0.01,0.037,0.023,0.009,0.1,93,0,0
4618,400,"Margarine, regular, 80% fat, composite, tub, without salt","MARGARINE,REG,80% FAT,COMP,TUB,WO/ SALT",,,Y,,0,,,,,,Fats and Oils,0.22,80.17,0.75,713,0,0,3,0,1,5,17,28,0,0,3577,0,0.1,0,0,0,0,0.08,91.7,0,0
4620,400,"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt","VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT",,,Y,,0,,6.25,3.87,8.84,4.27,Fats and Oils,0.17,59.81,0.86,533,0,0,21,0,2,16,30,2,0,0,3577,0,0.1,0.007,0.026,0.016,3.75,10.8,101.3,0,1
4624,400,"Margarine-like, vegetable oil spread, fat free, liquid, with salt","MARGARINE-LIKE,VEG OIL SPRD,FAT FREE,LIQ,W/ SALT",,,Y,,0,,,4.27,8.84,3.87,Fats and Oils,1.5,3,2.5,43,0,0,38,0.03,4,30,50,833,0.14,0,3571,0,0.3,0.01,0.04,0.03,0.01,0.11,0.3,0,1
4626,400,"Margarine-like spread with yogurt, 70% fat, stick, with salt","MARGARINE-LIKE SPRD W/ YOGURT,70% FAT,STK,W/ SALT",,,Y,,0,,,,,,Fats and Oils,0.3,70,0.5,630,0,0,20,0.01,2,16,25,590,0.1,0,3577,0,0.1,0.005,0.02,0.01,0.05,0.06,93,0,0
4627,400,"Margarine-like spread with yogurt, approximately 40% fat, tub, with salt","MARGARINE-LIKE SPRD W/ YOGURT,APPROX 40% FAT,TUB,W/ SALT",,,Y,,0,,,,,,Fats and Oils,2,35,2,330,0,0,50,0.02,5,39,64,630,0.24,1,3577,0,0.2,0.01,0.06,0.03,0.01,0.15,93,0,0
4628,400,"Margarine, 80% fat, stick, includes regular and hydrogenated corn and soybean oils","MARGARINE,80% FAT,STK,INCL REG & HYDR CORN & SOYBN OILS",,,,,0,,,4.27,8.84,3.87,Fats and Oils,0.16,80.71,0.7,717,,0,3,0.12,1,5,18,654,0.11,,,,,0.012,0,0.003,0,,75,0,0
4629,400,"Margarine, margarine-type vegetable oil spread, 70% fat, soybean and partially hydrogenated soybean, stick","MARGARINE, VEG OIL SPRD,70% FAT,SOYBN & PART HYDR SOYBN,STK",,,,,0,,6.38,4.27,8.84,3.87,Fats and Oils,0.26,70.22,1.53,628,,,7,0.12,2,10,46,700,0.06,,3571,,,0.052,0.025,,0.003,,,0,0
4630,400,"Margarine Spread, approximately 48% fat, tub","MARGARINE SPRD,APPROX 48% FAT,TUB",,,,,0,,6.38,4.27,8.84,3.87,Fats and Oils,0.2,47.53,0.86,424,,0,4,0.21,1,4,36,646,0.06,0,,,0,0,0.019,0,0.001,,101.3,0,1
4631,400,"Margarine-like, vegetable oil spread, fat-free, tub","MARGARINE-LIKE,VEG OIL SPRD,FAT-FREE,TUB",,,Y,,0,,,4.27,8.84,3.87,Fats and Oils,0.1,3.04,4.34,44,0,0,8,0.08,1,2,36,580,0.07,0,3307,0,0,1.011,0,0.883,0.001,0,0.1,0,0
4633,400,"Margarine-like, vegetable oil spread, 20% fat, with salt","MARGARINE-LIKE,VEG OIL SPRD,20% FAT,W/ SALT",,,Y,,0,,0,,9.02,,Fats and Oils,0,19.5,0.4,175,0,0,0,0,1,14,25,733,0,0,3577,0,0,0,0,0,0,0,70.9,0,0
4634,400,"Margarine-like, vegetable oil spread, 20% fat, without salt","MARGARINE-LIKE,VEG OIL SPRD,20% FAT,WO/ SALT",,,Y,,0,,,,,,Fats and Oils,0,19.5,0.4,175,0,0,0,0,1,14,25,0,0,0,3577,0,0,0,0,0,0,0,93,0,0
4635,400,"Salad dressing, thousand island dressing, fat-free","SALAD DRSNG,1000 ISLAND DRSNG,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,0.55,1.45,29.27,132,16.83,3.3,11,0.28,4,1,122,788,0.09,2,11,0,0,0.236,0.049,0.261,0,0,3.7,0,5
4636,400,"Salad dressing, italian dressing, fat-free","SALAD DRSNG,ITALIAN DRSNG,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,0.97,0.87,8.75,47,8.85,0.6,30,0.4,5,109,102,1129,0.36,2,77,0,0.4,0.031,0.053,0.135,0,0.31,1.6,0,2
4638,400,"Salad dressing, ranch dressing, fat-free","SALAD DRSNG,RANCH DRSNG,FAT-FREE",,,,,0,,,4.36,8.84,3.8,Fats and Oils,0.25,1.92,26.51,119,5.35,0.1,50,1.05,8,113,111,897,0.4,0.8,3,,0,0.03,0.025,0.007,0.024,0,2.3,0,7
4639,400,"Salad dressing, ranch dressing, regular","SALAD DRSNG,RANCH DRSNG,REG",,,Y,,0,,,,,,Fats and Oils,1.32,44.54,5.9,430,4.69,0,28,0.3,5,186,64,901,0.17,3.5,69,3,0,0.015,0.087,0.054,0.03,0.17,134.3,0,26
4640,400,"Salad dressing, ranch dressing, reduced fat","SALAD DRSNG,RANCH DRSNG,RED FAT",,,,,0,,,4.36,8.84,3.8,Fats and Oils,1.25,12.42,21.33,196,3.77,1.1,40,0.69,6,193,132,1120,0.62,2.9,67,0,0.6,0.022,0.027,0.007,0.029,0,34.8,0,16
4641,400,"Salad dressing, mayonnaise, light","SALAD DRSNG,MAYO,LT",lite mayonnaise,,Y,,0,,,,,,Fats and Oils,0.37,22.22,9.23,238,3.56,0,6,0.14,2,15,31,827,0.07,2.6,70,0,0,0.008,0,0.01,0.002,0,53.7,0,16
4642,400,"Oil, industrial, mid-oleic, sunflower","OIL,INDUSTRIAL,MID-OLEIC,SUNFLOWER",NuSun,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.03,0,0,0,0,0,0,0,,0,0,0,0,0,0,5.4,0,0
4643,400,"Oil, industrial, canola with antifoaming agent, principal uses salads, woks and light frying","OIL,INDUSTRIAL,CANOLA W/ ANTIFOAMING AGENT",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,122,0,0
4644,400,"Oil, industrial, canola for salads, woks and light frying","OIL,INDUSTRIAL,CANOLA FOR SALADS,WOKS & LT FRYING",,,,,0,,,,,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,71.3,0,0
4645,400,"Oil, industrial, canola (partially hydrogenated) oil for deep fat frying","OIL,INDUS,CANOLA (PART HYDROG) OIL FOR DEEP FAT FRYING",,,,,0,,,,,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,71.3,0,0
4646,400,"Oil, industrial, coconut, principal uses candy coatings, oil sprays, roasting nuts","OIL,INDUSTRIAL,COCNT",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.04,0,0,0,0,0,0,0,,0,0,0,0,0,0,0.5,0,0
4648,400,"Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables","OIL,INDUSTRIAL,SOY (PART HYDR),FOR POPCORN & FLAVORING VEG",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4649,400,"Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening","SHORTENING,INDUS,SOY (PART HYDROG),POURABLE LIQ FRY",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4650,400,"Oil, industrial, soy, refined, for woks and light frying","OIL,INDUSTRIAL,SOY,REFINED,FOR WOKS & LT FRYING",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.02,0,0,0,0,0,0,0,,0,0,0,0,0,0,183.9,0,0
4651,400,"Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor","OIL,INDUSTRIAL,SOY (PART HYDR),FOR NON-DAIRY BUTTER FLAVOR",,,Y,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4652,400,"Oil, industrial, soy ( partially hydrogenated), all purpose","OIL,INDUSTRIAL,SOY ( PART HYDROGENATED),ALLPURP",,,Y,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4653,400,"Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry","OIL,INDUSTRIAL,SOY (PART HYDR ) & SOY,POURABLE FRY",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4654,400,"Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening","OIL,INDUS,SOY (PART HYDROG) & CTTNSD,TORTILLA SHORTENING",,,Y,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4655,400,"Margarine-like shortening, industrial, soy (partially hydrogenated), cottonseed, and soy, principal use flaky pastries","MARGARINE-LIKE SHORTENING,INDUS,SOY(PART HYDR),CTTNSD,& SOY",,,,,0,,6.25,,8.84,,Fats and Oils,0,71,0,628,0,0,0,0,0,0,0,864,0,0,0,,0,0,0,0,0,0,43,0,0
4656,400,"Oil, industrial, palm kernel, confection fat, uses similar to high quality cocoa butter","OIL,INDUSTRIAL,PALM KERNEL,CONFECTION FAT",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.29,0,0,2,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4657,400,"Oil, industrial, palm kernel (hydrogenated), confection fat, uses similar to 95 degree hard butter","OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.15,0,0,1,6,0.08,0,0,,0,0,0,0,0,0,24.7,0,0
4658,400,"Oil, industrial, palm kernel (hydrogenated), confection fat, intermediate grade product","OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.15,0,0,1,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4659,400,"Oil, industrial, coconut, confection fat, typical basis for ice cream coatings","OIL,INDUSTRIAL,COCNT,CONFECTION FAT,ICE CRM COATINGS",,,Y,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,2,0.15,0,0,2,5,0.04,0,0,0,0,0,0,0,0,0,0.5,0,0
4660,400,"Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy","OIL,INDUSTRIAL,PALM KERNEL (HYDROG) FOR WHIPPED TOPPINGS",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.15,0,0,2,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4661,400,"Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners","OIL,INDUSTRIAL,COCNT (HYDROGENATED),FOR TOPPINGS & WHITENERS",,,,,0,,6.25,,8.84,,Fats and Oils,0,99.5,0,880,0,0,1,0.15,0,0,2,7,0.04,0,0,,0,0,0,0,0,0,0.5,0,0
4662,400,"Oil, industrial, palm and palm kernel, filling fat (non-hydrogenated)","OIL,INDUSTRIAL,PALM & PALM KERNEL,FILLING FAT (NON-HYDROG)",,,,,0,,6.25,,8.84,,Fats and Oils,0,99.5,0,880,0,0,1,0.15,0,0,4,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4663,400,"Oil, industrial, palm kernel (hydrogenated), filling fat","OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),FILLING FAT",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,2,0.15,0,0,1,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4664,400,"Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings","OIL,INDUSTRIAL,SOY (PARTHYDR ),PALM, ICINGS & FILLINGS",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4665,400,"Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries","MARGARINE,INDUS,NON-DAIRY,CTTNSD,SOY OIL (PART HYDR )",,,,,0,,,,,,Fats and Oils,1.9,80.2,0,714,0,0,66,0,6,51,94,879,0,0,4286,0,0.4,0.022,0.081,0.05,0.019,0.21,106.2,0,0
4666,400,"Shortening, industrial, soy (partially hydrogenated ) and corn for frying","SHORTENING,INDUSTRIAL,SOY (PARTIALLY HYDR )&CORN FOR FRYING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4667,400,"Shortening, industrial, soy (partially hydrogenated ) for baking and confections","SHORTENING,INDUS,SOY (PART HYDR ) FOR BAKING & CONFECTIONS",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,43,0,0
4668,400,"Margarine, industrial, soy and partially hydrogenated soy oil, use for baking, sauces and candy","MARGARINE,INDUS,SOY & PART HYDR SOY OIL,BAKING,SAUCES,CANDY",,,,,0,,6.38,,,,Fats and Oils,0.18,80,0.71,714,0,0,3,0.12,1,5,18,886,0.11,,3571,,,0.012,0,0.003,0,0.21,75,0,0
4669,400,"USDA Commodity Food, oil, vegetable, soybean, refined","USDA CMDTY FD,OIL,VEG,SOYBN,REFINED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.02,0,0,0,0,0,0,0,,0,0,0,0,0,0,183.9,0,0
4670,400,"USDA Commodity Food, oil, vegetable, low saturated fat","USDA CMDTY FD,OIL,VEG,LO SATURATED FAT",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.02,0,0,0,0,0,0,0,,0,0,0,0,0,0,197.6,0,0
4673,400,"Margarine-like spread, SMART BALANCE Regular Buttery Spread with flax oil","MARGARINE-LIKE SPRD,SMART BALANCE REG BUTTERY SPRD",,GFA Brands,,,0,,,,,,Fats and Oils,0.14,64.63,0.14,583,0,0,,,,4,28,646,,,3819,,,,,,,,55.5,,0
4674,400,"Margarine-like spread, SMART BALANCE Light Buttery Spread","MARGARINE-LIKE SPRD,SMART BALANCE LT BUTTERY SPRD",,GFA Brands,,,0,,6.38,,,,Fats and Oils,0.02,36.41,1.98,337,,,3,0,1,1,32,580,0,,5161,,,0,0,0,0,,46.8,,
4675,400,"Margarine-like spread, SMART BEAT Super Light without saturated fat","MARGARINE-LIKE SPRD,SMART BEAT SUPER LT WO/ SATURATED FAT",,GFA Brands,,,0,,6.38,,,,Fats and Oils,0,17.1,0,158,0,0,,,,0,12,755,,,4489,,,,,,,,12.3,,0
4676,400,"Margarine-like spread, SMART BEAT Smart Squeeze","MARGARINE-LIKE SPRD,SMART BEAT SMART SQUEEZE",,GFA Brands,,,0,,6.38,,,,Fats and Oils,0,2.1,7.1,47,1,0,,,,0,26,829,,,5772,,,,,,,,4.2,,0
4677,400,"Margarine-like spread, SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)","MARGARINE-LIKE SPRD,SMART BALANCE OMEGA PLUS SPRD",,GFA Brands,,,0,,6.38,,,,Fats and Oils,0.13,70.95,0.16,605,0,0,,,,23,71,729,,,5407,,,,,,,,52.5,,23
4678,400,"Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)","OIL,VEG,NATREON CANOLA,HI STABILITY,NON TRANS,HI OLEIC (70%)",trans free high stability low saturated fat non-hydrogenated canola oil,"Dow AgroSciences, LLC",,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,,,,,,0,,,0,0,0,0,0,0,,,,,0
4679,400,"Oil, PAM cooking spray, original","OIL,PAM COOKING SPRAY,ORIGINAL",,"ConAgra, Inc.",Y,,0,,6.25,,,,Fats and Oils,0.26,78.69,20.69,792,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0
4683,400,"Margarine, margarine-like vegetable oil spread, 67-70% fat, tub","MARGARINE,MARGARINE-LIKE VEG OIL SPRD,67-70% FAT,TUB",,,,,0,,,4.27,8.84,3.87,Fats and Oils,0.07,68.29,0.59,606,,,,,,,,536,,,3571,,,,,,,,,,
4684,400,"Margarine, 80% fat, tub, CANOLA HARVEST Soft Spread (canola, palm and palm kernel oils)","MARGARINE,80% FAT,TUB,CANOLA HARVEST SOFT SPRD",,richardson,,,0,,,,,,Fats and Oils,0.41,80.32,1.39,730,,,,,,,,714,,,,,,,,,,,,,
4685,400,"Oil, cooking and salad, ENOVA, 80% diglycerides","OIL,COOKING & SALAD,ENOVA,80% DIGLYCERIDES",,ADM KAO LLC,,,0,,,,8.84,,Fats and Oils,0,100,0,884,,,,,,,,0,,,,,,,,,,,,,
4686,400,"Salad dressing, honey mustard dressing, reduced calorie","SALAD DRSNG,HONEY MUSTARD DRSNG,RED CAL",,,Y,,0,,6.25,,,,Fats and Oils,0.98,10,28.26,207,18.33,0.8,67,0.41,12,28,55,701,0.17,6.8,14,0,0.4,0.07,0.013,0.118,0.02,0,13.3,0,0
4687,400,"Margarine-like spread, BENECOL Light Spread","MARGARINE-LIKE SPRD,BENECOL LT SPRD",,"McNeil Nutritionals, LLC",,,0,,,,,,Fats and Oils,0,38.71,5.71,357,,,4,0,1,4,4,670,0,,4567,,,0.012,0,0,0,,56.5,,
4688,400,"Salad dressing, spray-style dressing, assorted flavors","SALAD DRSNG,SPRAY-STYLE DRSNG,ASSORTED FLAVORS",,,,,0,,,,,,Fats and Oils,0.16,10.75,16.6,165,14.29,0.3,6,0.18,,,,1102,,,347,,0.7,,,,,,,,0
4689,400,"Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light","SALAD DRSNG,MAYO,LT,SMART BALANCE,OMEGA PLUS LT",,Smart Balance Foods,,,0,,,,,,Fats and Oils,1.53,34.18,9.39,333,5.38,0.2,13,0.31,2,27,63,848,0.2,4.4,0,,0,0.015,0.03,0.028,0.015,0.17,65.8,,33
4690,400,"Margarine-like, vegetable oil spread, approximately 37% fat, unspecified oils, with salt, with added vitamin D","VEG OIL SPRD,37% FAT,UNSPEC OILS,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,,4.27,8.84,3.8,Fats and Oils,0.51,37.77,0.66,339,0,0,6,0.02,1,5,34,589,0.02,0,4322,429,0.1,0.011,0.005,0,0,0.06,74.6,0,0
4691,400,"Margarine, regular, 80% fat, composite, stick, with salt, with added vitamin D","MARGARINE,REG,80% FAT,COMP,STK,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.84,3.8,Fats and Oils,0.16,80.71,0.7,717,0,0,3,0.06,3,5,18,751,0,0,3577,429,0.2,0.01,0.037,0.023,0.009,0.1,93,0,0
4692,400,"Margarine, regular, 80% fat, composite, tub, with salt, with added vitamin D","MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.84,3.8,Fats and Oils,0.22,80.17,0.75,713,0,0,3,0,1,5,17,657,0,0,3577,429,0.1,0,0,0,0,0.08,91.7,0,0
4693,400,"Margarine-like, vegetable oil spread, 60% fat, stick, with salt, with added vitamin D","VEG OIL SPRD,60% FAT,STK,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.93,4.27,8.84,3.8,Fats and Oils,0.12,60.39,0.69,537,0,0,21,0,2,16,30,785,0,0,3577,429,0.1,0.007,0.026,0.016,0.006,0.07,101.3,0,0
4694,400,"Margarine-like, vegetable oil spread, 60% fat, tub, with salt, with added vitamin D","VEG OIL SPRD,60% FAT,TUB,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.93,4.27,8.84,3.84,Fats and Oils,0.17,59.81,0.86,533,0,0,21,0,2,16,30,785,0,0,3577,429,0.1,0.007,0.026,0.016,3.75,10.8,101.3,0,1
4695,400,"Margarine-like vegetable-oil spread, stick/tub/bottle, 60% fat, with added vitamin D","VEG-OIL SPRD,STICK/TUB/BOTTLE,60% FAT,W/ ADDED VITAMIN D",,,Y,,0,,,,,,Fats and Oils,0.6,59.17,0,535,0,0,21,0,2,16,30,785,0,0,3577,429,0.1,0.007,0.026,0.016,0.006,0.07,101.3,0,1
4696,400,"Margarine, regular, 80% fat, composite, stick, without salt, with added vitamin D","MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.84,3.8,Fats and Oils,0.16,80.71,0.7,717,0,0,3,0.06,3,5,18,2,0,0,3577,429,0.2,0.01,0.037,0.023,0.009,0.1,93,0,0
4697,400,"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt, with added vitamin D","VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT,W/VIT D",,,Y,,0,,6.25,,,,Fats and Oils,0.17,59.81,0.86,542,0,0,21,0,2,16,30,2,0,0,3577,429,0.1,0.007,0.026,0.016,3.75,10.8,101.3,0,1
4698,400,"Oil, industrial, canola, high oleic","OIL,INDUSTRIAL,CANOLA,HI OLEIC",,,,,0,,6.25,,,,Fats and Oils,0,100,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71.3,0,0
4699,400,"Oil, industrial, soy, low linolenic","OIL,INDUSTRIAL,SOY,LO LINOLENIC",,,,,0,,,,,,Fats and Oils,0,100,0,900,0,0,0,0.05,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,183.9,0,0
4700,400,"Oil, industrial, soy, ultra low linolenic","OIL,INDUSTRIAL,SOY,ULTRA LO LINOLENIC",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.05,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,183.9,0,0
4701,400,"Oil, industrial, soy, fully hydrogenated","OIL,INDUSTRIAL,SOY,FULLY HYDR",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.05,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,183.9,0,0
4702,400,"Oil, industrial, cottonseed, fully hydrogenated","OIL,INDUSTRIAL,CTTNSD,FULLY HYDR",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4703,400,"Salad dressing, honey mustard, regular","SALAD DRSNG,HONEY MUSTARD,REG",,,Y,,0,,,,,,Fats and Oils,0.87,40.83,23.33,464,15.84,0.4,12,0.29,5,22,20,512,0.14,5,70,6,0.2,0.039,0.023,0.061,0.017,0.05,70,0,29
4704,400,"Salad dressing, poppyseed, creamy","SALAD DRSNG,POPPYSEED,CREAMY",,,Y,,0,,,,,,Fats and Oils,0.92,33.33,23.73,399,23.39,0.3,59,0.25,9,49,61,933,0.25,1.2,180,4,0.3,0.024,0.058,0.047,0.022,0.09,50.2,0,15
4705,400,"Salad dressing, caesar, fat-free","SALAD DRSNG,CAESAR,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,1.47,0.23,30.73,131,8.82,0.2,33,0.29,4,30,48,1265,0.3,2.2,4,0,0.1,0.031,0.009,0.029,0.04,0.04,0,0,1
4706,400,"Dressing, honey mustard, fat-free","DRESSING,HONEY MUSTARD,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,1.07,1.47,38.43,169,17.75,1.2,24,0.36,13,37,69,1004,0.29,6.2,18,0,2.1,0.043,0.021,0.151,0.053,0.02,0.3,0,1
4707,400,"Oil, flaxseed, contains added sliced flaxseed","OIL,FLAXSEED,CONTAINS ADDED SLICED FLAXSEED",,,,,0,,5.3,,8.84,,Fats and Oils,0.37,99.01,0.39,878,,,9,0.34,15,27,31,6,0.31,,,,,,,,,,3.3,,0
4708,400,"Mayonnaise, reduced fat, with olive oil","MAYONNAISE,RED FAT,W/ OLIVE OIL",,,Y,,0,,6.25,,,,Fats and Oils,0.37,40,0,361,0,0,0,0,2,15,31,800,0.07,2.3,70,0,0,0.008,0,0.01,0.002,0.12,53.7,0,33
4709,400,"Salad dressing, mayonnaise-type, light","SALAD DRSNG,MAYONNAISE-TYPE,LT",,,Y,,0,,6.25,,,,Fats and Oils,0.65,10,16.4,158,6.67,0,5,0.12,2,13,36,833,0.07,0.4,13,0,0,0.01,0.03,0.004,0.009,0.04,19.5,0,0
5000,500,"Chicken, broiler, rotisserie, BBQ, breast meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,BREAST MEAT ONLY",,,Y,"Bone and connective tissue 11%, skin and separable fat 11%",22,,,,,,Poultry Products,28.04,3.57,0,144,0,0,13,0.46,25,246,284,328,0.87,23.1,17,0,0,0.081,0.131,9.634,0.314,0.27,0,0,86
5001,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, raw","CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RAW",,,,Bone,31,Gallus gallus,6.25,4.27,9.02,3.87,Poultry Products,18.33,14.83,0.13,213,,0,11,1.31,20,149,189,70,1.48,11.8,771,,2.6,0.061,0.186,6.639,0.34,1.11,,0,90
5002,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, batter","CHICKEN,BROILER OR FRYER,MEAT&SKN&GIBLETS&NECK,FRIED,BATTER",,,,Bone,21,,6.25,4.27,9.02,3.87,Poultry Products,22.84,17.53,9.03,291,,,21,1.79,21,158,190,284,1.91,20.3,603,,0.4,0.113,0.248,7.083,0.32,0.83,,9,103
5003,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,FRIED,FLR",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,28.57,15.27,3.27,272,,,17,1.99,25,194,237,86,2.36,16.6,826,,0.5,0.088,0.278,8.93,0.42,1.11,,2,112
5004,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, roasted","CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RSTD",,,Y,Bone,31,,6.25,4.27,9.02,3.87,Poultry Products,26.78,13.27,0.06,234,0,0,15,1.66,23,182,212,79,2.16,15.9,636,1,0.5,0.063,0.224,7.908,0.38,0.94,2.4,0,107
5005,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, stewed","CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,STWD",,,,Bone,33,,6.25,4.27,9.02,3.87,Poultry Products,24.49,12.37,0.06,216,,0,14,1.53,19,144,163,66,1.98,15.9,579,,0.5,0.048,0.201,5.389,0.22,0.79,,0,97
5006,500,"Chicken, broilers or fryers, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,MEAT & SKN,RAW",,,Y,Bone,32,,6.25,4.27,9.02,3.87,Poultry Products,18.6,15.06,0,215,0,0,11,0.9,20,147,189,70,1.31,14.4,140,10,1.6,0.06,0.12,6.801,0.35,0.31,1.5,0,75
5007,500,"Chicken, broilers or fryers, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,BATTER",,,Y,Bone,22,,6.25,4.27,9.02,3.87,Poultry Products,22.54,17.35,9.42,289,0,0.3,21,1.37,21,155,185,292,1.67,25.5,93,7,0,0.115,0.189,7.043,0.31,0.28,2.4,10,87
5008,500,"Chicken, broilers or fryers, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,FLR",,,Y,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,28.56,14.92,3.15,269,0,0.1,17,1.38,25,191,234,84,2.04,21.7,89,6,0,0.087,0.193,8.992,0.41,0.31,2.4,3,90
5009,500,"Chicken, broilers or fryers, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,RSTD",,,Y,Bone,33,,6.25,4.27,9.02,3.87,Poultry Products,27.3,13.6,0,239,0,0,15,1.26,23,182,223,82,1.94,23.9,161,2,0,0.063,0.168,8.487,0.4,0.3,2.4,0,88
5010,500,"Chicken, broilers or fryers, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,STWD",,,Y,Bone,34,,6.25,4.27,9.02,3.87,Poultry Products,24.68,12.56,0,219,0,0,13,1.16,19,139,166,67,1.76,18,146,1,0,0.046,0.148,5.594,0.22,0.2,2.1,0,78
5011,500,"Chicken, broilers or fryers, meat only, raw","CHICKEN,BROILERS OR FRYERS,MEAT ONLY,RAW",,,Y,"32% bone, 12% skin, 8% separable fat",52,,6.25,4.27,9.02,3.87,Poultry Products,21.39,3.08,0,119,0,0,12,0.89,25,173,229,77,1.54,15.7,52,5,2.3,0.073,0.142,8.239,0.43,0.37,1.8,0,70
5012,500,"Chicken, broilers or fryers, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,FRIED",,,Y,"29% bone, 13% skin",42,,6.25,4.27,9.02,3.87,Poultry Products,30.57,9.12,1.69,219,0,0.1,17,1.35,27,205,257,91,2.24,24.5,59,5,0,0.085,0.198,9.663,0.48,0.34,2.8,0,94
5013,500,"Chicken, broilers or fryers, meat only, roasted","CHICKEN,BROILERS OR FRYERS,MEAT ONLY,RSTD",,,Y,"33% bone, 13% skin",46,,6.25,4.27,9.02,3.87,Poultry Products,28.93,7.41,0,190,0,0,15,1.21,25,195,243,86,2.1,22,53,5,0,0.069,0.178,9.173,0.47,0.33,2.4,0,89
5014,500,"Chicken, broilers or fryers, meat only, stewed","CHICKEN,BROILERS OR FRYERS,MEAT ONLY,STWD",,,Y,"34% bone, 14% skin",48,,6.25,4.27,9.02,3.87,Poultry Products,27.29,6.71,0,177,0,0,14,1.17,21,150,180,70,1.99,20.9,50,5,0,0.049,0.163,6.117,0.26,0.22,2.4,0,83
5015,500,"Chicken, broilers or fryers, skin only, raw","CHICKEN,BROILERS OR FRYERS,SKN ONLY,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,13.33,32.35,0,349,0,0,11,1.08,13,100,103,63,0.93,12.3,262,24,0,0.033,0.069,3.987,0.09,0.23,2.9,0,109
5016,500,"Chicken, broilers or fryers, skin only, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,BATTER",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,10.32,28.83,23.15,394,,,26,1.43,12,80,75,581,0.72,53.9,138,7,0,0.174,0.178,3.342,0.06,0.17,,31,74
5017,500,"Chicken, broilers or fryers, skin only, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,FLR",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,19.09,42.58,9.34,502,,,14,1.52,17,126,125,53,1.15,62.9,232,,0,0.097,0.165,5.818,0.1,0.18,,29,73
5018,500,"Chicken, broilers or fryers, skin only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,RSTD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,20.36,40.68,0,454,0,0,14,1.51,15,125,136,65,1.23,20,260,8,0,0.036,0.127,5.581,0.1,0.2,2.4,0,83
5019,500,"Chicken, broilers or fryers, skin only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,STWD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,15.22,33.04,0,363,,0,12,1.13,13,99,117,56,0.96,14.4,198,7,0,0.034,0.094,3.756,0.05,0.11,,0,63
5020,500,"Chicken, broilers or fryers, giblets, raw","CHICKEN,BROILERS OR FRYERS,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,17.88,4.47,1.8,124,,0,10,5.86,18,197,228,77,3.32,55.2,8847,,16.2,0.088,0.987,6.662,0.42,11.41,,0,262
5021,500,"Chicken, broilers or fryers, giblets, cooked, fried","CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,FRIED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,32.54,13.46,4.35,277,,0,18,10.32,25,286,330,113,6.27,104.2,11929,,8.7,0.097,1.524,10.987,0.61,13.31,,0,446
5022,500,"Chicken, broilers or fryers, giblets, cooked, simmered","CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,27.15,4.5,0,157,0,0,14,7.04,14,289,224,67,4.23,59.6,5869,0,12.5,0.143,1.052,6.625,0.397,9.44,0,0,442
5023,500,"Chicken, gizzard, all classes, raw","CHICKEN,GIZZARD,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,17.66,2.06,0,94,0,0,11,2.49,15,148,237,69,2.72,25.5,64,,3.7,0.028,0.231,3.68,0.112,1.21,0,0,240
5024,500,"Chicken, gizzard, all classes, cooked, simmered","CHICKEN,GIZZARD,ALL CLASSES,CKD,SIMMRD",,,Y,Membranes 10.7%,11,,6.25,4.27,9.02,3.87,Poultry Products,30.39,2.68,0,154,0,0,17,3.19,3,189,179,56,4.42,41.1,0,0,0,0.026,0.21,3.12,0.071,1.04,0,0,370
5025,500,"Chicken, heart, all classes, raw","CHICKEN,HEART,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,15.55,9.33,0.71,153,,0,12,5.96,15,177,176,74,6.59,4.3,30,,3.2,0.152,0.728,4.883,0.36,7.29,,0,136
5026,500,"Chicken, heart, all classes, cooked, simmered","CHICKEN,HEART,ALL CLASSES,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.41,7.92,0.1,185,,0,19,9.03,20,199,132,48,7.3,8,28,,1.8,0.07,0.741,2.803,0.32,7.29,,0,242
5027,500,"Chicken, liver, all classes, raw","CHICKEN,LIVER,ALL CLASSES,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.92,4.83,0.73,119,0,0,8,8.99,19,297,230,71,2.67,54.6,11078,0,17.9,0.305,1.778,9.728,0.853,16.58,0,0,345
5028,500,"Chicken, liver, all classes, cooked, simmered","CHICKEN,LIVER,ALL CLASSES,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,24.46,6.51,0.87,167,0,0,11,11.63,25,405,263,76,3.98,82.4,13328,0,27.9,0.291,1.993,11.045,0.755,16.85,0,0,563
5029,500,"Chicken, broilers or fryers, light meat, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT & SKN,RAW",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,20.27,11.07,0,186,0,0,11,0.79,23,163,204,65,0.93,16.4,99,,0,0.059,0.086,8.908,0.48,0.34,2.4,0,67
5030,500,"Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,21,,6.25,4.27,9.02,3.87,Poultry Products,23.55,15.44,9.5,277,,,20,1.26,22,168,185,287,1.06,27.2,79,,0,0.113,0.147,9.156,0.39,0.28,,10,84
5031,500,"Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,FLR",,,Y,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,30.45,12.09,1.82,246,0,0.1,16,1.21,27,213,239,77,1.26,29.1,68,5,0,0.076,0.133,12.035,0.54,0.33,2.4,3,87
5032,500,"Chicken, broilers or fryers, light meat, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,RSTD",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,29.02,10.85,0,222,,0,15,1.14,25,200,227,75,1.23,24.1,110,,0,0.06,0.118,11.134,0.52,0.32,,0,84
5033,500,"Chicken, broilers or fryers, light meat, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,STWD",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,26.14,9.97,0,201,,0,13,0.98,20,146,167,63,1.14,21.2,96,,0,0.041,0.112,6.935,0.27,0.2,,0,74
5034,500,"Chicken, broilers or fryers, dark meat, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT & SKN,RAW",,,,Bone,35,,6.25,4.27,9.02,3.87,Poultry Products,16.69,18.34,0,237,0,0,11,0.98,19,136,178,73,1.58,12.7,170,,0,0.061,0.146,5.211,0.25,0.29,2.4,0,81
5035,500,"Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,23,,6.25,4.27,9.02,3.87,Poultry Products,21.85,18.64,9.38,298,,,21,1.44,20,145,185,295,2.08,23.6,103,,0,0.117,0.218,5.607,0.25,0.27,,9,89
5036,500,"Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,30,,6.25,4.27,9.02,3.87,Poultry Products,27.22,16.91,4.08,285,0,0,17,1.5,24,176,230,89,2.6,20.5,104,,0,0.095,0.235,6.842,0.32,0.3,2.4,3,92
5037,500,"Chicken, broilers or fryers, dark meat, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,RSTD",,,,Bone,36,,6.25,4.27,9.02,3.87,Poultry Products,25.97,15.78,0,253,,0,15,1.36,22,168,220,87,2.49,20.2,201,,0,0.066,0.207,6.359,0.31,0.29,,0,91
5038,500,"Chicken, broilers or fryers, dark meat, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,STWD",,,,Bone,38,,6.25,4.27,9.02,3.87,Poultry Products,23.5,14.66,0,233,,0,14,1.31,18,133,166,70,2.26,18.4,186,,0,0.05,0.177,4.513,0.17,0.2,,0,82
5039,500,"Chicken, broilers or fryers, light meat, meat only, raw","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,RAW",,,,"28% bone, 13% skin, 4% separable fat",45,,6.25,4.27,9.02,3.87,Poultry Products,23.2,1.65,0,114,0,0,12,0.73,27,187,239,68,0.97,17.8,27,,0,0.068,0.092,10.604,0.54,0.38,2.4,0,58
5040,500,"Chicken, broilers or fryers, light meat, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,FRIED",,,,"28% bone, 13% skin",41,,6.25,4.27,9.02,3.87,Poultry Products,32.82,5.54,0.42,192,,0,16,1.14,29,231,263,81,1.27,26.2,30,,0,0.073,0.126,13.365,0.63,0.36,,0,90
5041,500,"Chicken, broilers or fryers, light meat, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,RSTD",,,Y,"29% bone, 13% skin",42,,6.25,4.27,9.02,3.87,Poultry Products,30.91,4.51,0,173,0,0,15,1.06,27,216,247,77,1.23,24.4,29,5,0,0.065,0.116,12.421,0.6,0.34,0.3,0,85
5042,500,"Chicken, broilers or fryers, light meat, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,STWD",,,Y,"29% bone, 15% skin",44,,6.25,4.27,9.02,3.87,Poultry Products,28.88,3.99,0,159,0,0,13,0.93,22,159,180,65,1.19,22.3,27,5,0,0.042,0.117,7.79,0.33,0.23,0.2,0,77
5043,500,"Chicken, broilers or fryers, dark meat, meat only, raw","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,RAW",,,,"35% bone, 11% skin, 10% separable fat",56,,6.25,4.27,9.02,3.87,Poultry Products,20.08,4.31,0,125,0,0,12,1.03,23,162,222,85,2,13.5,72,,3.1,0.077,0.184,6.246,0.33,0.36,2.4,0,80
5044,500,"Chicken, broilers or fryers, dark meat, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,FRIED",,,,"30% bone, 12% skin",42,,6.25,4.27,9.02,3.87,Poultry Products,28.99,11.62,2.59,239,,0,18,1.49,25,187,253,97,2.91,20.5,79,,0,0.093,0.249,7.07,0.37,0.33,,0,96
5045,500,"Chicken, broilers or fryers, dark meat, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,RSTD",,,Y,"36% bone, 12% skin",48,,6.25,4.27,9.02,3.87,Poultry Products,27.37,9.73,0,205,0,0,15,1.33,23,179,240,93,2.8,18,72,5,0,0.073,0.227,6.548,0.36,0.32,3.9,0,93
5046,500,"Chicken, broilers or fryers, dark meat, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,STWD",,,Y,"38% bone, 14% skin",52,,6.25,4.27,9.02,3.87,Poultry Products,25.97,8.98,0,192,0,0,14,1.36,20,143,181,74,2.66,17.3,69,5,0,0.055,0.202,4.737,0.21,0.22,3.6,0,88
5047,500,"Chicken, broilers or fryers, separable fat, raw","CHICKEN,BROILERS OR FRYERS,FAT,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,3.73,67.95,0,629,0,0,7,0.7,6,54,64,32,0.45,9.7,509,130,0,0.021,0.059,2.041,0.02,0.07,2.4,0,58
5048,500,"Chicken, broilers or fryers, back, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,RAW",,,,Bone,44,,6.25,4.27,9.02,3.87,Poultry Products,14.05,28.74,0,319,0,0,13,0.94,15,113,144,64,1.26,12.1,251,,1.6,0.051,0.116,4.835,0.19,0.25,2.4,0,79
5049,500,"Chicken, broilers or fryers, back, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,23,,6.25,4.27,9.02,3.87,Poultry Products,21.97,21.91,10.25,331,,,26,1.49,19,137,180,317,1.96,29,119,,0,0.119,0.213,5.837,0.23,0.26,,11,88
5050,500,"Chicken, broilers or fryers, back, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,33,,6.25,4.27,9.02,3.87,Poultry Products,27.79,20.74,6.5,331,,,24,1.62,23,166,226,90,2.47,23.7,123,,0,0.107,0.236,7.297,0.3,0.28,,7,89
5051,500,"Chicken, broilers or fryers, back, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,RSTD",,,Y,Bone,47,,6.25,4.27,9.02,3.87,Poultry Products,25.95,20.97,0,300,0,0,21,1.42,20,154,210,87,2.25,22.5,348,2,0,0.061,0.195,6.718,0.27,0.27,4.9,0,88
5052,500,"Chicken, broilers or fryers, back, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,STWD",,,Y,Bone,48,,6.25,4.27,9.02,3.87,Poultry Products,22.18,18.14,0,258,0,0,18,1.22,16,120,145,64,1.93,19.9,308,2,0,0.043,0.151,4.343,0.15,0.18,4.1,0,78
5053,500,"Chicken, broilers or fryers, back, meat only, raw","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,RAW",,,,"44% bone, 10% skin, 17% seprable fat",71,,6.25,4.27,9.02,3.87,Poultry Products,19.56,5.92,0,137,0,0,17,1.04,22,151,204,82,1.85,13.5,99,,0,0.074,0.164,6.672,0.33,0.36,2.4,0,81
5054,500,"Chicken, broilers or fryers, back, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,FRIED",,,,"33% bone, 13% skin",46,,6.25,4.27,9.02,3.87,Poultry Products,29.99,15.32,5.68,288,,0,26,1.65,25,176,251,99,2.8,19.9,98,,0,0.109,0.253,7.68,0.35,0.31,,0,93
5055,500,"Chicken, broilers or fryers, back, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,RSTD",,,,"47% bone, 13% skin",60,,6.25,4.27,9.02,3.87,Poultry Products,28.19,13.16,0,239,0,0,24,1.39,22,165,237,96,2.65,17.3,0,5,0,0.068,0.217,7.069,0.34,0.3,2.4,,90
5056,500,"Chicken, broilers or fryers, back, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,STWD",,,,"48% bone, 16% skin",64,,6.25,4.27,9.02,3.87,Poultry Products,25.31,11.19,0,209,0,0,21,1.27,17,130,158,67,2.38,16.5,90,5,0,0.047,0.173,4.556,0.2,0.21,2.4,0,85
5057,500,"Chicken, broilers or fryers, breast, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,RAW",,,Y,Bone,20,,6.25,4.27,9.02,3.87,Poultry Products,20.85,9.25,0,172,0,0,11,0.74,25,174,220,63,0.8,16.6,83,16,0,0.063,0.085,9.908,0.53,0.34,0,0,64
5058,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,BATTER",,,Y,Bone,12,,6.25,4.27,9.02,3.87,Poultry Products,24.84,13.2,8.99,260,0,0.3,20,1.25,24,185,201,275,0.95,28,67,6,0,0.115,0.146,10.523,0.43,0.3,2.4,9,85
5059,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,17,,6.25,4.27,9.02,3.87,Poultry Products,31.84,8.87,1.64,222,,0.1,16,1.19,30,233,259,76,1.1,23.9,50,,0,0.082,0.131,13.742,0.58,0.34,,2,89
5060,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,RSTD",,,Y,Bone,19,,6.25,4.27,9.02,3.87,Poultry Products,29.8,7.78,0,197,0,0,14,1.07,27,214,245,71,1.02,24.7,93,5,0,0.066,0.119,12.71,0.56,0.32,0.3,0,84
5061,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,STWD",,,Y,Bone,18,,6.25,4.27,9.02,3.87,Poultry Products,27.39,7.42,0,184,0,0,13,0.92,22,156,178,62,0.97,21.8,82,5,0,0.041,0.115,7.807,0.29,0.21,0.2,0,75
5062,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, raw","CHICKEN,BROILER OR FRYERS,BRST,SKINLESS,BNLESS,MEAT ONLY,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,22.5,2.62,0,120,0,0,5,0.37,28,213,334,45,0.68,22.8,30,1,0,0.094,0.177,9.6,0.811,0.21,0,0,73
5063,500,"Chicken, broilers or fryers, breast, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,FRIED",,,Y,"17% bone, 10% skin",27,,6.25,4.27,9.02,3.87,Poultry Products,33.44,4.71,0.51,187,0,0,16,1.14,31,246,276,79,1.08,26.2,23,5,0,0.079,0.125,14.782,0.64,0.37,2.4,0,91
5064,500,"Chicken, broilers or fryers, breast, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,RSTD",,,Y,"19% bone, 9% skin",28,,6.25,4.27,9.02,3.87,Poultry Products,31.02,3.57,0,165,0,0,15,1.04,29,228,256,74,1,27.6,21,5,0,0.07,0.114,13.712,0.6,0.34,0.3,0,85
5065,500,"Chicken, broilers or fryers, breast, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,STWD",,,Y,"18% bone, 12% skin",30,,6.25,4.27,9.02,3.87,Poultry Products,28.98,3.03,0,151,0,0,13,0.88,24,165,187,63,0.97,22.3,19,5,0,0.042,0.119,8.469,0.33,0.23,0.2,0,77
5066,500,"Chicken, broilers or fryers, drumstick, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,RAW",,,Y,"Bone and cartilage 33%, Bone and coonective tissue 33%",66,,6.25,4.27,9.02,3.87,Poultry Products,18.08,9.2,0.11,161,0,0,8,0.71,18,163,211,106,1.86,20.2,46,2,0,0.083,0.195,4.841,0.345,0.53,2.5,0,92
5067,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,26,,6.25,4.27,9.02,3.87,Poultry Products,21.95,15.75,8.28,268,,0.3,17,1.35,20,147,186,269,2.33,21.9,86,,0,0.112,0.215,5.096,0.27,0.28,,9,86
5068,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,34,,6.25,4.27,9.02,3.87,Poultry Products,26.96,13.72,1.63,245,,0.1,12,1.34,23,176,229,89,2.89,18.4,84,,0,0.081,0.225,6.037,0.35,0.32,,2,90
5069,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,RSTD",,,Y,"Bone and cartilage 33%, Bone and connective tissue 28%",61,,6.25,4.27,9.02,3.87,Poultry Products,23.35,10.15,0,191,0,0,11,1.11,22,195,247,123,2.36,26.9,40,2,0,0.093,0.203,5.403,0.383,0.39,3.2,0,130
5070,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,STWD",,,Y,Bone,36,,6.25,4.27,9.02,3.87,Poultry Products,25.32,10.64,0,204,0,0,11,1.33,20,141,184,76,2.65,17,91,5,0,0.05,0.19,4.204,0.19,0.22,4,0,83
5071,500,"Chicken, broilers or fryers, dark meat, drumstick, meat only, raw","CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,RAW",,,Y,"bone and cartilage 33%, skin and separable fat 9%",42,,6.25,4.27,9.02,3.87,Poultry Products,19.41,3.71,0,116,0,0,9,0.76,20,174,225,114,2.05,21.8,22,1,0,0.09,0.22,5.198,0.381,0.51,2.9,0,89
5072,500,"Chicken, broilers or fryers, drumstick, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,FRIED",,,,"34% bone, 10% skin",44,,6.25,4.27,9.02,3.87,Poultry Products,28.62,8.08,0,195,,0,12,1.32,24,186,249,96,3.22,19.6,61,,0,0.077,0.236,6.146,0.39,0.35,,0,94
5073,500,"Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,CKD,RST",,,Y,"Bone and cartilage 33%, Skin and separable fat 7%",40,,6.25,4.27,9.02,3.87,Poultry Products,24.24,5.7,0,155,0,0,11,1.14,22,200,256,128,2.56,28.1,21,1,0,0.098,0.222,5.598,0.407,0.38,3.5,0,130
5074,500,"Chicken, broilers or fryers, drumstick, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,STWD",,,Y,"36% bone, 12% skin",48,,6.25,4.27,9.02,3.87,Poultry Products,27.5,5.71,0,169,0,0,11,1.37,21,150,199,80,3.02,18,57,5,0,0.054,0.213,4.3,0.23,0.24,3.4,0,88
5075,500,"Chicken, broilers or fryers, leg, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,RAW",,,Y,Bone,27,,6.25,4.27,9.02,3.87,Poultry Products,16.37,15.95,0.17,214,0,0,9,0.69,19,155,203,84,1.47,18,92,2,0.2,0.073,0.141,4.733,0.318,0.56,2.3,0,93
5076,500,"Chicken, broilers or fryers, leg, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,22,,6.25,4.27,9.02,3.87,Poultry Products,21.77,16.17,8.72,273,,0.3,18,1.4,20,152,189,279,2.17,26.6,91,,0,0.116,0.221,5.433,0.27,0.28,,9,90
5077,500,"Chicken, broilers or fryers, leg, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,26.84,14.43,2.5,254,,0.1,13,1.43,24,182,233,88,2.68,20.8,92,,0,0.088,0.235,6.546,0.34,0.31,,3,94
5078,500,"Chicken, broilers or fryers, leg, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,RSTD",,,Y,Bone 29%,29,,6.25,4.27,9.02,3.87,Poultry Products,24.03,8.99,0,184,0,0,12,1.09,23,202,264,98,2.07,25.7,68,4,0,0.09,0.187,6.034,0.413,0.38,3.9,0,127
5079,500,"Chicken, broilers or fryers, leg, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,STWD",,,Y,Bone,30,,6.25,4.27,9.02,3.87,Poultry Products,24.17,12.92,0,220,0,0,11,1.35,20,139,176,73,2.43,18.9,124,5,0,0.054,0.191,4.59,0.18,0.2,3.5,0,84
5080,500,"Chicken, broilers or fryers, leg, meat only, raw","CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,RAW",,,Y,"27% bone, 11% skin, 5% separable fat",43,,6.25,4.27,9.02,3.87,Poultry Products,19.16,4.22,0,120,0,0,10,0.78,23,180,238,96,1.76,21,32,1,0,0.087,0.179,5.578,0.406,0.57,2.8,0,91
5081,500,"Chicken, broilers or fryers, leg, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,FRIED",,,,"28% bone, 12% skin",40,,6.25,4.27,9.02,3.87,Poultry Products,28.38,9.32,0.65,208,,0,13,1.4,25,193,254,96,2.98,18.8,66,,0,0.083,0.247,6.688,0.39,0.34,,0,99
5082,500,"Chicken, broilers or fryers, leg, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,RSTD",,,Y,"Bone 29%, skin 12%",41,,6.25,4.27,9.02,3.87,Poultry Products,24.22,7.8,0,174,0,0,12,1.08,24,205,269,99,2.11,25.2,22,5,0,0.091,0.189,6.053,0.425,0.39,3.6,0,128
5083,500,"Chicken, broilers or fryers, leg, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,STWD",,,Y,"30% bone, 13% skin",43,,6.25,4.27,9.02,3.87,Poultry Products,26.26,8.06,0,185,0,0,11,1.4,21,149,190,78,2.78,26.5,60,5,0,0.059,0.216,4.798,0.21,0.23,3.6,0,89
5084,500,"Chicken, broilers or fryers, neck, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,RAW",,,,Bone,36,,6.25,4.27,9.02,3.87,Poultry Products,14.07,26.24,0,297,,0,18,1.9,13,112,137,64,1.86,12,216,,0,0.047,0.191,3.608,0.17,0.26,,0,99
5085,500,"Chicken, broilers or fryers, neck, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,25,,6.25,4.27,9.02,3.87,Poultry Products,19.82,23.52,8.7,330,,,31,2.15,16,115,151,276,2.5,21.3,170,,0,0.1,0.237,4.528,0.21,0.24,,8,91
5086,500,"Chicken, broilers or fryers, neck, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,24.01,23.61,4.24,332,,,31,2.42,19,132,180,82,3.07,18.6,190,,0,0.078,0.259,5.348,0.25,0.26,,5,94
5087,500,"Chicken, broilers or fryers, neck, meat and skin, cooked simmered","CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD SIMMRD",,,Y,Bone,32,,6.25,4.27,9.02,3.87,Poultry Products,19.61,18.1,0,247,0,0,27,2.3,13,122,108,52,2.72,17.3,161,6,0,0.04,0.248,3.319,0.1,0.14,3.9,0,70
5088,500,"Chicken, broilers or fryers, neck, meat only, raw","CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,RAW",,,,"36% bone, 39% skin and separable fat",75,,6.25,4.27,9.02,3.87,Poultry Products,17.55,8.78,0,154,,0,27,2.06,17,113,175,81,2.68,13.5,146,,0,0.054,0.228,4.119,0.29,0.32,,0,83
5089,500,"Chicken, broilers or fryers, neck, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,FRIED",,,,"29% bone, 27% skin",56,,6.25,4.27,9.02,3.87,Poultry Products,26.87,11.88,1.77,229,,0,41,2.98,20,135,213,99,4.24,20.5,162,,0,0.07,0.318,5.027,0.35,0.3,,0,105
5090,500,"Chicken, broilers or fryers, neck, meat only, cooked, simmered","CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,SIMMRD",,,,"32% bone, 35% skin",67,,6.25,4.27,9.02,3.87,Poultry Products,24.56,8.18,0,179,,0,44,2.63,16,128,140,64,3.77,20.5,121,5,0,0.046,0.283,3.956,0.16,0.17,,0,79
5091,500,"Chicken, broilers or fryers, thigh, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.52,16.61,0.25,221,0,0,7,0.68,18,157,204,81,1.29,18.9,78,3,0,0.073,0.145,4.625,0.347,0.62,2.1,0,98
5092,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,19,,6.25,4.27,9.02,3.87,Poultry Products,21.61,16.53,9.08,277,,0.3,18,1.45,21,155,192,288,2.04,23.2,95,,0,0.119,0.227,5.715,0.26,0.28,,10,93
5093,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,23,,6.25,4.27,9.02,3.87,Poultry Products,26.75,14.98,3.18,262,,0.1,14,1.49,25,187,237,88,2.52,19.9,98,,0,0.094,0.243,6.946,0.33,0.3,,4,97
5094,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,RSTD",,,Y,"Bone and cartilage 17%, bone and connective tissue 16%",33,,6.25,4.27,9.02,3.87,Poultry Products,23.26,14.71,0,232,0,0,9,1.08,22,216,253,102,1.73,25.3,55,7,0,0.088,0.19,5.789,0.414,0.44,3.3,0,133
5095,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,STWD",,,Y,Bone,24,,6.25,4.27,9.02,3.87,Poultry Products,23.26,14.74,0,232,0,0,11,1.37,19,139,170,71,2.25,17.9,151,5,0,0.057,0.191,4.894,0.17,0.19,3.9,0,84
5096,500,"Chicken, broilers or fryers, dark meat, thigh, meat only, raw","CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,RAW",,,Y, Skin and separable fat 25%,25,,6.25,4.27,9.02,3.87,Poultry Products,19.66,4.12,0,121,0,0,7,0.81,23,185,242,95,1.58,22.9,24,1,0,0.088,0.196,5.557,0.451,0.61,2.9,0,94
5097,500,"Chicken, broilers or fryers, thigh, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,FRIED",,,,"23% bone, 13% skin",36,,6.25,4.27,9.02,3.87,Poultry Products,28.18,10.3,1.18,218,,0,13,1.46,26,199,259,95,2.79,20.5,70,8,0,0.088,0.255,7.12,0.38,0.33,,0,102
5098,500,"Chicken, broilers or fryers, thigh, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,RSTD",,,Y,"Bone and cartilage 17%, skin and separable fat 15%",48,,6.25,4.27,9.02,3.87,Poultry Products,24.76,8.15,0,179,0,0,9,1.13,24,230,269,106,1.92,27.1,27,7,0,0.096,0.218,6.208,0.462,0.42,3.9,0,133
5099,500,"Chicken, broilers or fryers, thigh, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,STWD",,,Y,"24% bone, 15% skin",39,,6.25,4.27,9.02,3.87,Poultry Products,25,9.79,0,195,0,0,11,1.42,21,149,183,75,2.58,17.1,62,5,0,0.063,0.218,5.2,0.21,0.21,3.6,0,90
5100,500,"Chicken, broilers or fryers, wing, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,RAW",,,Y,Bone and connective tissue 38%,38,,6.25,4.27,9.02,3.87,Poultry Products,17.52,12.85,0,191,0,0,11,0.46,16,123,187,84,1.21,17.6,29,5,0,0.054,0.103,5.697,0.528,0.25,0,0,111
5101,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,38,,6.25,4.27,9.02,3.87,Poultry Products,19.87,21.81,10.94,324,,0.3,20,1.29,16,121,138,320,1.38,25.7,113,,0,0.106,0.152,5.265,0.3,0.25,,12,79
5102,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,47,,6.25,4.27,9.02,3.87,Poultry Products,26.11,22.16,2.39,321,,0.1,15,1.25,19,150,177,77,1.76,21.3,125,,0,0.058,0.137,6.697,0.41,0.28,,3,81
5103,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,RSTD",,,Y,Bone and connective tissue 40%,40,,6.25,4.27,9.02,3.87,Poultry Products,23.79,16.87,0,254,0,0,18,0.84,19,147,212,98,1.64,25.5,39,7,0,0.065,0.153,6.32,0.558,0.35,0.3,0,141
5104,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,STWD",,,Y,Bone,48,,6.25,4.27,9.02,3.87,Poultry Products,22.78,16.82,0,249,0,0,12,1.13,16,121,139,67,1.63,18.5,133,5,0,0.04,0.103,4.621,0.22,0.18,0.2,0,70
5105,500,"Chicken, broilers or fryers, wing, meat only, raw","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,RAW",,,Y,"46% bone, 21% skin, 1% separable fat",68,,6.25,4.27,9.02,3.87,Poultry Products,21.97,3.54,0,126,0,0,13,0.88,22,155,194,81,1.63,17.8,59,5,1.2,0.059,0.101,7.359,0.53,0.38,0,0,57
5106,500,"Chicken, broilers or fryers, wing, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,FRIED",,,,"47% bone, 19% skin",66,,6.25,4.27,9.02,3.87,Poultry Products,30.15,9.15,0,211,,0,15,1.14,21,164,208,91,2.12,25.4,61,3,0,0.046,0.128,7.239,0.59,0.34,,0,84
5107,500,"Chicken, broilers or fryers, wing, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,RSTD",,,Y,"48% bone, 20% skin",68,,6.25,4.27,9.02,3.87,Poultry Products,30.46,8.13,0,203,0,0,16,1.16,21,166,210,92,2.14,24.7,61,5,0,0.047,0.129,7.312,0.59,0.34,0.3,0,85
5108,500,"Chicken, broilers or fryers, wing, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,STWD",,,Y,"48% bone, 20% skin",68,,6.25,4.27,9.02,3.87,Poultry Products,27.18,7.18,0,181,0,0,13,1.12,18,134,153,73,2.02,21.7,54,5,0,0.044,0.11,5.2,0.32,0.22,0.2,0,74
5109,500,"Chicken, roasting, meat and skin and giblets and neck, raw","CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,RAW",,,,Bone,27,,6.25,4.27,9.02,3.87,Poultry Products,17.09,15.46,0.09,213,,0,10,1.37,19,165,196,69,1.28,11.6,843,,2.4,0.059,0.171,6.427,0.32,0.99,,0,86
5110,500,"Chicken, roasting, meat and skin and giblets and neck, cooked, roasted","CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,CKD,RSTD",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,23.96,13.07,0.05,220,,0,13,1.61,20,179,204,71,1.71,15.7,597,,0.4,0.057,0.189,7.031,0.34,0.78,,0,94
5111,500,"Canada Goose, breast meat, skinless, raw","CANADA GOOSE,BREAST MEAT,SKINLESS,RAW",Canadian geese,,,,0,Branta canadensis,,,,,Poultry Products,24.31,4.02,0,133,0,0,4,5.91,29,256,336,50,1.68,,38,,0,0.284,1.523,6.56,1.077,4.1,,,80
5112,500,"Chicken, roasting, meat and skin, cooked, roasted","CHICKEN,ROASTING,MEAT&SKN,CKD,RSTD",,,,Bone,30,,6.25,4.27,9.02,3.87,Poultry Products,23.97,13.39,0,223,,0,12,1.26,20,179,211,73,1.45,23.6,83,,0,0.057,0.143,7.418,0.35,0.27,,0,76
5113,500,"Chicken, roasting, meat only, raw","CHICKEN,ROASTING,MEAT ONLY,RAW",,,,"28% bone, 14% skin, 7% separable fat",49,,6.25,4.27,9.02,3.87,Poultry Products,20.33,2.7,0,111,0,0,10,1.03,23,198,238,75,1.19,16.9,45,,0,0.069,0.134,7.875,0.42,0.36,2.4,0,65
5114,500,"Chicken, roasting, meat only, cooked, roasted","CHICKEN,ROASTING,MEAT ONLY,CKD,RSTD",,,,"30% bone, 12% skin, 1% separable fat",43,,6.25,4.27,9.02,3.87,Poultry Products,25.01,6.63,0,167,,0,12,1.21,21,192,229,75,1.52,24.6,41,,0,0.062,0.147,7.881,0.41,0.29,,0,75
5115,500,"Chicken, roasting, giblets, raw","CHICKEN,ROASTING,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.14,5.04,1.14,127,,0,10,5.4,17,184,227,77,3.39,54.1,9592,,13.1,0.08,0.818,6.208,0.36,9.4,,0,236
5116,500,"Chicken, roasting, giblets, cooked, simmered","CHICKEN,ROASTING,GIBLETS,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.77,5.22,0.86,165,,0,12,6.09,20,213,160,60,4.63,100.1,8136,,6.5,0.074,0.808,4.032,0.3,8.45,,0,357
5117,500,"Chicken, roasting, light meat, meat only, raw","CHICKEN,ROASTING,LT MEAT,MEAT ONLY,RAW",,,,"26% bone, 13% skin, 4% separable fat",43,,6.25,4.27,9.02,3.87,Poultry Products,22.2,1.63,0,109,0,0,11,0.89,25,223,252,51,0.66,17.8,27,,0,0.066,0.089,10.217,0.55,0.39,2.4,0,57
5118,500,"Chicken, roasting, light meat, meat only, cooked, roasted","CHICKEN,ROASTING,LT MEAT,MEAT ONLY,CKD,RSTD",,,Y,"24% bone, 16% skin",40,,6.25,4.27,9.02,3.87,Poultry Products,27.13,4.07,0,153,0,0,13,1.08,23,217,236,51,0.78,25.8,25,5,0,0.061,0.093,10.469,0.54,0.31,0.3,0,75
5119,500,"Chicken, roasting, dark meat, meat only, raw","CHICKEN,ROASTING,DK MEAT,MEAT ONLY,RAW",,,,"30% bone, 14% skin, 9% separable fat",53,,6.25,4.27,9.02,3.87,Poultry Products,18.74,3.61,0,113,0,0,9,1.15,21,178,227,95,1.65,13.5,60,,0,0.072,0.173,5.878,0.32,0.34,2.4,0,72
5120,500,"Chicken, roasting, dark meat, meat only, cooked, roasted","CHICKEN,ROASTING,DK MEAT,MEAT ONLY,CKD,RSTD",,,,"35% bone, 10% skin, 1% separable fat",46,,6.25,4.27,9.02,3.87,Poultry Products,23.25,8.75,0,178,,0,11,1.33,20,171,224,95,2.13,19.6,54,,0,0.063,0.192,5.736,0.31,0.27,,0,75
5121,500,"Chicken, stewing, meat and skin, and giblets and neck, raw","CHICKEN,STEWING,MEAT&SKN,&GIBLETS&NECK,RAW",,,,"27% bone, 5% separable fat",32,,6.25,4.27,9.02,3.87,Poultry Products,17.48,19.52,0.19,251,,0,10,1.51,20,173,204,71,1.37,12.5,1102,,3.1,0.111,0.251,6.383,0.35,1.26,,0,87
5122,500,"Chicken, stewing, meat and skin, and giblets and neck, cooked, stewed","CHICKEN,STEWING,MEAT & SKN,& GIBLETS & NECK,CKD,STWD",,,Y,"29% bone, 2% separable fat",31,,6.25,4.27,9.02,3.87,Poultry Products,24.88,11.91,0,214,0,0,13,1.64,19,151,171,67,1.96,21.4,609,1,1,0.054,0.221,5.677,0.234,0.95,1.9,0,107
5123,500,"Chicken, stewing, meat and skin, raw","CHICKEN,STEWING,MEAT&SKN,RAW",,,,Bone,30,,6.25,4.27,9.02,3.87,Poultry Products,17.55,20.33,0,258,0,0,10,1.04,20,172,204,71,1.19,14.4,178,,0,0.114,0.167,6.262,0.33,0.32,2.4,0,71
5124,500,"Chicken, stewing, meat and skin, cooked, stewed","CHICKEN,STEWING,MEAT&SKN,CKD,STWD",,,,Bone,32,,6.25,4.27,9.02,3.87,Poultry Products,26.88,18.87,0,285,,0,13,1.37,20,180,182,73,1.77,19.7,131,,0,0.094,0.235,5.798,0.25,0.23,,0,79
5125,500,"Chicken, stewing, meat only, raw","CHICKEN,STEWING,MEAT ONLY,RAW",,,,"Bone 30%, skin 12%, separable fat 8%",50,,6.25,4.27,9.02,3.87,Poultry Products,21.26,6.32,0,148,0,0,10,1.09,24,209,251,79,1.4,15.7,105,,3.3,0.149,0.207,7.477,0.44,0.38,2,0,63
5126,500,"Chicken, stewing, meat only, cooked, stewed","CHICKEN,STEWING,MEAT ONLY,CKD,STWD",,,,"Bone, 32%, skin, 16%",48,,6.25,4.27,9.02,3.87,Poultry Products,30.42,11.89,0,237,0,0,13,1.43,22,204,202,78,2.06,25.2,112,,0,0.112,0.277,6.408,0.31,0.26,3.1,0,83
5127,500,"Chicken, stewing, giblets, raw","CHICKEN,STEWING,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,17.89,9.21,2.13,168,,0,10,5.93,18,198,226,77,3.01,56.1,10497,,11.4,0.097,1.106,8.53,0.52,10.83,,0,240
5128,500,"Chicken, stewing, giblets, cooked, simmered","CHICKEN,STEWING,GIBLETS,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,25.73,9.3,0.11,194,,0,13,6.44,20,223,154,56,4.28,90.4,9536,,5.5,0.09,1.047,4.971,0.41,9.48,,0,355
5129,500,"Chicken, stewing, light meat, meat only, raw","CHICKEN,STEWING,LT MEAT,MEAT ONLY,RAW",,,,"26% bone, 14% skin, 4% separable fat",44,,6.25,4.27,9.02,3.87,Poultry Products,23.1,4.21,0,137,0,0,11,0.92,26,231,261,53,0.6,17.8,70,,1.8,0.132,0.123,9.915,0.57,0.4,2.4,0,47
5130,500,"Chicken, stewing, light meat, meat only, cooked, stewed","CHICKEN,STEWING,LT MEAT,MEAT ONLY,CKD,STWD",,,,"26% bone, 16% skin",42,,6.25,4.27,9.02,3.87,Poultry Products,33.04,7.98,0,213,,0,14,1.19,23,225,199,58,0.83,28.7,73,,0,0.094,0.196,8.538,0.39,0.27,,0,70
5131,500,"Chicken, stewing, dark meat, meat only, raw","CHICKEN,STEWING,DK MEAT,MEAT ONLY,RAW",,,,"33% bone, 11% skin, 10% separable fat",54,,6.25,4.27,9.02,3.87,Poultry Products,19.7,8.12,0,157,0,0,10,1.22,23,190,242,101,2.08,13.5,135,,4.6,0.163,0.279,5.405,0.34,0.37,2.4,0,77
5132,500,"Chicken, stewing, dark meat, meat only, cooked, stewed","CHICKEN,STEWING,DK MEAT,MEAT ONLY,CKD,STWD",,,,"36% bone, 15% skin",51,,6.25,4.27,9.02,3.87,Poultry Products,28.14,15.28,0,258,,0,12,1.64,22,187,204,95,3.12,21.8,145,,0,0.128,0.347,4.556,0.24,0.25,,0,95
5133,500,"Chicken, capons, meat and skin and giblets and neck, raw","CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,RAW",,,,Bone,27,,6.25,4.27,9.02,3.87,Poultry Products,18.51,16.9,0.08,232,,0,11,1.41,21,181,213,47,1.32,12.2,905,,2.6,0.065,0.183,7.074,0.36,1.01,,0,87
5134,500,"Chicken, capons, meat and skin and giblets and neck, cooked, roasted","CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,CKD,RSTD",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,28.35,11.67,0.04,226,,0,15,1.79,23,239,243,50,1.94,19.3,734,,0.4,0.07,0.219,8.415,0.41,0.36,,0,103
5135,500,"Chicken, capons, meat and skin, raw","CHICKEN,CAPONS,MEAT&SKN,RAW",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,18.77,17.07,0,234,0,0,11,1.09,21,183,217,45,1.17,14.6,129,,1.7,0.064,0.127,7.273,0.36,0.34,2.4,0,75
5136,500,"Chicken, capons, meat and skin, cooked, roasted","CHICKEN,CAPONS,MEAT&SKN,CKD,RSTD",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,28.96,11.65,0,229,,0,14,1.49,24,246,255,49,1.74,21.6,68,,0,0.07,0.17,8.947,0.43,0.33,,0,86
5137,500,"Chicken, capons, giblets, raw","CHICKEN,CAPONS,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.28,5.18,1.42,130,,0,10,6.25,18,207,226,77,3.38,55.3,14566,,18.4,0.097,1.119,6.984,0.47,12.95,,0,292
5138,500,"Chicken, capons, giblets, cooked, simmered","CHICKEN,CAPONS,GIBLETS,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.39,5.4,0.76,164,,0,13,6.8,20,235,153,55,4.67,95,13266,,9,0.095,1.061,4.12,0.38,1.14,,0,434
5139,500,"Duck, domesticated, meat and skin, raw","DUCK,DOMESTICATED,MEAT&SKN,RAW",,,Y,Bone,28,Anas platyrhynchos,6.25,4.27,9.02,3.87,Poultry Products,11.49,39.34,0,404,0,0,11,2.4,15,139,209,63,1.36,12.4,168,26,2.8,0.197,0.21,3.934,0.19,0.25,5.5,0,76
5140,500,"Duck, domesticated, meat and skin, cooked, roasted","DUCK,DOMESTICATED,MEAT&SKN,CKD,RSTD",,,Y,Bone,35,,6.25,4.27,9.02,3.87,Poultry Products,18.99,28.35,0,337,0,0,11,2.7,16,156,204,59,1.86,20,210,3,0,0.174,0.269,4.825,0.18,0.3,5.1,0,84
5141,500,"Duck, domesticated, meat only, raw","DUCK,DOMESTICATED,MEAT ONLY,RAW",,,Y,"28% bone, 38% skin and separable fat",66,,6.25,4.27,9.02,3.87,Poultry Products,18.28,5.95,0.94,135,0,0,11,2.4,19,203,271,74,1.9,13.9,79,3,5.8,0.36,0.45,5.3,0.34,0.4,2.8,0,77
5142,500,"Duck, domesticated, meat only, cooked, roasted","DUCK,DOMESTICATED,MEAT ONLY,CKD,RSTD",,,Y,"35% bone, 27% skin and separable fat",62,,6.25,4.27,9.02,3.87,Poultry Products,23.48,11.2,0,201,0,0,12,2.7,20,203,252,65,2.6,22.4,77,4,0,0.26,0.47,5.1,0.25,0.4,3.8,0,89
5143,500,"Duck, domesticated, liver, raw","DUCK,DOMESTICATED,LIVER,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.74,4.64,3.53,136,,0,11,30.53,24,269,230,140,3.07,67,39907,,4.5,0.562,0.892,6.5,0.76,54,,0,515
5144,500,"Duck, wild, meat and skin, raw","DUCK,WILD,MEAT&SKN,RAW",,,,"38% bone, 2% handling loss",40,,6.25,4.27,9.02,3.87,Poultry Products,17.42,15.2,0,211,,0,5,4.16,20,168,249,56,0.77,12.8,88,,5.2,0.351,0.269,3.317,0.53,0.65,,0,80
5145,500,"Duck, wild, breast, meat only, raw","DUCK,WILD,BREAST,MEAT ONLY,RAW",,,,"15% bone, 31% skin and separable fat",46,,6.25,4.27,9.02,3.87,Poultry Products,19.85,4.25,0,123,,0,3,4.51,22,186,268,57,0.74,13.9,53,,6.2,0.416,0.31,3.444,0.63,0.76,,0,77
5146,500,"Goose, domesticated, meat and skin, raw","GOOSE,DOMESTICATED,MEAT&SKN,RAW",,,,Bone,19,Anser anser,6.25,4.27,9.02,3.87,Poultry Products,15.86,33.62,0,371,,0,12,2.5,18,234,308,73,1.72,14.4,55,,4.2,0.085,0.245,3.608,0.39,0.34,,0,80
5147,500,"Goose, domesticated, meat and skin, cooked, roasted","GOOSE,DOMESTICATED,MEAT&SKN,CKD,RSTD",,,Y,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,25.16,21.92,0,305,0,0,13,2.83,22,270,329,70,2.62,21.8,70,3,0,0.077,0.323,4.168,0.37,0.41,5.1,0,91
5148,500,"Goose, domesticated, meat only, raw","GOOSE,DOMESTICATED,MEAT ONLY,RAW",,,,"19% bone, 34% skin and separable fat",53,,6.25,4.27,9.02,3.87,Poultry Products,22.75,7.13,0,161,,0,13,2.57,24,312,420,87,2.34,16.8,40,,7.2,0.129,0.377,4.278,0.64,0.49,,0,84
5149,500,"Goose, domesticated, meat only, cooked, roasted","GOOSE,DOMESTICATED,MEAT ONLY,CKD,RSTD",,,,"28% bone, 17% skin and separable fat",45,,6.25,4.27,9.02,3.87,Poultry Products,28.97,12.67,0,238,,0,14,2.87,25,309,388,76,3.17,25.5,40,,0,0.092,0.39,4.081,0.47,0.49,,0,96
5150,500,"Goose, liver, raw","GOOSE,LIVER,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.37,4.28,6.32,133,,0,43,30.53,24,261,230,140,3.07,68.1,30998,,4.5,0.562,0.892,6.5,0.76,54,,0,515
5151,500,"Guinea hen, meat and skin, raw","GUINEA HEN,MEAT&SKN,RAW",,,,Bone,17,Numida meleagris,6.25,4.27,9.02,3.87,Poultry Products,23.4,6.45,0,158,,0,11,0.84,22,153,193,67,1.13,16.3,92,,1.3,0.059,0.102,7.667,0.38,0.34,,0,74
5152,500,"Guinea hen, meat only, raw","GUINEA HEN,MEAT ONLY,RAW",,,,"17% bone, 19% skin and separable fat",36,,6.25,4.27,9.02,3.87,Poultry Products,20.64,2.47,0,110,,0,11,0.77,24,169,220,69,1.2,17.5,41,,1.7,0.067,0.112,8.782,0.47,0.37,,0,63
5153,500,"Pheasant, raw, meat and skin","PHEASANT,RAW,MEAT&SKN",,,,Bone,14,Phasianus colchicus,6.25,4.27,9.02,3.87,Poultry Products,22.7,9.29,0,181,,0,12,1.15,20,214,243,40,0.96,15.7,177,,5.3,0.072,0.143,6.426,0.66,0.77,,0,71
5154,500,"Pheasant, raw, meat only","PHEASANT,RAW,MEAT ONLY",,,,"14% bone, 10% skin",24,,6.25,4.27,9.02,3.87,Poultry Products,23.57,3.64,0,133,,0,13,1.15,20,230,262,37,0.97,16.2,165,,6,0.077,0.153,6.759,0.74,0.84,,0,66
5155,500,"Pheasant, breast, meat only, raw","PHEASANT,BREAST,MEAT ONLY,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,24.37,3.25,0,133,,0,3,0.79,21,200,242,33,0.63,16.7,147,,6,0.081,0.119,8.554,0.74,0.84,,0,58
5156,500,"Pheasant, leg, meat only, raw","PHEASANT,LEG,MEAT ONLY,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,22.2,4.3,0,134,,0,29,1.78,20,280,296,45,1.53,15.3,195,,6,0.07,0.21,3.7,0.74,0.84,,0,80
5157,500,"Quail, meat and skin, raw","QUAIL,MEAT AND SKIN,RAW",,,,Bone,10,Coturnix spp. and Colinus spp.,6.25,4.27,9.02,3.87,Poultry Products,19.63,12.05,0,192,,0,13,3.97,23,275,216,53,2.42,16.6,243,,6.1,0.244,0.26,7.538,0.6,0.43,,0,76
5158,500,"Quail, meat only, raw","QUAIL,MEAT ONLY,RAW",,,,"10% bone, 14% skin",24,,6.25,4.27,9.02,3.87,Poultry Products,21.76,4.53,0,134,,0,13,4.51,25,307,237,51,2.7,17.4,57,,7.2,0.283,0.285,8.2,0.53,0.47,,0,70
5159,500,"Quail, breast, meat only, raw","QUAIL,BREAST,MEAT ONLY,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,22.59,2.99,0,123,,0,10,2.31,28,228,260,55,2.7,18.8,37,,5.1,0.24,0.243,8.2,0.53,0.47,,0,58
5160,500,"Squab, (pigeon), meat and skin, raw","SQUAB,(PIGEON),MEAT&SKN,RAW",,,,Bone,23,Columba spp.,6.25,4.27,9.02,3.87,Poultry Products,18.47,23.8,0,294,,0,12,3.54,22,248,199,54,2.2,13.3,243,,5.2,0.212,0.224,6.046,0.41,0.4,,0,95
5161,500,"Squab, (pigeon), meat only, raw","SQUAB,(PIGEON),MEAT ONLY,RAW",,,,"23% bone, 12% skin",35,,6.25,4.27,9.02,3.87,Poultry Products,17.5,7.5,0,142,,0,13,4.51,25,307,237,51,2.7,13.5,94,,7.2,0.283,0.285,6.86,0.53,0.47,,0,90
5162,500,"Squab, (pigeon), light meat without skin, raw","SQUAB,(PIGEON),LT MEAT WO/SKN,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,21.76,4.52,0,134,,0,10,2.31,28,228,260,55,2.7,15.5,57,,5.1,0.24,0.243,7.322,0.53,0.47,,0,90
5165,500,"Turkey, whole, meat and skin, raw","TURKEY,WHL,MEAT & SKN,RAW",,,Y,Bone and connective tissue 29%,29,,6.25,4.27,9.02,3.87,Poultry Products,21.64,5.64,0.13,143,0.07,0,11,0.86,25,183,224,112,1.78,21.3,56,12,0,0.048,0.185,7.631,0.599,1.22,0,0,72
5166,500,"Turkey, whole, meat and skin, cooked, roasted","TURKEY,WHL,MEAT & SKN,CKD,RSTD",,,Y,Bone connective tissue 31%,31,,6.25,4.27,9.02,3.87,Poultry Products,28.55,7.39,0.06,189,0,0,14,1.09,30,223,239,103,2.48,29.8,39,15,0,0.045,0.281,9.573,0.616,1.02,0,0,109
5167,500,"Turkey, whole, meat only, raw","TURKEY,WHL,MEAT ONLY,RAW",,,Y,"Bone and connective tissue 29%, Skin and separable fat 11%",41,,6.25,4.27,9.02,3.87,Poultry Products,22.64,1.93,0.14,112,0.07,0,11,0.86,27,190,235,118,1.84,22.6,30,8,0,0.05,0.192,8.1,0.652,1.24,0,0,67
5168,500,"Turkey, whole, meat only, cooked, roasted","TURKEY,WHL,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 31%, Skin and separable fat 7%",38,,6.25,4.27,9.02,3.87,Poultry Products,29.06,3.84,0,159,0,0,13,1.03,29,222,239,101,2.51,30.7,14,10,0,0.047,0.28,9.5,0.643,0.94,0,0,101
5169,500,"Turkey, skin from whole, (light and dark), raw","TURKEY,SKN FROM WHL,(LIGHT & DARK),RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,12.96,38.93,0.16,407,0.1,0,13,0.85,11,120,124,62,1.1,10.1,284,46,0,0.021,0.11,3.905,0.166,0.88,0,0,122
5170,500,"Turkey, skin from whole (light and dark), roasted","TURKEY,SKN FROM WHL (LIGHT & DARK),RSTD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,23.94,39.31,0.57,459,0,0,21,1.63,33,233,242,116,2.14,21.1,262,54,0,0.029,0.29,10.235,0.375,1.71,0,0,177
5171,500,"Turkey, whole, giblets, raw","TURKEY,WHL,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.18,5.09,0.07,124,0,0,18,5.92,22,223,198,136,3.23,49.3,13129,34,0,0.149,1.393,8.694,0.654,13.06,0,0,333
5172,500,"Turkey, whole, giblets, cooked, simmered","TURKEY,WHL,GIBLETS,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.44,6.61,0,173,0,0,18,3.39,25,249,177,117,4.29,71.1,15397,0,0,0.171,1.543,8.647,0.546,15.89,0,0,521
5173,500,"Turkey, gizzard, all classes, raw","TURKEY,GIZZARD,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.8,3.37,0,111,0,0,16,2.78,19,164,185,147,3.03,28.8,154,19,6.2,0.061,0.327,6.233,0.198,3.61,0,0,271
5174,500,"Turkey, gizzard, all classes, cooked, simmered","TURKEY,GIZZARD,ALL CLASSES,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.45,4.64,0,155,0,0,17,3.68,21,187,193,127,3.92,44.1,37,0,6.3,0.057,0.357,6.45,0.175,3.91,0,0,452
5175,500,"Turkey, heart, all classes, raw","TURKEY,HEART,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.7,7.44,0.4,140,0,0,18,3.7,21,183,179,129,3.21,35.4,305,17,3,0.165,1.13,6.44,0.479,13.3,0,0,225
5176,500,"Turkey, heart, all classes, cooked, simmered","TURKEY,HEART,ALL CLASSES,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,24.88,7.52,0,174,0,0,21,6.96,28,241,203,140,4.6,56.8,54,0,0,0.236,1.54,7.76,0.608,13.9,0,0,359
5177,500,"Turkey, liver, all classes, raw","TURKEY,LIVER,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.26,5.5,0,128,0,0,20,8.94,24,279,214,131,3.37,68.7,26901,50,24.5,0.206,2.247,11.233,1.04,19.73,0,0,415
5178,500,"Turkey, liver, all classes, cooked, simmered","TURKEY,LIVER,ALL CLASSES,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,27,8.18,0,189,0,0,19,1.79,26,312,153,98,4.53,102.3,35836,,22.6,0.256,2.687,11.09,0.882,28.17,0,0,648
5179,500,"Turkey from whole, neck, meat only, raw","TURKEY FROM WHL,NECK,MEAT ONLY,RAW",,,,Bone and connective tissue 60%,60,,6.25,4.27,9.02,3.87,Poultry Products,16.51,6.04,0,125,0,0,24,1.01,15,160,133,233,3.39,28.6,43,13,0,0.051,0.211,4.924,0.364,1.76,0,0,115
5180,500,"Turkey from whole, neck, meat only, cooked, simmered","TURKEY FROM WHL,NECK,MEAT ONLY,CKD,SIMMRD",,,Y,Bone and connective tissue 53%,53,,6.25,4.27,9.02,3.87,Poultry Products,22.48,7.36,0,162,0,0,58,1.18,18,182,114,246,4.03,36.2,0,12,0,0.048,0.288,5.88,0.375,1.42,0,0,128
5181,500,"Turkey from whole, light meat, meat and skin, raw","TURKEY FROM WHL,LT MEAT,MEAT & SKN,RAW",,,,Bone and Conncetive tissue 32%,32,,6.25,4.27,9.02,3.87,Poultry Products,21.96,7.43,0.15,161,0.06,0,11,0.75,25,188,223,105,1.25,20.7,62,11,0,0.038,0.139,8.968,0.711,0.67,0,0,67
5182,500,"Turkey from whole, light meat, meat and skin, cooked, roasted","TURKEY FROM WHL,LT MEAT,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 20%,20,,6.25,4.27,9.02,3.87,Poultry Products,29.55,5.57,0.05,177,0,0,11,0.8,32,230,248,101,1.76,29.3,35,14,0,0.035,0.213,11.608,0.767,0.5,0,0,89
5183,500,"Turkey, dark meat, meat and skin, raw","TURKEY,DK MEAT,MEAT & SKN,RAW",,,,Bone and connective tissue 38%,48,,6.25,4.27,9.02,3.87,Poultry Products,19.81,8.97,0.15,161,0.1,0,11,1,22,166,208,113,2.32,20.2,86,19,0,0.055,0.229,5.378,0.391,1.84,0,0,87
5184,500,"Turkey, dark meat from whole, meat and skin, cooked, roasted","TURKEY,DK MEAT FROM WHL,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 38%,38,,6.25,4.27,9.02,3.87,Poultry Products,27.27,9.95,0.07,206,0,0,17,1.45,27,215,228,105,3.35,30.2,47,15,0,0.057,0.365,7.103,0.43,1.66,0,0,134
5185,500,"Turkey from whole, light meat, raw","TURKEY FROM WHL,LT MEAT,RAW",,,,"Bone and connective tissue 20%, skin and separable fat 12%",29,,6.25,4.27,9.02,3.87,Poultry Products,23.66,1.48,0.14,114,0.05,0,11,0.73,28,201,242,113,1.28,22.7,20,5,0,0.042,0.145,9.924,0.813,0.63,0,0,57
5186,500,"Turkey, all classes, light meat, cooked, roasted","TURKEY,ALL CLASSES,LT MEAT,CKD,RSTD",,,Y,"Bone and connective tissue 20%, Skin and separable fat 7%",27,,6.25,4.27,9.02,3.87,Poultry Products,30.13,2.08,0,147,0,0,9,0.71,32,230,249,99,1.72,30.2,11,10,0,0.035,0.205,11.75,0.807,0.37,0,0,80
5187,500,"Turkey from whole, dark meat, meat only, raw","Turkey from whole, dark meat, meat only, raw",,,,"Bone and connective tissue 38%, skin and separable fat 10%",48,,,,,,Poultry Products,21.28,2.5,0.15,108,0.1,0,11,1.04,25,176,226,124,2.59,22.4,43,13,0,0.062,0.255,5.696,0.44,2.05,0,0,79
5188,500,"Turkey, from whole, dark meat, cooked, roasted","TURKEY,FROM WHL,DK MEAT,CKD,RSTD",,,Y,Bone and connective tissue 39% Skin and separable fat 7%,46,,6.25,4.27,9.02,3.87,Poultry Products,27.71,6.04,0,173,0,0,17,1.43,27,212,227,104,3.51,31.4,18,10,0,0.06,0.375,6.685,0.438,1.65,0,0,128
5190,500,"Turkey, all classes, back, meat and skin, cooked, roasted","TURKEY,ALL CLASSES,BACK,MEAT&SKN,CKD,RSTD",,,Y,Bone,41,,6.25,4.27,9.02,3.87,Poultry Products,26.59,14.38,0.16,244,0,0,33,2.19,22,189,260,73,3.92,37.8,0,1,0,0.054,0.224,3.446,0.3,0.34,4.5,0,91
5191,500,"Turkey, all classes, breast, meat and skin, raw","TURKEY,ALL CLASSES,BREAST,MEAT&SKN,RAW",,,,Bone,10,,6.25,4.27,9.02,3.87,Poultry Products,21.89,7.02,0,157,,0,13,1.2,24,186,275,59,1.57,22.4,6,,0,0.058,0.115,5.2,0.48,0.42,,0,65
5192,500,"Turkey, all classes, breast, meat and skin, cooked, roasted","TURKEY,ALL CLASSES,BREAST,MEAT&SKN,CKD,RSTD",,,,Bone,8,,6.25,4.27,9.02,3.87,Poultry Products,28.71,7.41,0,189,,0,21,1.4,27,210,288,63,2.03,29.1,0,,0,0.057,0.131,6.365,0.48,0.36,,0,74
5193,500,"Turkey, all classes, leg, meat and skin, raw","TURKEY,ALL CLASSES,LEG,MEAT&SKN,RAW",,,,Bone,17,,6.25,4.27,9.02,3.87,Poultry Products,19.54,6.72,0,144,,0,17,1.72,21,177,273,74,3.09,26.4,3,,0,0.077,0.211,2.947,0.34,0.39,,0,71
5194,500,"Turkey, all classes, leg, meat and skin, cooked, roasted","TURKEY,ALL CLASSES,LEG,MEAT&SKN,CKD,RSTD",,,Y,Bone,19,,6.25,4.27,9.02,3.87,Poultry Products,27.87,9.82,0,208,0,0,32,2.3,23,199,280,77,4.27,37.8,0,4,0,0.06,0.241,3.561,0.33,0.36,0,0,85
5195,500,"Turkey, all classes, wing, meat and skin, raw","TURKEY,ALL CLASSES,WING,MEAT&SKN,RAW",,,,Bone,33,,6.25,4.27,9.02,3.87,Poultry Products,20.22,12.32,0,197,,0,14,1.26,21,165,240,55,1.54,22.4,11,,0,0.05,0.11,4.425,0.41,0.39,,0,70
5196,500,"Turkey, all classes, wing, meat and skin, cooked, roasted","TURKEY,ALL CLASSES,WING,MEAT&SKN,CKD,RSTD",,,Y,Bone,34,,6.25,4.27,9.02,3.87,Poultry Products,27.38,12.43,0,229,0,0,24,1.46,25,197,266,61,2.1,29.9,0,4,0,0.05,0.134,5.732,0.42,0.34,0,0,81
5200,500,"Turkey, fryer-roasters, meat and skin, cooked, roasted","TURKEY,FRYER-ROASTERS,MEAT&SKN,CKD,RSTD",,,Y,Bone,25,,6.25,4.27,9.02,3.87,Poultry Products,28.26,5.72,0,172,0,0,22,1.95,25,198,250,66,2.89,33.8,0,1,0,0.043,0.183,4.922,0.42,0.37,0.8,0,105
5215,500,"Turkey, back from whole bird, meat only, raw","TURKEY,BACK FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 50%, skin and separable fat 12%",62,,6.25,4.27,9.02,3.87,Poultry Products,21.28,2.5,0.15,113,0.1,0,11,1.04,25,176,226,124,2.59,22.4,43,13,0,0.062,0.255,5.696,0.44,2.05,0,0,79
5216,500,"Turkey, back, from whole bird, meat only, roasted","TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 54%, Skin and separable fat 7%",42,,6.25,4.27,9.02,3.87,Poultry Products,27.71,6.04,0,173,0,0,17,1.43,27,212,227,104,3.51,31.4,18,10,0,0.06,0.375,6.685,0.438,1.65,0,0,128
5219,500,"Turkey, breast, from whole bird, meat only, raw","TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 12%, Skin and separable fat 10%",22,,6.25,4.27,9.02,3.87,Poultry Products,23.66,1.48,0.14,114,0.05,0,11,0.73,28,201,242,113,1.28,22.7,20,5,0,0.042,0.145,9.924,0.813,0.63,0,0,57
5220,500,"Turkey, breast, from whole bird, meat only, roasted","TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 13%, Skin and separable fat 6%",19,,6.25,4.27,9.02,3.87,Poultry Products,30.13,2.08,0,147,0,0,9,0.71,32,230,249,99,1.72,30.2,11,10,0,0.035,0.205,11.75,0.807,0.39,0,0,80
5227,500,"Turkey, wing, from whole bird, meat only, raw","TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 44%, skin and separable fat 16%",60,,6.25,4.27,9.02,3.87,Poultry Products,23.66,1.48,0.14,114,0.05,0,11,0.73,28,201,242,113,1.28,22.7,20,5,0,0.042,0.145,9.924,0.813,0.63,,0,57
5228,500,"Turkey, wing, from whole bird, meat only, roasted","TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 48%, skin and separable fat 11%",59,,6.25,4.27,9.02,3.87,Poultry Products,30.13,2.08,0,147,0,0,9,0.71,32,230,249,99,1.72,30.2,11,10,0,0.035,0.205,11.75,0.807,0.81,0,0,80
5236,500,"Turkey, young hen, skin only, cooked, roasted","TURKEY,YOUNG HEN,SKN ONLY,CKD,RSTD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,19.03,44.45,0,482,,0,32,1.82,15,133,155,44,2.06,144.1,0,,0,0.021,0.133,2.801,0.07,0.24,,0,106
5277,500,"Chicken, canned, meat only, with broth","CHICKEN,CND,MEAT ONLY,W/BROTH",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,21.77,7.95,0,165,0,0,14,1.58,12,111,138,503,1.41,15.8,117,5,2,0.015,0.129,6.329,0.35,0.29,1.8,0,62
5282,500,"Pate de foie gras, canned (goose liver pate), smoked","PATE DE FOIE GRAS,CND (GOOSE LIVER PATE),SMOKED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,11.4,43.84,4.67,462,,0,70,5.5,13,200,138,697,0.92,44,3333,,2,0.088,0.299,2.51,0.06,9.4,,0,150
5284,500,"Turkey, canned, meat only, with broth","TURKEY,CND,MEAT ONLY,W/BROTH",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,23.68,6.86,1.47,169,0,0,12,1.86,20,162,224,518,2.37,25.9,0,11,2,0.014,0.171,6.622,0.33,0.28,0.7,0,66
5285,500,"Turkey, diced, light and dark meat, seasoned","TURKEY,DICED,LT&DK MEAT,SEASONED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.7,6,1,138,,0,1,1.8,17,240,310,850,2.02,26.1,0,,0,0.04,0.11,4.8,0.28,0.24,,0,55
5286,500,"Turkey and gravy, frozen","TURKEY AND GRAVY,FROZEN",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,5.88,2.63,4.61,67,,0,14,0.93,8,81,61,554,0.7,19.2,42,,0,0.024,0.127,1.799,0.1,0.24,,0,18
5293,500,"Turkey breast, pre-basted, meat and skin, cooked, roasted","TURKEY BREAST,PRE-BASTED,MEAT&SKN,CKD,RSTD",,,,Bone,8,,6.25,4.27,9.02,3.87,Poultry Products,22.16,3.46,0,126,,0,9,0.66,21,214,248,397,1.53,25.7,0,,0,0.053,0.133,9.067,0.32,0.32,,0,42
5294,500,"Turkey thigh, pre-basted, meat and skin, cooked, roasted","TURKEY THIGH,PRE-BASTED,MEAT&SKN,CKD,RSTD",,,,Bone,13,,6.25,4.27,9.02,3.87,Poultry Products,18.8,8.54,0,157,,0,8,1.51,17,171,241,437,4.12,27.9,0,,0,0.083,0.255,2.409,0.23,0.24,,0,62
5295,500,"Turkey roast, boneless, frozen, seasoned, light and dark meat, raw","TURKEY RST,BNLESS,FRZ,SEASONED,LT&DK MEAT,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,17.6,2.2,6.4,120,,0,1,2.1,20,158,360,678,1.91,26.5,0,,0,0.04,0.12,4.4,0.38,0.35,,0,53
5300,500,"Turkey sticks, breaded, battered, fried","TURKEY STKS,BREADED,BATTERED,FRIED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,14.2,16.9,17,279,,,14,2.2,15,234,260,838,1.46,20.7,40,,0,0.1,0.18,2.1,0.2,0.23,,20,64
5301,500,"Poultry, mechanically deboned, from backs and necks with skin, raw","POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS W/SKN,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,11.39,24.73,0,272,,0,138,1.57,12,132,104,40,1.29,10.7,245,,1.5,0.05,0.129,4.63,0.19,0.25,,0,130
5302,500,"Poultry, mechanically deboned, from backs and necks without skin, raw","POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS WO/SKN,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,13.79,15.48,0,199,,0,123,1.73,13,154,128,51,1.82,14.4,107,,3,0.071,0.175,6.246,0.32,0.35,,0,104
5303,500,"Poultry, mechanically deboned, from mature hens, raw","POULTRY,MECHANICALLY DEBONED,FROM MATURE HENS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,14.72,19.98,0,243,,0,187,1.22,12,132,104,40,1.9,15.7,149,,2,0.096,0.14,5.254,0.28,0.27,,0,143
5304,500,"Turkey, mechanically deboned, from turkey frames, raw","TURKEY,MECHANICALLY DEBONED,FROM TURKEY FRAMES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,13.29,15.96,0,201,,0,145,1.61,13,115,173,48,2.9,26.5,0,,0,0.048,0.134,1.969,0.21,0.26,,0,95
5305,500,"Ground turkey, raw","GROUND TURKEY,RAW",,,,,0,,,,,,Poultry Products,19.66,7.66,0,148,0,0,19,1.09,23,200,237,58,2.35,21.9,66,14,0,0.066,0.156,6.733,0.564,1,0,0,69
5306,500,"Ground turkey, cooked","GROUND TURKEY,CKD",,,Y,,0,,,,,,Poultry Products,27.37,10.4,0,203,0,0,28,1.52,30,254,294,78,3.11,31.1,79,8,0,0.077,0.211,8.724,0.633,1.34,0,0,93
5307,500,"Chicken, cornish game hens, meat and skin, raw","CHICKEN,CORNISH GAME HENS,MEAT&SKN,RAW",,,,Bone,39,,6.25,4.27,9.02,3.87,Poultry Products,17.15,14.02,0,200,0,0,11,0.78,18,140,236,61,1.15,11.8,108,,0.5,0.073,0.17,5.675,0.295,0.33,2.4,0,101
5308,500,"Chicken, cornish game hens, meat and skin, cooked, roasted","CHICKEN,CORNISH GAME HENS,MEAT&SKN,CKD,RSTD",,,Y,Bone,37,,6.25,4.27,9.02,3.87,Poultry Products,22.27,18.21,0,259,0,0,13,0.91,18,146,245,64,1.49,15.5,106,2,0.5,0.067,0.199,5.897,0.307,0.28,2.4,0,131
5309,500,"Chicken, cornish game hens, meat only, raw","CHICKEN,CORNISH GAME HENS,MEAT ONLY,RAW",,,,"39% bone, 13% skin, 5% separable fat",57,,6.25,4.27,9.02,3.87,Poultry Products,20.04,3.33,0,116,0,0,12,0.74,21,160,269,68,1.31,15.8,75,,0.6,0.092,0.216,6.744,0.385,0.4,2.4,0,91
5310,500,"Chicken, cornish game hens, meat only, cooked, roasted","CHICKEN,CORNISH GAME HENS,MEAT ONLY,CKD,RSTD",,,Y,"37% bone, 9% skin",46,,6.25,4.27,9.02,3.87,Poultry Products,23.3,3.87,0,134,0,0,13,0.77,19,149,250,63,1.53,20.8,65,5,0.6,0.075,0.227,6.273,0.358,0.3,2.4,0,106
5311,500,"Chicken, canned, no broth","CHICKEN,CANNED,NO BROTH",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,25.3,8.1,0.9,185,0,0,14,1.3,19,153,153,482,2.5,18.4,177,5,0,0,0.1,2.4,0.19,1,2.3,0,50
5312,500,"Chicken, wing, frozen, glazed, barbecue flavored","CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV",,,,"Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%",33,,6.25,4.27,9.02,3.87,Poultry Products,19.67,12.67,3.34,211,2.04,0.6,28,2.41,20,205,190,615,1.14,33.2,58,,0,0.074,0.242,5.5,0.142,0.4,,0,126
5313,500,"Chicken, wing, frozen, glazed, barbecue flavored, heated (microwave)","CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV,HTD (MICROWAVE)",,,,"Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%",33,,6.25,4.27,9.02,3.87,Poultry Products,25.34,13.9,3.84,248,2.1,0.9,38,2.74,27,272,254,837,1.55,41.7,68,,0.5,0.081,0.296,7.1,0.21,0.48,,0,156
5314,500,"Chicken, broilers or fryers, breast, skinless, boneless, meat only, with added solution, raw","CKN,BROILERS/FRYERS,BRST,SKNLS,BNLS,MEAT ONLY,W ADDED SLN,RW",,,Y,,0,,6.25,,,,Poultry Products,20.32,3,0,108,0,0,5,0.34,25,198,332,173,0.63,26.4,36,2,0,0.068,0.127,7.583,0.761,0.19,0,0,64
5315,500,"Duck, young duckling, domesticated, White Pekin, breast, meat and skin, boneless, cooked, roasted","DUCK,YNG DUCKLING,DOM,WH PEKIN,BRST,MEAT&SKN,BNLESS,CKD,RSTD",,,,,0,Anas platyrhynchos,6.25,4.27,9.02,,Poultry Products,24.5,10.85,0,202,,,8,3.26,,,,84,,26.4,,,2.8,,,7.855,,,,,136
5316,500,"Duck, young duckling, domesticated, White Pekin, breast, meat only, boneless, cooked without skin, broiled","DUCK,YNG DUCKL,DOM,WH PEKIN,BRST,MEAT,BNLESS,CKD WO/SKN,BRLD",,,,,0,Anas platyrhynchos,6.25,4.27,9.02,,Poultry Products,27.6,2.5,0,140,,,9,4.49,,,,105,,29,,,3.2,,,10.35,,,,,143
5317,500,"Duck, young duckling, domesticated, White Pekin, leg, meat and skin, bone in, cooked, roasted","DUCK,YNG DUCKLING,DOM,WH PEKIN,LEG,MEAT&SKN,BONE IN,CKD,RSTD",,,,Bone,31,Anas platyrhynchos,6.25,4.27,9.02,,Poultry Products,26.75,11.4,0,217,,,10,2.08,,,,110,,21.8,,,1.5,,,5.77,,,,,114
5318,500,"Duck, young duckling, domesticated, White Pekin, leg, meat only, bone in, cooked without skin, braised","DUCK,YNG DUCKL,DOM,WH PEKIN,LEG,MEAT,BONE IN,CKD WO/SKN,BRSD",,,,Bone,34,Anas platyrhynchos,6.25,4.27,9.02,,Poultry Products,29.1,5.96,0,178,,,10,2.33,,,,108,,21.6,,,2.3,,,5.33,,,,,105
5319,500,"Chicken, broiler, rotisserie, BBQ, drumstick, meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT ONLY",,,Y,"Bone and connective tissue 29%, skin and separable fat 12%",41,,,,,,Poultry Products,27.71,6.76,0,172,0,0,20,1.05,23,248,291,403,2.86,27.4,33,0,0,0.065,0.229,5.745,0.184,0.47,0,0,155
5320,500,"Chicken, wing, frozen, glazed, barbecue flavored, heated (conventional oven)","CHICKEN,WING,FRZ,GLAZED,BBQ FLAV,HTD (CONVENTIONAL OVEN)",,,,"Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%",33,,6.25,4.27,9.02,3.87,Poultry Products,22.24,14.87,3.36,242,1.94,0.5,28,1.97,21,233,218,559,1.3,34.2,69,,0,0.117,0.26,6.03,0.183,0.55,,0,136
5323,500,"Chicken patty, frozen, uncooked","CHICKEN PATTY,FRZ,UNCKD",,,,,0,,,,,,Poultry Products,14.33,20.04,13.61,292,0,1.2,20,0.93,25,196,248,518,0.94,21.4,37,,0,0.073,0.054,6.63,0.155,0.23,11.1,0,45
5324,500,"Chicken patty, frozen, cooked","CHICKEN PATTY,FRZ,CKD",,,Y,,0,,,,,,Poultry Products,14.85,19.58,12.84,287,0,0.3,19,0.95,24,208,261,532,1.05,23.3,0,11,0,0.083,0.072,4.764,0.183,0.29,4.2,0,43
5326,500,"Chicken breast tenders, breaded, cooked, microwaved","CHICKEN BREAST TENDERS,BREADED,CKD,MICROWAVED",,,,,0,,6.25,,,,Poultry Products,16.35,12.89,17.56,252,0,0,14,1,26,216,225,446,0.77,30.6,0,,0,0.324,0.098,6.514,0.037,0.44,4.2,0,45
5327,500,"Chicken breast tenders, breaded, uncooked","CHICKEN BREAST TENDERS,BREADED,UNCKD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,14.73,15.75,15.01,263,0.37,1.1,19,1.11,23,211,214,536,0.78,24.7,0,9,0.8,0.211,0.091,5.71,0.041,0.27,14.7,0,41
5332,500,"Chicken, ground, raw","CHICKEN,GROUND,RAW",,,,,0,,6.25,,,,Poultry Products,17.44,8.1,0.04,143,0,0,6,0.82,21,178,522,60,1.47,10.2,0,,0,0.109,0.241,5.575,0.512,0.56,0.8,0,86
5333,500,"Chicken, ground, crumbles, cooked, pan-browned","CHICKEN,GROUND,CRUMBLES,CKD,PAN-BROWNED",,,,,0,,6.25,3.87,9.04,4.27,Poultry Products,23.28,10.92,0,189,0,0,8,0.93,28,234,677,75,1.92,14.3,0,,0,0.121,0.302,7.107,0.538,0.51,2.1,0,107
5334,500,"Chicken, broiler, rotisserie, BBQ, thigh, meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT ONLY",,,Y,"Bone and connective tissue 14%, skin and separable fat 15%",29,,,,,,Poultry Products,24.09,10.74,0,193,0,0,13,0.97,21,216,262,335,2,23.1,44,0,0,0.055,0.234,5.441,0.176,0.45,0,0,128
5335,500,"Chicken, feet, boiled","CHICK,FEET,BOILED",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,19.4,14.6,0.2,215,0,0,88,0.91,5,83,31,67,0.69,3.6,100,8,0,0.06,0.2,0.4,0.01,0.47,0.2,0,84
5336,500,"USDA Commodity Chicken, canned, meat only, drained","USDA CMDTY CHICK,CND,MEAT ONLY,DRND",,,,,0,,,,,,Poultry Products,27.52,5.72,0,162,0,0,12,1.16,22,156,189,271,1.94,24.5,41,,0,0.051,0.171,6.505,0.266,0.23,2,0,83
5337,500,"USDA Commodity, Chicken, canned, meat only, with water","USDA CMDTY,CHICK,CND,MEAT ONLY,W/ H2O",USDA Commodity A532 (12.5 oz can) and A507(50 oz can),,,,0,,,,,,Poultry Products,22.02,4.58,0,129,0,0,10,0.93,18,125,151,251,1.55,19.6,33,,0,0.041,0.137,5.204,0.213,0.18,1.6,0,67
5338,500,"USDA Commodity, Chicken, canned, meat only, with broth","USDA CMDTY,CHICK,CND,MEAT ONLY,W/ BROTH",,,,,0,,,,,,Poultry Products,22.41,4.69,0.23,133,0.03,0,10,0.97,18,131,168,256,1.57,19.6,33,,0,0.041,0.143,5.471,0.215,0.2,1.6,0,67
5339,500,"Chicken, broiler, rotisserie, BBQ, wing, meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT ONLY",,,Y,"Bone and connective tissue 32%, skin and separable fat 25%",57,,6.25,,,,Poultry Products,28.34,7.79,0.54,184,0.53,0,32,0.97,24,264,322,725,2.05,51.1,37,0,0,0.092,0.138,7.676,0.184,0.39,0,0,134
5341,500,"Chicken, broilers or fryers, back, meat only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,ROTISSERIE,ORI",,,,"40.14% bone and cartilage, 16.08% skin and separable fat",56,,,,,,Poultry Products,25.34,11.54,0,205,0,0,38,0.97,21,250,309,661,2.04,48.3,57,,0,0.08,0.21,6,0.14,0.71,0,0,123
5342,500,"Chicken, broilers or fryers, breast, meat only, cooked, rotisserie, original seasoning","CKN,BRLERS/FRYERS,BRST,MT ONLY,CKD,ROTISSERIE,ORIG SEASONING",,,Y,"Bone and Connective tissue 26%, skin 10%",36,,,,,,Poultry Products,28,2.79,0,137,0,0,13,0.45,25,235,303,313,0.86,39.1,17,1,0,0.045,0.207,9.233,0.24,0.27,3.4,0,86
5343,500,"Chicken, broilers or fryers, drumstick, meat only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,ROTISSERIE,",,,,"29.34% bone and cartilage, 11.75% skin and separable fat",41,,,,,,Poultry Products,28.74,6.81,0,176,0,0,21,1.09,24,257,301,417,2.96,38.2,34,,0,0.067,0.237,5.958,0.19,0.49,0,0,160
5344,500,"Chicken, broilers or fryers, skin only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,ROTISSERIE,ORIGINAL",,,,,0,,6.25,,,,Poultry Products,17.66,37.24,0.11,406,0.11,0,25,0.98,26,248,245,381,1.03,18.5,186,,0,0.036,0.121,5.737,0.138,0.59,0,0,141
5345,500,"Chicken, broilers or fryers, thigh, meat only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,ROTISSERIE,OR",,,,"14.24% bone and cartilage, 14.88% skin and separable fat",29,,,,,,Poultry Products,24.06,11.09,0,196,0,0,13,0.97,21,217,264,337,2.01,27,45,,0,0.055,0.233,5.433,0.176,0.45,0,0,130
5346,500,"Chicken, broilers or fryers, wing, meat only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,ROTISSERIE,ORI",,,,"32.51% bone and cartilage, 24.10% skin and separable fat",57,,,,,,Poultry Products,27.69,9.53,0,197,0,0,32,0.97,24,264,322,725,2.05,51.1,37,,0,0.09,0.135,7.5,0.18,0.38,0,0,140
5347,500,"Chicken, broilers or fryers, back, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,BACK,MEAT & SKN,CKD,ROTISSERIE,OR",,,,,0,,,,,,Poultry Products,23.23,18.59,0.03,260,0.03,0,35,0.97,23,249,291,584,1.77,40.1,92,,0,0.068,0.185,5.928,0.139,0.68,0,0,128
5348,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT & SKN,CKD,ROTISSERIE,",,,,,0,,,,,,Poultry Products,27.48,8.18,0.02,184,0.02,0,15,0.55,26,255,289,347,0.92,30.6,41,,0,0.078,0.133,9.397,0.299,0.32,0,0,96
5349,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT & SKN,CKD,ROTISSERIE",,,,,0,,,,,,Poultry Products,26.86,11.98,0.02,215,0.02,0,21,1.07,25,255,291,411,2.63,34.8,60,,0,0.062,0.218,5.921,0.181,0.51,0,0,156
5351,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT & SKN,CKD,ROTISSERIE,O",,,,,0,,,,,,Poultry Products,22.93,15.7,0.02,233,0.02,0,15,0.97,22,222,260,345,1.84,25.5,70,,0,0.052,0.213,5.487,0.169,0.47,0,0,132
5352,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,WING,MEAT & SKN,CKD,ROTISSERIE,OR",,,,,0,,,,,,Poultry Products,24.34,18.77,0.04,266,0.04,0,29,0.97,24,258,296,610,1.71,40.2,87,,0,0.072,0.13,6.912,0.166,0.45,0,0,140
5353,500,"USDA Commodity, chicken fajita strips, frozen","USDA CMDTY,CHICK FAJITA STRIPS,FRZ",,,,,0,,,,,,Poultry Products,18.56,5.73,2.23,135,0,0,13,0.99,22,277,284,799,1.37,16.7,0,,0,0.1,0.213,4.779,0.387,0.54,0.2,0,88
5354,500,"USDA Commodity, turkey taco meat, frozen, cooked","USDA CMDTY,TURKEY TACO MEAT,FRZ,CKD",,,,,0,,,,,,Poultry Products,16.8,7.58,3.03,148,0,0,69,1.8,27,180,297,632,2.52,17.9,0,,0,0.078,0.334,2.982,0.3,2.17,0,0,71
5356,500,"Chicken, broiler, rotisserie, BBQ, skin","CHICKEN,BROILER,ROTISSERIE,BBQ,SKIN",,,Y,,0,,,,,,Poultry Products,15.19,35.15,0.7,378,0.7,0,34,0.86,22,230,223,335,0.76,16.6,171,0,0,0.054,0.199,7.082,0.259,0.55,0,0,120
5357,500,"Chicken, broiler, rotisserie, BBQ, back meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,BACK MEAT & SKN",,,Y,Bone and connective tissue 37%,37,,,,,,Poultry Products,20.29,18.86,0.4,251,0.4,0,33,0.83,19,217,254,509,1.51,35.4,79,5,0,0.065,0.185,5.621,0.153,0.6,0,0,118
5358,500,"Chicken, broiler, rotisserie, BBQ, breast meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,BREAST MEAT & SKN",,,Y,Bone and connective tissue 11%,11,,,,,,Poultry Products,26.37,7.67,0.09,175,0.09,0,16,0.51,25,244,276,329,0.86,22.3,37,0,0,0.078,0.139,9.303,0.307,0.3,0,0,90
5359,500,"Chicken, broiler, rotisserie, BBQ, drumstick meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK MEAT & SKN",,,Y,Bone and connective tissue 29%,29,,,,,,Poultry Products,25.65,11.46,0.12,206,0.12,0,22,1.02,23,245,279,392,2.52,25.7,56,0,0,0.063,0.224,5.966,0.196,0.49,0,0,149
5361,500,"Chicken, broiler, rotisserie, BBQ, thigh meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH MEAT & SKN",,,Y,Bone and connective tissue 14%,14,,,,,,Poultry Products,22.51,15.08,0.12,226,0.12,0,16,0.95,21,218,255,335,1.78,22,67,0,0,0.055,0.227,5.732,0.191,0.47,0,0,127
5362,500,"Chicken, broiler, rotisserie, BBQ, wing meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,WING MEAT & SKN",,,Y,Bone and connective tissue 32%,32,,,,,,Poultry Products,23.42,18.04,0.6,257,0.6,0,33,0.93,23,251,285,579,1.57,38.2,87,0,0,0.078,0.161,7.454,0.212,0.45,0,0,129
5363,500,"Ruffed Grouse, breast meat, skinless, raw","RUFFED GROUSE,BREAST MEAT,SKINLESS,RAW",Ruffed grouse,,,,0,Bonasa umbellus,,,,,Poultry Products,25.94,0.88,0,112,0,0,5,0.58,32,229,311,50,0.51,,16,,0,0.042,0.28,11.6,1.275,2.9,,,40
5600,500,"USDA Commodity, turkey ham, dark meat, smoked, frozen","USDA COMMODITY,TURKEY HAM,DK MEAT,SMOKED,FRZ",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.3,4,3.1,118,1.2,0,7,1,16,289,253,909,2.1,38.2,53,,0,0.23,0.27,4.12,0.06,0.8,,,64
5621,500,"Emu, ground, raw","EMU,GROUND,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.77,4.03,0,134,0,0,7,4.02,24,222,320,56,3.48,30.5,0,,0,0.27,0.457,7.485,0.642,6.75,,0,69
5622,500,"Emu, ground, cooked, pan-broiled","EMU,GROUND,CKD,PAN-BROILED",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,28.43,4.65,0,163,0,0,8,5.01,29,269,375,65,4.56,43.5,0,,0,0.318,0.545,8.925,0.833,8.52,3.6,0,87
5623,500,"Emu, fan fillet, raw","EMU,FAN FILLET,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.5,0.8,0,103,0,0,3,4.5,42,236,300,120,3.5,32.5,0,,0,0.267,0.451,7.397,0.634,6.67,,0,71
5624,500,"Emu, fan fillet, cooked, broiled","EMU,FAN FILLET,CKD,BRLD",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,31.27,2.3,0,154,0,0,6,4.56,30,272,397,53,3.19,46.1,0,,0,0.35,0.599,9.814,0.916,9.37,,0,82
5625,500,"Emu, flat fillet, raw","EMU,FLAT FILLET,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.25,0.74,0,102,0,0,3,5,31,229,240,150,3,31.5,0,,0,0.245,0.414,6.786,0.582,6.12,,0,71
5626,500,"Emu, full rump, raw","EMU,FULL RUMP,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.83,1.64,0,112,0,0,4,4.96,40,236,330,90,3.59,32.5,15,,0,0.36,0.458,7.504,0.643,2.24,,0,85
5627,500,"Emu, full rump, cooked, broiled","EMU,FULL RUMP,CKD,BRLD",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,33.67,2.68,0,168,0,0,7,6.89,34,323,324,110,4.32,52.1,11,,0,0.43,0.645,10.569,0.987,2.2,,0,129
5628,500,"Emu, inside drum, raw","EMU,INSIDE DRUM,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.22,1.49,0,108,0,0,4,5.23,26,229,318,102,4.33,31.4,17,,0,0.42,0.446,7.304,0.626,2.26,,0,67
5629,500,"Emu, inside drums, cooked, broiled","EMU,INSIDE DRUMS,CKD,BRLD",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,32.38,2.01,0,156,0,0,6,7.27,33,307,312,118,5.09,49.6,10,,0,0.41,0.621,10.164,0.949,2.4,,0,91
5630,500,"Emu, outside drum, raw","EMU,OUTSIDE DRUM,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,23.08,0.48,0,103,0,0,3,4.5,29,225,320,100,4.5,36.3,0,,0,0.258,0.442,7.245,0.676,6.92,,0,78
5631,500,"Emu, oyster, raw","EMU,OYSTER,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.81,4.86,0,141,0,0,4,5.5,30,217,250,150,6,29.8,0,,0,0.271,0.458,7.499,0.643,6.76,,0,81
5632,500,"Emu, top loin, cooked, broiled","EMU,TOP LOIN,CKD,BRLD",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,29.07,3.13,0,152,0,0,9,5.07,30,274,374,58,3.42,43.5,0,,0,0.325,0.557,9.124,0.852,8.71,,0,88
5641,500,"Ostrich, ground, raw","OSTRICH,GROUND,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,20.22,8.7,0,165,0,0,7,2.91,20,199,291,72,3.51,33,0,,0,0.182,0.267,4.377,0.475,4.61,,0,71
5642,500,"Ostrich, ground, cooked, pan-broiled","OSTRICH,GROUND,CKD,PAN-BROILED",,,Y,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,26.15,7.07,0,175,0,0,8,3.43,23,224,323,80,4.33,33.5,0,4,0,0.213,0.268,6.557,0.501,5.74,3.5,0,83
5643,500,"Ostrich, fan, raw","OSTRICH,FAN,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.81,2.65,0,117,0,0,6,4.38,22,211,308,75,3.71,34.9,0,,0,0.196,0.288,4.722,0.513,4.97,,0,73
5644,500,"Ostrich, inside leg, raw","OSTRICH,INSIDE LEG,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,22.39,1.72,0,111,0,0,5,2.3,22,220,320,72,3.87,36.4,0,,0,0.201,0.295,4.847,0.526,5.1,,0,66
5645,500,"Ostrich, inside leg, cooked","OSTRICH,INSIDE LEG,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,29.01,1.94,0,141,0,0,6,3.12,25,244,352,83,4.71,36.5,0,,0,0.237,0.298,7.274,0.555,6.36,,0,73
5646,500,"Ostrich, inside strip, raw","OSTRICH,INSIDE STRIP,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,23.69,2.87,0,127,0,0,5,4.2,23,226,330,76,3.98,37.5,0,,0,0.213,0.312,5.129,0.557,5.4,,0,73
5647,500,"Ostrich, inside strip, cooked","OSTRICH,INSIDE STRIP,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,29.37,4.26,0,164,0,0,5,4.8,26,253,366,73,4.9,37.9,0,,0,0.24,0.301,7.364,0.562,6.44,,0,97
5648,500,"Ostrich, outside leg, raw","OSTRICH,OUTSIDE LEG,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,22.86,1.96,0,115,0,0,5,2.65,23,221,322,90,3.89,36.6,0,,0,0.205,0.302,4.949,0.537,5.21,,0,65
5649,500,"Ostrich, outside strip, raw","OSTRICH,OUTSIDE STRIP,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,23.36,2.21,0,120,0,0,5,3.69,23,229,333,70,4.02,37.9,0,,0,0.21,0.308,5.058,0.549,5.33,,0,79
5650,500,"Ostrich, outside strip, cooked","OSTRICH,OUTSIDE STRIP,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,28.55,3.83,0,156,0,0,5,4.3,26,254,367,72,4.91,38,0,,0,0.233,0.293,7.158,0.546,6.26,,0,93
5651,500,"Ostrich, oyster, raw","OSTRICH,OYSTER,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.55,3.67,0,125,0,0,6,3.86,21,204,297,83,3.59,33.8,0,,0,0.194,0.284,4.665,0.507,4.91,,0,73
5652,500,"Ostrich, oyster, cooked","OSTRICH,OYSTER,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,28.81,3.97,0,159,0,0,6,4.9,29,281,409,81,4.94,46.5,0,,0,0.235,0.296,7.224,0.551,6.32,,0,90
5653,500,"Ostrich, round, raw","OSTRICH,RND,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.99,2.4,0,116,0,0,5,3.54,22,216,315,72,3.8,35.8,0,,0,0.198,0.29,4.761,0.517,5.01,,0,71
5654,500,"Ostrich, tenderloin, raw","OSTRICH,TENDERLOIN,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,22.07,3.19,0,123,0,0,6,4.88,22,220,320,86,3.87,36.4,0,,0,0.198,0.291,4.778,0.519,5.03,,0,80
5655,500,"Ostrich, tip trimmed, raw","OSTRICH,TIP RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.85,2.3,0,114,0,0,5,2.86,22,213,310,67,3.74,35.2,0,,0,0.196,0.288,4.73,0.514,4.98,,0,72
5656,500,"Ostrich, tip trimmed, cooked","OSTRICH,TIP CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,28.49,2.57,0,145,0,0,6,2.79,25,251,362,80,4.85,37.5,0,,0,0.232,0.292,7.143,0.545,6.25,,0,85
5657,500,"Ostrich, top loin, raw","OSTRICH,TOP LOIN,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.67,2.95,0,119,0,0,6,3.13,22,214,312,81,3.76,35.4,0,,0,0.195,0.286,4.691,0.509,4.94,,0,75
5658,500,"Ostrich, top loin, cooked","OSTRICH,TOP LOIN,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,28.12,3.87,0,155,0,0,6,3.31,25,245,353,77,4.72,36.6,0,,0,0.229,0.289,7.051,0.538,6.17,3.4,0,93
5661,500,"Chicken, liver, all classes, cooked, pan-fried","CHICKEN,LIVER,ALL CLASSES,CKD,PAN-FRIED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,25.78,6.43,1.11,172,0,0,10,12.88,27,442,315,92,4.01,88.2,14378,,2.7,0.292,2.313,13.925,0.84,21.13,0,0,564
5662,500,"Ground turkey, fat free, raw","GROUND TURKEY,FAT FREE,RAW",,,,,0,,,,,,Poultry Products,23.57,1.95,0,112,0,0,3,0.77,29,227,295,51,1.76,22.1,25,14,0,0.062,0.105,9.708,0.857,0.51,0,0,55
5663,500,"Ground turkey, fat free, pan-broiled crumbles","GROUND TURKEY,FAT FREE,PAN-BROILED CRUMBLES",,,,,0,,,,,,Poultry Products,31.69,2.71,0,151,0,0,6,1.02,35,290,357,61,2.2,31.4,30,8,0,0.082,0.135,12.55,1.08,0.7,0,0,71
5664,500,"Ground turkey, fat free, patties, broiled","GROUND TURKEY,FAT FREE,PATTIES,BRLD",,,,,0,,,,,,Poultry Products,28.99,2.48,0,138,0,0,6,0.78,35,264,339,59,2.19,28,25,8,0,0.067,0.145,10.707,0.908,0.67,0,0,65
5665,500,"Ground turkey, 93% lean, 7% fat, raw","GROUND TURKEY,93% LN,7% FAT,RAW",,,,,0,,,,,,Poultry Products,18.73,8.34,0,150,0,0,21,1.17,21,193,213,69,2.53,19,73,14,0,0.067,0.185,5.417,0.35,1.2,0,0,74
5666,500,"Ground turkey, 93% lean, 7% fat, pan-broiled crumbles","GROUND TURKEY,93% LN,7% FAT,PAN-BROILED CRUMBLES",,,,,0,,,,,,Poultry Products,27.1,11.6,0,213,0,0,31,1.56,29,259,304,90,3.77,28.4,101,8,0,0.088,0.262,8.095,0.497,1.9,0,0,104
5667,500,"Ground turkey, 93% lean, 7% fat, patties, broiled","GROUND TURKEY,93% LN,7% FAT,PATTIES,BRLD",,,,,0,,,,,,Poultry Products,25.86,11.45,0,207,0,0,29,1.73,25,210,247,91,3.71,27.5,105,8,0,0.08,0.232,6.64,0.471,1.8,0,0,106
5668,500,"Ground turkey, 85% lean, 15% fat, raw","GROUND TURKEY,85% LN,15% FAT,RAW",,,,,0,,,,,,Poultry Products,16.9,12.54,0,180,0,0,33,1.32,19,179,202,54,2.75,24.6,101,14,0,0.067,0.177,5.075,0.485,1.3,0,0,78
5669,500,"Ground turkey, 85% lean, 15% fat, pan-broiled crumbles","GROUND TURKEY,85% LN,15% FAT,PAN-BROILED CRUMBLES",,,,,0,,,,,,Poultry Products,25.11,17.45,0,258,0,0,49,1.98,28,263,276,85,3.56,36.1,117,8,0,0.08,0.26,7.72,0.462,1.6,0,0,106
5670,500,"Ground turkey, 85% lean, 15% fat, patties, broiled","GROUND TURKEY,85% LN,15% FAT,PATTIES,BRLD",,,,,0,,,,,,Poultry Products,25.88,16.2,0,249,0,0,48,2.04,25,235,242,81,3.25,35.1,97,8,0,0.067,0.232,6.632,0.383,1.4,0,0,105
5671,500,"Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, braised","CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT OLY,CKD,BRSD",,,,"Bone and cartilage 32%, Separable fat and skin 9%",41,,,,,,Poultry Products,23.93,5.95,0,149,0,0,12,0.94,22,184,239,117,2.54,27.9,24,2,0,0.088,0.18,5.046,0.372,0.41,0.2,0,132
5672,500,"Chicken, broilers or fryers, dark meat, thigh, meat only, cooked, braised","CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,CKD,BRSD",,,,"Bone and cartilage 16%, Skin and separable fat 16%",32,,,,,,Poultry Products,24.55,8.63,0,176,0,0,12,1.27,25,201,266,77,1.87,29.2,27,13,0,0.087,0.182,5.742,0.436,0.42,0.3,0,141
5673,500,"Chicken, skin (drumsticks and thighs), cooked, braised","CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,BRSD",,,,,0,,,,,,Poultry Products,14.61,42.76,0,443,0,0,9,1,14,130,161,75,0.74,16,161,4,0,0.05,0.055,3.4,0.179,0.45,0.4,0,130
5674,500,"Chicken, skin (drumsticks and thighs), raw","CHICKEN,SKN (DRUMSTICKS & THIGHS),RAW",,,,,0,,,,,,Poultry Products,9.58,44.23,0.79,440,0,0,6,0.37,8,95,119,51,0.65,10.1,196,6,0,0.04,0.032,2.565,0.116,0.65,0.4,0,105
5675,500,"Chicken, skin (drumsticks and thighs), cooked, roasted","CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,RSTD",,,,,0,,,,,,Poultry Products,16.57,43.99,0,462,0,0,10,0.9,16,151,181,85,0.86,17.4,181,6,0,0.052,0.062,3.917,0.197,0.5,0.5,0,132
5676,500,"Chicken, broilers or fryers, dark meat, drumstick, meat and skin, cooked, braised","CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MT & SKN,CKD,BRSD",,,,Bone and cartilage 32%,32,,,,,,Poultry Products,22.72,10.73,0,187,0,0,12,0.94,21,177,229,111,2.3,26.4,42,2,0,0.083,0.164,4.832,0.347,0.41,0.3,0,132
5677,500,"Chicken, broilers or fryers, dark meat, thigh, meat and skin, cooked, braised","CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT & SKN,CKD,BRSD",,,,Bone and cartilage 16%,16,,,,,,Poultry Products,22.57,15.43,0,229,0,0,11,1.21,23,187,245,76,1.64,26.6,54,11,0,0.08,0.157,5.276,0.385,0.43,0.3,0,139
5678,500,"Chicken, dark meat, drumstick, meat only, with added solution, raw","CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,RAW",,,Y,"Bone and Cartilage 34%, Skin and separable fat 9%",43,,,,,,Poultry Products,19.19,3.26,0,106,0,0,9,0.72,16,143,192,152,2,22.4,28,7,0,0.098,0.243,4.94,0.385,0.42,0,0,92
5679,500,"Chicken, dark meat, drumstick, meat only, with added solution, cooked, roasted","CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and Cartilage 27%, Skin and separable fat 8%",74,,6.25,,,,Poultry Products,25.34,5,0,146,0,0,12,1.1,20,197,250,190,2.64,30.8,20,6,0,0.102,0.297,5.913,0.413,0.41,0,0,124
5680,500,"Chicken, dark meat, drumstick, meat only, with added solution, cooked, braised","CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD",,,Y,"Bone and cartilage 30%, Skin and separable fat 9%",39,,,,,,Poultry Products,22.99,6.33,0,149,0,0,14,0.78,21,170,229,169,2.34,29.8,23,2,0,0.08,0.16,5.07,0.31,0.31,3.7,0,135
5681,500,"Chicken, dark meat, thigh, meat only, with added solution, cooked, braised","CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD",,,Y,"Bone and cartilage 15%, Skin and separable fat 18%",33,,,,,,Poultry Products,23,7.96,0,164,0,0,12,1.07,24,203,290,197,1.86,27.2,25,12,0,0.08,0.14,6.33,0.308,0.34,0.2,0,126
5682,500,"Chicken, dark meat, thigh, meat only, with added solution, raw","CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,RAW",,,Y,"Bone and cartilage 32%, skin and separable fat 24%",56,,,,,,Poultry Products,19.11,3.69,0,110,0,0,8,0.6,21,175,234,156,1.53,20.9,19,3,0,0.087,0.23,5.3,0.433,0.56,0,0,87
5683,500,"Chicken, dark meat, thigh, meat only, with added solution, cooked, roasted","CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and connective tissue 16%, Skin and separable fat 15%",31,,,,,,Poultry Products,24.23,7.73,0,164,0,0,10,0.98,24,202,268,177,1.9,33.7,27,13,0,0.091,0.272,6.343,0.444,0.37,0,0,122
5684,500,"Chicken, skin (drumsticks and thighs), with added solution, cooked, braised","CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,BRSD",,,Y,,0,,,,,,Poultry Products,12.26,38.94,1,403,0,0,14,0.65,12,112,146,139,0.63,15.6,147,3,0,0.05,0.04,3.3,0.144,0.27,0.4,0,124
5685,500,"Chicken, skin (drumsticks and thighs), with added solution, raw","CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,RAW",,,Y,,0,,,,,,Poultry Products,11.11,37.9,0.01,386,0,0,7,0.51,7,88,101,139,0.62,10.8,186,14,0,0.035,0.06,2.655,0.113,0.68,0,0,113
5686,500,"Chicken, skin (drumsticks and thighs), with added solution, cooked, roasted","CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,RSTD",,,Y,,0,,,,,,Poultry Products,20.31,37.6,0.44,421,0,0,15,1.17,18,176,198,162,1.51,20,176,6,0,0.057,0.125,4.045,0.185,0.56,0.5,0,154
5687,500,"Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, braised","CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD",,,Y,Bone and Cartilage 30%,30,,,,,,Poultry Products,21.55,10.71,0.13,183,0,0,14,0.76,20,162,218,165,2.11,27.9,40,3,0,0.076,0.144,4.832,0.288,0.3,3.3,0,133
5688,500,"Chicken, dark meat, drumstick, meat and skin, with added solution, raw","CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,RAW",,,Y,"Bone and cartilage 34%, bone and connective tissue 34%",68,,,,,,Poultry Products,18.03,8.24,0,146,0,0,8,0.69,15,135,179,150,1.8,20.8,50,8,0,0.089,0.217,4.612,0.346,0.45,0,0,95
5689,500,"Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, roasted","CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and Cartilage 40%, bone and connective tissue 26%",66,,,,,,Poultry Products,24.72,9,0.05,180,0,0,13,1.11,20,194,244,186,2.5,29.5,39,7,0,0.096,0.276,5.684,0.385,0.43,0,0,128
5690,500,"Chicken, dark meat, thigh, meat and skin, with added solution, cooked, braised","CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD",,,Y,Bone and cartilage 15%,15,,,,,,Poultry Products,20.7,14.62,0.21,215,0,0,12,0.98,21,183,259,185,1.6,24.7,52,10,0,0.074,0.119,5.679,0.273,0.32,0.3,0,125
5691,500,"Chicken, dark meat, thigh, meat and skin, with added solution, raw","CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,RAW",,,Y,"Bone and cartilage 15%, bone and connective tissue 17%",32,,,,,,Poultry Products,16.56,14.58,0,197,0,0,8,0.57,16,147,191,151,1.24,17.7,72,7,0,0.071,0.176,4.458,0.331,0.6,0,0,95
5692,500,"Chicken, dark meat, thigh, meat and skin, with added solution, cooked, roasted","CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and cartilage 17%, bone and connective tissue 16%",33,,,,,,Poultry Products,23.47,13.81,0.09,214,0,0,11,1.02,23,197,254,174,1.82,31.1,56,14,0,0.084,0.243,5.898,0.394,0.41,0,0,128
5693,500,"Chicken, broiler, rotisserie, BBQ, back meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,BACK MEAT ONLY",,,Y,"Bone and connective tissue 37%, skin and separable fat 14%",51,,,,,,Poultry Products,21.85,13.87,0.31,212,0.31,0,33,0.82,18,212,263,563,1.74,41.1,51,0,0,0.069,0.181,5.175,0.121,0.61,0,0,117
5694,500,"Turkey, dark meat from whole, meat only, with added solution, raw","TURKEY,DK MEAT FROM WHL,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 34%, Skin and separable fat 13%",47,,,,,,Poultry Products,19.27,4.12,0.1,115,0.1,0,15,0.9,21,191,226,167,2.68,22.4,43,13,0,0.06,0.247,5.745,0.425,2.05,0,,79
5695,500,"Turkey, dark meat, meat only, with added solution, cooked, roasted","TURKEY,DK MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and connective tissue 36%, Skin and separable fat 9%",45,,,,,,Poultry Products,26.1,6,0,158,0,0,16,1.07,24,208,227,201,3.4,31.4,18,10,0,0.056,0.335,6.827,0.435,1.65,0,0,105
5696,500,"Turkey from whole, light meat, meat only, with added solution, raw","TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 18%, Skin and separable fat 13%",31,,,,,,Poultry Products,21.54,1.66,0,101,0.05,0,14,0.54,25,236,242,206,1.3,22.7,20,5,0,0.033,0.145,9.924,0.775,0.63,0,,54
5697,500,"Turkey from whole, light meat, meat only, with added solution, cooked, roasted","TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and connective tissue 18%, Skin and separable fat 7%",25,,,,,,Poultry Products,26.97,2.08,0,127,0,0,13,0.55,30,255,249,238,1.49,30.2,11,10,0,0.038,0.208,11.75,0.697,1.7,0,0,69
5698,500,"Turkey, skin from whole (light and dark), with added solution, raw","TURKEY,SKN FROM WHL (LIGHT & DARK),W/ ADDED SOLN,RAW",,,,,0,,,,,,Poultry Products,12.29,36.8,0.21,381,0.1,0,13,0.57,9,99,107,138,0.82,10.1,284,46,0,0.016,0.095,3.26,0.16,0.88,0,,94
5699,500,"Turkey, skin from whole, (light and dark), with added solution, roasted","TURKEY,SKN FROM WHL,(LIGHT & DARK),W/ ADDED SOLN,RSTD",,,Y,,0,,,,,,Poultry Products,22.15,40.31,0,451,0,0,25,1.08,28,244,263,234,1.61,21.1,262,54,0,0.024,0.235,7.295,0.29,1.59,0,0,144
5700,500,"Turkey, dark meat from whole, meat and skin, with added solution, raw","TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,RAW",,,,Bone and connective tissue 34%,34,,,,,,Poultry Products,17.84,10.83,0.15,169,0.1,0,14,0.83,18,172,202,161,2.3,19.9,93,20,0,0.051,0.216,5.235,0.37,1.81,0,,82
5701,500,"Turkey, dark meat from whole, meat and skin, with added solution, cooked, roasted","TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD",,,Y,Bone and Connective tissue 37%,37,,,,,,Poultry Products,25.55,10.81,0,199,0,0,17,1.08,25,213,232,206,3.15,30,52,16,0,0.052,0.321,6.893,0.415,1.64,0,0,110
5702,500,"Turkey from whole, light meat, meat and skin, with added solution, raw","TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,RAW",,,,Bone and connective tissue 18%,18,,,,,,Poultry Products,20.02,7.42,0.14,147,0.06,0,14,0.54,22,214,220,195,1.22,20.6,64,11,0,0.03,0.137,8.832,0.675,0.67,0,,60
5703,500,"Turkey from whole, light meat, meat and skin, with added solution, cooked, roasted","TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD",,,Y,Bone and connective tissue 18%,18,,,,,,Poultry Products,26.52,5.64,0,157,0,0,14,0.6,30,254,250,237,1.5,29.3,35,14,0,0.036,0.211,11.336,0.659,1.69,0,0,76
5704,500,"Turkey, whole, meat only, with added solution, raw","TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 34%, Skin and separable fat 13%",47,,,,,,Poultry Products,20.87,2.39,0.14,105,0.06,0,14,0.64,24,223,237,194,1.7,22.6,27,7,0,0.041,0.175,8.69,0.672,1.05,0,,61
5705,500,"Turkey, whole, meat only, with added solution, roasted","TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 36%, Skin and separable fat 9%",45,,,,,,Poultry Products,26.61,3.7,0,140,0,0,14,0.77,27,235,239,223,2.28,30.7,14,10,0,0.045,0.261,9.721,0.589,1.68,0,0,84
5706,500,"Turkey, whole, meat and skin, with added solution, raw","TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RAW",,,,Bone and connective tissue 34%,34,,,,,,Poultry Products,19.03,9.1,0.15,158,0.08,0,14,0.67,21,195,211,180,1.68,20.2,78,15,0,0.039,0.17,7.246,0.54,1.16,0,,70
5707,500,"Turkey, whole, meat and skin, with added solution, roasted","TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RSTD",,,Y,Bone and connective tissue 36%,36,,,,,,Poultry Products,26.09,8.01,0,176,0,0,15,0.81,27,236,242,224,2.2,29.6,43,15,0,0.043,0.257,9.436,0.554,1.67,0,0,91
5708,500,"Turkey, retail parts, breast, meat only, with added solution, raw","TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,RAW",,,Y,"Bone and connective tissue 15%, Skin and separable fat 10%",25,,,,,,Poultry Products,21.99,2.53,0,111,0,0,8,0.41,25,181,237,124,1.1,22.3,17,8,0,0.049,0.155,10,0.84,0.33,0,0,60
5709,500,"Turkey, retail parts, breast, meat only, with added solution, cooked, roasted","TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and connective tissue 17%, Skin and separable fat 7%",24,,,,,,Poultry Products,27.94,2.08,0,130,0,0,15,0.59,27,219,264,184,1.33,28.9,8,6,0,0.045,0.195,11.5,0.734,0.3,0,0,74
5710,500,"Turkey, retail parts, breast, meat only, raw","TURKEY,RTL PARTS,BREAST,MEAT ONLY,RAW",,,,"Bone and connective tissue 14%, Skin and separable fat 11%",25,,,,,,Poultry Products,23.34,2.33,0,114,0,0,9,0.76,27,185,267,74,1.16,22.1,16,7,0,0.052,0.165,10.295,0.814,1.35,0,,53
5711,500,"Turkey, retail parts, breast, meat only, cooked, roasted","TURKEY,RTL PARTS,BREAST,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 12%, Skin and separable fat 8%",20,,,,,,Poultry Products,29.51,1.97,0,136,0,0,14,0.97,28,253,297,114,1.52,30.7,9,10,0,0.043,0.19,11.75,0.83,1.76,0,0,70
5712,500,"Turkey, retail parts, wing, meat only, raw","TURKEY,RTL PARTS,WING,MEAT ONLY,RAW",,,,"Bone and connective tissue 37%, Skin and separable fat 18%",55,,,,,,Poultry Products,22.48,2.49,0,112,0,0,6,0.6,19,147,222,69,2.61,21.6,17,7,0,0.038,0.127,6.377,0.705,0.92,0,,66
5713,500,"Turkey, retail parts, wing, meat only, cooked, roasted","TURKEY,RTL PARTS,WING,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 38%, Skin and separable fat 14%",52,,,,,,Poultry Products,30.17,5.51,0,170,0,0,12,0.82,21,180,207,103,3.24,30.6,25,28,0,0.039,0.18,8.47,0.654,1.25,0,0,97
5714,500,"Turkey, skin, from retail parts, from dark meat, raw","TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,RAW",,,,,0,,,,,,Poultry Products,14.35,35.83,0,380,0,0,4,0.76,7,80,93,78,0.88,11.2,263,30,0,0.026,0.08,2.745,0.114,1.95,0,,111
5715,500,"Turkey, skin, from retail parts, from dark meat, cooked, roasted","TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,CKD,RSTD",,,,,0,,,,,,Poultry Products,24.58,35.03,0,414,0,0,6,1.65,24,230,225,106,1.65,20.2,198,31,0,0.046,0.235,5.4,0.287,1.85,0,,139
5716,500,"Turkey, retail parts, drumstick, meat only, raw","TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,RAW",,,,"Bone and connective tissue 33%, Skin and separable fat 6%",39,,,,,,Poultry Products,20.52,3.97,0,118,0,0,10,1.18,22,158,220,87,3.12,21.2,68,17,0,0.051,0.3,5.003,0.361,1.9,0,,79
5717,500,"Turkey, retail parts, thigh, meat only, raw","TURKEY,RTL PARTS,THIGH,MEAT ONLY,RAW",,,,"Bone and connective tissue 19%, Skin and separable fat 13%",32,,,,,,Poultry Products,20.6,3.69,0,116,0,0,4,1.42,22,177,269,75,2.95,21.5,63,20,0,0.059,0.307,6.183,0.482,2.17,0,,78
5718,500,"Turkey, breast, from whole bird, meat only, with added solution, roasted","TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 10%, skin and separable fat 6%",16,,,,,,Poultry Products,26.97,2.08,0,127,0,0,13,0.55,30,255,249,238,1.49,30.2,11,10,0,0.038,0.208,11.75,0.697,0.79,0,0,69
5719,500,"Turkey, back, from whole bird, meat only, with added solution, raw","TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 47%, Skin and separable fat 16%",63,,,,,,Poultry Products,19.27,4.12,0.15,115,0.1,0,15,0.9,21,191,226,167,2.68,22.4,43,13,0,0.06,0.247,5.745,0.425,2.05,0,,79
5720,500,"Turkey, back, from whole bird, meat only, with added solution, roasted","TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 49%, skin and separable fat 12%",61,,,,,,Poultry Products,26.97,2.08,0,127,0,0,13,0.55,30,255,249,238,1.49,30.2,11,10,0,0.038,0.208,11.75,0.697,1.7,0,0,69
5721,500,"Turkey, breast, from whole bird, meat only, with added solution, raw","TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 10%, Skin and separable fat 11%",22,,6.25,,,,Poultry Products,21.54,1.66,0.14,102,0.05,0,14,0.54,25,236,242,206,1.3,22.7,20,5,0,0.033,0.145,9.924,0.775,0.63,0,,54
5722,500,"Turkey, retail parts, thigh, meat only, cooked, roasted","TURKEY,RTL PARTS,THIGH,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 14%, Skin and separable fat 9%",23,,,,,,Poultry Products,25.14,6.25,0.46,159,0,0,4,1.59,23,200,296,104,3.26,29.3,19,10,0,0.05,0.323,6.903,0.484,1.63,0,0,116
5723,500,"Turkey, retail parts, drumstick, meat only, cooked, roasted","TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 29%, Skin and separable fat 7%",36,,,,,,Poultry Products,28.61,6.52,0,173,0,0,17,1.57,24,193,257,112,4.5,31,20,11,0,0.065,0.353,5.593,0.41,2.53,0,0,118
5724,500,"Turkey, drumstick, from whole bird, meat only, with added solution, raw","TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 30%, Skin and separable fat 8%",38,,,,,,Poultry Products,19.27,4.12,0.15,115,0.1,0,15,0.9,21,191,226,167,2.68,22.4,43,13,0,0.06,0.247,5.745,0.425,2.05,,,79
5725,500,"Turkey, drumstick, from whole bird, meat only, with added solution, roasted","TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 34%, Skin and separable fat 6%",40,,,,,,Poultry Products,26.1,6,0,158,0,0,16,1.07,24,208,227,201,3.4,31.4,18,10,0,0.056,0.335,6.827,0.435,1.65,0,0,105
5726,500,"Turkey, thigh, from whole bird, meat only, with added solution, raw","TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 16%, Skin and separable fat 14%",30,,,,,,Poultry Products,19.27,4.12,0.15,115,0.1,0,15,0.9,21,191,226,167,2.68,22.4,43,13,0,0.06,0.247,5.745,0.425,2.05,0,,79
5727,500,"Turkey, retail parts, breast, meat and skin, with added solution, raw","TURKEY,RTL PARTS,BREAST,MEAT & SKN,W/ ADDED SOLN,RAW",,,Y,Bone and connective tissue 15%,15,,,,,,Poultry Products,20.79,6.75,0.03,144,0.01,0,9,0.43,23,171,221,126,1.07,20.8,50,13,0,0.045,0.148,9.171,0.756,0.4,0,0,64
5728,500,"Turkey, thigh, from whole bird, meat only, with added solution, roasted","TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 16%, skin and separable fat 8%",24,,,,,,Poultry Products,26.1,6,0,158,0,0,16,1.07,24,208,227,201,3.4,31.4,18,10,0,0.056,0.335,6.827,0.435,1.65,0,0,105
5729,500,"Turkey, wing, from whole bird, meat only, with added solution, raw","TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 36%, skin and separable fat 19%",55,,,,,,Poultry Products,21.54,1.66,0.14,102,0.05,0,14,0.54,25,236,242,206,1.3,22.7,20,5,0,0.033,0.145,9.924,0.775,0.63,0,,54
5730,500,"Turkey, wing, from whole bird, meat only, with added solution, roasted","TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 47%, skin and separable fat 12%",59,,,,,,Poultry Products,26.97,2.08,0,127,0,0,13,0.55,30,255,249,238,1.49,30.2,11,10,0,0.038,0.208,11.75,0.697,1.7,0,0,69
5732,500,"Turkey, retail parts, breast, meat and skin, raw","TURKEY,RTL PARTS,BREAST,MEAT & SKN,RAW",,,Y,Bone and connective tissue 14%,14,,,,,,Poultry Products,21.88,7.45,0,155,0,0,9,0.77,24,176,247,72,1.15,20.4,54,12,0,0.048,0.157,9.4,0.724,1.28,0,0,63
5733,500,"Turkey, retail parts, breast, meat and skin, cooked, roasted","TURKEY,RTL PARTS,BREAST,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 12%,12,,,,,,Poultry Products,29.01,5.33,0.05,164,0,0,15,1.03,29,251,292,114,1.57,29.8,32,14,0,0.042,0.199,11.614,0.789,1.75,0,0,79
5734,500,"Turkey, retail parts, wing, meat and skin, raw","TURKEY,RTL PARTS,WING,MEAT & SKN,RAW",,,,Bone and connective tissue 38%,38,,,,,,Poultry Products,19.53,13.79,0.05,202,0.03,0,8,0.68,17,139,192,67,2.14,18,100,19,0,0.033,0.121,5.61,0.538,0.91,0,0,84
5735,500,"Turkey, retail parts, wing, meat and skin, cooked, roasted","TURKEY,RTL PARTS,WING,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 38%,38,,,,,,Poultry Products,28.74,13.29,0.13,235,0,0,14,1,24,192,215,106,2.99,28.4,80,34,0,0.037,0.205,8.876,0.59,1.36,0,0,115
5736,500,"Turkey, retail parts, drumstick, meat and skin, raw","TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,RAW",,,,Bone and connective tissue 33%,33,,,,,,Poultry Products,19.96,6.84,0,141,0,0,9,1.14,21,151,208,86,2.92,20.3,86,18,0,0.049,0.28,4.8,0.339,1.9,0,0,82
5737,500,"Turkey, retail parts, drumstick, meat and skin, cooked, roasted","TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 29%,29,,,,,,Poultry Products,28.21,9.37,0,197,0,0,16,1.58,24,196,254,112,4.22,29.9,38,13,0,0.063,0.341,5.574,0.398,2.46,0,0,120
5738,500,"Turkey, drumstick, from whole bird, meat only, raw","TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 38%, Skin and separable fat 6%",44,,,,,,Poultry Products,23.66,1.48,0.14,109,0.05,0,11,0.73,28,201,242,113,1.28,22.7,20,5,0,0.042,0.145,9.924,0.813,0.63,0,,57
5739,500,"Turkey, drumstick, from whole bird, meat only, roasted","TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 37%, Skin and separable fat 5%",42,,,,,,Poultry Products,30.13,2.08,0,139,0,0,9,0.71,32,230,249,99,1.72,30.2,11,10,0,0.035,0.205,11.75,0.807,1.9,0,0,80
5740,500,"Turkey, thigh, from whole bird, meat only, raw","TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 20%, Skin and separable fat 10%",30,,,,,,Poultry Products,21.28,2.5,0.15,108,0.1,0,11,1.04,25,176,226,124,2.59,22.4,43,13,0,0.062,0.255,5.696,0.44,2.05,0,,79
5741,500,"Turkey, thigh, from whole bird, meat only, roasted","TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 36%, Skin and separable fat 7%",43,,,,,,Poultry Products,27.71,6.04,0,165,0,0,17,1.43,27,212,227,104,3.51,31.4,18,10,0,0.06,0.375,6.685,0.438,1.65,0,0,128
5742,500,"Turkey, retail parts, thigh, meat and skin, raw","TURKEY,RTL PARTS,THIGH,MEAT & SKN,RAW",,,,Bone and connective tissue 19%,19,,,,,,Poultry Products,19.54,9.16,0,161,0,0,4,1.31,20,161,239,75,2.6,19.8,97,21,0,0.053,0.268,5.599,0.419,2.13,0,,83
5743,500,"Turkey, retail parts, thigh, meat and skin, cooked, roasted","TURKEY,RTL PARTS,THIGH,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 14%,14,,,,,,Poultry Products,23.95,9.5,0.41,183,0,0,4,1.5,21,187,273,101,3,27.3,46,13,0,0.047,0.297,6.446,0.444,1.67,0,0,116
5744,500,"Turkey, back, from whole bird, meat and skin, with added solution, raw","TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RAW",,,,Bone and connective tissue 47%,47,,,,,,Poultry Products,16.86,15.41,0.15,206,0.1,0,14,0.78,17,159,185,157,2.04,18.1,126,24,0,0.045,0.194,4.887,0.333,1.65,0,,84
5745,500,"Turkey, back, from whole bird, meat and skin, with added solution, roasted","TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RSTD",,,Y,Bone and connective tissue 49%,49,,,,,,Poultry Products,25.8,11.36,0,205,0,0,15,0.68,29,252,252,237,1.52,28,72,21,0,0.034,0.215,10.669,0.598,1.68,0,0,87
5746,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, braised","CHICkN,BROILR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,BRSD",,,,,0,,,,,,Poultry Products,32.06,3.24,0,157,0,0,6,0.49,32,241,343,47,0.96,31.9,33,1,0,0.098,0.187,9.45,0.921,0.2,4.3,,116
5747,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, grilled","CHCKN,BROLR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,GRILLD",,,,,0,,,,,,Poultry Products,30.54,3.17,0,151,0,0,5,0.45,34,258,391,52,0.9,28.4,32,1,0,0.107,0.213,12.133,1.157,0.21,0,,104
5748,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, braised","CKN,BRLER OR FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,BRSD",,,,,0,,,,,,Poultry Products,28.24,3.61,0,145,0,0,5,0.43,28,217,313,172,0.8,40.2,31,1,0,0.075,0.167,9.173,0.962,0.17,,,99
5749,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, grilled","CKN,BRLER/FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,GRILLED",,,,,0,,,,,,Poultry Products,29.5,3.39,0,148,0,0,6,0.43,31,249,420,215,0.82,42.4,32,1,0,0.079,0.227,11.067,0.984,0.2,,,106
6001,600,"Soup, cream of asparagus, canned, condensed","SOUP,CRM OF ASPARAGUS,CND,COND",,,Y,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",1.82,3.26,8.52,69,0.72,0.4,23,0.64,3,31,138,669,0.7,1.9,441,0,2.2,0.043,0.062,0.62,0.01,0.04,22,0,4
6002,600,"Soup, black bean, canned, condensed","SOUP,BLACK BEAN,CND,COND",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",4.83,1.32,15.42,91,2.49,6.8,35,1.5,33,75,250,970,1.1,,445,,0.2,0.042,0.039,0.41,0.07,0,1.8,0,0
6003,600,"CAMPBELL'S Red and White, Beefy Mushroom Soup, condensed","CAMPBELL'S RED & WHITE,BEEFY MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,4.76,40,0.79,0,0,0.29,,,48,706,,,,,0,,,,,,,,4
6004,600,"Soup, bean with pork, canned, condensed","SOUP,BEAN W/ PORK,CND,COND",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",5.88,4.42,16.97,129,3,5.9,60,1.53,33,98,375,672,0.77,6.4,662,0,1.2,0.065,0.025,0.421,0.031,0.03,2.4,0,2
6006,600,"Soup, bean with frankfurters, canned, condensed","SOUP,BEAN W/ FRANKFURTERS,CND,COND",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",7.6,5.31,16.75,142,,4.6,66,1.78,37,126,363,831,0.9,6.9,662,,0.7,0.083,0.049,0.78,0.1,0.06,,0,9
6007,600,"Soup, bean with ham, canned, chunky, ready-to-serve","SOUP,BEAN W/ HAM,CND,CHUNKY,RTS",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",5.19,3.5,11.16,95,,4.6,32,1.33,19,59,175,400,0.44,6.9,1626,,1.8,0.06,0.06,0.7,0.05,0.03,,0,9
6008,600,"Soup, beef broth or bouillon canned, ready-to-serve","SOUP,BF BROTH OR BOUILLON CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.14,0.22,0.04,7,0,0,6,0.17,2,13,54,372,0,0.7,0,0,0,0.002,0.021,0.78,0.01,0.07,0,0,0
6009,600,"Soup, beef noodle, canned, condensed","SOUP,BF NOODLE,CND,COND",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",3.85,2.46,7.16,67,2.06,0.6,12,0.88,5,37,79,653,1.23,5.9,202,0,0.3,0.055,0.047,0.849,0.03,0.16,1.6,12,4
6010,600,"Soup, cream of celery, canned, condensed","SOUP,CRM OF CELERY,CND,COND",,,Y,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",1.32,4.46,7.03,72,1.35,0.6,32,0.5,5,30,98,516,0.12,1.8,282,0,0.2,0.023,0.039,0.265,0.01,0.04,17.2,0,11
6011,600,"Soup, cheese, canned, condensed","SOUP,CHS,CND,COND",,,Y,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",0.8,3.92,11.3,82,3.73,2.2,36,0.15,12,33,37,692,0.15,3.6,235,0,0.2,0.013,0.105,0.31,0.02,0,4.7,0,3
6013,600,"Soup, chicken broth, canned, condensed","SOUP,CHICK BROTH,CND,COND",,,Y,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",4.42,1.04,0.75,31,0.35,0,6,0.41,2,60,170,621,0.2,2.3,0,0,0,0.006,0.046,2.23,0.02,0.2,0,0,1
6014,600,"CAMPBELL'S Red and White, Broccoli Cheese Soup, condensed","CAMPBELL'S RED & WHITE,BROCCOLI CHS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,3.63,9.68,81,2.42,0,32,0,,,234,661,8.47,,806,,1,,,,,,,,4
6015,600,"Soup, chicken, canned, chunky, ready-to-serve","SOUP,CHICK,CND,CHUNKY,RTS",,,Y,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",5.06,2.64,6.88,71,0.87,0.6,10,0.69,3,45,70,354,0.4,2.5,511,0,0.5,0.034,0.069,1.76,0.02,0.1,2.5,0,12
6016,600,"Soup, cream of chicken, canned, condensed","SOUP,CRM OF CHICK,CND,COND",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.38,5.77,7.16,90,0.54,0,14,1.06,4,31,49,702,0.29,1.9,182,0,0.1,0.013,0.046,0.392,0,0,4.1,0,8
6017,600,"Soup, chicken gumbo, canned, condensed","SOUP,CHICK GUMBO,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.1,1.14,6.67,45,1.93,1.6,19,0.71,3,20,60,693,0.3,6.7,98,,4,0.2,0.3,0.53,0.05,0.02,5.7,0,3
6018,600,"Soup, chunky chicken noodle, canned, ready-to-serve","SOUP,CHUNKY CHICK NOODLE,CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.09,1.16,4.46,41,0.38,0.8,11,0.35,7,36,117,306,0.17,4.9,1224,0,0.4,0.018,0.02,1.196,0.05,0.08,1.7,3,5
6019,600,"Soup, chicken noodle, canned, condensed","SOUP,CHICK NOODLE,CND,COND",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.37,1.55,6.07,48,0,0.9,6,0.67,8,38,48,681,0.28,6.3,410,0,0,0.079,0.07,1.222,0.042,0.12,0,10,8
6022,600,"Soup, chicken rice, canned, chunky, ready-to-serve","SOUP,CHICK RICE,CND,CHUNKY,RTS",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",5.11,1.33,5.41,53,0.6,0.4,14,0.78,4,30,45,370,0.4,4.5,2418,0,1.6,0.01,0.041,1.71,0.02,0.13,7.2,0,5
6023,600,"Soup, chicken with rice, canned, condensed","SOUP,CHICK W/ RICE,CND,COND",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.84,1.56,11.57,68,0.23,0.9,41,0.25,10,42,34,645,0.18,4.1,498,0,0,0.014,0.02,0.918,0.02,0.13,0.3,0,4
6024,600,"Soup, chicken and vegetable, canned, ready-to-serve","SOUP,CHICK & VEG,CND,RTS",,,Y,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",1.97,0.73,4.68,33,1.01,0.9,14,0.25,8,35,133,229,0.22,3,1044,0,0,0.017,0.098,0.906,0.072,0.11,2.2,0,3
6025,600,"Soup, chicken vegetable, canned, condensed","SOUP,CHICK VEG,CND,COND",,,Y,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",2.94,2.32,7.01,61,1.26,0.7,14,0.71,5,33,126,706,0.3,4.5,2136,0,0.8,0.036,0.046,1.004,0.039,0.1,3.3,0,7
6026,600,"Soup, chili beef, canned, condensed","SOUP,CHILI BF,CND,COND",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",5.09,2.53,18.86,117,5.09,2.5,33,1.62,19,113,400,788,1.56,5,1149,,3.1,0.045,0.058,0.813,0.12,0.3,3.2,0,10
6027,600,"Soup, clam chowder, manhattan style, canned, chunky, ready-to-serve","SOUP,CLAM CHOWDER,MANHATTAN STYLE,CND,CHUNKY,RTS",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",3.02,1.41,7.84,56,1.67,1.2,28,1.1,8,35,160,417,0.7,6.7,1340,0,5.1,0.024,0.026,0.77,0.11,3.3,3.3,0,6
6028,600,"Soup, clam chowder, manhattan, canned, condensed","SOUP,CLAM CHOWDER,MANHATTAN,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.74,1.76,9.74,61,2.7,1.2,19,1.3,8,33,150,698,0.74,7.5,762,,3.2,0.024,0.032,0.65,0.08,3.23,5.5,0,2
6029,600,"CAMPBELL'S, HEALTHY REQUEST, chicken with rice, condensed","CAMPBELL'S,HEALTHY REQUEST,CHICK W/ RICE,COND",,Campbell Soup Co.,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.59,1.19,7.19,46,0.79,0.8,0,0,4,33,484,325,0.2,1.7,595,0,1,0.01,0.025,1.059,0.037,0.07,0.7,0,4
6030,600,"Soup, clam chowder, new england, canned, condensed","SOUP,CLAM CHOWDER,NEW ENGLAND,CND,COND",,,Y,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",3.17,2.06,10.32,72,0.38,0.7,16,2.48,13,260,221,516,0.37,6.3,58,0,4.1,0.125,0.165,1.55,0.104,9.47,0.8,0,6
6032,600,"Soup, beef broth bouillon and consomme, canned, condensed","SOUP,BF BROTH BOUILLON & CONSOMME,CND,COND",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.52,0,0.32,11,0,0,7,0.43,4,26,125,694,0.01,1.4,0,,0.7,0.017,0.023,0.58,0.02,0.14,0,0,0
6037,600,"Soup, lentil with ham, canned, ready-to-serve","SOUP,LENTIL W/HAM,CND,RTS",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",3.74,1.12,8.16,56,,,17,1.07,9,74,144,532,0.3,0.3,145,,1.7,0.07,0.045,0.545,0.09,0.12,,0,3
6038,600,"CAMPBELL'S, Cheddar Cheese Soup, condensed","CAMPBELL'S,CHEDDAR CHS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.8,3.92,11.44,84,3.73,2.2,36,0.15,12,33,37,692,0.15,,1024,,0.2,,,,,,,,3
6039,600,"Soup, minestrone, canned, chunky, ready-to-serve","SOUP,MINESTRONE,CND,CHUNKY,RTS",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",2.13,1.17,8.64,53,2.17,2.4,25,0.74,6,46,255,288,0.6,2.2,1783,0,2,0.023,0.049,0.491,0.1,0,3.2,9,2
6040,600,"Soup, minestrone, canned, condensed","SOUP,MINESTRONE,CND,COND",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",3.48,2.05,9.17,68,1.5,0.8,28,0.75,6,46,255,516,0.6,2.8,1708,0,0.9,0.044,0.036,0.77,0.08,0,7.8,16,1
6041,600,"CAMPBELL'S Red and White, Chicken and Dumplings Soup, condensed","CAMPBELL'S RED&WHITE,CHICK & DUMPLINGS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.98,7.94,56,0.79,0.8,0,0.29,,,,603,,,397,,0,,,,,,,,8
6042,600,"Soup, mushroom barley, canned, condensed","SOUP,MUSHROOM BARLEY,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.5,1.8,9.6,61,,,10,0.4,7,50,76,573,0.4,,158,,0,0.02,0.07,0.7,0.14,0,,0,0
6043,600,"Soup, cream of mushroom, canned, condensed","SOUP,CRM OF MUSHROOM,CND,COND",,,Y,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",1.35,5.3,6.8,79,0.4,0.7,12,0.18,3,24,64,691,0.11,2.9,8,9,0,0.012,0.016,0.345,0.015,0,19.6,0,0
6044,600,"Soup, mushroom with beef stock, canned, condensed","SOUP,MUSHROOM W/ BF STOCK,CND,COND",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.51,3.21,7.41,68,2.28,0.1,8,0.67,7,29,126,773,1.1,3.7,194,0,0.8,0.028,0.076,0.96,0.03,0,2.3,0,6
6045,600,"Soup, onion, canned, condensed","SOUP,ONION,CND,COND",,,Y,,0,,6.25,2.5,8.5,4,"Soups, Sauces, and Gravies",3.06,1.42,6.68,46,2.72,0.7,22,0.55,2,9,56,516,0.5,3.5,11,0,1,0.027,0.02,0.49,0.04,0,0.4,0,0
6046,600,"Soup, cream of onion, canned, condensed","SOUP,CRM OF ONION,CND,COND",,,Y,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.2,4.2,10.4,88,3.64,0.4,27,0.5,5,30,98,637,0.12,2.3,113,0,1,0.04,0.06,0.4,0.02,0.04,2.2,0,12
6047,600,"CAMPBELL'S Red and White, Chicken and Stars Soup, condensed","CAMPBELL'S RED & WHITE,CHICK & STARS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,8.73,56,0.79,0.8,0,0.29,,,444,381,,,397,,0,,,,,,,,4
6048,600,"Soup, oyster stew, canned, condensed","SOUP,OYSTER STEW,CND,COND",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",1.72,3.13,3.32,48,,0,18,0.8,4,39,40,722,8.4,6.8,58,,2.6,0.017,0.029,0.19,0.01,1.79,,0,11
6049,600,"Soup, pea, green, canned, condensed","SOUP,PEA,GRN,CND,COND",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",6.54,2.23,20.18,125,6.52,3.9,21,1.48,30,95,145,680,1.3,7.4,25,0,1.3,0.082,0.052,0.943,0.04,0,0.4,0,0
6050,600,"Soup, pea, split with ham, canned, chunky, ready-to-serve","SOUP,PEA,SPLIT W/HAM,CND,CHUNKY,RTS",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",4.62,1.66,11.17,77,1.91,1.7,14,0.89,16,74,127,301,1.3,4.1,2030,0,2.9,0.048,0.039,1.05,0.09,0.1,7.5,0,3
6051,600,"Soup, pea, split with ham, canned, condensed","SOUP,PEA,SPLIT W/ HAM,CND,COND",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",7.68,3.28,20.81,141,,1.7,16,1.7,36,159,297,630,0.99,7.4,331,,1.1,0.11,0.056,1.098,0.05,0.2,,0,6
6053,600,"Soup, cream of potato, canned, condensed","SOUP,CRM OF POTATO,CND,COND",,,Y,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",1.51,1.88,12.79,74,1.44,1.3,17,0.34,13,41,165,604,0.15,1.9,68,0,0.2,0.028,0.029,0.43,0.03,0.04,1.1,0,1
6054,600,"CAMPBELL'S Red and White, Chicken Alphabet Soup, condensed","CAMPBELL'S RED & WHITE,CHICK ALPHABET SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.19,9.52,56,0.79,0.8,0,0.29,,,659,381,,,595,,1,,,,,,,,4
6056,600,"Soup, cream of shrimp, canned, condensed","SOUP,CRM OF SHRIMP,CND,COND",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",2.22,4.14,6.53,72,,0.2,14,0.42,7,26,47,685,0.6,4.5,126,,0,0.015,0.022,0.34,0.03,0.47,,0,13
6057,600,"CAMPBELL'S Red and White, Chicken Broth, condensed","CAMPBELL'S RED&WHITE,CHICK BROTH,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,0.81,0.81,16,0.81,0,0,0,,,,621,,,0,,0,,,,,,,,4
6058,600,"CAMPBELL'S Red and White, Chicken Gumbo Soup, condensed","CAMPBELL'S RED & WHITE,CHICK GUMBO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.59,0.79,7.94,48,1.59,0.8,16,0,,,,690,,,79,,0,,,,,,,,4
6061,600,"Soup, tomato beef with noodle, canned, condensed","SOUP,TOMATO BF W/ NOODLE,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",3.55,3.42,16.87,112,,1.2,14,0.89,6,45,176,731,0.6,4,425,,0,0.067,0.071,1.49,0.07,0.15,,9,3
6062,600,"CAMPBELL'S, Red and White, Chicken Noodle Soup, condensed","CAMPBELL'S,RED & WHITE,CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.37,1.53,5.97,47,0,,6,0.69,8,38,44,683,0.28,,,,,,,,,,,,8
6063,600,"Soup, tomato rice, canned, condensed","SOUP,TOMATO RICE,CND,COND",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",1.64,2.12,17.08,93,5.9,1.3,18,0.62,4,26,257,635,0.4,1.8,421,0,11.5,0.048,0.039,0.822,0.06,0,3,0,1
6064,600,"Soup, turkey, chunky, canned, ready-to-serve","SOUP,TURKEY,CHUNKY,CND,RTS",,,,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",4.33,1.87,5.96,57,,,21,0.81,10,44,153,391,0.9,,3032,,2.7,0.015,0.045,1.52,0.13,0.9,,0,4
6067,600,"Soup, chunky vegetable, canned, ready-to-serve","SOUP,CHUNKY VEG,CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.14,0.36,7.9,39,1.56,1.1,18,0.51,10,29,180,267,0.23,2.9,1049,0,0.7,0.029,0.043,0.542,0.065,0,8.1,0,0
6068,600,"Soup, vegetarian vegetable, canned, condensed","SOUP,VEGETARIAN VEG,CND,COND",,,Y,,0,,6.25,2.5,8.5,4,"Soups, Sauces, and Gravies",1.72,1.58,9.78,59,3.13,0.5,17,0.88,6,28,171,516,0.38,3.5,2842,0,1.2,0.044,0.037,0.747,0.045,0,4.2,0,0
6070,600,"Soup, chunky beef, canned, ready-to-serve","SOUP,CHUNKY BF,CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.97,1.11,10.08,66,0.67,0.6,13,0.97,2,50,140,338,1.1,2.5,1088,0,2.9,0.024,0.063,1.127,0.055,0.26,3.1,0,6
6071,600,"Soup, vegetable beef, canned, condensed","SOUP,VEG BF,CND,COND",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",4.45,1.51,8.11,63,0.89,1.6,13,0.89,5,32,138,706,1.23,2.2,3104,0,1.9,0.029,0.039,0.823,0.06,0.25,5.6,0,4
6072,600,"Soup, vegetable with beef broth, canned, condensed","SOUP,VEG W/ BF BROTH,CND,COND",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.42,1.56,10.7,66,1.64,1.3,14,0.79,5,32,157,515,0.65,2.2,1707,0,1.9,0.042,0.037,0.789,0.046,0,2.3,0,1
6075,600,"Soup, beef broth or bouillon, powder, dry","SOUP,BF BROTH OR BOUILLON,PDR,DRY",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",15.97,8.89,17.4,213,16.71,0,60,1,51,320,446,26000,0,27.6,0,0,0,0.07,0.243,4.467,0.2,1,3.2,0,10
6076,600,"Soup, beef broth, cubed, dry","SOUP,BEEF BROTH,CUBED,DRY",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",17.3,4,16.1,170,14.51,0,60,2.23,50,225,403,24000,0.21,27.6,1,0,0,0.2,0.24,3.3,0.2,1,0,0,4
6080,600,"Soup, chicken broth or bouillon, dry","SOUP,CHICK BROTH OR BOUILLON,DRY",,,Y,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",16.66,13.88,18.01,267,17.36,0,187,1.03,56,166,309,23875,0.09,28,2,0,1.1,0.1,0.43,2.46,0.1,0.3,0,0,13
6081,600,"Soup, chicken broth cubes, dry","SOUP,CHICK BROTH CUBES,DRY",,,,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",14.6,4.7,23.5,198,0,0,190,1.87,56,191,374,24000,0.2,27.9,2,,1,0.19,0.38,3.9,0.1,0.3,0,0,13
6082,600,"CAMPBELL'S Red and White, Chicken NOODLEO's Soup, condensed","CAMPBELL'S RED & WHITE,CHICK NOODLEO'S SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.98,11.9,71,1.59,0.8,,0.57,,,429,381,,,397,,0,,,,,,,,16
6084,600,"CAMPBELL'S Red and White, Chicken Vegetable Soup, condensed","CAMPBELL'S RED & WHITE,CHICK VEG SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,0.79,11.9,63,2.38,1.6,16,0.29,,,127,706,,,1984,,0,,,,,,,,4
6091,600,"CAMPBELL'S Red and White, Beef Broth, condensed","CAMPBELL'S RED & WHITE,BF BROTH,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.42,0,0.81,12,0.81,0,0,0,,,32,694,,,,,,,,,,,,,0
6094,600,"Soup, onion, dry, mix","SOUP,ONION,DRY,MIX",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",7.48,0.34,65.07,293,4.65,6.6,143,1.25,60,211,721,8031,1.12,5,15,0,3.4,0.279,0.274,1.472,0.582,0,1.4,0,0
6097,600,"CAMPBELL'S Red and White, Beef Consomme, condensed","CAMPBELLS RED & WHITE,BF CONSOMME,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.23,0,0.81,16,0.81,0,0,0,,,32,653,,,,,,,,,,,,,0
6101,600,"Soup, cream of vegetable, dry, powder","SOUP,CRM OF VEG,DRY,PDR",,,Y,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",8,24.1,52.1,446,17.51,3,134,2.6,48,228,408,4957,1.6,20.7,11996,0,16.6,5.18,0.45,2.2,0.1,0.5,32.9,0,2
6112,600,"Sauce, teriyaki, ready-to-serve","SAUCE,TERIYAKI,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",5.93,0.02,15.56,89,14.1,0.1,25,1.7,61,154,225,3833,0.1,1.1,0,0,0,0.03,0.07,1.27,0.1,0,0,0,0
6114,600,"Gravy, au jus, canned","GRAVY,AU JUS,CANNED",,,,,0,,6.25,3.5,9,3.9,"Soups, Sauces, and Gravies",1.2,0.2,2.5,16,,0,4,0.6,2,30,81,478,1,0.4,0,,1,0.02,0.06,0.9,0.01,0.1,,0,0
6115,600,"Gravy, au jus, dry","GRAVY,AU JUS,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",9.2,9.63,47.49,313,,,140,9.3,56,153,279,11588,0.7,6.2,10,,1,0.472,0.324,4.087,0.174,0.32,,0,4
6116,600,"Gravy, beef, canned, ready-to-serve","GRAVY,BF,CND,RTS",,,Y,,0,,6.25,3.5,9,3.9,"Soups, Sauces, and Gravies",3.75,2.36,4.81,53,0.21,0.4,6,0.7,2,30,81,560,1,1,3,0,0,0.032,0.036,0.66,0.01,0.1,0.1,0,3
6117,600,"CAMPBELL'S Red and White, Bean with Bacon Soup, condensed","CAMPBELL'S RED & WHITE,BEAN W/ BACON SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",6.25,2.34,19.53,125,3.13,6.3,47,1.41,,,375,672,,,391,,2.8,,,,,,,,4
6118,600,"Gravy, brown, dry","GRAVY,BROWN,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.74,9.61,59.38,367,,2,132,1.72,34,203,262,4843,1.11,6.1,27,,0.3,0.18,0.39,3.7,0.1,0.7,,17,3
6119,600,"Gravy, chicken, canned or bottled, ready-to-serve","GRVY, CHCKN, CNND BTTLD, RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.71,2.62,5.29,48,0.3,0.1,10,0.09,3,20,42,389,0.08,0.4,3,0,0,0.024,0.053,0.285,0.025,0,0.6,0,5
6120,600,"Gravy, chicken, dry","GRAVY,CHICKEN,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",11.27,9.73,62.09,381,,,146,1.33,40,249,404,4152,1.39,5.2,308,,0.6,0.249,0.634,4.018,0.202,0.48,,16,19
6121,600,"Gravy, mushroom, canned","GRAVY,MUSHROOM,CANNED",,,,,0,,6.25,3.4,8.9,4,"Soups, Sauces, and Gravies",1.26,2.71,5.47,50,,0.4,7,0.66,2,15,106,570,0.7,1.9,0,,0,0.033,0.063,0.671,0.02,0,,0,0
6122,600,"Gravy, mushroom, dry, powder","GRAVY,MUSHROOM,DRY,PDR",,,Y,,0,,6.25,3.4,8.9,4,"Soups, Sauces, and Gravies",10,4,64.66,328,3.26,4.8,230,1,34,203,262,6580,1.54,5.3,1,0,7,0.2,0.4,3.7,0.1,0.7,0.2,17,3
6123,600,"Gravy, onion, dry, mix","GRAVY,ONION,DRY,MIX",,,,,0,,6.25,3.5,9,3.9,"Soups, Sauces, and Gravies",9,3,67.64,322,,6,280,1,34,203,262,4186,0.88,6.1,0,,7,0.2,0.4,3.7,0.1,0.7,,17,2
6124,600,"Gravy, pork, dry, powder","GRAVY,PORK,DRY,PDR",,,Y,,0,,,4,9,4,"Soups, Sauces, and Gravies",8.78,8.63,63.57,367,24.73,2.4,139,3.94,34,188,235,5356,1.06,6.1,117,0,1.4,0.16,0.283,2.27,0.086,0.51,0.4,15,10
6125,600,"Gravy, turkey, canned, ready-to-serve","GRAVY,TURKEY,CND,RTS",,,Y,,0,,6.25,3.4,8.9,4,"Soups, Sauces, and Gravies",2.6,2.1,5.1,51,0.21,0.4,4,0.7,2,29,109,577,0.8,0.6,0,0,0,0.02,0.08,1.3,0.01,0.1,0,0,2
6126,600,"Gravy, turkey, dry","GRAVY,TURKEY,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.42,7.19,65.12,367,,,146,3.29,44,254,428,4392,1.26,5.2,35,,0.2,0.211,0.45,2.77,0.204,0.58,,16,14
6127,600,"Gravy, unspecified type, dry","GRAVY,UNSPEC TYPE,DRY",,,,,0,,6.25,3.4,8.9,4,"Soups, Sauces, and Gravies",13,8,58,344,,,150,1,45,203,262,5730,1.4,6.1,0,,7,0.2,0.432,3.7,0.1,0.7,,17,4
6128,600,"Soup, chicken noodle, dry, mix","SOUP,CHICK NOODLE,DRY,MIX",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",15.42,6.51,62.32,377,1.9,3.2,55,2.44,38,195,306,3643,1.65,32.4,44,0,0,0.575,0.381,4.88,0.236,0.75,0.1,62,74
6142,600,"Sauce, sofrito, prepared from recipe","SAUCE,SOFRITO,PREP FROM RECIPE",,,,,0,,,,,,"Soups, Sauces, and Gravies",12.8,18.2,5.46,237,,1.7,20,0.94,25,139,401,1145,1.41,,,,20.4,0.284,0.212,2.918,0.364,,,0,
6143,600,"USDA Commodity, spaghetti sauce, meatless, canned","USDA COMMODITY,SPAGHETTI SAU,MEATLESS,CND",,,,,0,,,,,,"Soups, Sauces, and Gravies",1.2,0.9,8.7,48,4.7,,20,0.9,13,25,292,590,0.21,,335,,3.9,0.03,0.12,0.73,0.06,0,,,0
6145,600,"CAMPBELL'S Red and White, Beef Noodle Soup, condensed","CAMPBELL'S RED & WHITE,BF NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,1.59,6.35,56,0.79,0.8,0,0.57,,,63,651,,,,,0,,,,,,,,8
6146,600,"CAMPBELL'S Red and White, Beef with Vegetables and Barley Soup, condensed","CAMPBELL'S RED & WHITE,BF W/ VEG & BARLEY SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.97,1.19,11.9,71,1.59,2.4,0,0.57,,,119,706,,,992,,0,,,,,,,,8
6147,600,"Soup, beef mushroom, canned, condensed","SOUP,BF MUSHROOM,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",4.6,2.4,5.2,61,,0.2,4,0.7,7,29,126,709,1.1,,0,,0,0.02,0.06,0.9,0.04,0.16,,0,5
6149,600,"Soup, chicken mushroom, canned, condensed","SOUP,CHICK MUSHROOM,CND,COND",,,Y,,0,,6.25,4,9,4.2,"Soups, Sauces, and Gravies",1.61,4.84,11.95,100,0.79,3.2,23,0.7,7,22,56,669,0.8,2.9,33,0,0,0.02,0.09,1.3,0.04,0.05,1.1,0,8
6150,600,"Sauce, barbecue","SAUCE,BARBECUE",,,Y,,0,,6.25,,,,"Soups, Sauces, and Gravies",0.82,0.63,40.77,172,33.24,0.9,33,0.64,13,20,232,1027,0.17,1.3,224,0,0.6,0.023,0.056,0.597,0.075,0,1.8,0,0
6151,600,"Sauce, plum, ready-to-serve","SAUCE,PLUM,READY-TO-SERVE",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",0.89,1.04,42.81,184,,0.7,12,1.43,12,22,259,538,0.19,0.4,43,,0.5,0.018,0.084,1.014,0.078,0,,0,0
6152,600,"Sauce, pizza, canned, ready-to-serve","SAUCE,PIZZA,CND,RTS",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",2.18,1.15,8.66,54,3.78,2,54,0.9,21,50,354,348,0.25,,667,,11.3,0.061,0.053,1.421,0.136,0.02,,,0
6158,600,"Soup, tomato bisque, canned, condensed","SOUP,TOMATO BISQUE,CND,COND",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",1.76,1.95,18.47,96,,0.8,31,0.64,7,47,325,698,0.46,,562,,4.6,0.051,0.055,0.894,0.07,0,,0,4
6159,600,"Soup, tomato, canned, condensed","SOUP,TOMATO,CND,COND",,,Y,,0,,6.25,2.8,8.7,3.8,"Soups, Sauces, and Gravies",1.46,0.44,15.22,66,8.23,1.1,13,0.59,14,31,562,377,0.18,3,392,0,12.9,0.042,0.015,0.858,0.086,0,3.2,0,0
6164,600,"Sauce, salsa, ready-to-serve","SAUCE,SALSA,RTS",,,Y,,0,,6.25,2.44,8.87,3.57,"Soups, Sauces, and Gravies",1.52,0.17,6.64,29,4.01,1.9,30,0.42,15,33,275,711,0.18,0.9,461,0,1.9,0.033,0.032,1.091,0.172,0,4.3,0,0
6165,600,"Sauce, homemade, white, thin","SAUCE,HOMEMADE,WHITE,THIN",,,Y,,0,,6.25,4.2,8.7,3.9,"Soups, Sauces, and Gravies",3.77,6.73,7.4,105,4.78,0.1,126,0.21,15,101,163,328,0.42,3.3,262,49,0.8,0.055,0.184,0.261,0.041,0.3,0.6,4,8
6166,600,"Sauce, homemade, white, medium","SAUCE,HOMEMADE,WHITE,MED",,,Y,,0,,6.25,4.2,8.7,3.9,"Soups, Sauces, and Gravies",3.84,10.63,9.17,147,4.38,0.2,118,0.33,14,98,156,354,0.41,4.1,377,48,0.8,0.069,0.185,0.402,0.04,0.28,0.9,3,7
6167,600,"Sauce, homemade, white, thick","SAUCE,HOMEMADE,WHITE,THICK",,,Y,,0,,6.25,4.2,8.7,3.9,"Soups, Sauces, and Gravies",3.99,13.83,11.61,186,3.98,0.3,111,0.5,14,96,149,373,0.4,5.2,469,47,0.7,0.088,0.19,0.589,0.038,0.26,1.2,5,6
6168,600,"Sauce, ready-to-serve, pepper or hot","SAUCE,RTS,PEPPER OR HOT",,,,,0,,6.25,2.44,8.37,3.57,"Soups, Sauces, and Gravies",0.51,0.37,1.75,11,1.26,0.3,8,0.48,5,11,144,2643,0.11,0,162,,74.8,0.036,0.082,0.254,0.157,0,2.4,0,0
6169,600,"Sauce, ready-to-serve, pepper, TABASCO","SAUCE,RTS,PEPPER,TABASCO",,,Y,,0,,6.25,2.44,8.37,3.57,"Soups, Sauces, and Gravies",1.29,0.76,0.8,12,0.13,0.6,12,1.16,12,23,128,633,0.16,0.5,1640,0,4.5,0.032,0.084,0.178,0.154,0,0.2,1,0
6170,600,"Soup, stock, beef, home-prepared","SOUP,STOCK,BEEF,HOME-PREPARED",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.97,0.09,1.2,13,0.54,0,8,0.27,7,31,185,198,0.17,1.2,0,0,0,0.033,0.091,0.872,0.055,0,0.1,0,0
6172,600,"Soup, stock, chicken, home-prepared","SOUP,STOCK,CHICK,HOME-PREPARED",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.52,1.2,3.53,36,1.58,0,3,0.21,4,27,105,143,0.14,2.2,3,0,0.2,0.035,0.085,1.584,0.061,0,0.2,0,3
6174,600,"Soup, stock, fish, home-prepared","SOUP,STOCK,FISH,HOME-PREPARED",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.26,0.81,0,16,0,0,3,0.01,7,56,144,156,0.06,1,6,0,0.1,0.033,0.076,1.186,0.037,0.69,0,0,1
6175,600,"Sauce, hoisin, ready-to-serve","SAUCE,HOISIN,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.31,3.39,44.08,220,27.26,2.8,32,1.01,24,38,119,1615,0.32,1.8,6,0,0.4,0.004,0.217,1.17,0.062,0,0.5,0,3
6176,600,"Sauce, oyster, ready-to-serve","SAUCE,OYSTER,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.35,0.25,10.92,51,0,0.3,32,0.18,4,22,54,2733,0.09,4.4,0,0,0.1,0.01,0.124,1.474,0.016,0.41,0,0,0
6177,600,"Soup, minestrone, canned, reduced sodium, ready-to-serve","SOUP,MINESTRONE,CND,RED NA,RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2,0.8,9,50,2.13,2.4,20,0.72,13,34,186,215,0.32,2.1,665,0,5.7,0.06,0.04,0.64,0.06,0,5.8,1,0
6178,600,"USDA Commodity, salsa","USDA COMMODITY,SALSA",,,,,0,,,,,,"Soups, Sauces, and Gravies",1.5,0.2,7,36,,1.4,12,2.24,16,30,270,430,0.17,0.4,550,,4,0.05,0.03,1.08,0.149,0,,0,0
6179,600,"Sauce, fish, ready-to-serve","SAUCE,FISH,READY-TO-SERVE",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",5.06,0.01,3.64,35,3.64,0,43,0.78,175,7,288,7851,0.2,9.1,12,0,0.5,0.012,0.057,2.313,0.396,0.48,0,0,0
6180,600,"Soup, shark fin, restaurant-prepared","SOUP,SHARK FIN,REST-PREP",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.2,2,3.8,46,,0,10,0.94,7,21,53,501,0.82,,0,,0.1,0.027,0.039,0.493,0.026,0.19,,0,2
6182,600,"Soup, cream of mushroom, canned, condensed, reduced sodium","SOUP,CRM OF MUSHROOM,CND,COND,RED NA",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.21,1.69,8.1,52,2.13,0.6,13,0.48,5,51,374,383,0.36,1.8,8,0,0,0.042,0.192,0.17,0.04,0.02,0.4,2,3
6183,600,"Soup, chicken broth, less/reduced sodium, ready to serve","SOUP,CHICK BROTH,LESS/REDUCED NA,READY TO SERVE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.36,0,0.38,7,0.22,0,8,0.26,1,18,85,231,0.08,0,0,0,0.4,0.002,0.014,0.686,0.006,0.06,0,0,0
6188,600,"Soup, beef broth, less/reduced sodium, ready to serve","SOUP,BF BROTH,LESS/REDUCED NA,READY TO SERVE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.14,0.07,0.2,6,0.2,0,3,0.04,1,9,20,225,0.24,0,0,0,0,0.016,0.073,0.41,0.075,0,0,0,0
6189,600,"Sauce, teriyaki, ready-to-serve, reduced sodium","SAUCE,TERIYAKI,RTS,RED NA",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",5.93,0.02,15.58,89,14.1,0.1,25,1.7,61,154,225,1778,0.1,0.8,1,0,0,0.03,0.07,1.27,0.1,0,0,0,0
6190,600,"Soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve","SOUP,BEAN&HAM,CND,RED NA,PREP W/H2O OR RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",4.19,1.03,13.66,81,3.17,4,38,1.02,19,13,158,187,0.53,4.3,702,0,1.1,0.056,0.029,0.324,0.046,0.03,5.1,0,2
6192,600,"Split pea soup, canned, reduced sodium, prepared with water or ready-to serve","SPLIT PEA SOUP,CND,RED NA,PREP W/ H2O OR READY-TO SERVE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",3.85,0.92,11.83,71,5.06,1.9,17,0.77,14,54,183,166,0.4,0.3,552,0,0,0.07,0.029,0.457,0.073,0.01,36.1,0,2
6193,600,"Split pea with ham soup, canned, reduced sodium, prepared with water or ready-to-serve","SPLIT PEA W/ HAM SOUP,CND,RED NA,PREP W/ H2O OR RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",4,0.7,11.4,68,1.57,1.9,16,0.7,14,54,204,196,0.49,0.3,415,0,1,0.083,0.038,0.695,0.048,0.03,2.6,0,3
6194,600,"Soup, chicken broth, ready-to-serve","SOUP,CHICK BROTH,RTS",,,Y,,0,,,4,9,4,"Soups, Sauces, and Gravies",0.64,0.21,0.44,6,0.43,0,4,0.07,1,4,18,371,0.07,0.4,2,0,0,0.021,0.059,0.219,0,0.02,0,0,2
6195,600,"CAMPBELL'S, HEALTHY REQUEST, cream of chicken soup, condensed","CAMPBELL'S,HEALTHY REQUEST,CRM OF CHICK SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3,1.5,7.5,50,0.8,0.4,8,0.2,6,31,590,347,0.07,,571,,0.2,,,,,,,,4
6201,600,"Soup, cream of asparagus, canned, prepared with equal volume milk","SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.55,3.3,6.61,65,,0.3,70,0.35,8,62,145,420,0.37,,242,,1.6,0.041,0.111,0.355,0.026,0.2,,0,9
6208,600,"Soup, chicken vegetable with potato and cheese, chunky, ready-to-serve","SOUP,CHICK VEG W/POTATO&CHS,CHUNKY,RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.16,4.46,5.2,65,0.64,0.3,15,0.16,5,19,73,416,0.16,3.7,375,0,4,0.015,0.017,0.346,0.042,0.02,2.3,0,7
6209,600,"CAMPBELL'S, 98% Fat Free Cream of Broccoli Soup, condensed","CAMPBELL'S,98% FAT FREE CRM OF BROCCOLI SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,1.61,8.06,56,0.81,1.6,16,0,,,,565,,,81,,0,,,,,,,,4
6210,600,"Soup, cream of celery, canned, prepared with equal volume milk","SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.29,3.91,5.86,66,,0.3,75,0.28,9,61,125,272,0.08,1.9,186,,0.6,0.03,0.1,0.176,0.026,0.2,,0,13
6211,600,"Soup, cheese, canned, prepared with equal volume milk","SOUP,CHS,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",3.77,5.8,6.47,92,,0.4,115,0.32,8,100,136,406,0.27,2.8,495,,0.5,0.025,0.133,0.2,0.031,0.17,,0,19
6212,600,"CAMPBELL'S, 25% Less Sodium Chicken Noodle Soup, condensed","CAMPBELL'S,25% LESS NA CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.9,1.29,6.3,49,0.6,0.8,12,0.6,9,35,66,446,0.2,,176,,0,,,,,,,,12
6213,600,"CAMPBELL'S Red and White, 25% Less Sodium Tomato Soup, condensed","CAMPBELL'S RED&WHITE,25% LESS NA TOMATO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,0,16.13,73,9.68,0.8,0,0.29,,,290,387,,,403,,4.8,,,,,,,,
6214,600,"CAMPBELL'S, 25% Less Sodium Cream of Mushroom Soup, condensed","CAMPBELL'S,25% LESS NA CRM OF MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,6.45,6.45,89,0.81,1.6,0,0,,,105,524,,,,,,,,,,,,,4
6215,600,"CAMPBELL'S, 98% Fat Free Broccoli Cheese Soup, condensed","CAMPBELL'S,98% FAT FREE BROCCOLI CHS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,1.21,9.68,56,2.42,0.8,32,0,,,573,387,8.47,,806,,0,,,,,,,,4
6216,600,"Soup, cream of chicken, canned, prepared with equal volume milk","SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",3.01,4.62,6.04,77,,0.1,73,0.27,7,61,110,362,0.27,,288,,0.5,0.03,0.104,0.372,0.027,0.22,,0,11
6217,600,"Soup, vegetable, canned, low sodium, condensed","SOUP,VEG,CND,LO NA,COND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.2,0.9,12.11,65,4.31,2.1,20,0.66,25,45,433,385,0.4,4,1721,0,0.8,0.109,0.092,1.54,0.167,0,4.2,1,0
6218,600,"CAMPBELL'S, 98% Fat Free Cream of Celery Soup, condensed","CAMPBELL'S,98% FAT FREE CRM OF CELERY SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,2.42,7.26,56,0.81,1.6,16,,,,484,387,,,81,,,,,,,,,,4
6219,600,"CAMPBELL'S, 98% Fat Free Cream of Chicken Soup, condensed","CAMPBELL'S,98% FAT FREE CRM OF CHICK SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.8,2.02,7.46,55,0.5,0.4,11,0.23,6,23,33,575,0.17,,415,,0.2,,,,,,,,4
6220,600,"PREGO Pasta, Chunky Garden Mushroom and Green Pepper Italian Sauce, ready-to-serve","PREGO PASTA,CHNKY GRD MSHRM & GRN PPPR ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,2.31,10,69,7.69,2.3,15,0.55,,,308,362,,,385,,2.8,,,,,,,,0
6221,600,"PREGO Pasta, Chunky Garden Mushroom Supreme Italian Sauce, ready-to-serve","PREGO PASTA,CHUNKY GARDEN MUSHROOM ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,2.31,10,69,7.69,2.3,0,0.55,,,354,354,,,385,,1.8,,,,,,,,0
6222,600,"PREGO Pasta, Diced Onion and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,DICED ONION & GARLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,3.46,13.85,92,9.23,2.3,31,0.55,,,338,369,,,577,,0.9,,,,,,,,0
6223,600,"PREGO Pasta, Flavored with Meat Italian Sauce, ready-to-serve","PREGO PASTA,FLAV W/ MEAT ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.92,10,62,7.69,2.3,15,0.83,,,277,369,,,385,,1.8,,,,,,,,4
6224,600,"PREGO Pasta, Fresh Mushroom Italian Sauce, ready-to-serve","PREGO PASTA,FRSH MUSHROOM ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.15,10,54,8.46,2.3,15,0.55,,,269,369,,,385,,1.8,,,,,,,,0
6225,600,"PREGO Pasta, Garlic Supreme Italian Sauce, ready-to-serve","PREGO PASTA,GARLIC SUPREME ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,3.08,13.08,85,10,2.3,31,0.83,,,315,408,,,385,,0.9,,,,,,,,0
6226,600,"PREGO Pasta, Italian Sausage and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,ITAL SAUSGE & GARLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,2.4,10.4,72,8,2.4,16,0.58,,,312,384,,,400,,1,,,,,,,,4
6228,600,"PREGO Pasta, Mini Meatball Italian Sauce, ready-to-serve","PREGO PASTA,MINI MEATBALL ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.08,2.31,10,77,7.69,2.3,15,0.83,,,277,369,,,385,,1.8,,,,,,,,4
6229,600,"PREGO Pasta, Mushroom and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,MUSHRM & GRLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.92,10,62,7.69,2.3,15,0.55,,,331,362,,,385,,0.9,,,,,,,,0
6230,600,"Soup, clam chowder, new england, canned, prepared with equal volume low fat (2%) milk","SOUP,CLAM CHOWDER,NEW ENG,CND,PREP W/ EQ VLM LOFAT (2%) MILK",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",3.24,2.02,7.46,61,2.81,0.3,70,1.21,12,173,179,273,0.43,4.4,127,25,2.1,0.081,0.176,0.794,0.07,4.84,0.5,0,7
6231,600,"PREGO Pasta, Mushroom and Parmesan Italian Sauce, ready-to-serve","PREGO PASTA,MUSHRM & PARMESAN ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,2.8,17.6,104,10.4,2.4,48,0.86,,,376,384,,,600,,1,,,,,,,,4
6232,600,"PREGO Pasta, Organic Mushroom Italian Sauce, ready-to-serve","PREGO PASTA,ORGANIC MUSHROOM ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,2.4,10.4,72,7.2,3.2,16,0.58,,,360,376,,,600,,3.8,,,,,,,,0
6233,600,"PREGO Pasta, Organic Tomato and Basil Italian Sauce, ready-to-serve","PREGO PASTA,ORGNIC TOMATO & BASIL ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,2.4,10.4,72,7.2,3.2,32,0.58,,,320,376,,,600,,4.8,,,,,,,,0
6234,600,"PREGO Pasta, Heart Smart- Ricotta Parmesan Italian Sauce, ready-to-serve","PREGO PASTA,HEART SMRT- RICOTTA PMESAN ITLN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,2,10.4,72,8,2.4,48,0.58,,,328,288,,,400,,1.9,,,,,,,,4
6235,600,"P REGO Pasta, Roasted Garlic and Herb Italian Sauce, ready-to-serve","PREGO PASTA,RSTD GARLIC & HERB ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,2.31,10,69,6.92,2.3,15,0.55,,,308,354,,,577,,1.8,,,,,,,,0
6236,600,"PREGO Pasta, Roasted Garlic Parmesan Italian Sauce, ready-to-serve","PREGO PASTA,RSTD GARLIC PARMESAN ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.31,0.77,10,77,7.69,2.3,31,0.55,,,308,369,,,577,,0.9,,,,,,,,4
6237,600,"PREGO Pasta, Heart Smart- Roasted Red Pepper and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,H ST- RSTD RED PR GRLIC ITLIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,1.2,10.4,56,7.2,2.4,16,0.58,,,328,288,,,800,,1.9,,,,,,,,0
6239,600,"PREGO Pasta, Tomato, Basil and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,TOMATO,BASIL & GARLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,2,9.6,64,7.2,2.4,16,0.58,,,320,336,,,400,,1,,,,,,,,0
6240,600,"PREGO Pasta, Zesty Mushroom Italian Sauce, ready-to-serve","PREGO PASTA,ZESTY MUSHROOM ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,2.69,13.85,85,9.23,2.3,15,0.28,,,354,408,,,385,,0,,,,,,,,0
6241,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Beef with Country Vegetables Soup, ready-to-serve","CAMPBELL'S,CHNKY MICRO BOWLS,BF W/ CONTRY VEG,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",4.08,1.22,8.57,61,1.22,2,8,0.29,,,,367,,,2041,,0.5,,,,,,,,8
6242,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Chicken and Dumplings Soup, ready-to-serve","CAMPBELL'S CHUNKY MICROWAVABLE BWLS,CHCK DMPLINGS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,3.67,7.35,78,0.82,1.2,8,0,,,,363,,,1020,,0,,,,,,,,10
6243,600,"Soup, cream of mushroom, canned, prepared with equal volume low fat (2%) milk","SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.36,3.58,5.76,65,2.82,0.3,68,0.1,7,59,103,357,0.31,2.7,102,29,0.1,0.026,0.104,0.214,0.027,0.28,9.6,0,4
6244,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Classic Chicken Noodle, ready-to-serve","CAMPBELL'S, CHNKY MICRO BOWLS,CLSSC CHIC NOODL,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,1.22,5.71,45,1.22,0.8,8,0,,,,322,,,1224,,0,,,,,,,,10
6245,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Grilled Chicken and Sausage Gumbo, ready-to-serve","CAMPBELL'S, CHNKY MICRO BOWL,GRLLD CHIC&SAUS GMBO,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.63,7.35,57,2.04,0.4,16,0.15,,,,318,,,163,,0,,,,,,,,6
6246,600,"Soup, cream of onion, canned, prepared with equal volume milk","SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.74,3.78,7.4,75,,0.3,72,0.28,9,62,125,405,0.25,,182,,1,0.039,0.11,0.244,0.03,0.2,,0,13
6248,600,"Soup, oyster stew, canned, prepared with equal volume milk","SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",2.51,3.24,3.99,55,,0,68,0.43,8,66,96,425,4.22,,92,,1.8,0.027,0.095,0.137,0.026,1.07,,0,13
6249,600,"Soup, pea, green, canned, prepared with equal volume milk","SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",4.97,2.77,12.69,94,,1.1,68,0.79,22,94,148,352,0.69,,140,,1.1,0.061,0.105,0.528,0.041,0.17,,0,7
6250,600,"CAMPBELL'S CHUNKY Microwavable Bowls, New England Clam Chowder, ready-to-serve","CAMPBELL'S, CHNKY MICRO BOWL,NEW ENGL CLM CHOW,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,4.9,6.94,82,0.41,1.2,33,0.73,,,,355,,,0,,0,,,,,,,,4
6251,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Old Fashioned Vegetable Beef Soup, ready-to-serve","CAMPBELL'S,CHUNKY MICRO BOWLS,OLD FASH VEG BF,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.61,5.71,41,1.63,1.2,16,0.44,,,,359,,,1224,,0,,,,,,,,4
6252,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Sirloin Burger with Country Vegetables Soup, ready-to-serve","CAMPBELL'S,CHUNKY MICRO BOWLS,SIRL BRGER W/CNTRY VEG,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,1.43,7.35,57,1.63,1.2,8,0.44,,,,327,,,1020,,0,,,,,,,,6
6253,600,"Soup, cream of potato, canned, prepared with equal volume milk","SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",2.33,2.6,6.92,60,,0.2,67,0.22,7,65,130,230,0.27,,179,,0.5,0.033,0.095,0.259,0.036,0.2,,0,9
6256,600,"Soup, cream of shrimp, canned, prepared with equal volume low fat (2%) milk","SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK",,,Y,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",2.78,3.23,5.64,61,2.62,0.1,69,0.22,9,60,95,354,0.54,3.5,147,25,0.1,0.028,0.107,0.211,0.034,0.5,0.1,0,10
6264,600,"Sauce, white, thin, prepared-from-recipe, with butter","SAUCE,WHITE,THIN,PREPARED-FROM-RECIPE,W/ BUTTER",NFSMI Recipe No. G-08,,,,0,,,,,,"Soups, Sauces, and Gravies",3.95,2.56,8.29,72,5.29,0.1,131,0.22,12,110,167,184,0.47,4.7,286,,0,0.068,0.208,0.319,0.037,0.55,0.2,4,8
6285,600,"Sauce, sweet and sour, prepared-from-recipe","SAUCE,SWT & SOUR,PREPARED-FROM-RECIPE",NFSMI Recipe No. G-05,,,,0,,,,,,"Soups, Sauces, and Gravies",1.84,0.58,16.72,79,10.81,0.4,16,0.67,13,30,193,347,0.18,1.6,110,,5,0.042,0.063,1.178,0.087,0,1,0,1
6307,600,"Sauce, barbecue, KRAFT, original","SAUCE,BARBECUE,KRAFT,ORIGINAL",,"Kraft Foods, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",0.74,0.62,40.77,172,32.26,0.4,47,0.79,15,19,247,1242,0.16,,196,,0.2,0.023,0.05,0.52,0.083,,,,
6309,600,"CAMPBELL'S, Chicken with Rice Soup, condensed","CAMPBELL'S,CHICK W/ RICE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.84,1.64,11.28,68,0.23,0.9,41,0.25,10,42,34,645,0.18,,479,,0,,,,,,,,4
6311,600,"CAMPBELL'S Red and White, Chicken Won Ton Soup, condensed","CAMPBELL'S RED&WHITE,CHICK WON TON SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,0.79,6.35,40,0.79,0,0,0.29,,,56,690,,,79,,0,,,,,,,,4
6312,600,"CAMPBELL'S Red and White, Cream of Asparagus Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF ASPARAGUS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,5.65,7.26,89,1.61,2.4,0,,,,56,669,,,161,,0,,,,,,,,4
6314,600,"Soup, HEALTHY CHOICE Chicken Noodle Soup, canned","SOUP,HEALTHY CHOIC CHICK NOODLE SOUP,CND",,"ConAgra, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",3.69,0.63,5.2,41,0.57,0.8,8,0,,,,195,,,568,,0,,,,,,,,5
6315,600,"Soup, HEALTHY CHOICE Chicken and Rice Soup, canned","SOUP,HEALTHY CHOIC CHICK & RICE SOUP,CND",,"ConAgra, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",2.53,0.55,5.71,37,0.37,0.8,15,0.09,,,,181,,,334,,1,,,,,,,,7
6316,600,"Soup, HEALTHY CHOICE Garden Vegetable Soup, canned","SOUP,HEALTHY CHOIC GARDEN VEG SOUP,CND",,"ConAgra, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",2.13,0.21,10.04,51,2.13,1.9,16,0,,,,195,,,618,,1,,,,,,,,1
6317,600,"Gravy, CAMPBELL'S, beef, fat free","GRAVY,CAMPBELL'S,BF,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,5.08,25,,0,,,,,,508,,,,,,,,,,,,,0
6318,600,"Gravy, CAMPBELL'S, country style cream","GRAVY,CAMPBELL'S,COUNTRY STYLE CRM",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,5.08,5.08,76,1.69,0,0,0,,,,322,,,0,,0,,,,,,,,8
6319,600,"Gravy, CAMPBELL'S, country style sausage","GRAVY,CAMPBELL'S,COUNTRY STYLE SAUSAGE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.39,10.17,5.08,119,1.69,0,0,0,,,,458,,,0,,0,,,,,,,,17
6320,600,"Gravy, CAMPBELL'S, chicken, fat free","GRAVY,CAMPBELL'S,CHICK,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,5.08,25,,,,,,,,525,,,169,,,,,,,,,,8
6321,600,"Gravy, CAMPBELL'S, golden pork","GRAVY,CAMPBELL'S,GOLDEN PORK",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,5.08,5.08,76,1.69,0,0,0,,,,525,,,0,,0,,,,,,,,8
6322,600,"Gravy, CAMPBELL'S, mushroom","GRAVY,CAMPBELL'S,MUSHROOM",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,1.69,5.08,34,1.69,,,,,,,475,,,,,,,,,,,,,8
6323,600,"Gravy, CAMPBELL'S, turkey, fat free","GRAVY,CAMPBELL'S,TURKEY,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.67,0,6.67,33,,,,,,,,483,,,,,,,,,,,,,8
6324,600,"Gravy, CAMPBELL'S, beef, microwavable","GRAVY,CAMPBELL'S,BF,MICROWAVABLE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,1.69,5.08,42,1.69,0,0,0,,,,475,,,0,,0,,,,,,,,0
6325,600,"Gravy, CAMPBELL'S, chicken, microwavable","GRAVY,CAMPBELL'S,CHICK,MICROWAVABLE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,5,5,67,1.67,0,0,0,,,,433,,,333,,0,,,,,,,,8
6326,600,"Gravy, CAMPBELL'S, turkey","GRAVY,CAMPBELL'S,TURKEY",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,1.69,5.08,42,1.69,0,0,0,,,,458,,,0,,0,,,,,,,,0
6327,600,"Gravy, FRANCO-AMERICAN, beef, slow roast, fat free","GRAVY,FRANCO-AMERICAN,BF,SLOW RST,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,5.08,34,,,,,,,,508,,,,,,,,,,,,,8
6328,600,"Gravy, FRANCO-AMERICAN, chicken, slow roast, fat free","GRAVY,FRANCO-AMERICAN,CHICK,SLOW RST,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,6.78,34,,,,,,,,424,,,169,,,,,,,,,,8
6329,600,"Gravy, FRANCO-AMERICAN, beef, slow roast","GRAVY,FRANCO-AMERICAN,BF,SLOW RST",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0.85,5.08,42,0,0,0,0,,,,525,,,0,,0,,,,,,,,8
6330,600,"Gravy, FRANCO-AMERICAN, chicken, slow roast","GRAVY,FRANCO-AMERICAN,CHICK,SLOW RST",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0.85,5.08,34,,,,,,,,407,,,169,,,,,,,,,,8
6331,600,"Gravy, FRANCO-AMERICAN, turkey, slow roast","GRAVY,FRANCO-AMERICAN,TURKEY,SLOW RST",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0.85,6.78,42,,,,,,,,542,,,,,,,,,,,,,8
6332,600,"Gravy, CAMPBELL'S, turkey, microwavable","GRAVY,CAMPBELL'S,TURKEY,MICROWAVABLE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.67,1.67,5,42,1.67,0,0,0,,,,450,,,0,,0,,,,,,,,0
6333,600,"CAMPBELL'S Red and White, Cream of Broccoli Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF BROCCOLI SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,4.03,9.68,73,2.42,0.8,16,0.29,,,77,605,,,242,,1,,,,,,,,4
6334,600,"CAMPBELL'S Red and White, Cream of Celery Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF CELERY SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,4.84,7.26,73,0.81,2.4,16,0,,,460,516,,,242,,0,,,,,,,,4
6336,600,"CAMPBELL'S, Cream of Chicken Soup, condensed","CAMPBELL'S,CRM OF CHICK SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.76,7.98,6.03,103,0.33,4.1,13,0.27,4,28,49,624,0.14,,197,,0,,,,,,,,9
6337,600,"CAMPBELL'S, Cream of Chicken with Herbs Soup, condensed","CAMPBELL'S,CRM OF CHICK W/ HERBS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,3.23,7.26,65,0.81,0,0,,,,,645,,,403,,0,,,,,,,,8
6338,600,"CAMPBELL'S, Cream of Mushroom Soup, condensed","CAMPBELL'S,CRM OF MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.29,5.5,6.59,81,0.4,0.6,8,0.16,3,19,67,697,0.11,2.9,8,9,0.5,0.01,0.017,0.363,0.018,,22.5,,0
6339,600,"CAMPBELL'S, Cream of Mushroom with Roasted Garlic Soup, condensed","CAMPBELL'S,CRM OF MUSHROOM W/ RSTD GARLIC SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,2.02,8.06,56,0.81,1.6,16,0,,,484,387,,,,,0,,,,,,,,4
6340,600,"CAMPBELL'S Red and White, Cream of Onion Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF ONION SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,4.84,8.06,81,3.23,2.4,0,0,,,48,645,,,161,,0,,,,,,,,4
6341,600,"CAMPBELL'S, Cream of Potato Soup, condensed","CAMPBELL'S,CRM OF POTATO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.51,1.35,13.25,71,1.44,1.3,17,0.34,13,41,165,604,0.15,,0,,0.2,,,,,,,,1
6342,600,"CAMPBELL'S Red and White, Cream of Shrimp Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF SHRIMP SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.42,4.84,6.45,81,0,0,0,0,,,24,694,,,0,,0,,,,,,,,16
6343,600,"CAMPBELL'S Red and White, Creamy Chicken Noodle Soup, condensed","CAMPBELL'S RED&WHITE,CREAMY CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.23,5.65,8.87,97,0.81,3.2,16,0.29,,,56,702,,,806,,0,,,,,,,,12
6349,600,"CAMPBELL'S Red and White, SCOOBY-DOO Soup, condensed","CAMPBELL'S RED & WHITE,SCOOBY-DOO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,8.73,56,0.79,0.8,16,0.57,,,40,627,,,397,,0,,,,,,,,4
6350,600,"CAMPBELL'S Red and White, DOUBLE NOODLE in Chicken Broth Soup, condensed","CAMPBELL'S RED & WHITE,DOUBLE NOODLE IN CHICK BROTH SOP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,15.87,87,0.79,0.8,0,0.57,,,667,381,,,397,,0,,,,,,,,8
6351,600,"CAMPBELL'S Red and White, Old Fashioned Tomato Rice Soup, condensed","CAMPBELL'S RED & WHITE,OLD FASHIONED TOMATO RICE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.79,1.59,18.25,87,7.94,0.8,0,0.29,,,119,611,,,397,,1.9,,,,,,,,0
6353,600,"CAMPBELL'S Red and White, Fiesta Nacho Cheese Soup, condensed","CAMPBELL'S RED & WHITE,FIESTA NACHO CHS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.42,6.45,8.06,97,1.61,0.8,65,0,,,81,637,,,403,,0,,,,,,,,8
6354,600,"CAMPBELL'S Red and White, French Onion Soup, condensed","CAMPBELL'S RED & WHITE,FRENCH ONION SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.59,1.19,4.76,36,3.17,0.8,16,0,,,444,516,,,0,,0,,,,,,,,4
6355,600,"CAMPBELL'S Red and White, Golden Mushroom Soup, condensed","CAMPBELL'S RED & WHITE,GOLDEN MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,2.82,8.06,65,0.81,0.8,0,,,,548,524,,,403,,0,,,,,,,,0
6357,600,"CAMPBELL'S Red and White, GOLDFISH Pasta with Chicken in Chicken Broth, condensed","CAMPBELL'S RED & WHITE,GOLDFISH PASTA W/ CHICK",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,9.52,63,0.79,0.8,,0.29,,,429,381,,,397,,0,,,,,,,,4
6358,600,"Soup, tomato bisque, canned, prepared with equal volume milk","SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.51,2.63,11.73,79,,0.2,74,0.35,10,69,241,442,0.25,,350,,2.8,0.045,0.107,0.499,0.056,0.17,,0,9
6359,600,"Soup, tomato, canned, prepared with equal volume low fat (2%) milk","SOUP,TOMATO,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK",,,Y,,0,,6.25,2.8,8.7,3.8,"Soups, Sauces, and Gravies",2.42,1.24,9.82,55,6.59,0.5,68,0.3,13,63,343,206,0.34,2.7,287,25,6.3,0.041,0.103,0.461,0.061,0.28,1.6,0,4
6361,600,"CAMPBELL'S Red and White, Green Pea Soup, condensed","CAMPBELL'S RED & WHITE,GRN PEA SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",7.03,2.34,21.88,141,4.69,3.1,16,1.13,,,305,680,,,156,,0,,,,,,,,0
6363,600,"CAMPBELL'S, Homestyle Chicken Noodle Soup, condensed","CAMPBELL'S,HOMESTYLE CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.36,1.28,7.53,51,1.11,0.8,11,0.38,8,43,22,739,0.15,,446,,0.1,,,,,,,,8
6364,600,"CAMPBELL'S Red and White, Manhattan Clam Chowder, condensed","CAMPBELL'S RED & WHITE,MANHATTAN CLAM CHOWDER,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.59,0.4,9.52,48,1.59,1.6,16,0.57,,,198,698,,,794,,1,,,,,,,,0
6365,600,"CAMPBELL'S Red and White, Mega Noodle in Chicken Broth, condensed","CAMPBELL'S RED & WHITE,MEGA NOODLE IN CHICK BROTH,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,11.9,71,0.79,0.8,0,0.57,,,437,381,,,595,,0,,,,,,,,12
6366,600,"CAMPBELL'S Red and White, Minestrone Soup, condensed","CAMPBELL'S RED & WHITE,MINESTRONE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,0.79,13.49,71,2.38,2.4,16,0.86,,,833,516,,,794,,0,,,,,,,,4
6367,600,"CAMPBELL'S Red and White, New England Clam Chowder, condensed","CAMPBELL'S RED & WHITE,NEW ENGLAND CLAM CHOWDER,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,1.98,10.32,71,0.79,0.8,16,0.57,,,516,516,,,,,0,,,,,,,,4
6373,600,"CAMPBELL'S Red and White, Vegetarian Vegetable Soup, condensed","CAMPBELL'S RED & WHITE,VEGETARIAN VEG SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,0.4,14.29,71,4.76,1.6,16,0.57,,,698,516,,,1984,,0,,,,,,,,0
6374,600,"CAMPBELL'S Red and White, Vegetable Soup, condensed","CAMPBELL'S RED & WHITE,VEG SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,0.4,16.67,79,5.56,2.4,16,0.57,,,579,516,,,2381,,,,,,,,,,4
6375,600,"CAMPBELL'S, Vegetable Beef Soup, condensed","CAMPBELL'S,VEG BF SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.79,0.26,11.8,65,1.7,2.1,13,0.6,5,20,169,656,0.64,,601,,1.2,,,,,,,,3
6377,600,"CAMPBELL'S, Tomato Soup, condensed","CAMPBELL'S,TOMATO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.46,0.44,15.22,71,8.23,1.1,13,0.59,14,31,562,377,0.18,3,323,,4.8,0.042,0.015,0.858,,,,,0
6379,600,"CAMPBELL'S Red and White, Tomato Bisque, condensed","CAMPBELL'S RED & WHITE,TOMATO BISQUE,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.59,2.78,18.25,103,11.9,0.8,32,0.29,,,,698,,,238,,4.8,,,,,,,,4
6380,600,"CAMPBELL'S Red and White, Split Pea with Ham and Bacon Soup, condensed","CAMPBELL'S RED & WHITE,SPLIT PEA W/ HAM & BACON SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",7.81,1.56,23.44,141,3.13,3.1,16,1.13,,,352,664,,,234,,0,,,,,,,,4
6383,600,"CAMPBELL'S CHUNKY Soups, Baked Potato with Cheddar & Bacon Bits Soup","CAMPBELL'S CHUNKY SOUPS,BKD POTATO CHEDDAR BACON BITS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.04,3.67,9.39,78,1.25,0.8,16,0.29,,,,322,,,41,,0,,,,,,,,4
6384,600,"CAMPBELL'S CHUNKY Soups, Baked Potato with Steak & Cheese Soup","CAMPBELL'S CHUNKY SOUPS,BKD POTATO W/ STEAK & CHS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,4.08,8.57,82,1.22,1.2,8,0.59,,,,343,,,0,,0,,,,,,,,6
6387,600,"CAMPBELL'S CHUNKY Soups, Beef Rib Roast with Potatoes & Herbs Soup","CAMPBELL'S CHUNKY SOUPS,BF RIB RST POTATOES HERBS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.41,6.94,44,2.45,0.8,8,0.29,,,,363,,,918,,0.5,,,,,,,,4
6388,600,"CAMPBELL'S CHUNKY Soups, Beef with Country Vegetables Soup","CAMPBELL'S CHUNKY SOUPS,BF W/ COUNTRY VEG SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,1.22,7.35,53,1.63,1.2,8,0.59,,,,376,,,2449,,0,,,,,,,,6
6389,600,"CAMPBELL'S CHUNKY Soups, Beef with White and Wild Rice Soup","CAMPBELL'S CHUNKY SOUPS,BF W/ WHITE & WILD RICE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,0.61,9.8,57,2.04,0.8,8,0.44,,,,363,,,1020,,0,,,,,,,,4
6391,600,"CAMPBELL'S CHUNKY, Creamy Chicken and Dumplings Soup","CAMPBELL'S CHUNKY,CREAMY CHICK & DUMPLINGS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.32,3.19,7.09,66,1.09,1.5,16,0.49,18,36,50,339,0.28,,716,,0,,,,,,,,12
6392,600,"CAMPBELL'S CHUNKY Soups, Chicken Broccoli Cheese & Potato Soup","CAMPBELL'S CHUNKY SOUPS,CHICK BROCCOLI CHS & POTATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,4.49,8.16,86,2.45,1.2,8,0,,,,359,,,204,,0,,,,,,,,8
6393,600,"CAMPBELL'S CHUNKY Soups, Chicken Corn Chowder","CAMPBELL'S CHUNKY SOUPS,CHICK CORN CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,4.08,8.16,82,1.22,0.8,8,0.29,,,,351,,,816,,0,,,,,,,,6
6395,600,"CAMPBELL'S CHUNKY, Classic Chicken Noodle Soup","CAMPBELL'S CHUNKY,CLASSIC CHICK NOODLE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.41,1.3,5.41,47,0.41,1,11,0.34,7,35,90,325,0.18,5.7,,,0,0.017,0.023,1.352,,,,,8
6396,600,"CAMPBELL'S CHUNKY Soups, Fajita Chicken with Rice & Beans Soup","CAMPBELL'S CHUNKY SOUPS,FAJITA CHICK W/ RICE & BNS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.61,9.39,53,2.86,0.8,8,0.44,,,,347,,,1224,,0,,,,,,,,6
6398,600,"CAMPBELL'S CHUNKY Soups, Firehouse - Hot & Spicy Beef & Bean Chili","CAMPBELL'S CHUNKY SOUPS,FIREHOUSE - HOT SPICY BF BEAN CHILI",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",6.12,3.27,10.2,95,2.86,2.4,16,0.73,,,,355,,,204,,0.5,,,,,,,,10
6399,600,"CAMPBELL'S CHUNKY Soups, Grilled Chicken & Sausage Gumbo Soup","CAMPBELL'S CHUNKY SOUPS,GRILLED CHICK SAUSAGE GUMBO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.22,8.57,57,1.63,0.8,8,0.15,,,,347,,,163,,0,,,,,,,,8
6400,600,"CAMPBELL'S CHUNKY Soups, Grilled Chicken with Vegetables & Pasta Soup","CAMPBELL'S CHUNKY SOUPS,GRILLED CHICK VEG & PASTA SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,1.02,5.71,41,0.82,0.8,8,0.15,,,,359,,,1224,,0,,,,,,,,6
6401,600,"Soup, cream of asparagus, canned, prepared with equal volume water","SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",0.94,1.68,4.38,35,,0.2,12,0.33,2,16,71,402,0.36,,182,,1.1,0.022,0.032,0.319,0.005,0.02,,0,2
6402,600,"Soup, black bean, canned, prepared with equal volume water","SOUP,BLACK BEAN,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.42,0.66,7.71,46,1.24,3.4,19,0.75,17,38,125,487,0.55,0,222,0,0.1,0.021,0.02,0.205,0.035,0,0.9,0,0
6403,600,"CAMPBELL'S CHUNKY Soups, Grilled Sirloin Steak with Hearty Vegetables Soup","CAMPBELL'S CHUNKY SOUPS,GRILLED SIRLOIN STEAK HEARTY VEG SP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,0.82,7.76,51,1.63,1.6,8,0.44,,,,363,,,1224,,0.5,,,,,,,,4
6404,600,"Soup, bean with pork, canned, prepared with equal volume water","SOUP,BEAN W/ PORK,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",2.88,2.16,8.31,63,1.47,2.9,31,0.75,17,48,147,349,0.38,3.1,324,0,0.6,0.032,0.012,0.206,0.015,0.01,1.2,0,1
6405,600,"CAMPBELL'S CHUNKY, HEALTHY REQUEST Chicken Noodle Soup","CAMPBELL'S CHUNKY,HEALTHY REQUEST CHICK NOODLE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.97,0.97,5.88,41,1.12,0.8,12,0.34,8,36,317,161,0.47,,491,,0.5,,,,,,,,8
6406,600,"Soup, bean with frankfurters, canned, prepared with equal volume water","SOUP,BEAN W/ FRANKFURTERS,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",3.99,2.79,8.8,75,,,35,0.94,19,66,191,437,0.47,3.4,348,,0.4,0.044,0.026,0.41,0.053,0.03,,0,5
6408,600,"CAMPBELL'S CHUNKY Soups, HEALTHY REQUEST Vegetable Soup","CAMPBELL'S CHUNKY SOUPS,HEALTHY REQUEST VEG SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.63,0.41,9.8,49,3.27,1.6,24,0.44,,,,167,,,1633,,0,,,,,,,,0
6409,600,"Soup, beef noodle, canned, prepared with equal volume water","SOUP,BF NOODLE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",1.93,1.23,3.58,34,1.03,0.3,8,0.44,3,19,40,325,0.62,3,101,0,0.2,0.028,0.024,0.425,0.015,0.08,0.8,6,2
6410,600,"Soup, cream of celery, canned, prepared with equal volume water","SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",0.68,2.29,3.62,37,,0.3,16,0.26,3,15,50,254,0.06,0.9,126,,0.1,0.012,0.02,0.136,0.005,0.1,,0,6
6411,600,"Soup, cheese, canned, prepared with equal volume water","SOUP,CHS,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",2.19,4.24,4.26,63,,0.4,57,0.3,2,55,62,388,0.26,1.8,440,,0,0.007,0.055,0.161,0.01,0,,0,12
6413,600,"Soup, chicken broth, canned, prepared with equal volume water","SOUP,CHICK BROTH,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",2.02,0.57,0.38,16,0.29,0,4,0.21,1,30,86,306,0.1,0,0,0,0,0.004,0.029,1.372,0.01,0.1,0,0,0
6414,600,"CAMPBELL'S CHUNKY Soups, Hearty Bean 'N' Ham Soup","CAMPBELL'S CHUNKY SOUPS,HEARTY BEAN 'N' HAM SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",4.49,0.82,12.24,74,2.04,3.3,24,0.73,,,,318,,,1020,,0,,,,,,,,4
6415,600,"CAMPBELL'S CHUNKY Soups, Hearty Beef Barley Soup","CAMPBELL'S CHUNKY SOUPS,HEARTY BF BARLEY SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.89,0.92,8.98,56,1.17,1,10,0.49,10,55,129,308,0.54,2.2,157,,0.8,0.027,0.085,1.047,0.094,0.17,,,4
6416,600,"Soup, cream of chicken, canned, prepared with equal volume water","SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",1.41,3.02,3.8,48,,0.1,14,0.25,1,15,36,347,0.26,,230,,0.1,0.012,0.025,0.336,0.007,0.04,,0,4
6417,600,"Soup, chicken gumbo, canned, prepared with equal volume water","SOUP,CHICK GUMBO,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.08,0.59,3.43,23,1.02,0.8,10,0.37,2,10,31,391,0.15,3.3,55,0,2,0.01,0.02,0.272,0.026,0.01,2.6,0,2
6418,600,"CAMPBELL'S CHUNKY Soups, Hearty Chicken with Vegetables Soup","CAMPBELL'S CHUNKY SOUPS,HEARTY CHICK W/ VEG SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,0.82,6.94,45,1.22,1.2,8,0,,,,290,,,1224,,0,,,,,,,,6
6419,600,"Soup, chicken noodle, canned, prepared with equal volume water","SOUP,CHICK NOODLE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",1.16,0.76,2.97,24,0,0.5,5,0.33,4,18,24,335,0.14,3.1,201,0,0,0.039,0.034,0.598,0.021,0.06,0,5,4
6423,600,"Soup, chicken with rice, canned, prepared with equal volume water","SOUP,CHICK W/ RICE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.45,0.78,2.92,24,0.08,0.3,9,0.31,0,9,41,238,0.11,2.1,170,0,0.1,0.007,0.01,0.459,0.01,0.07,0.1,0,3
6426,600,"Soup, chili beef, canned, prepared with equal volume water","SOUP,CHILI BF,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",2.49,1.24,9.23,57,2.49,1.2,18,0.79,10,55,196,388,0.77,2.4,563,0,1.5,0.022,0.028,0.398,0.059,0.15,1.6,0,5
6428,600,"Soup, clam chowder, manhattan, canned, prepared with equal volume water","SOUP,CLAM CHOWDER,MANHATTAN,CND,PREP W/EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",0.85,0.86,4.77,30,1.32,0.6,11,0.64,4,16,74,226,0.36,3.7,373,0,1.6,0.012,0.016,0.318,0.039,1.58,2.7,0,1
6429,600,"CAMPBELL'S CHUNKY Soups, Manhattan Clam Chowder","CAMPBELL'S CHUNKY SOUPS,MANHATTAN CLAM CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.04,1.43,7.76,52,1.63,1.2,16,0.44,,,,339,,,1633,,0,,,,,,,,2
6430,600,"Soup, clam chowder, new england, canned, prepared with equal volume water","SOUP,CLAM CHOWDER,NEW ENGLAND,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.55,1.01,5.05,35,0.19,0.3,9,1.22,7,127,108,254,0.18,3.1,29,0,2,0.061,0.081,0.759,0.051,4.63,0.4,0,3
6431,600,"CAMPBELL'S CHUNKY, New England Clam Chowder","CAMPBELL'S CHUNKY,NEW ENGLAND CLAM CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.46,3.85,9.01,81,0,1.2,12,0.55,11,40,115,353,0.27,3,6,,0.4,0.015,0.015,0.47,,,,,4
6432,600,"Soup, beef broth, bouillon, consomme, prepared with equal volume water","SOUP,BF BROTH,BOUILLON,CONSOMME,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.22,0,0.73,12,,0,4,0.22,0,13,64,264,0.15,,0,,0.4,0.009,0.012,0.295,0.01,0,,0,0
6433,600,"CAMPBELL'S CHUNKY Soups, Old Fashioned Potato Ham Chowder","CAMPBELL'S CHUNKY SOUPS,OLD FASHIONED POTATO HAM CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,4.49,6.94,78,0.41,1.2,8,0.15,,,,327,,,0,,1,,,,,,,,8
6434,600,"CAMPBELL'S CHUNKY Soups, Old Fashioned Vegetable Beef Soup","CAMPBELL'S CHUNKY SOUPS,OLD FASHIONED VEG BF SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.16,1.23,6.24,49,1.15,1.3,17,0.54,10,48,163,346,0.59,3,2595,,0,0.015,0.016,1.002,,,,,6
6437,600,"CAMPBELL'S CHUNKY Soups, Roadhouse - Beef & Bean Chili","CAMPBELL'S CHUNKY SOUPS,ROADHOUSE - BF BEAN CHILI",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",6.12,3.27,10.2,95,2.86,2.4,16,0.73,,,,359,,,204,,0.5,,,,,,,,10
6438,600,"CAMPBELL'S CHUNKY Soups, Salisbury Steak with Mushrooms & Onions Soup","CAMPBELL'S CHUNKY SOUPS,SALISBURY STEAK MUSHRMS ONIONS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.84,7.76,57,2.45,0.8,8,0.44,,,,327,,,1020,,0,,,,,,,,6
6439,600,"CAMPBELL'S CHUNKY Soups, Savory Chicken with White & Wild Rice Soup","CAMPBELL'S CHUNKY SOUPS,SAVORY CHICK WHITE WILD RICE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.82,7.35,45,0.41,0.8,8,0,,,,331,,,1020,,0,,,,,,,,4
6440,600,"Soup, minestrone, canned, prepared with equal volume water","SOUP,MINESTRONE,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",1.77,1.04,4.66,34,,0.4,14,0.38,3,23,130,254,0.31,,970,,0.5,0.022,0.018,0.391,0.041,0,,8,1
6441,600,"CAMPBELL'S CHUNKY Soups, Savory Pot Roast Soup","CAMPBELL'S CHUNKY SOUPS,SAVORY POT RST SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.41,8.16,49,1.63,0.8,8,0.29,,,,322,,,1429,,0.5,,,,,,,,4
6442,600,"Soup, mushroom barley, canned, prepared with equal volume water","SOUP,MUSHROOM BARLEY,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.6,8.9,4,"Soups, Sauces, and Gravies",0.77,0.93,4.8,30,,0.3,5,0.21,4,25,38,365,0.2,,81,,0,0.01,0.036,0.36,0.07,0,,0,0
6443,600,"Soup, cream of mushroom, canned, prepared with equal volume water","SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",0.66,2.59,3.33,39,0.2,0.3,7,0.09,2,12,31,340,0.06,1.4,4,4,0,0.006,0.008,0.169,0.007,0,9.6,0,0
6444,600,"Soup, mushroom with beef stock, canned, prepared with equal volume water","SOUP,MUSHROOM W/ BF STOCK,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.29,1.65,3.81,35,,0.3,4,0.34,4,15,65,397,0.57,,514,,0.4,0.014,0.039,0.494,0.015,0,,0,3
6446,600,"Soup, cream of onion, canned, prepared with equal volume water","SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",1.13,2.16,5.2,44,,0.4,14,0.26,2,15,49,380,0.06,,121,,0.5,0.021,0.031,0.206,0.01,0.02,,0,6
6447,600,"CAMPBELL'S CHUNKY Soups, Savory Vegetable Soup","CAMPBELL'S CHUNKY SOUPS,SAVORY VEG SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,0.41,8.98,44,2.45,1.6,16,0.29,,,,314,,,1633,,0,,,,,,,,0
6448,600,"Soup, oyster stew, canned, prepared with equal volume water","SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",0.87,1.59,1.69,24,,,9,0.41,2,20,20,407,4.27,,29,,1.3,0.009,0.015,0.097,0.005,0.91,,0,6
6449,600,"Soup, pea, green, canned, prepared with equal volume water","SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",3.2,1.09,9.88,61,3.19,1.9,12,0.73,15,47,71,336,0.64,3.6,12,0,0.6,0.04,0.025,0.462,0.02,0,0.2,0,0
6451,600,"Soup, pea, split with ham, canned, prepared with equal volume water","SOUP,PEA,SPLIT W/ HAM,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",4.08,1.74,11.05,75,,0.9,9,0.9,19,84,158,398,0.52,,176,,0.6,0.058,0.03,0.583,0.027,0.1,,0,3
6453,600,"Soup, cream of potato, canned, prepared with equal volume water","SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",0.72,0.97,4.7,30,,0.2,8,0.2,1,19,56,238,0.26,,118,,0,0.014,0.015,0.221,0.015,0.02,,0,2
6454,600,"CAMPBELL'S CHUNKY Soups, Grilled Steak- Steak Chili with Beans","CAMPBELL'S CHUNKY SOUPS,GRILLED STEAK- STEAK CHILI W/ BNS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",6.53,1.22,11.02,81,3.67,2.9,16,0.73,,,,355,,,306,,0.5,,,,,,,,6
6456,600,"Soup, cream of shrimp, canned, prepared with equal volume water","SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",1.11,2.07,3.27,36,0.24,0.1,9,0.21,4,13,24,391,0.3,2.3,63,0,0,0.008,0.011,0.17,0.015,0.24,0,0,7
6457,600,"CAMPBELL'S CHUNKY Soups, Slow Roasted Beef with Mushrooms Soup","CAMPBELL'S CHUNKY SOUPS,SLOW RSTD BF W/ MUSHROOMS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,0.61,7.35,48,2.04,1.2,8,0.44,,,,339,,,1224,,0.5,,,,,,,,6
6459,600,"CAMPBELL'S CHUNKY Soups, Split Pea 'N' Ham Soup","CAMPBELL'S CHUNKY SOUPS,SPLIT PEA 'N' HAM SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",4.9,1.02,12.24,78,2.04,2,8,0.59,,,,318,,,1020,,1,,,,,,,,4
6461,600,"Soup, tomato beef with noodle, canned, prepared with equal volume water","SOUP,TOMATO BF W/ NOODLE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.78,1.71,8.44,56,0.73,0.6,9,0.45,3,23,88,367,0.3,2,219,0,0,0.034,0.036,0.745,0.035,0.08,0,5,2
6462,600,"CAMPBELL'S CHUNKY Soups, Steak 'N' Potato Soup","CAMPBELL'S CHUNKY SOUPS,STEAK 'N' POTATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,0.82,7.35,49,0.41,1.2,0,0.44,,,,376,,,0,,0,,,,,,,,6
6463,600,"Soup, tomato rice, canned, prepared with equal volume water","SOUP,TOMATO RICE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",0.82,1.06,8.54,47,2.95,0.7,11,0.31,2,13,129,319,0.2,0.9,210,0,5.8,0.024,0.02,0.411,0.03,0,1.5,0,1
6465,600,"Soup, turkey noodle, canned, prepared with equal volume water","SOUP,TURKEY NOODLE,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",1.6,0.82,3.54,28,,0.3,5,0.39,2,20,31,334,0.24,4.4,120,,0.1,0.03,0.026,0.572,0.015,0.06,,7,2
6466,600,"Soup, turkey vegetable, canned, prepared with equal volume water","SOUP,TURKEY VEG,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.28,1.26,3.58,30,,0.2,7,0.32,2,17,73,376,0.25,,1014,,0,0.012,0.016,0.417,0.02,0.07,,0,1
6468,600,"Soup, vegetarian vegetable, canned, prepared with equal volume water","SOUP,VEGETARIAN VEG,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,2.5,8.5,4,"Soups, Sauces, and Gravies",0.86,0.79,4.89,28,1.57,0.3,10,0.44,3,14,86,338,0.19,1.8,1421,0,0.6,0.022,0.019,0.374,0.023,0,2.1,0,0
6470,600,"CAMPBELL'S Low Sodium Soups, Chicken Broth","CAMPBELL'S LO NA SOUPS,CHICK BROTH",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.01,0.34,0.34,10,0.34,0,0,0,,,77,47,,,,,,,,,,,,,2
6471,600,"Soup, vegetable beef, canned, prepared with equal volume water","SOUP,VEG BF,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.23,0.76,4.06,31,0.45,0.8,8,0.45,3,16,69,349,0.62,1.1,1552,0,1,0.015,0.02,0.412,0.03,0.13,2.8,0,2
6472,600,"Soup, vegetable with beef broth, canned, prepared with equal volume water","SOUP,VEG W/ BF BROTH,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.21,0.78,5.35,33,0.82,0.7,9,0.4,3,16,79,253,0.33,1.1,853,0,1,0.021,0.019,0.395,0.023,0,1.2,0,1
6475,600,"Soup, beef broth or bouillon, powder, prepared with water","SOUP,BF BROTH OR BOUILLON,PDR,PREP W/H2O",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",0.21,0.08,0.25,3,0.2,0,4,0.02,2,3,6,382,0.01,0.3,0,0,0,0.002,0.003,0.049,0.003,0.01,0,0,0
6476,600,"Soup, beef broth, cubed, prepared with water","SOUP,BF BROTH,CUBED,PREP W/H2O",,,,,0,,6.25,4,8.9,4,"Soups, Sauces, and Gravies",0.21,0.08,0.25,3,0.2,0,4,0.02,2,3,6,260,0.01,0.3,0,0,0,0.002,0.003,0.049,0.003,0.01,0,0,0
6480,600,"Soup, chicken broth or bouillon, dry, prepared with water","SOUP,CHICK BROTH OR BOUILLON,DRY,PREP W/ H2O",,,Y,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",0.28,0.23,0.3,4,0.29,0,6,0.02,2,3,6,401,0.01,0.5,0,0,0,0.002,0.007,0.041,0.002,0,0,0,0
6481,600,"Soup, chicken broth cubes, dry, prepared with water","SOUP,CHICK BROTH CUBES,DRY,PREP W/ H2O",,,,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",0.39,0.12,0.62,5,,,5,0.05,1,5,10,326,0.01,,7,,0,0.005,0.01,0.103,0,0.01,,0,0
6482,600,"CAMPBELL'S Low Sodium Soups, Chicken with Noodles Soup","CAMPBELL'S LO NA SOUPS,CHICK W/ NOODLES SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.93,1.48,5.57,52,1.31,0.7,7,0.35,,,161,46,,,492,,0,,,,,,,,10
6483,600,"Soup, cream of chicken, dry, mix, prepared with water","SOUP,CRM OF CHICK,DRY,MIX,PREP W/ H2O",,,Y,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",0.68,2.04,5.11,41,1.59,0.1,29,0.1,2,37,82,454,0.6,3.1,156,0,0.2,0.04,0.078,1,0.02,0.1,5.6,0,1
6487,600,"CAMPBELL'S Low Sodium Soups, Cream of Mushroom Soup","CAMPBELL'S LO NA SOUPS,CRM OF MUSHROOM SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.01,2.68,6.38,54,2.01,0,13,,,,57,20,,,,,,,,,,,,,5
6494,600,"Soup, onion, dry, mix, prepared with water","SOUP,ONION,DRY,MIX,PREP W/ H2O",,,Y,,0,,6.25,2.5,8.5,4,"Soups, Sauces, and Gravies",0.32,0.01,2.77,12,0.2,0.3,9,0.05,4,9,31,346,0.05,0.2,1,0,0.1,0.012,0.012,0.063,0.025,0,0.1,0,0
6497,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Chicken Noodle Soup","CAMPBELL'S RED & WHITE - MCRWVEABLE BOWLS,CHICK NOODLE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.63,0.82,4.08,30,0,0.4,0,0.29,,,,355,,,204,,0,,,,,,,,6
6498,600,"Soup, tomato, dry, mix, prepared with water","SOUP,TOMATO,DRY,MIX,PREP W/ H2O",,,Y,,0,,6.25,2.8,8.7,3.8,"Soups, Sauces, and Gravies",0.93,0.61,7.17,38,3.9,0.4,29,0.18,10,33,111,356,0.13,1.1,314,0,2,0.105,0.175,0.926,0.058,0.06,0.8,0,2
6502,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Chicken Rice Soup","CAMPBELL'S RED & WHITE - MICROWAVEABLE BOWLS,CHICK RICE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.82,0.41,5.71,30,0.41,0.4,8,0.29,,,,327,,,204,,0,,,,,,,,2
6503,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Creamy Tomato Soup","CAMPBELL'S RED & WHITE - MCRWVEABLE BOWLS,CREAMY TOMATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,2.04,10.2,64,6.53,1.2,16,0.15,,,,306,,,204,,2.4,,,,,,,,2
6504,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Tomato Soup","CAMPBELL'S RED & WHITE - MICROWAVEABLE BOWLS,TOMATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,0,9.8,44,7.35,1.2,8,0.15,,,,322,,,163,,2.4,,,,,,,,0
6505,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Vegetable Beef Soup","CAMPBELL'S RED & WHITE - MICROWAVEABLE BOWLS,VEG BF SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.04,0.2,6.12,34,0.82,1.2,0,0.15,,,,359,,,408,,0,,,,,,,,4
6509,600,CAMPBELL'S Homestyle Butternut Squash Bisque,CAMPBELL'S HOMESTYLE BUTTERNUT SQUASH BISQUE,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.41,1.22,7.76,45,4.9,0.4,8,0.15,,,,265,,,204,,0,,,,,,,,4
6528,600,"Soup, chicken noodle, dry, mix, prepared with water","SOUP,CHICK NOODLE,DRY,MIX,PREP W/ H2O",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",0.84,0.55,3.67,23,0.31,0.1,2,0.2,3,12,13,229,0.08,3.8,11,0,0,0.081,0.03,0.431,0.01,0.02,1.4,6,4
6529,600,CAMPBELL'S Homestyle Light New England Clam Chowder,CAMPBELL'S HOMESTYLE LT NEW ENGLAND CLAM CHOWDER,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,1.63,6.12,49,0.41,0.8,8,0.59,,,,322,,,0,,0,,,,,,,,4
6537,600,CAMPBELL'S Homestyle HEALTHY REQUEST Mexican Style Chicken Tortilla,CAMPBELL'S HOMESTYLE HR MEXICAN STYLE CHICK TORTILLA,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.02,7.76,53,1.22,1.2,16,0.44,,,216,167,,,122,,0.5,,,,,,,,4
6541,600,CAMPBELL'S Homestyle Italian-Style Wedding Soup,CAMPBELL'S HOMESTYLE ITALIAN-STYLE WEDDING SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.43,6.12,49,1.22,0.8,16,0.44,,,,322,,,204,,0,,,,,,,,6
6543,600,CAMPBELL'S Homestyle Mexican Style Chicken Tortilla Soup,CAMPBELL'S HOMESTYLE MEXICAN STYLE CHICK TORTILLA SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.82,8.16,53,1.63,1.2,8,0.15,,,,347,,,82,,0,,,,,,,,4
6544,600,CAMPBELL'S Homestyle Minestrone Soup,CAMPBELL'S HOMESTYLE MINESTRONE SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.63,0.41,7.35,41,2.45,1.6,16,0.44,,,,322,,,612,,0,,,,,,,,0
6545,600,CAMPBELL'S Homestyle New England Clam Chowder,CAMPBELL'S HOMESTYLE NEW ENGLAND CLAM CHOWDER,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.33,4.23,5.68,70,0,0.8,14,0.56,13,31,337,363,0.27,4.3,0,,0,0.015,0.015,0.422,,,,,4
6546,600,CAMPBELL'S Homestyle Potato Broccoli Cheese Soup,CAMPBELL'S HOMESTYLE POTATO BROCCOLI CHS SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,3.67,6.94,65,1.22,1.2,16,0.29,,,,265,,,41,,1,,,,,,,,2
6547,600,"Soup, beef mushroom, canned, prepared with equal volume water","SOUP,BF MUSHROOM,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.37,1.23,2.6,30,,0.1,2,0.36,4,14,63,386,0.6,,0,,1.9,0.016,0.023,0.391,0.02,0.08,,0,3
6548,600,CAMPBELL'S Homestyle Chicken with White & Wild Rice Soup,CAMPBELL'S HOMESTYLE CHICK W/ WHITE & WILD RICE SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,0.41,6.94,41,1.22,0.4,8,0.15,,,,322,,,408,,0,,,,,,,,4
6549,600,"Soup, chicken mushroom, canned, prepared with equal volume water","SOUP,CHICK MUSHROOM,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4,9,4.2,"Soups, Sauces, and Gravies",1.8,3.75,3.8,54,,0.1,12,0.36,4,11,63,327,0.4,,465,,0,0.01,0.046,0.668,0.02,0.02,,0,4
6558,600,"Soup, tomato bisque, canned, prepared with equal volume water","SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",0.92,1.02,9.6,50,,0.2,16,0.33,4,24,169,424,0.24,,292,,2.4,0.027,0.029,0.465,0.036,0,,0,2
6559,600,"Soup, tomato, canned, prepared with equal volume water, commercial","SOUP,TOMATO,CND,PREP W/EQ VOLUME H2O,COMM",,,Y,,0,,6.25,2.8,8.7,3.8,"Soups, Sauces, and Gravies",0.71,0.21,7.45,32,4.03,0.5,8,0.29,7,15,275,186,0.09,1.5,192,0,6.3,0.02,0.007,0.42,0.042,0,1.5,0,0
6580,600,CAMPBELL'S Homestyle Vegetable Medley Soup,CAMPBELL'S HOMESTYLE VEG MEDLEY SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,0.2,7.35,37,3.27,1.2,16,0.29,,,,322,,,816,,0,,,,,,,,0
6583,600,"Soup, ramen noodle, any flavor, dry","SOUP,RAMEN NOODLE,ANY FLAVOR,DRY",,,Y,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.17,17.59,60.26,440,1.98,2.9,21,4.11,25,115,181,1855,0.6,23.1,12,0,0.3,0.448,0.255,5.401,0.038,0.25,8.9,70,0
6584,600,"Soup, broccoli cheese, canned, condensed, commercial","SOUP,BROCCOLI CHS,CND,COND,COMM",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.1,5.3,7.7,87,2.12,1.8,41,0.3,13,42,207,661,0.26,1.5,825,0,2,0.02,0.04,0.248,0.064,0.02,51.8,0,4
6585,600,"CAMPBELL'S Soup on the Go, Vegetable with Mini Round Noodles Soup","CAMPBELL'S SOUP ON THE GO,VEG W/ MINI RND NOODLES SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.66,0.16,6.89,33,4.59,0.3,7,0.24,,,308,213,,,246,,0.4,,,,,,,,2
6586,600,"CAMPBELL'S Soup on the Go, Chicken & Stars Soup","CAMPBELL'S SOUP ON THE GO,CHICK & STARS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,0.49,3.28,23,0.33,0.3,7,0.12,,,,315,,,164,,1.2,,,,,,,,2
6587,600,"CAMPBELL'S Soup on the Go, Chicken with Mini Noodles Soup","CAMPBELL'S SOUP ON THE GO,CHICK W/ MINI NOODLES SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.31,0.66,3.61,26,0.66,0.7,0,0,,,,321,,,492,,0.8,,,,,,,,3
6588,600,"CAMPBELL'S Soup on the Go, Classic Tomato Soup","CAMPBELL'S SOUP ON THE GO,CLASSIC TOMATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,0.16,10.16,46,6.56,0.7,0,0.12,,,,210,,,164,,11.8,,,,,,,,0
6589,600,"CAMPBELL'S Soup on the Go, Creamy Broccoli Soup","CAMPBELL'S SOUP ON THE GO,CREAMY BROCCOLI SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.66,3.61,4.26,52,1.31,1,13,0.12,,,,289,,,33,,0,,,,,,,,2
6590,600,"CAMPBELL'S Soup on the Go, Creamy Chicken Soup","CAMPBELL'S SOUP ON THE GO,CREAMY CHICK SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,2.95,3.28,43,0.33,0.7,0,0,,,,289,,,98,,0,,,,,,,,2
6592,600,"CAMPBELL'S Soup on the Go, Creamy Tomato Soup","CAMPBELL'S SOUP ON THE GO,CREAMY TOMATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,1.64,9.84,59,7.21,0.7,13,0.12,,,295,213,,,164,,9.8,,,,,,,,2
6594,600,"CAMPBELL'S Soup on the Go, New England Clam Chowder","CAMPBELL'S SOUP ON THE GO,NEW ENGLAND CLAM CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.66,3.61,4.26,52,0.66,1,7,0.24,,,,292,,,0,,0,,,,,,,,2
6595,600,"CAMPBELL'S Soup on the Go, Vegetable Beef Soup","CAMPBELL'S SOUP ON THE GO,VEG BF SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,0.33,3.28,20,1.64,0.3,7,0.12,,,,305,,,131,,0,,,,,,,,2
6596,600,"CAMPBELL'S Soup on the Go, Cheesy Potato with Bacon Flavor Soup","CAMPBELL'S SOUP ON THE GO,CHEESY POTATO W/ BACON FLAVOR SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.66,1.97,5.25,43,1.31,0.3,7,0.12,,,,292,,,0,,0,,,,,,,,3
6597,600,"PACE, Chipotle Chunky Salsa","PACE,CHIPOTLE CHUNKY SALSA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,0,0,,,,719,,,625,,0,,,,,,,,0
6598,600,"PACE, Cilantro Chunky Salsa","PACE,CILANTRO CHUNKY SALSA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,0,0,,,,844,,,313,,0,,,,,,,,0
6599,600,"PACE, Enchilada Sauce","PACE,ENCHILADA SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.67,0,8.33,40,6.67,1.7,,0.6,,,,867,,,667,,2,,,,,,,,0
6600,600,"PACE, Green Taco Sauce","PACE,GRN TACO SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,,,,,,,625,,,,,,,,,,,,,0
6601,600,"PACE, Lime & Garlic Chunky Salsa","PACE,LIME & GARLIC CHUNKY SALSA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,9.38,38,6.25,3.1,0,0,,,,656,,,625,,5.6,,,,,,,,0
6602,600,"PACE, Organic Picante Sauce","PACE,ORGANIC PICANTE SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,,,,,,688,,,625,,,,,,,,,,0
6603,600,"PACE, Picante Sauce","PACE,PICANTE SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,,,,,,781,,,313,,,,,,,,,,0
6604,600,"PACE, Red Taco Sauce","PACE,RED TACO SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,12.5,50,6.25,0,0,0,,,,813,,,625,,0,,,,,,,,0
6605,600,"PACE, Thick & Chunky Salsa","PACE,THICK & CHUNKY SALSA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,,,,,,719,,,313,,,,,,,,,,0
6609,600,"SWANSON BROTH, Certified Organic Vegetable Broth","SWANSON BROTH,CERT ORGANIC VEG BROTH",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,1.28,5,0.85,0,0,0,,,,234,,,213,,0,,,,,,,,0
6611,600,"Soup, SWANSON, beef broth, lower sodium","SOUP,SWANSON,BF BROTH,LOWER NA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.2,0.08,0.21,6,0.2,,2,0.04,1,10,23,180,0.32,0,0,,,0.02,0.085,0.5,0.107,0,,,0
6615,600,"Soup, SWANSON, vegetable broth","SOUP,SWANSON,VEG BROTH",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.23,0.07,1.02,6,0.57,0,3,0.08,1,3,20,303,0.03,,289,,0.4,0.02,0.015,0.11,0.007,,,,0
6617,600,CAMPBELL'S Homestyle Light Italian-Style Wedding Soup,CAMPBELL'S HOMESTYLE LT ITALIAN-STYLE WEDDING SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,0.61,4.49,33,0.82,0.4,16,0.44,,,,322,,,408,,0,,,,,,,,4
6618,600,"Sauce, peanut, made from coconut, water, sugar, peanuts","SAUCE,PNUT,MADE FROM COCNT,H2O,SUGAR,PNUTS",,,Y,,0,,,4,9,4,"Soups, Sauces, and Gravies",2.02,6.34,28.46,179,18.8,1.1,9,0.38,19,35,99,319,0.3,2.7,0,0,0,0.07,0.04,1.355,0.085,0,1,0,0
6619,600,"SMART SOUP, Santa Fe Corn Chowder","SMART SOUP,SANTA FE CORN CHOWDER",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",2,0.71,11.2,55,3.6,2,23,1,,,,131,,,,,0,,,,,,,,0
6620,600,"SMART SOUP, French Lentil","SMART SOUP,FRENCH LENTIL",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",2.9,1.06,9.5,53,2.6,2.9,23,1,,,,131,,,,,0,,,,,,,,0
6621,600,"SMART SOUP, Greek Minestrone","SMART SOUP,GREEK MINESTRONE",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",1.7,0.53,8.4,40,2.7,2.7,21,1,,,,138,,,,,0,,,,,,,,0
6622,600,"SMART SOUP, Indian Bean Masala","SMART SOUP,INDIAN BEAN MASALA",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",3.3,0.88,10.5,57,2.3,2.6,22,1,,,,92,,,,,0,,,,,,,,0
6623,600,"SMART SOUP, Moroccan Chick Pea","SMART SOUP,MOROCCAN CHICK PEA",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",2,1.06,9.7,51,4.2,3.1,23,1,,,,148,,,,,0,,,,,,,,0
6624,600,"SMART SOUP, Thai Coconut Curry","SMART SOUP,THAI COCNT CURRY",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",0.8,1.06,6.5,36,3.7,1,19,0,,,,141,,,,,0,,,,,,,,0
6625,600,"SMART SOUP, Vietnamese Carrot Lemongrass","SMART SOUP,VIETNAMESE CARROT LEMONGRASS",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",1.3,1.06,8.2,44,4.4,1.5,23,0,,,,145,,,,,0,,,,,,,,0
6626,600,"Sauce, pesto, ready-to-serve, refrigerated","SAUCE,PESTO,RTS,REFR",,,,,0,,,,,,"Soups, Sauces, and Gravies",9.83,37.6,10.09,418,6.33,1.8,306,0.57,47,273,560,603,1.33,,1544,,0,0.17,0.717,0.523,0.133,,151.1,,
6627,600,"Sauce, pesto, ready-to-serve, shelf stable","SAUCE,PESTO,RTS,SHELF STABLE",,,,,0,,,,,,"Soups, Sauces, and Gravies",5,42.42,6.14,426,1.92,1.7,173,0.88,45,132,205,998,0.88,5.5,1802,,0.1,0.093,0.307,0.738,0.178,,193.8,,
6628,600,"Sauce, pesto, BUITONI, pesto with basil, ready-to-serve, refrigerated","SAUCE,PESTO,BUITONI,PESTO W/ BASIL,RTS,REFR",,"Nestle USA, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",9.83,37.6,10.09,418,6.33,1.8,306,0.57,47,273,560,603,1.33,,1544,,0,0.17,0.717,0.523,0.133,,151.1,,
6629,600,"Sauce, pesto, CLASSICO, basil pesto, ready-to-serve","SAUCE,PESTO,CLASSICO,BASIL PESTO,RTS",,Classico,,,0,,,,,,"Soups, Sauces, and Gravies",4.16,36.38,6.93,372,2.6,2.1,166,0.71,40,97,195,1028,0.68,5.5,1929,,0,0.097,0.273,0.877,0.267,,193.8,,
6630,600,"Sauce, pesto, MEZZETTA, NAPA VALLEY BISTRO, basil pesto, ready-to-serve","SAUCE,PESTO,MEZZETTA,NAPA VALLEY BISTRO,BASIL PESTO,RTS",,Mezzetta,,,0,,,,,,"Soups, Sauces, and Gravies",6.69,49.88,5.12,496,1.25,1.3,202,0.99,43,149,205,897,1,,1674,,0.2,0.09,0.34,0.6,0.09,,,,
6631,600,"Sauce, hot chile, sriracha","SAUCE,HOT CHILE,SRIRACHA",,,,,0,,,,,,"Soups, Sauces, and Gravies",1.93,0.93,19.16,93,15.11,2.2,18,1.64,16,46,321,2124,0.24,0.4,2574,,26.9,0.077,0.222,1.248,0.455,,10.9,,
6632,600,"Sauce, hot chile, sriracha, CHA! BY TEXAS PETE","SAUCE,HOT CHILE,SRIRACHA,CHA! BY TEXAS PETE",,TW Garner Food Company,,,0,,,,,,"Soups, Sauces, and Gravies",2.02,0.98,22.73,108,15.65,2.1,15,1.46,16,46,302,2903,0.23,,2773,,4.8,0.105,0.245,1.125,0.47,,,,
6633,600,"Sauce, hot chile, sriracha, TUONG OT SRIRACHA","SAUCE,HOT CHILE,SRIRACHA,TUONG OT SRIRACHA",,"Huy Fong Foods, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",1.86,0.9,15.87,79,10.48,2.2,20,1.92,16,46,341,1540,0.25,0.4,2764,,57.9,0.06,0.213,1.43,0.465,,14.6,,
6700,600,"Soup, vegetable broth, ready to serve","SOUP,VEG BROTH,READY TO SERVE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.24,0.07,0.93,5,0.55,0,3,0.06,1,3,19,296,0.03,0,238,0,0.4,0.023,0.022,0.11,0.007,0,0.7,0,0
6720,600,"Sauce, cheese sauce mix, dry","SAUCE,CHS SAU MIX,DRY",,,,,0,,,,,,"Soups, Sauces, and Gravies",7.68,18.33,60.52,438,10.26,1,204,0.5,36,283,428,3202,1.11,,202,,0.9,0.211,0.678,2.399,0.182,0.46,,0,23
6725,600,"Soup, chicken corn chowder, chunky, ready-to-serve, single brand","SOUP,CHICK CORN CHOWDER,CHUNKY,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",3.1,6.3,7.5,99,,0.9,,,,,,299,,,1150,,,,,,,,,,11
6726,600,"Soup, chicken mushroom chowder, chunky, ready-to-serve, single brand","SOUP,CHICK MUSHROOM CHOWDER,CHUNKY,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",3,4.4,7.1,80,,1.4,,0.48,,,,339,,,0,,2,,,,,,,,6
6728,600,"Soup, potato ham chowder, chunky, ready-to-serve, single brand","SOUP,POTATO HAM CHOWDER,CHUNKY,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",2.7,5.2,5.6,80,,0.6,,0.7,,,,364,,,0,,,,,,,,,,9
6729,600,"Soup, sirloin burger with vegetables, ready-to-serve, single brand","SOUP,SIRLOIN BURGER W/VEG,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",4.2,3.7,6.8,77,,2.3,,0.87,,,,361,,,1250,,,,,,,,,,11
6730,600,"Soup, split pea with ham, chunky, reduced fat, reduced sodium, ready-to-serve, single brand","SOUP,SPLIT PEA W/ HAM,CHUNKY,RED FAT,RED NA,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",5.2,1.1,11.3,76,,,,0.92,,,,343,,,2625,,4.2,,,,,,,,6
6731,600,"Soup, bean with bacon, condensed, single brand","SOUP,BEAN W/BACON,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",6.5,2.1,18,117,,4.6,,1.37,,,,672,,,183,,,,,,,,,,3
6733,600,"Soup, beef with vegetables and barley, canned, condensed, single brand","SOUP,BF W/VEG&BARLEY,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",3.9,1.4,8.2,61,,,,,,,,707,,,567,,,,,,,,,,6
6734,600,"Soup, chicken with star-shaped pasta, canned, condensed, single brand","SOUP,CHICK W/STAR-SHAPED PASTA,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",2.3,1.4,7.1,50,,,,,,,,732,,,433,,,,,,,,,,4
6736,600,"Soup, cream of chicken, canned, condensed, single brand","SOUP,CRM OF CHICK,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,6.5,7.7,99,,,,,,,,788,,,0,,,,,,,,,,7
6738,600,"Soup, split pea with ham and bacon, canned, condensed, single brand","SOUP,SPLIT PEA W/HAM&BACON,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",8.6,2.3,21.2,140,,3,,1.59,,,,729,,,150,,,,,,,,,,3
6739,600,"Soup, vegetable beef, canned, condensed, single brand","SOUP,VEG BF,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",3.8,0.8,7.7,53,,,,,,,,555,,,1367,,,,,,,,,,5
6740,600,"Soup, chicken vegetable, chunky, reduced fat, reduced sodium, ready-to-serve, single brand","SOUP,CHICK VEG,CHUNKY,RED FAT,RED NA,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",2.7,0.5,6.3,40,,,,,,,,192,,,1283,,,,,,,,,,4
6742,600,"Soup, vegetable beef, microwavable, ready-to-serve, single brand","SOUP,VEG BF,MICROWAVABLE,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",6.2,0.7,3.3,44,,1.5,,,,,,376,,,650,,,,,,,,,,3
6748,600,"Soup, PROGRESSO, beef barley, traditional, ready to serve","SOUP,PROGRESSO,BF BARLEY,TRADITIONAL,READY TO SERVE",,General Mills Inc.,,,0,,,,,,"Soups, Sauces, and Gravies",2.71,1,6.69,47,1.27,0.9,12,0.39,9,44,110,284,0.45,2.2,401,,0.3,0.027,0.086,0.82,0.063,0.14,,,3
6749,600,"Soup, beef and vegetables, canned, ready-to-serve","SOUP,BF & VEG,CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.18,1.16,6.16,48,1.25,1.2,18,0.51,10,48,174,326,0.56,3,2290,1,3.6,0.015,0.016,0.978,0.126,0.17,6,0,7
6930,600,"Sauce, cheese, ready-to-serve","SAUCE,CHS,RTS",,,,,0,,,,,,"Soups, Sauces, and Gravies",6.71,13.29,6.83,174,0.42,0.5,184,0.21,9,157,30,828,0.98,3.2,316,,0.4,0.006,0.114,0.024,0.017,0.14,,0,29
6931,600,"Sauce, pasta, spaghetti/marinara, ready-to-serve","SAUCE,PASTA,SPAGHETTI/MARINARA,RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.39,1.61,7.43,50,4.91,1.8,26,0.73,18,34,320,437,0.2,1.4,617,0,2,0.024,0.061,3.917,0.173,0,13.9,0,2
6932,600,"PREGO Pasta, Traditional Italian Sauce, ready-to-serve","PREGO PASTA,TRADITIONAL ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.15,10,54,7.69,2.3,15,0.55,,,292,369,,,385,,1.8,,,,,,,,0
6955,600,"Soup, cream of chicken, canned, condensed, reduced sodium","SOUP,CRM OF CHICK,CND,COND,RED NA",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.8,1.3,9.5,58,0.39,0.4,11,0.2,2,23,272,357,0.13,6.3,432,0,0,0.005,0.022,0.637,0.012,0.05,0.7,0,6
6956,600,"Soup, tomato, canned, condensed, reduced sodium","SOUP,TOMATO,CND,COND,RED NA",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.61,0.56,13.41,65,8.11,1.2,13,1.11,14,29,229,22,0.25,5.1,392,0,12.9,0.039,0.063,1.032,0.086,0,3.2,0,0
6957,600,"Gravy, brown instant, dry","GRAVY,BROWN INST,DRY",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",8.53,11.85,59.78,380,9.23,3.2,116,7.4,32,212,367,5053,0.96,9.3,1,0,1.9,0.236,0.473,2.261,0.282,0.33,0.3,43,12
6958,600,"Gravy, instant beef, dry","GRAVY,INST BF,DRY",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",9.8,9.48,61.1,369,23.9,4.3,141,6.27,41,239,450,5203,0.76,18,8,0,0.9,0.187,0.514,1.075,0.138,0.62,0.4,20,11
6959,600,"Gravy, instant turkey, dry","GRAVY,INST TURKEY,DRY",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",11.72,14.66,57.56,409,7.6,3.8,115,9.57,30,203,306,4090,1.13,19.4,63,0,0.9,0.13,0.264,1.181,0.205,0.37,2,15,24
6960,600,"Sauce, alfredo mix, dry","SAUCE,ALFREDO MIX,DRY",,,,,0,,,,,,"Soups, Sauces, and Gravies",15.32,36.35,36.52,535,5.4,2,467,0.94,32,415,254,2590,1.49,9.3,213,,0,0.156,0.054,2.07,0.134,0.38,6.2,0,56
6961,600,"Sauce, peppers, hot, chili, mature red, canned","SAUCE,PEPPERS,HOT,CHILI,MATURE RED,CND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.9,0.6,3.9,21,2.55,0.7,9,0.5,12,16,564,25,0.15,0.2,458,0,30,0.01,0.09,0.6,0.14,0,6.7,0,0
6962,600,"Sauce, chili, peppers, hot, immature green, canned","SAUCE,CHILI,PEPPERS,HOT,IMMAT GRN,CND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.7,0.1,5,20,2.55,1.9,5,0.4,12,14,564,25,0.15,0.2,584,0,68,0.03,0.03,0.7,0.14,0,7.1,0,0
6963,600,Fish broth,FISH BROTH,,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2,0.6,0.4,16,0.09,0,30,0.21,1,30,86,318,0.1,0.7,4,0,0,0,0.03,1.37,0.01,0.1,0.2,0,0
6964,600,"Soup, tomato, low sodium, with water","SOUP,TOMATO,LO NA,W/H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.79,0.28,6.57,30,3.97,0.6,8,0.54,7,14,112,33,0.12,2.5,192,0,6.3,0.019,0.031,0.505,0.042,0,1.5,0,0
6965,600,"Soup, pea, low sodium, prepared with equal volume water","SOUP,PEA,LO NA,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",3.2,1.09,9.88,62,3.19,1.9,12,0.73,15,47,71,10,0.64,3.6,12,0,0.6,0.04,0.025,0.462,0.02,0,0.2,0,0
6966,600,"Soup, chicken noodle, low sodium, canned, prepared with equal volume water","SOUP,CHICK NOODLE,LO NA,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.27,0.95,2.95,25,0.27,0.2,6,0.66,4,17,22,173,0.16,4.8,201,0,0,0.055,0.045,0.54,0.02,0.02,0,6,5
6967,600,"Soup, vegetable soup, condensed, low sodium, prepared with equal volume water","SOUP,VEG SOUP,COND,LO NA,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.1,0.45,6.06,33,2.15,1.1,12,0.33,13,23,217,194,0.2,2,860,0,0.4,0.055,0.046,0.77,0.084,0,2.1,0,0
6968,600,"Soup, cream of mushroom, low sodium, ready-to-serve, canned","SOUP,CRM OF MUSHROOM,LO NA,RTS,CND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1,3.7,4.53,53,1.72,0.2,19,0.21,2,20,41,20,0.24,0.6,24,0,0.4,0.02,0.04,0.3,0.01,0.02,0.8,2,1
6969,600,"Potato soup, instant, dry mix","POTATO SOUP,INST,DRY MIX",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",9.2,3.1,76.14,343,10,7.6,172,2.38,62,279,1248,2400,0.91,12.3,60,0,16,0.11,0.22,4.27,0.16,0,13.9,4,12
6970,600,"Soup, chicken broth, low sodium, canned","SOUP,CHICK BROTH,LO NA,CND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2,0.6,1.2,16,0.13,0,4,0.21,1,30,86,30,0.1,0,0,0,0,0,0.03,1.37,0.01,0.1,0,0,0
6971,600,"Sauce, worcestershire","SAUCE,WORCESTERSHIRE",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",0,0,19.46,78,10.03,0,107,5.3,13,60,800,980,0.19,0.5,79,0,13,0.07,0.13,0.7,0,0,1,0,0
6972,600,"Sauce, tomato chili sauce, bottled, with salt","SAUCE,TOMATO CHILI SAU,BTLD,W/SALT",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.5,0.3,19.79,92,13.33,2.4,20,0.8,12,52,370,1338,0.16,1.1,680,0,16,0.09,0.07,1.6,0.16,0,5.2,0,0
6974,600,"Soup, vegetable chicken, canned, prepared with water, low sodium","SOUP,VEG CHICK,CND,PREP W/ H2O,LO NA",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",5.1,2,8.76,69,1.42,0.4,11,0.61,4,44,153,35,0.9,5.1,2496,0,2.3,0.02,0.07,1.37,0.04,0.1,6.2,2,7
6976,600,"Sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium","SAUCE,PASTA,SPAGHETTI/MARINARA,RTS,LO NA",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.41,1.48,8.06,51,5.5,1.8,27,0.78,18,34,319,30,0.2,1.1,650,0,2,0.024,0.061,3.917,0.173,0,13.9,0,2
6977,600,"Gravy, meat or poultry, low sodium, prepared","GRAVY,MEAT OR POULTRY,LO NA,PREP",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",3.8,2.4,6.16,53,0.01,0.3,6,0.7,2,30,81,18,1,0.6,0,0,0,0.03,0.04,0.66,0.01,0.1,0,0,3
6978,600,"Soup, beef and mushroom, low sodium, chunk style","SOUP,BF & MUSHROOM,LO NA,CHUNK STYLE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",4.3,2.3,9.58,69,0.84,0.2,13,0.97,2,50,140,25,1.1,2.2,1967,0,3,0.04,0.11,1.13,0.06,0.26,3.5,0,6
6980,600,"Soup, beef stroganoff, canned, chunky style, ready-to-serve","SOUP,BF STROGANOFF,CND,CHUNKY STYLE,RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",5.1,4.6,9,98,1.68,0.6,20,0.88,2,50,140,435,1.1,7.6,820,0,0,0.04,0.09,0.1,0.06,0.26,102.8,10,21
6981,600,"Soup, bouillon cubes and granules, low sodium, dry","SOUP,BOUILLON CUBES&GRANULES,LO NA,DRY",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",16.7,13.89,64.88,438,14.47,0.2,187,1.03,56,166,309,1067,0.09,27.6,500,0,1.1,0.1,0.43,2.46,0.1,0.3,66.9,0,13
6982,600,"Soup, ramen noodle, beef flavor, dry","SOUP,RAMEN NOODLE,BF FLAVOR,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.06,17.73,60.34,441,1.99,3,21,3.93,25,115,177,1727,0.61,19.6,,,0.6,0.479,0.258,5.139,0.037,,9,,
6983,600,"Soup, ramen noodle, chicken flavor, dry","SOUP,RAMEN NOODLE,CHICK FLAVOR,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.22,17.52,60.23,439,1.96,2.9,22,4.21,25,115,183,1923,0.59,24.7,,,0,0.433,0.254,5.536,0.039,,,,
6984,600,"Soup, SWANSON Chicken Broth 99% Fat Free","SOUP,SWANSON CHICK BROTH 99% FAT FREE",,Campbell Soup Co.,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",0.54,0.17,0.14,4,0.15,0,4,0.14,1,11,30,409,0.02,2.2,,,0,0.007,0.021,0.558,0.014,0.2,0,,0
6985,600,"Gravy, HEINZ Home Style, savory beef","GRAVY,HEINZ HOME STYLE,SAVORY BF",,"H.J. Heinz, Co.",,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.09,1.13,6.24,39,0.52,0.7,6,0.13,3,10,22,587,0.15,2.2,,,0,0.007,0.022,0.172,0.014,0.09,,,2
6986,600,"CAMPBELL'S HEALTHY REQUEST, Chicken Noodle Soup, condensed","CAMPBELL'S HEALTHY REQUEST,CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,1.3,6.51,47,0.89,1,12,0.69,5,25,350,334,0.2,,346,,0.3,,,,,,,,10
6987,600,"HEALTHY REQUEST, Cream of Celery Soup, condensed","HEALTHY REQUEST,CRM OF CELERY,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,1.61,9.68,56,1.61,0.8,81,0,,,484,331,,,161,,0,,,,,,,,4
6988,600,"CAMPBELL'S HEALTHY REQUEST, Cream of Mushroom Soup, condensed","CAMPBELL'S HEALTHY REQUEST,CRM OF MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.29,1.7,8.6,55,1.79,1,71,0.3,13,56,596,327,0.07,,0,,0.1,,,,,,,,0
6989,600,"CAMPBELL'S HEALTHY REQUEST, Homestyle Chicken Noodle Soup, condensed","CAMPBELL'S HEALTHY REQUEST,HOMESTYLE CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.7,1,7.8,51,0.6,0.6,13,0.4,6,69,299,317,0.2,,407,,0.6,,,,,,,,7
6990,600,"HEALTHY REQUEST, Minestrone Soup, condensed","HEALTHY REQUEST,MINESTRONE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,0.4,11.9,63,3.17,2.4,32,0.86,,,659,325,,,794,,0,,,,,,,,0
6991,600,"HEALTHY REQUEST, Tomato Soup, condensed","HEALTHY REQUEST,TOMATO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,1.21,13.71,73,8.06,0.8,0,0,,,565,331,,,323,,4.8,,,,,,,,0
6992,600,"HEALTHY REQUEST, Vegetable Soup, condensed","HEALTHY REQUEST,VEG SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,0.79,15.87,79,3.97,2.4,16,0.57,,,683,325,,,1984,,,,,,,,,,0
6994,600,"PREGO Pasta, Chunky Garden Combination Italian Sauce, ready-to-serve","PREGO PASTA,CHUNKY GARDEN COMB ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.15,10,54,7.69,2.3,15,0.55,,,308,362,,,769,,1.8,,,,,,,,0
6995,600,"PREGO Pasta, Chunky Garden Tomato, Onion and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,CHNKY GRDN TMTO,ON & GRLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,2.4,10.4,72,8,2.4,16,0.58,,,320,376,,,400,,2.9,,,,,,,,0
6996,600,"Gravy, CAMPBELL'S, au jus","GRAVY,CAMPBELL'S,AU JUS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,0,8,,,,,,,,390,,,,,,,,,,,,,0
6997,600,"Gravy, CAMPBELL'S, beef","GRAVY,CAMPBELL'S,BF",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,1.69,5.08,42,1.69,0,0,0,,,,458,,,0,,0,,,,,,,,8
6998,600,"Gravy, CAMPBELL'S, brown with onions","GRAVY,CAMPBELL'S,BROWN W/ ONIONS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,1.69,6.78,42,3.39,0,,,,,,559,,,,,,,,,,,,,0
6999,600,"Gravy, CAMPBELL'S, chicken","GRAVY,CAMPBELL'S,CHICK",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.79,2.73,5.87,51,0.94,,12,0.12,3,15,55,424,0.09,0.4,,,,0.01,0.047,0.297,0.02,0,0.2,,6
7001,700,"Barbecue loaf, pork, beef","BARBECUE LOAF,PORK,BEEF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.84,8.9,6.4,173,,0,55,1.16,17,132,329,1334,2.46,21.3,68,36,0,0.36,0.248,2.266,0.26,1.68,,0,37
7002,700,"Beerwurst, beer salami, pork and beef","BEERWURST,BEER SALAMI,PORK & BF",,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,14,22.53,3.76,277,0,0.9,27,1.73,19,135,244,881,2.21,17.4,10,36,0.6,0.246,0.173,2.975,0.23,1.16,1.3,0,62
7003,700,"Beerwurst, beer salami, pork","BEERWURST,BEER SALAMI,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.24,18.8,2.06,238,,0,8,0.76,13,103,253,1240,1.72,20.9,0,36,0,0.554,0.192,3.254,0.35,0.87,,0,59
7004,700,"Sausage, Berliner, pork, beef",SAUSAGE BERLINER PORK BF,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.27,17.2,2.59,230,2.35,0,12,1.15,15,130,283,1297,2.47,14.1,0,13,0,0.38,0.213,3.11,0.2,2.67,1.6,0,46
7005,700,Blood sausage,BLOOD SAUSAGE,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.6,34.5,1.29,379,1.29,0,6,6.4,8,22,38,680,1.3,15.5,0,52,0,0.07,0.13,1.2,0.04,1,0,0,120
7006,700,"Bockwurst, pork, veal, raw",BOCKWURST PORK VEAL RAW,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,14.03,25.87,2.95,301,1.33,1,41,1.15,26,169,270,756,2.07,11.3,256,0,3.2,0.193,0.233,5.616,0.378,0.86,70.2,0,93
7007,700,"Bologna, beef","BOLOGNA,BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,10.91,26.13,4.29,299,2.05,0,21,1.29,13,154,351,1013,1.93,11.6,90,28,15.2,0.03,0.065,2.321,0.157,1.19,2.4,0,57
7008,700,"Bologna, beef and pork","BOLOGNA,BF & PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.2,24.59,5.49,308,4.42,0,85,1.21,17,163,315,960,2.3,24.6,84,32,0.8,0.217,0.185,2.521,0.297,1.82,0.3,0,60
7010,700,"Bologna, pork","BOLOGNA,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.3,19.87,0.73,247,0,0,11,0.77,14,139,281,907,2.03,12.7,0,56,0,0.523,0.157,3.9,0.27,0.93,0.3,0,59
7011,700,"Bologna, turkey",BOLOGNA TURKEY,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,11.42,16.05,4.68,209,2.9,0.5,123,3,16,114,135,1071,1.3,15.4,32,26,13.3,0.049,0.095,2.607,0.243,0.23,0.3,0,75
7013,700,"Bratwurst, pork, cooked","BRATWURST,PORK,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.72,29.18,2.85,333,0,0,28,0.53,21,208,348,846,3.25,39.7,6,44,0,0.459,0.307,4.795,0.327,0.73,3.4,0,74
7014,700,"Braunschweiger (a liver sausage), pork","BRAUNSCHWEIGER (A LIVER SAUSAGE),PORK",,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,14.5,28.5,3.1,327,0,0,9,11.2,11,168,199,977,2.81,58,14051,48,0,0.249,1.525,8.368,0.33,20.09,1.6,0,180
7015,700,"Brotwurst, pork, beef, link","BROTWURST,PORK,BF,LINK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.3,27.8,2.98,323,2.98,0,48,1.03,16,134,281,1112,2.1,17,0,11,0,0.25,0.23,3.3,0.13,2.05,0,0,63
7016,700,"Cheesefurter, cheese smokie, pork, beef","CHEESEFURTER,CHS SMOKIE,PORK,BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.1,29,1.51,328,1.51,0,58,1.08,13,178,206,1082,2.25,15.7,19,12,0,0.25,0.16,2.9,0.13,1.73,1.6,0,68
7018,700,Chicken spread,CHICKEN SPRD,,,,,0,,6.25,4,4,4,Sausages and Luncheon Meats,18.01,17.56,4.05,158,0.47,0.3,16,0.87,12,89,106,722,1.15,10.8,99,,0,0.009,0.114,2.748,0.15,0.13,,0,56
7019,700,"Chorizo, pork and beef","CHORIZO,PORK AND BEEF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,24.1,38.27,1.86,455,0,0,8,1.59,18,150,398,1235,3.41,21.1,0,61,0,0.63,0.3,5.131,0.53,2,1.6,0,88
7020,700,"Corned beef loaf, jellied","CORNED BEEF LOAF,JELLIED",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,22.9,6.1,0,153,,0,11,2.04,11,73,101,953,4.09,17.2,0,,0,0,0.11,1.76,0.12,1.27,,0,47
7021,700,"Dutch brand loaf, chicken, pork and beef","DUTCH BRAND LOAF,CHICK,PORK & BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12,22.91,3.93,273,0.9,0.3,7,0.16,15,119,210,786,2.53,18.4,110,0,1.4,0.134,0.134,3.384,0.236,0.9,1.2,0,60
7022,700,"Frankfurter, beef, unheated","FRANKFURTER,BF,UNHTD","hot dog, frank, wiener",,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.16,28.3,3.36,316,1.31,0,12,1.2,9,152,316,992,2.03,10.3,0,36,0,0.018,0.043,2.028,0.185,1.38,1.8,0,55
7024,700,"Frankfurter, chicken","FRANKFURTER,CHICKEN","hot dog, wiener, frank",,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.51,16.19,2.74,223,2.98,0,74,1.17,20,162,202,1027,1.11,23,0,21,0,0.057,0.257,4.687,0.323,0.54,0,3,96
7025,700,"Frankfurter, turkey","FRANKFURTER,TURKEY","hot dog, wiener, frank",,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.23,17.29,3.81,223,1.21,0,148,1.47,14,172,392,911,1.84,15.1,0,23,0,0.036,0.181,3.68,0.143,0.82,0,1,77
7026,700,"Ham, chopped, canned","HAM,CHOPPED,CANNED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.06,18.83,0.26,239,0,0,7,0.95,13,139,284,1280,1.83,18.6,0,24,2,0.535,0.165,3.2,0.32,0.7,0,0,49
7027,700,"Ham, chopped, not canned","HAM,CHOPPED,NOT CANNED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.5,10.3,4.2,180,0,0,7,0.83,16,155,319,1039,1.94,17.4,0,29,0,0.632,0.204,3.88,0.35,0.92,0,0,59
7028,700,"Ham, sliced, packaged (96% fat free, water added)","HAM,SLICED,PACKAGED (96% FAT FREE,H2O ADDED)",,,Y,,0,,,,,,Sausages and Luncheon Meats,16.9,3.4,0.55,100,0,0,5,0.58,18,261,490,1279,1.58,31.6,0,28,0,0.336,0.266,5.697,0.394,0.36,0,0,41
7029,700,"Ham, sliced, regular (approximately 11% fat)","HAM,SLICED,REG (APPROX 11% FAT)",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.6,8.6,3.83,163,0,1.3,24,1.02,22,153,287,1143,1.35,20.7,0,29,4,0.626,0.178,2.904,0.329,0.42,0,0,57
7030,700,"Ham, minced","HAM,MINCED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.28,20.68,1.84,263,0,0,10,0.79,16,157,311,1245,1.9,20,0,26,0,0.712,0.19,4.162,0.26,0.95,0,0,70
7031,700,Ham salad spread,HAM SALAD SPREAD,,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,8.68,15.53,10.64,216,0,0,8,0.59,10,120,150,1075,1.1,17.8,0,26,0,0.435,0.12,2.095,0.15,0.76,0,0,37
7032,700,Ham and cheese loaf or roll,HAM&CHS LOAF OR ROLL,,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,13.6,18.7,4,241,0,0,58,0.91,16,253,294,1000,2,34.6,0,44,0,0.601,0.187,3.452,0.26,0.81,0,0,58
7033,700,Ham and cheese spread,HAM AND CHEESE SPREAD,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.18,18.53,2.28,245,,0,217,0.76,18,495,162,1197,2.25,33.6,304,,0,0.318,0.22,2.153,0.13,0.73,,0,61
7034,700,"Headcheese, pork","HEADCHEESE,PORK",,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,13.83,10.9,0,157,0,0,16,1.5,9,56,31,941,0.97,0.1,0,37,0,0.023,0.115,0.44,0.19,1.05,3.4,0,69
7036,700,"Sausage, Italian, pork, raw","SAUSAGE,ITALIAN,PORK,RAW",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.25,31.33,0.65,346,,0,18,1.18,14,142,253,731,1.79,24.8,0,,2,0.568,0.168,3.25,0.3,0.91,,0,76
7038,700,"Knackwurst, knockwurst, pork, beef",KNACKWURST KNOCKWURST PORK BF,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,11.1,27.7,3.2,307,0,0,11,0.66,11,98,199,930,1.66,13.5,0,44,0,0.342,0.14,2.734,0.17,1.18,1.6,0,60
7039,700,"Lebanon bologna, beef",LEBANON BOLOGNA BF,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,19.03,10.44,0.44,172,0,0,20,2.15,20,192,330,1374,3.84,15.7,39,10,0.9,0.101,0.165,3.223,0.391,2.9,0.3,0,55
7040,700,"Liver cheese, pork","LIVER CHEESE,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.2,25.6,2.1,304,,0,8,10.83,12,207,226,1225,3.7,36.5,17490,,3,0.212,2.227,11.768,0.47,24.55,,0,174
7041,700,"Liver sausage, liverwurst, pork","LIVER SAUSAGE,LIVERWURST,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.1,28.5,2.2,326,,0,26,6.4,12,230,170,860,2.3,58,27667,,0,0.272,1.03,4.3,0.19,13.46,,0,158
7043,700,"Roast beef, deli style, prepackaged, sliced","ROAST BF,DELI STYLE,PREPACKAGED,SLICED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,18.62,3.69,0.64,115,0.29,0,5,2.05,20,242,647,853,3.2,14.7,11,1,0,0.043,0.213,5.581,0.46,2.04,1.6,0,51
7044,700,"USDA Commodity, luncheon meat, canned","USDA CMDTY,LUNCHEON MEAT,CND",,,,,0,,,,,,Sausages and Luncheon Meats,17.5,12.77,1.04,189,0,0,5,0.97,18,170,300,820,2.15,38.3,0,,0,0.128,0.213,5.225,0.272,0.92,0,0,78
7045,700,"Luncheon meat, pork, canned","LUNCHEON MEAT,PORK,CANNED",,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,12.5,30.3,2.1,334,0,0,6,0.72,10,82,215,1289,1.48,28,0,22,1,0.367,0.194,3.126,0.21,0.9,0,0,62
7046,700,"Turkey breast, low salt, prepackaged or deli, luncheon meat","TURKEY BREAST,LO SALT,PREPACKAGED OR DELI,LUNCHEON MEAT",,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,21.81,0.83,3.51,109,3.51,0.5,8,0.63,21,162,211,772,1.33,22.8,33,2,5.7,0.13,0.32,0.11,0.128,0.09,0,0,44
7050,700,"Mortadella, beef, pork","MORTADELLA,BEEF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.37,25.39,3.05,311,0,0,18,1.4,11,97,163,1246,2.1,22.6,0,41,0,0.119,0.153,2.673,0.13,1.48,1.6,0,56
7051,700,"Olive loaf, pork","OLIVE LOAF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.8,16.5,9.2,235,0,0,109,0.54,19,127,297,964,1.38,16.4,200,44,0,0.295,0.26,1.835,0.23,1.26,3.4,0,38
7052,700,"Pastrami, turkey","PASTRAMI,TURKEY",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.3,6.21,3.34,139,3.34,0.1,11,4.2,14,200,345,1123,2.16,16.1,12,10,8.1,0.055,0.25,3.527,0.27,0.24,0,0,68
7053,700,"Pate, chicken liver, canned","PATE,CHICKEN LIVER,CANNED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.45,13.1,6.55,201,0,0,10,9.19,13,175,95,386,2.14,46.1,724,0,10,0.052,1.401,7.517,0.26,8.07,0,0,391
7054,700,"Pate, goose liver, smoked, canned","PATE,GOOSE LIVER,SMOKED,CND",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.4,43.84,4.67,462,,0,70,5.5,13,200,138,697,0.92,44,3333,,0,0.088,0.299,2.51,0.06,9.4,,0,150
7055,700,"Pate, liver, not specified, canned","PATE,LIVER,NOT SPECIFIED,CND",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.2,28,1.5,319,,0,70,5.5,13,200,138,697,2.85,41.6,3300,,2,0.03,0.6,3.3,0.06,3.2,,0,255
7056,700,"Peppered loaf, pork, beef",PEPPERED LOAF PORK BF,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,17.3,6.37,4.53,149,4.61,0,54,1.07,20,170,394,732,3.23,11.3,0,32,0,0.38,0.3,3.08,0.27,1.96,1.6,0,46
7057,700,"Pepperoni, beef and pork, sliced","PEPPERONI,BF & PORK,SLICED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,19.25,46.28,1.18,504,0,0,19,1.33,18,158,274,1582,2.44,29,0,52,0,0.271,0.257,4.987,0.362,1.3,5.8,0,97
7058,700,"Pickle and pimiento loaf, pork","PICKLE&PIMIENTO LOAF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.23,15.95,8.46,225,8.46,1.5,109,1.33,34,153,371,1040,1.68,7.9,260,33,7.8,0.392,0.115,2.486,0.418,0.54,5.1,0,58
7059,700,"Polish sausage, pork","POLISH SAUSAGE,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.1,28.72,1.63,326,,0,12,1.44,14,136,237,876,1.93,17.7,0,,1,0.502,0.148,3.443,0.19,0.98,,0,70
7060,700,"Luxury loaf, pork","LUXURY LOAF,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,18.4,4.8,4.9,141,,0,36,1.05,20,185,377,1225,3.05,21.5,0,28,0,0.707,0.297,3.482,0.31,1.37,,0,36
7061,700,"Mother's loaf, pork","MOTHER'S LOAF,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.07,22.3,7.53,282,,0,43,1.32,16,129,225,1127,1.43,35.1,0,40,1,0.55,0.17,3.123,0.18,1.05,,0,45
7062,700,"Picnic loaf, pork, beef","PICNIC LOAF,PORK,BEEF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.92,16.64,4.76,232,,0,47,1.02,15,125,267,1164,2.18,35.7,0,48,0,0.374,0.242,2.306,0.3,1.5,,0,38
7063,700,"Pork sausage, link/patty, unprepared","PORK SAUSAGE,LINK/PATTY,UNPREP",,,,,0,,,,,,Sausages and Luncheon Meats,15.39,24.8,0.93,288,0.93,0,8,1.02,15,133,307,739,2.01,17.8,92,57,0,0.223,0.147,5.418,0.174,0.92,0.3,0,70
7064,700,"Pork sausage, link/patty, cooked, pan-fried","PORK SAUSAGE,LINK/PATTY,CKD,PAN-FRIED",,,Y,,0,,,,,,Sausages and Luncheon Meats,18.53,27.25,1.42,325,1.09,0,9,1.2,16,149,342,814,2.45,20.7,93,58,0,0.256,0.176,6.119,0.195,0.98,0,0,86
7065,700,"Pork and beef sausage, fresh, cooked","PORK&BF SAUSAGE,FRSH,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.8,36.25,2.7,396,0,0,10,1.13,12,107,189,929,1.87,14.4,0,28,0,0.357,0.147,3.367,0.05,0.43,1.6,0,71
7066,700,"Turkey sausage, reduced fat, brown and serve, cooked (include BUTTERBALL breakfast links turkey sausage)","TURKEY SAUSAGE,RED FAT,BROWN&SERVE,CKD",,,Y,,0,,,,,,Sausages and Luncheon Meats,17,10.3,10.92,204,0,0.3,31,1.8,21,164,207,721,2.31,20.8,8,17,0,0.066,0.151,2.137,0.234,0.28,0,0,58
7067,700,Poultry salad sandwich spread,POULTRY SALAD SNDWCH SPRD,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.64,13.52,7.41,200,0,0,10,0.61,10,33,183,653,1.04,10.9,140,8,1,0.024,0.071,1.669,0.11,0.38,0,0,30
7068,700,"Salami, cooked, beef",SALAMI CKD BF,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.6,22.2,1.9,261,1.5,0,6,2.2,13,205,188,1140,1.77,14.6,0,48,0,0.103,0.189,3.238,0.18,3.06,1.3,0,71
7069,700,"Salami, cooked, beef and pork","SALAMI,CKD,BF&PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,21.85,25.9,2.4,336,0.96,0,15,1.56,19,191,316,1740,2.93,31.3,0,41,0,0.367,0.357,6.053,0.459,1.52,3.2,0,89
7070,700,"Salami, cooked, turkey","SALAMI,COOKED,TURKEY",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,19.2,9.21,1.55,172,1.12,0.1,40,1.25,22,266,216,1107,2.32,26.4,6,24,0,0.426,0.303,3.979,0.427,0.99,1.3,0,76
7071,700,"Salami, dry or hard, pork","SALAMI,DRY OR HARD,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,22.58,33.72,1.6,407,,0,13,1.3,22,229,378,2260,4.2,25.4,0,,0,0.93,0.33,5.6,0.55,2.8,,0,79
7072,700,"Salami, dry or hard, pork, beef","SALAMI,DRY OR HARD,PORK,BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,21.07,31.65,0.72,378,0.26,0,24,1.36,20,192,363,1756,2.67,33.6,36,36,0,0.386,0.196,6.105,0.441,1.15,0,0,108
7073,700,"Sandwich spread, pork, beef","SANDWICH SPREAD,PORK,BEEF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,7.66,17.34,11.94,235,0,0.2,12,0.79,8,59,110,1013,1.02,9.7,87,22,0,0.172,0.134,1.73,0.12,1.12,1.6,0,38
7074,700,"Smoked link sausage, pork","SMOKED LINK SAUSAGE,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.98,28.23,0.94,309,0.94,0,11,0.59,11,157,483,827,1.31,18.3,0,43,0,0.212,0.18,2.807,0.179,0.66,0,0,61
7075,700,"Sausage, smoked link sausage, pork and beef","SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12,28.73,2.42,320,0,0,12,0.75,13,121,179,911,1.26,0,74,44,0,0.192,0.106,2.94,0.163,0.58,0,0,58
7077,700,"Smoked link sausage, pork and beef, nonfat dry milk added","SMOKED LINK SAUSAGE,PORK&BF,NONFAT DRY MILK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.28,27.61,1.92,313,,0,41,1.47,16,137,286,1173,1.96,13.9,0,,0,0.193,0.214,2.845,0.18,1.57,,0,65
7078,700,"Thuringer, cervelat, summer sausage, beef, pork","THURINGER,CERVELAT,SMMR SAUSAGE,BF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,17.45,30.43,3.33,362,0.85,0,9,2.04,14,111,260,1300,2.56,20.3,0,44,16.6,0.15,0.33,4.31,0.26,5.5,1.3,0,74
7081,700,"Turkey breast, sliced, prepackaged","TURKEY BREAST,SLICED,PREPACKAGED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.33,2.37,2.34,100,3.28,0,7,0.34,20,234,401,922,0.8,13,0,2,0,0.038,0.145,7.15,0.41,0.37,0,0,50
7083,700,"Sausage, Vienna, canned, chicken, beef, pork","SAUSAGE,VIENNA,CND,CHICK,BF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,10.5,19.4,2.6,230,0,0,10,0.88,7,49,101,879,1.6,16.9,0,25,0,0.087,0.107,1.613,0.12,1.02,1.6,0,87
7088,700,"Honey roll sausage, beef","HONEY ROLL SAUSAGE,BEEF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,18.58,10.5,2.18,182,,0,9,2.2,16,137,291,1322,3.25,15.6,0,40,0,0.08,0.182,4.165,0.27,2.35,,0,50
7089,700,"Sausage, Italian, pork, cooked","SAUSAGE,ITALIAN,PORK,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,19.12,27.31,4.27,344,1.86,0.1,21,1.43,18,170,304,743,2.39,22,16,41,0.1,0.623,0.233,4.165,0.33,1.3,3.4,0,57
7090,700,"Luncheon sausage, pork and beef","LUNCHEON SAUSAGE,PORK&BF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.38,20.9,1.58,260,,0,13,1.43,14,122,245,1182,2.45,15.4,0,,0,0.217,0.195,3.527,0.2,1.96,,0,64
7091,700,"New england brand sausage, pork, beef","NEW ENGLAND BRAND SAUSAGE,PORK,BF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,17.27,7.58,4.83,161,,0,7,0.94,16,136,321,1220,2.7,19.2,0,,0,0.64,0.248,3.478,0.36,1.34,,0,49
7201,700,"OSCAR MAYER, Bologna (beef)","OSCAR MAYER,BOLOGNA (BEEF)",,"Kraft Foods, Inc.",,,0,,6.25,,,,Sausages and Luncheon Meats,11.05,29.1,2.45,316,1.4,0,12,1.36,14,109,168,1179,2.03,,0,32,0,0.05,0.11,2.42,0.17,1.43,,0,64
7207,700,"OSCAR MAYER, Braunschweiger Liver Sausage (sliced)","OSCAR MAYER,BRAUNSCHWEIGER LIVER SAUSAGE (SLICED)",,"Kraft Foods, Inc.",,,0,,6.25,4,9,4,Sausages and Luncheon Meats,14.25,29.35,2.6,331,1.2,0.2,9,10.51,14,199,202,1159,3.4,,15744,44,9,0.23,1.6,9.19,0.33,18.78,,0,178
7209,700,"OSCAR MAYER, Chicken Breast (honey glazed)",OSCAR MAYER CHICKEN BREAST (HONEY GLAZED),,"Kraft Foods, Inc.",,,0,,6.25,4,9,4,Sausages and Luncheon Meats,19.85,1.5,4.3,109,4.3,0,10,1.13,36,289,329,1438,0.7,,0,,0,,,,,,,0,53
7212,700,"OSCAR MAYER, Ham (chopped with natural juice)","OSCAR MAYER,HAM (CHOPPED W/ NAT JUICE)",,"Kraft Foods, Inc.",,,0,,6.25,4,9,4,Sausages and Luncheon Meats,16.3,11.15,3.65,180,2.2,0,9,1.3,23,219,260,1249,2.25,,0,,0,,,,,,,0,59
7230,700,"OSCAR MAYER, Salami (hard)","OSCAR MAYER,SALAMI (HARD)",,"Kraft Foods, Inc.",,,0,,6.25,4,9,4,Sausages and Luncheon Meats,25.9,28.7,1.6,368,0.2,0,12,1.83,21,180,356,1976,3.16,,44,62,0,0.57,0.26,5.05,0.44,1.88,,0,97
7236,700,"OSCAR MAYER, Smokies Sausage Little Cheese (pork, turkey)","OSCAR MAYER,SMOKIES SAUSAGE LITTLE CHS (PORK,TURKEY)",,"Kraft Foods, Inc.",,,0,,,,,,Sausages and Luncheon Meats,13.5,28.2,1.7,315,0.3,0,67,1.24,21,248,152,1036,2.04,,0,,0,,,,,,,,67
7241,700,"OSCAR MAYER, Wieners (beef franks)","OSCAR MAYER,WIENERS (BEEF FRANKS)","hot dog, frankfurter, hotdog, wiener","Kraft Foods, Inc.",,,0,,6.25,,,,Sausages and Luncheon Meats,11.35,30.26,2.78,329,1.6,0,10,1.34,13,140,130,1025,2.19,11.5,0,24,0,0.034,0.1,2.292,0.072,1.63,,0,56
7254,700,"Turkey bacon, unprepared","TURKEY BACON,UNPREP",,,,,0,,,,,,Sausages and Luncheon Meats,15.94,16.93,1.89,226,,,80,1.4,16,222,349,1069,2.54,15.8,34,,,0.03,0.237,4.032,0.244,1.19,,,86
7278,700,HORMEL Pillow Pak Sliced Turkey Pepperoni,HORMEL PILLOW PAK SLICED TURKEY PEPPERONI,,Hormel Foods Corp.,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,30.99,11.52,3.78,243,0,0,26,2.7,41,,449,1858,4.3,,49,,0,,,,,,,0,123
7900,700,"Turkey, pork, and beef sausage, low fat, smoked","TURKEY,PORK,&BF SAUSAGE,LOFAT,SMOKED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,8,2.5,11.54,101,0,0.6,10,2.2,16,74,243,796,1.2,24.6,0,3,1.9,0.13,0.08,1.55,0.1,0.28,0,0,21
7901,700,"USDA Commodity, pork, sausage, bulk/links/patties, frozen, cooked","USDA COMMODITY,PORK,SAUSAGE,BULK/LINKS/PATTIES,FRZ,CKD",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,19.76,20.26,0,267,,0,9,1.15,19,190,239,540,2.84,21.7,50,,0,0.732,0.241,2.796,0.28,0.89,,0,98
7905,700,"Frankfurter, beef, pork, and turkey, fat free","FRANKFURTER,BF,PORK,& TURKEY,FAT FREE","hot dog, wiener, frank",,Y,,0,,6.25,4.27,,3.68,Sausages and Luncheon Meats,12.5,1.59,11.21,109,0,0,54,1.78,14,132,220,880,2.92,18.7,0,2,24,0.162,0.154,3.466,0.181,1.06,1.8,0,41
7906,700,"Luncheon meat, pork, ham, and chicken, minced, canned, reduced sodium, added ascorbic acid, includes SPAM, 25% less sodium","LUNCHEON MEAT,PORK,HAM,&CHICK,MINCD,CND,RED NA,VIT C, (SPAM)",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.5,25.1,3.4,293,0,0,0,0.64,14,109,564,1036,2.12,25,0,23,43,0.264,0.179,3.175,0.283,0.61,0,0,76
7907,700,"USDA Commodity, pork sausage, bulk/links/patties, frozen, raw","USDA COMMODITY,PORK SAUSAGE,BULK/LINKS/PATTIES,FRZ,RAW",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.95,18.56,0,231,,0,9,0.99,17,162,231,507,2.39,21.7,40,,0,0.688,0.223,2.619,0.234,0.84,,0,73
7908,700,"Luncheon meat, pork with ham, minced, canned, includes SPAM (Hormel)","LUNCHEON MEAT,PORK W/HAM,MINCED,CND,INCL SPAM (HORMEL)",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.4,26.6,4.6,315,0,0,0,0.64,14,151,409,1411,1.59,22.9,0,26,0,0.317,0.176,3.53,0.218,0.45,0,0,71
7909,700,"Luncheon meat, pork and chicken, minced, canned, includes SPAM Lite","LUNCHEON MEAT,PORK&CHICK,MINCED,CND,INCL SPAM LITE",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.23,13.9,1.35,196,1.26,0,39,1.4,18,109,461,1032,2.2,27,0,24,38.5,0.18,0.21,3.45,0.283,0.61,0,0,75
7910,700,"Bratwurst, veal, cooked",BRATWURST VEAL CKD,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,13.99,31.7,0,341,0,0,11,0.74,16,150,231,60,2.05,19.2,0,,0,0.054,0.192,5.43,0.307,0.98,,0,79
7911,700,Liverwurst spread,LIVERWURST SPRD,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.38,25.45,5.89,305,1.65,2.5,22,8.85,12,230,170,700,2.3,58,13636,,3.5,0.272,1.03,4.3,0.19,13.46,,0,118
7912,700,Roast beef spread,ROAST BF SPRD,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,15.27,16.28,3.73,223,0.71,0.2,23,2.06,24,116,259,724,6.08,22.6,1,,0.2,0.02,0.23,4.2,0.15,2.38,,0,70
7913,700,"Salami, pork, beef, less sodium",SALAMI PORK BF LESS NA,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,15.01,30.5,15.38,396,6.21,0.2,94,1.55,31,272,1372,623,3.08,14.6,12,32,0.7,0.738,0.336,4.803,0.489,1.76,,0,90
7914,700,"Sausage, Italian, sweet, links",SAUSAGE ITALIAN SWT LINKS,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,16.13,8.42,2.1,149,0,0,25,1.19,12,103,194,570,1.52,10.8,2,,0.2,0.172,0.125,1.736,0.187,1.04,,0,30
7915,700,"Sausage, Polish, beef with chicken, hot",SAUSAGE POLISH BF W/ CHICK HOT,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,17.6,19.4,3.6,259,0,0,12,0.88,14,136,237,1540,1.93,17.7,0,,0,0.502,0.148,3.443,0.19,0.98,,0,66
7916,700,"Sausage, Polish, pork and beef, smoked",SAUSAGE POLISH PORK & BF SMOKED,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.07,26.56,1.98,301,0,0,7,1,12,107,189,848,2.11,13.1,0,44,0,0.26,0.17,3.227,0.17,1.51,,0,71
7917,700,"Sausage, pork and beef, with cheddar cheese, smoked",SAUSAGE PORK & BF W/ CHEDDAR CHS SMOKED,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.89,25.84,2.13,296,0.11,0,57,0.73,13,178,206,848,2.25,7.5,0,12,0,0.249,0.16,2.9,0.13,1.73,,0,63
7918,700,"Sausage, summer, pork and beef, sticks, with cheddar cheese",SAUSAGE SMMR PORK & BF STKS W/ CHEDDAR CHS,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,19.43,37.91,1.82,426,0.12,0.2,81,2.26,13,178,206,1483,2.25,7.5,749,12,0,0.249,0.16,2.9,0.13,1.73,,0,89
7919,700,"Sausage, turkey, breakfast links, mild",SAUSAGE TURKEY BRKFST LINKS MILD,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.42,18.09,1.56,235,0,0,32,1.07,16,155,229,639,2.98,0,0,17,0.5,0.054,0.165,3.692,0.208,0.79,1.6,0,160
7920,700,"Swisswurst, pork and beef, with swiss cheese, smoked",SWISSWURST PORK & BF W/ SWISS CHS SMOKED,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.69,27.37,1.6,307,0,0,74,0.72,13,178,206,827,2.25,7.5,334,,0,0.249,0.16,2.9,0.13,1.73,,0,61
7921,700,Bacon and beef sticks,BACON & BF STKS,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,29.1,44.2,0.8,517,0.8,0,14,1.86,17,142,385,1420,3.23,26.1,0,,0,0.6,0.285,4.867,0.5,1.9,1.6,0,102
7922,700,"Bratwurst, beef and pork, smoked",BRATWURST BF & PORK SMOKED,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.2,26.34,2,297,0,0,7,1,15,130,283,848,2.47,14.1,0,,0,0.38,0.213,3.11,0.2,2.67,,0,78
7923,700,"Bratwurst, chicken, cooked","BRATWURST,CHICK,CKD",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,19.44,10.35,0,176,0,0,11,0.87,23,160,211,72,1.43,,101,,2,0.067,0.133,7.551,0.385,0.34,,0,71
7924,700,"Bratwurst, pork, beef and turkey, lite, smoked",BRATWURST PORK BF & TURKEY LITE SMOKED,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,14.45,13.53,1.62,186,1.57,0,14,0.94,14,132,246,982,2.68,20.2,1,,0,0.09,0.166,1.847,0.213,1.6,,0,56
7925,700,"Pastrami, beef, 98% fat-free",PASTRAMI BF 98% FAT-FREE,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,19.6,1.16,1.54,95,0,0,9,2.78,18,150,228,1010,4.26,10.4,0,,34.6,0.095,0.17,5.065,0.18,1.76,,0,47
7926,700,"Salami, Italian, pork",SALAMI ITALIAN PORK,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,21.7,37,1.2,425,1.2,0,10,1.52,22,229,340,1890,4.2,25.4,0,,0,0.93,0.33,5.6,0.55,2.8,,0,80
7927,700,"Sausage, Italian, turkey, smoked",SAUSAGE ITALIAN TURKEY SMOKED,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,15.05,8.75,4.65,158,3.2,0.9,21,9.6,25,185,197,928,2.13,22.2,144,,30.4,0.071,0.173,3.675,0.381,0.43,,0,53
7928,700,"Sausage, chicken, beef, pork, skinless, smoked",SAUSAGE CHICK BF PORK SKINLESS SMOKED,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,13.6,14.3,8.1,216,1.9,0,100,4.8,14,132,246,1034,2.68,20.2,0,,0,0.09,0.166,1.847,0.213,1.6,,0,120
7929,700,"Sausage, turkey, hot, smoked",SAUSAGE TURKEY HOT SMOKED,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,15.05,8.75,4.65,158,3.2,0.3,21,9.6,25,185,197,916,2.13,22.2,144,8,30.4,0.071,0.173,3.675,0.381,0.43,0.8,0,53
7930,700,"Yachtwurst, with pistachio nuts, cooked","YACHTWURST,W/ PISTACHIO NUTS,CKD",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.8,22.6,1.4,268,0,0,19,1,,,,936,,,0,,0,,,,,,,,64
7931,700,"Beerwurst, pork and beef",BEERWURST PORK & BF,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,14,22.53,4.27,276,0,0.9,27,1.73,19,135,244,732,2.21,17.4,10,,0.6,0.246,0.173,2.975,0.23,1.16,1.6,0,62
7932,700,"Chicken breast, fat-free, mesquite flavor, sliced",CHICKEN BREAST FAT-FREE MESQ FLAVOR SLICED,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,16.8,0.39,2.25,80,0.2,0,4,0.3,36,256,316,1040,0.6,6.1,0,,0,0.014,0.023,2.742,0.12,0.07,0,0,36
7933,700,"Chicken breast, oven-roasted, fat-free, sliced",CHICKEN BREAST OVEN-ROASTED FAT-FREE SLICED,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,16.79,0.39,2.17,79,0.1,0,6,0.32,9,60,67,1087,0.3,7.6,0,,0,0.018,0.029,3.428,0.15,0.09,0,0,36
7934,700,"Kielbasa, Polish, turkey and beef, smoked","KIELBASA,POLISH,TURKEY & BF,SMOKED",,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,13.1,17.6,3.9,226,0,0,,1.24,,,,1200,,,0,,14.8,,,,,,,,70
7935,700,Oven-roasted chicken breast roll,OVEN-ROASTED CHICK BREAST ROLL,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,14.59,7.65,1.79,134,0.43,0,6,0.32,17,121,324,883,0.65,11.7,0,,0,0.043,0.062,6.536,0.298,0.24,0.5,0,39
7936,700,"Bologna, pork and turkey, lite",BOLOGNA PORK & TURKEY LITE,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,13.06,16.06,3.45,211,0,0,48,1.15,17,94,138,716,0.73,5.6,2,,0,0.159,0.097,3.072,0.163,0.29,,0,79
7937,700,"Bologna, pork, turkey and beef",BOLOGNA PORK TURKEY & BF,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,11.56,29.25,6.66,336,1.35,0,31,1.2,14,128,222,1055,2.22,12.4,0,,11,0.152,0.15,3.31,0.388,1.08,,0,75
7938,700,"Ham, honey, smoked, cooked",HAM HONEY SMOKED CKD,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,17.93,2.37,7.27,122,0,0,6,0.39,8,384,165,900,0.91,10.4,0,,0.6,0.402,0.101,2.276,0.231,0.38,,0,22
7939,700,"Frankfurter, pork","FRANKFURTER,PORK","hot dog, wiener, frank",,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,12.81,23.68,0.28,269,0,0.1,267,3.7,15,171,264,816,2.09,27.8,263,,2,0.593,0.179,2.773,0.322,0.49,,0,66
7940,700,"Macaroni and cheese loaf, chicken, pork and beef",MACARONI & CHS LOAF CHICK PORK & BF,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,11.76,14.96,11.63,228,0,0,122,1.2,27,173,313,3,1.51,23,0,,16.7,0.237,0.249,2.84,0.329,0.68,,13,44
7941,700,"Salami, Italian, pork and beef, dry, sliced, 50% less sodium",SALAMI ITALIAN PORK & BF DRY SLICED 50% LESS NA,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,21.8,26.4,6.4,350,0,0,8,1.51,17,142,378,936,3.23,26.1,0,,0,0.6,0.285,4.867,0.5,1.9,1.3,0,89
7942,700,"Pate, truffle flavor",PATE TRUFFLE FLAVOR,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,11.2,28.5,6.3,327,,,70,3.94,13,200,138,807,2.85,41.6,15000,,2,0.03,0.6,3.3,0.06,3.2,,0,105
7943,700,"Turkey, breast, smoked, lemon pepper flavor, 97% fat-free","TURKEY,BREAST,SMOKED,LEMON PEPPER FLAVOR,97% FAT-FREE",,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,20.9,0.69,1.31,95,0,0,,,,,,1160,,,0,,,,,,,,0,,48
7944,700,"Turkey, white, rotisserie, deli cut",TURKEY WHITE ROTISSERIE DELI CUT,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,13.5,3,7.7,112,4,0.4,16,2.2,20,158,349,1200,2.1,29.9,8,,10,0.033,0.114,5.159,0.294,0.22,0,0,55
7945,700,"Frankfurter, beef, heated",FRANKFURTER BF HTD,"hot dog, frank, wiener",,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,11.69,29.36,2.66,322,1.27,0,11,1.22,9,139,252,852,2.17,10.8,0,38,,0.017,0.05,1.827,0.193,1.44,1.8,0,58
7949,700,"Frankfurter, meat, heated",FRANKFURTER MEAT HTD,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,9.77,24.31,4.9,278,,0,99,1.22,15,211,141,1013,1.08,12.5,0,,0,0.055,0.12,2.654,0.165,1.57,,0,73
7950,700,"Frankfurter, meat",FRANKFURTER MEAT,,,,,0,,6.25,4,9,4,Sausages and Luncheon Meats,10.26,25.76,4.17,290,,0,99,1.09,15,206,152,1090,1.2,12.5,0,,0,0.055,0.121,2.665,0.166,1.57,,0,77
7951,700,"Scrapple, pork","SCRAPPLE,PORK",,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,8.06,13.87,14.06,213,0.2,0.3,7,1.89,13,76,158,482,1.06,17.4,2086,13,2.5,0.116,0.287,2.273,0.12,0.31,3.4,0,49
7952,700,"Bologna, chicken, turkey, pork","BOLOGNA,CHICK,TURKEY,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,9.88,26.18,5.65,298,0,0,82,1.16,15,185,152,922,1.28,0,75,,19.7,0.042,0.132,3.32,0.18,0.79,0,0,80
7953,700,"Pork sausage, link/patty, fully cooked, microwaved","PORK SAUSAGE,LINK/PATTY,FULLY CKD,MICROWAVED",,,Y,,0,,,,,,Sausages and Luncheon Meats,15.12,41.66,0.62,438,0.62,0,17,0.95,15,193,225,990,1.59,22.5,75,41,0,0.243,0.18,4.328,0.137,0.76,2.9,0,79
7954,700,"Beef sausage, pre-cooked","BEEF SAUSAGE,PRE-COOKED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.5,37.57,0.03,405,0,0,15,1.53,13,185,234,822,2.92,0,114,25,0.7,0.028,0.117,3.21,0.192,2.03,2.1,0,83
7955,700,"Turkey sausage, fresh, raw","TURKEY SAUSAGE,FRSH,RAW",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,18.79,8.08,0.47,155,0,0,19,1.17,19,177,262,593,3.06,0,75,,2.3,0.077,0.234,4.6,0.431,1.3,0,0,75
7956,700,"Beef sausage, fresh, cooked","BEEF SAUSAGE,FRSH,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,18.21,27.98,0.35,332,0,0,11,1.57,14,141,258,813,4.38,0,81,18,0,0.048,0.15,3.6,0.313,2.01,1.1,0,82
7957,700,"Pork and turkey sausage, pre-cooked","PORK & TURKEY SAUSAGE,PRE-COOKED",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.05,30.64,3.63,342,0,0,74,1.3,25,136,230,876,1.34,0,102,,0.7,0.089,0.099,2.73,0.124,0.58,5.7,0,72
7958,700,"Turkey sausage, fresh, cooked","TURKEY SAUSAGE,FRSH,CKD",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,23.89,10.44,0,196,0,0,22,1.49,21,202,298,665,3.88,0,75,,0.7,0.084,0.255,5.72,0.322,1.23,1.5,0,92
7959,700,"Bologna, chicken, pork, beef","BOLOGNA,CHICK,PORK,BF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.33,22.73,5.61,272,0,0,92,1.25,15,227,313,1120,1.22,0,75,,15.8,0.074,0.135,3.463,0.227,0.59,0.1,0,83
7960,700,"Bologna, chicken, pork","BOLOGNA,CHICK,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,10.31,30.61,4.19,336,0,0,196,1.12,16,223,162,1240,1.04,0,75,,13.2,0.063,0.129,3.68,0.19,0.5,0.6,0,87
7961,700,"Chicken breast, deli, rotisserie seasoned, sliced, prepackaged","CHICKEN BREAST,DELI,ROTISSERIE SEASONED,SLICED,PREPACKAGED",,,Y,,0,,,,,,Sausages and Luncheon Meats,17.4,1.86,2.92,98,0.75,0,11,0.39,26,257,360,1032,0.51,13.2,6,2,0,0.048,0.071,9.055,0.445,0.14,0,0,51
7962,700,"Frankfurter, meat and poultry, unheated","Frankfurter, meat and poultry, unheated",,,Y,,0,,,,,,Sausages and Luncheon Meats,9.72,24.18,5.02,277,2.75,0,106,1.04,11,175,359,976,1.14,12.4,102,27,22.5,0.047,0.145,2.813,0.063,0.71,0.1,0,78
7963,700,"Frankfurter, meat and poultry, cooked, boiled","Frankfurter, meat and poultry, cooked, boiled",,,Y,,0,,,,,,Sausages and Luncheon Meats,10.31,26.28,4.96,298,2.7,0,107,1.12,11,180,323,914,1.25,13.3,103,26,19.4,0.044,0.145,2.672,0.067,0.69,1.7,0,84
7964,700,"Frankfurter, meat and poultry, cooked, grilled","Frankfurter, meat and poultry, cooked, grilled",,,Y,,0,,,,,,Sausages and Luncheon Meats,10.67,26.43,5.24,302,2.85,0,118,1.15,12,192,387,1079,1.27,13.1,107,27,19.2,0.049,0.154,3.058,0.057,0.67,0.2,0,85
7965,700,"Pork sausage, link/patty, reduced fat, unprepared","PORK SAUSAGE,LINK/PATTY,RED FAT,UNPREP",,,Y,,0,,,,,,Sausages and Luncheon Meats,16.75,16.55,0.2,217,0,0,15,1.46,18,153,275,581,2.42,22.7,92,16,0,0.31,0.17,6.187,0.27,1.05,0,0,67
7966,700,"Pork sausage, link/patty, reduced fat, cooked, pan-fried","PORK SAUSAGE,LINK/PATTY,RED FAT,CKD,PAN-FRIED",,,Y,,0,,,,,,Sausages and Luncheon Meats,20.94,20.32,0.15,267,0,0,19,1.91,22,185,328,698,3.14,30,93,58,0,0.377,0.21,7.737,0.282,1.16,0,0,82
7967,700,"Pork sausage, link/patty, fully cooked, unheated","PORK SAUSAGE,LINK/PATTY,FULLY CKD,UNHTD",,,,,0,,,,,,Sausages and Luncheon Meats,13.46,37.25,0.69,392,0.53,0,16,0.92,13,164,211,810,1.45,20.3,69,48,0,0.241,0.178,3.984,0.143,0.76,3.7,0,74
7968,700,"Kielbasa, fully cooked, grilled","KIELBASA,FULLY CKD,GRILLED",,,Y,,0,,,,,,Sausages and Luncheon Meats,12.45,29.68,5.03,337,2.39,0,42,0.99,16,204,306,1062,1.53,19.8,32,35,14.7,0.15,0.212,3.727,0.097,0.72,0,0,73
7969,700,"Kielbasa, fully cooked, pan-fried","KIELBASA,FULLY CKD,PAN-FRIED",,,Y,,0,,,,,,Sausages and Luncheon Meats,12.36,29.43,4.78,333,2.38,0,40,0.93,15,199,304,1046,1.55,18.7,32,9,16.2,0.146,0.209,3.694,0.095,0.72,0,0,73
7970,700,"Kielbasa, fully cooked, unheated","KIELBASA,FULLY CKD,UNHTD",,,Y,,0,,,,,,Sausages and Luncheon Meats,10.84,29.63,3.72,325,2.05,0,24,0.75,14,168,217,928,1.29,17.6,27,30,19.1,0.15,0.156,3.148,0.1,0.68,0.3,0,61
7971,700,"Bologna, meat and poultry","BOLOGNA,MEAT & POULTRY",,,Y,,0,,,,,,Sausages and Luncheon Meats,10.34,23.77,6.31,281,1.97,0,125,1.24,15,212,320,1379,1.06,14.4,0,34,0,0.047,0.158,3.187,0.193,0.47,1.7,0,92
7972,700,"Meatballs, frozen, Italian style","MEATBALLS,FRZ,ITALIAN STYLE",,,,,0,,,,,,Sausages and Luncheon Meats,14.4,22.21,8.06,286,3.47,2.3,80,1.77,31,239,296,666,1.66,15.3,73,2,0,0.136,0.23,3.108,0.202,1,8.2,0,66
7973,700,"Turkey bacon, microwaved","TURKEY BACON,MICROWAVED",,,Y,,0,,,,,,Sausages and Luncheon Meats,29.5,25.87,4.24,368,4.24,0,163,2.63,30,416,666,2021,4.71,28.5,63,50,0,0.049,0.398,8.102,0.374,1.88,0,0,153
7974,700,"Bacon, turkey, low sodium","BACON,TURKEY,LO NA",,,Y,,0,,6.25,,,,Sausages and Luncheon Meats,13.33,20,4.8,253,0,0,10,0.72,19,145,156,900,1.61,19.4,25,10,24,0.029,0.183,6.222,0.401,0.66,10.8,0,100
7976,700,"Sausage, chicken or turkey, Italian style, lower sodium","SAUSAGE,CHICK OR TURKEY,ITALIAN STYLE,LOWER NA",,,Y,,0,,6.25,,,,Sausages and Luncheon Meats,21.43,4.46,14.25,183,0.81,0,0,1.29,43,286,1062,446,2.41,31.3,0,5,0,0.396,0.469,12.857,0.536,0.15,34.8,0,36
7977,700,"Ham, smoked, extra lean, low sodium","HAM,SMOKED,EX LN,LO NA",,,Y,,0,,6.25,,,,Sausages and Luncheon Meats,18.52,2.71,10.7,141,10.68,0,5,0.76,20,286,330,1062,1.78,29.5,39,27,0,0.558,0.194,6.147,0.415,0.37,0,0,50
7978,700,"Pork sausage, reduced sodium, cooked","PORK SAUSAGE,RED NA,CKD",,,Y,,0,,6.25,,,,Sausages and Luncheon Meats,9.41,22.35,8.13,271,0,0,0,0.85,11,110,160,294,1.31,15.4,29,30,0,0.301,0.138,2.41,0.192,0.36,0,0,59
7979,700,"Sausage, pork, turkey, and beef, reduced sodium","SAUSAGE,PORK,TURKEY,& BF,RED NA",,,Y,,0,,,,,,Sausages and Luncheon Meats,10.71,26.79,0.11,284,0.02,0.1,24,1.6,17,147,240,679,3.95,18.4,18,3,0.8,0.417,0.403,5.674,0.288,1.67,1.7,0,70
8001,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S ALL-BRAN Original","CEREALS RTE,KELLOGG,KELLOGG'S ALL-BRAN ORIGINAL",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,13.14,4.9,74.24,259,15.69,29.3,389,17.6,362,1150,1020,258,12.4,9.4,1747,170,20,2.27,2.71,14.8,12,18.8,5.2,1269,0
8002,800,"Cereals ready-to-eat, POST, ALPHA-BITS","CEREALS RTE,POST,ALPHA-BITS",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,10,4.6,80.3,389,21,7.1,35,30,99,309,267,592,5,20.9,2500,267,20,1.3,1.4,16.7,1.7,5,1.4,648,0
8003,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S APPLE JACKS","CEREALS RTE,KELLOGG,KELLOGG'S APPL JACKS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,5.1,3.4,88.2,375,43.7,9.3,12,16.1,29,70,112,466,5.4,5.6,1786,143,54,1.34,1.52,17.9,1.79,5.4,0.4,338,0
8005,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S ALL-BRAN BRAN BUDS","CEREALS RTE,KELLOGG,KELLOGG'S ALL-BRAN BRAN BUDS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,8.9,2.5,81,257,26.7,42.5,63,15,200,500,811,685,5,28.9,1667,133,20,1.25,1.42,16.7,6.67,20,0.9,1292,0
8010,800,"Cereals ready-to-eat, QUAKER, CAP'N CRUNCH","CEREALS RTE,QUAKER,CAP'N CRUNCH",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.39,5.12,85.51,398,44.32,2.5,11,19.42,55,167,186,754,16.16,6.5,148,0,0,1.614,1.822,21.465,2.138,0,0.6,1536,0
8011,800,"Cereals ready-to-eat, QUAKER, CAP'N CRUNCH with CRUNCHBERRIES","CEREALS RTE,QUAKER,CAP'N CRUNCH W/ CRUNCHBERRIES",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.45,4.83,85.93,397,44.2,2.6,11,19.8,55,168,187,725,15.56,10.4,149,0,0.1,1.6,1.8,20.75,2.14,0,0.6,1611,0
8012,800,"Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S PEANUT BUTTER CRUNCH","CEREALS RTE,QUAKER,CAP'N CRUNCH'S PNUT BUTTER CRUNCH",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.1,9.23,78.65,417,33.36,2.7,9,18.36,69,194,236,742,15.29,7.5,150,0,0,1.53,1.732,20.36,2.038,0,0.2,1535,0
8013,800,"Cereals ready-to-eat, GENERAL MILLS, CHEERIOS","CEREALS RTE,GENERAL MILLS,CHEERIOS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,12.09,6.73,73.23,376,4.36,9.4,401,33.17,114,481,641,497,16.73,24.9,3299,136,21.6,1.327,0.1,20.967,2.39,6.77,1.8,695,0
8014,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S COCOA KRISPIES","CEREALS RTE,KELLOGG,KELLOGG'S COCOA KRISPIES",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.6,2.7,87.9,389,38.6,1.4,127,14.5,38,102,197,424,5,16.1,4032,194,48,1.21,1.37,16.1,1.61,4.8,0.1,319,0
8015,800,"Cereals ready-to-eat, POST, COCOA PEBBLES","CEREALS RTE,POST,COCOA PEBBLES",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,4.8,4.1,85.7,397,35.8,1.6,22,6.2,31,95,193,594,5.2,14,2586,276,0,1.3,1.5,17.2,1.7,5.2,1.3,341,0
8017,800,"Cereals ready-to-eat, GENERAL MILLS, COOKIE CRISP","CEREALS RTE,GENERAL MILLS,COOKIE CRISP",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.2,4.4,84.5,380,34.8,5.1,385,17.3,31,154,231,457,14.4,7.3,1923,154,23.1,1.4,1.6,19.2,1.923,5.8,1.5,366,0
8018,800,"Cereals ready-to-eat, QUAKER, QUAKER CRUNCHY BRAN","CEREALS RTE,QUAKER,QUAKER CRUNCHY BRAN",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,6.37,4.06,83.68,331,20.66,15.3,71,30.98,61,186,239,759,15.3,11.1,154,0,0,0.506,1.73,20.389,2.038,0,0.3,1535,0
8019,800,"Cereals ready-to-eat, GENERAL MILLS, Corn CHEX","CEREALS RTE,GENERAL MILLS,CORN CHEX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.4,2.4,85,370,11.1,4.7,323,26.1,26,129,197,719,12.1,12,1613,129,19.4,1.2,1.39,16.1,1.61,4.8,0.1,626,0
8020,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S Corn Flakes","CEREALS RTE,KELLOGG,KELLOGG'S CORN FLAKES",Includes USDA Commodity B879,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.5,0.4,84.1,357,9.5,3.3,5,28.9,39,102,168,729,1,8.3,1786,143,21,1.34,1.52,17.9,1.79,5,0,323,0
8023,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S CRACKLIN' OAT BRAN","CEREALS RTE,KELLOGG,KELLOGG'S CRACKLIN' OAT BRAN",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,9.2,14.1,70.3,395,28,12.7,59,3.7,153,278,403,280,3.1,27.3,816,82,31,0.77,0.87,10.2,1.02,3.1,3,185,0
8025,800,"Cereals ready-to-eat, RALSTON CRISP RICE","CEREALS RTE,RALSTON CRISP RICE",includes USDA Commodity B856,Ralston Foods,Y,,0,,,,,,Breakfast Cereals,6.69,1.26,86.22,394,12.12,0.7,5,32.73,23,98,106,545,1.3,18,3788,303,64.5,2.05,1.288,28.967,1.937,5.45,0,602,0
8028,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S ALL-BRAN COMPLETE Wheat Flakes","CEREALS RTE,KELLOGG,KELLOGG'S ALL-BRAN COMPLETE WHEAT FLAKES",Includes USDA Commodity B876,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,10.2,2.5,81.6,327,18.8,17.3,39,62.1,138,517,518,718,51.7,10.5,2586,138,207,5.17,5.86,69,6.9,21,1.4,1360,0
8029,800,"Cereals ready-to-eat, POST Bran Flakes","CEREALS RTE,POST BRAN FLAKES",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,9.9,2.1,80.5,328,18.6,18.3,44,28,229,449,533,540,5,52.5,2500,133,0,1.3,1.4,16.7,1.7,5,1.4,648,0
8030,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S FROOT LOOPS","CEREALS RTE,KELLOGG,KELLOGG'S FROOT LOOPS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,5.3,3.4,88,375,41.7,9.3,10,15.5,31,74,117,469,5.2,5.9,1724,138,52,1.29,1.47,17.2,1.72,5.2,0.3,326,0
8031,800,"Cereals ready-to-eat, KELLOGG'S FROSTED MINI-WHEATS, Big Bite","CEREALS RTE,KELLOGG'S FRSTD MINI-WHEATS,BIG BITE",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,9.2,1.6,83.4,350,20.3,10.8,28,28,86,368,363,2,2.7,4.1,6,0,0,0.65,0.73,8.6,0.86,2.6,1.6,326,0
8032,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S FROSTED RICE KRISPIES","CEREALS RTE,KELLOGG,KELLOGG'S FRSTD RICE KRISPIES",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.3,0.4,91.3,384,40.2,0.5,6,18,23,81,59,371,0.8,15.4,4167,200,50,1.25,1.42,16.7,1.67,5,0.1,396,0
8034,800,"Cereals ready-to-eat, POST, FRUITY PEBBLES","CEREALS RTE,POST,FRUITY PEBBLES",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,4.62,4.02,86.1,402,34.28,0.8,19,6.67,16,71,72,531,5.56,10.2,2778,296,22.2,1.39,1.57,18.52,1.85,5.56,1.3,366,0
8035,800,"Cereals ready-to-eat, GENERAL MILLS, GOLDEN GRAHAMS","CEREALS RTE,GENERAL MILLS,GOLDEN GRAHAMS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.3,3.2,85.1,374,35,5.6,323,14.5,26,129,206,772,12.1,5.6,1613,129,19.4,1.2,1.4,16.1,1.613,4.8,2,304,0
8037,800,"Cereals ready-to-eat, granola, homemade","CEREALS RTE,GRANOLA,HOMEMADE",,,Y,,0,,5.8,,,,Breakfast Cereals,13.67,24.31,53.88,489,19.8,8.9,76,3.95,168,431,539,26,4.17,25.4,19,0,1.2,0.548,0.354,2.739,0.37,0,5.3,0,0
8038,800,"Cereals ready-to-eat, POST, GRAPE-NUTS Cereal","CEREALS RTE,POST,GRAPE-NUTS CRL",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,11.22,1.81,80.49,361,8.86,13,32,28,124,467,400,465,2.07,9.1,4,0,0.1,0.65,0.12,8.62,0.86,0,2,326,0
8039,800,"Cereals ready-to-eat, POST, GRAPE-NUTS Flakes","CEREALS RTE,POST,GRAPE-NUTS FLAKES",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,9.4,3.7,82,376,15.2,10.2,36,27.9,101,280,336,470,7.8,47.8,2586,138,0,1.3,1.5,17.2,1.7,5.2,2.6,671,0
8045,800,"Cereals ready-to-eat, GENERAL MILLS, HONEY NUT CHEERIOS","CEREALS RTE,GENERAL MILLS,HONEY NUT CHEERIOS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.85,5,79.69,376,32.89,7.1,425,20.58,90,328,412,566,17.17,16,2783,186,21.4,1.917,1.867,21.4,2.267,7.5,2.3,640,0
8046,800,"Cereals ready-to-eat, POST, Honeycomb Cereal","CEREALS RTE,POST,HONEYCOMB CRL",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,6.01,2.93,86.63,394,31.51,3.2,11,8.44,45,132,142,553,4.69,10.4,2344,313,0,1.17,1.33,15.62,1.56,4.69,0.6,294,0
8047,800,"Cereals ready-to-eat, QUAKER, KING VITAMAN","CEREALS RTE,QUAKER,KING VITAMAN",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,6.41,3.44,83.85,381,20.27,3.4,10,29,82,250,268,825,12.71,6.5,3352,0,40,1.268,1.425,16.842,1.672,5,0.2,1315,0
8048,800,"Cereals ready-to-eat, GENERAL MILLS, KIX","CEREALS RTE,GENERAL MILLS,KIX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,7.69,3.46,82.82,357,9.76,8.8,570,32,51,189,223,596,17.42,8.5,3078,133,25.4,1.955,2,24.25,2.3,5.7,0.2,768,0
8049,800,"Cereals ready-to-eat, QUAKER, QUAKER OAT LIFE, plain","CEREALS RTE,QUAKER,QUAKER OAT LIFE,PLN",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,9.98,4.43,77.74,374,19.43,6.6,351,29.33,98,423,283,501,13.78,23,40,0,0,1.28,1.49,17.18,1.8,0,1.2,1286,0
8050,800,"Cereals ready-to-eat, GENERAL MILLS, LUCKY CHARMS","CEREALS RTE,GENERAL MILLS,LUCKY CHARMS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,7.67,5.02,80.89,380,36.13,5,434,22.27,74,289,222,648,18.62,14.6,2823,156,26.6,1.737,1.723,25.3,3.01,6.8,1.4,722,0
8054,800,"Cereals ready-to-eat, QUAKER, 100% Natural Granola, Oats, Wheat and Honey","CEREALS RTE,QUAKER,100% NAT GRANOLA,OATS,WHEAT & HONEY",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,10.55,11.62,73.65,421,20.34,10.2,109,2.81,121,392,483,50,2.95,17.3,8,0,0.2,0.411,0.289,2.308,0.231,0.17,7,0,2
8057,800,"Cereals ready-to-eat, GENERAL MILLS, Honey Nut CHEX","CEREALS RTE,GENERAL MILLS,HONEY NUT CHEX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.3,2,86.67,375,28.1,3.9,313,14.1,25,63,219,600,11.69,10.5,1563,125,18.8,1.2,1.29,15.6,1.56,4.69,0.1,294,0
8058,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S PRODUCT 19","CEREALS RTE,KELLOGG,KELLOGG'S PRODUCT 19",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,8.5,1.3,84.3,374,12.5,2.8,16,60,38,87,179,727,50,12,2500,133,200,5,5.67,66.7,6.67,20,0.3,1314,0
8059,800,"Cereals ready-to-eat, QUAKER, SWEET CRUNCH/QUISP","CEREALS RTE,QUAKER,SWT CRUNCH/QUISP",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.51,6.08,85.03,406,43.36,2.3,9,18.35,55,168,187,740,15.29,6.5,148,0,0,1.529,1.732,20.382,2.037,0,0.2,1536,0
8060,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S RAISIN BRAN","CEREALS RTE,KELLOGG,KELLOGG'S RAISIN BRAN",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.72,2.72,77.29,318,31.3,11.4,43,12.33,122,347,653,356,3.39,4.6,1289,155,0,0.753,1.08,13.8,1.843,2,2.1,182,0
8061,800,"Cereals ready-to-eat, POST Raisin Bran Cereal","CEREALS RTE,POST RAISIN BRAN CRL",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,7.6,1.6,78.9,324,32.9,13.7,44,18.3,168,339,525,382,3.8,5.9,1271,68,0.9,0.6,0.7,8.5,0.8,2.5,1.9,320,0
8064,800,"Cereals ready-to-eat, GENERAL MILLS, Rice CHEX","CEREALS RTE,GENERAL MILLS,RICE CHEX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.4,1.89,85.09,375,8,2,370,33.29,30,148,188,809,13.89,19.6,1852,148,22.2,1.39,1.6,18.5,1.85,5.59,1,737,0
8065,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S RICE KRISPIES","CEREALS RTE,KELLOGG,KELLOGG'S RICE KRISPIES",includes USDA Commodity B857,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,6.75,2.05,85.05,381,9.87,0.4,5,30.42,27,125,125,527,1.39,19.6,3788,247,63.3,1.77,1.29,17.967,2.35,7.23,0,606,0
8066,800,"Cereals ready-to-eat, QUAKER, QUAKER Puffed Rice","CEREALS RTE,QUAKER,QUAKER PUFFED RICE",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.01,0.9,87.78,383,0,1.4,9,2.86,30,118,116,5,1.1,10.5,0,0,0,0.441,0.265,3.525,0,0,0.1,150,0
8067,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S SPECIAL K","CEREALS RTE,KELLOGG,KELLOGG'S SPL K",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,17.79,1.79,73.4,377,12.69,1.4,23,28,12,48,53,667,0.69,54.9,1667,134,68,1.69,1.91,22.6,6.44,19.4,0.1,1271,0
8068,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S CORN POPS","CEREALS RTE,KELLOGG,KELLOGG'S CORN POPS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.8,1.3,89.7,387,31.3,8.4,7,6,28,52,113,357,5,6.5,1667,133,20,1.25,1.42,16.7,1.67,5,0,314,0
8069,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S FROSTED FLAKES","CEREALS RTE,KELLOGG,KELLOGG'S FRSTD FLAKES",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,3.96,1.68,89.2,369,35.43,2.2,3,26.7,8,47,76,468,0.15,3.3,1559,188,24.2,1.903,1.73,27.667,3.573,8.1,0.2,362,0
8071,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S HONEY SMACKS","CEREALS RTE,KELLOGG,KELLOGG'S HONEY SMACKS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,5.7,2.2,88.5,380,56.2,5,14,1.5,59,213,183,142,1.7,29.1,1852,148,22,1.39,1.57,18.5,1.85,5.6,2.8,351,0
8073,800,"Cereals ready-to-eat, POST, GOLDEN CRISP","CEREALS RTE,POST,GOLDEN CRISP",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,5.5,1.7,90.1,380,53.6,5,15,6.7,59,227,176,95,5.6,48.6,2778,296,0,1.4,1.6,18.5,1.9,5.6,0.9,351,0
8074,800,"Cereals ready-to-eat, RALSTON TASTEEOS","CEREALS RTE,RALSTON TASTEEOS",Includes USDA Commodity B853,Ralston Foods,Y,,0,,,,,,Breakfast Cereals,10.71,5.36,75.5,357,3.57,10.7,357,32.14,143,536,607,571,13.39,47,3571,286,21.4,1.339,1.518,17.857,1.786,5.36,1.3,696,0
8077,800,"Cereals ready-to-eat, GENERAL MILLS, Whole Grain TOTAL","CEREALS RTE,GENERAL MILLS,WHL GRAIN TOTAL",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.4,2.1,74.7,320,16.4,9.1,3333,60,80,267,306,470,50,3.9,1667,333,200,5,5.7,66.7,6.667,20,1.6,1314,0
8078,800,"Cereals ready-to-eat, GENERAL MILLS, TRIX","CEREALS RTE,GENERAL MILLS,TRIX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,4.9,3.79,86.19,384,32,3.9,313,16.89,25,188,162,500,14.1,6.5,2344,125,18.8,1.6,1.89,18.79,2.18,4.69,1.3,356,0
8081,800,"Cereals ready-to-eat, POST, Honey Nut Shredded Wheat","CEREALS RTE,POST,HONEY NUT SHREDDED WHEAT",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,8.5,2.9,83.6,373,20.7,10.7,38,28,93,274,348,102,2.5,40.9,7,0,0,0.6,0.7,8.5,0.8,2.5,1.5,128,0
8082,800,"Cereals ready-to-eat, GENERAL MILLS, Wheat CHEX","CEREALS RTE,GENERAL MILLS,WHEAT CHEX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,9.8,1.8,82.2,345,10.3,12.2,213,30.6,85,319,369,570,11.2,5,1064,85,12.8,0.8,0.9,10.6,1.064,3.2,1.8,832,0
8083,800,"Cereals ready-to-eat, MALT-O-MEAL, CORN BURSTS","CEREALS RTE,MALT-O-MEAL,CORN BURSTS",,MOM Brands,Y,,0,,,,,,Breakfast Cereals,3.32,0.35,90.59,385,46.88,1.9,5,5.8,4,37,71,855,4.84,6.5,2419,129,48.4,2.42,2.74,32.25,3.23,4.84,0,289,0
8084,800,"Cereals ready-to-eat, wheat germ, toasted, plain","CEREALS RTE,WHEAT GERM,TSTD,PLN",,,Y,,0,,5.8,3.59,8.37,3.78,Breakfast Cereals,29.1,10.7,49.6,382,7.8,15.1,45,9.09,320,1146,947,4,16.67,65,103,0,6,1.67,0.82,5.59,0.978,0,4,0,0
8085,800,"Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Honey Crunch Wheat Germ","CEREALS RTE,SUN COUNTRY,KRETSCHMER HONEY CRUNCH WHEAT GERM",,Sun Country Foods Inc.,Y,,0,,6.25,,,,Breakfast Cereals,26.55,7.78,58.11,372,21.43,10.2,50,8.05,272,1011,964,11,13.88,59.3,96,0,5.5,1.34,0.69,4.73,0.5,0,3.6,285,0
8087,800,"Cereals ready-to-eat, GENERAL MILLS, Multi-Grain CHEERIOS","CEREALS RTE,GENERAL MILLS,MULTI-GRAIN CHEERIOS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.3,4.09,81.4,370,21.2,8.7,345,27.89,55,276,483,401,12.89,27.7,1724,138,20.7,1.29,1.5,17.2,1.72,5.19,1.8,671,0
8089,800,"Cereals ready-to-eat, GENERAL MILLS, WHEATIES","CEREALS RTE,GENERAL MILLS,WHEATIES",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.3,2.3,83.3,353,15.2,10.1,74,33.3,89,296,328,732,27.8,4.7,1852,148,22.2,2.8,3.1,37,3.704,11.1,1.7,722,0
8090,800,"Cereals, corn grits, white, regular and quick, enriched, dry","CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,DRY",,,Y,,0,,6.25,3.46,8.37,4.16,Breakfast Cereals,7.65,1.75,79.09,370,0.57,4.6,4,3.05,36,111,141,1,0.72,17,3,0,0,1.271,0.339,4.465,0.233,0,0,132,0
8091,800,"Cereals, corn grits, white, regular and quick, enriched, cooked with water, without salt","CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT",,,Y,,0,,6.25,3.46,8.37,4.16,Breakfast Cereals,1.71,0.46,14.76,71,0.12,0.8,1,0.57,7,20,27,2,0.18,3.1,0,0,0,0.086,0.058,0.799,0.046,0,0,14,0
8092,800,"Cereals, QUAKER, corn grits, instant, plain, dry","CEREALS,QUAKER,CORN GRITS,INST,PLN,DRY",original,"The Quaker Oats, Co.",Y,,0,,,3.46,8.37,4.16,Breakfast Cereals,7.31,2.14,78.42,343,1.51,4.2,378,38.75,28,72,135,1121,0.41,17.1,3,0,0,1.946,0.697,9.002,0.14,0,0,134,0
8093,800,"Cereals, QUAKER, corn grits, instant, plain, prepared (microwaved or boiling water added), without salt","CEREALS,QUAKER,CORN GRITS,INST,PLN,PREP,WO/ SALT",,"The Quaker Oats, Co.",,,0,,,3.46,8.37,4.16,Breakfast Cereals,1.58,0.49,15.95,74,0.1,1.1,64,6.71,6,14,27,227,0.09,,,,0,0.143,0.135,1.672,0.028,,0,15,
8094,800,"Cereals, QUAKER, corn grits, instant, cheddar cheese flavor, dry","CEREALS,QUAKER,CORN GRITS,INST,CHEDDAR CHS FLAVOR,DRY",,"The Quaker Oats, Co.",Y,,0,,,,,,Breakfast Cereals,8.98,5.46,72.96,363,2.76,4.2,418,30.38,26,80,132,1644,0.42,16.6,16,2,0,0.74,0.67,7.9,0.17,0.5,0.5,154,2
8096,800,"Cereals, QUAKER, Instant Grits, Country Bacon flavor, dry","CEREALS,QUAKER,INST GRITS,COUNTRY BACON FLAVOR,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,9.93,1.73,75.39,340,0.38,5.1,418,30.38,27,93,210,1523,0.55,,0,,0,0.78,0.71,8.37,0.14,0,,,0
8100,800,"Cereals, CREAM OF RICE, dry","CEREALS,CRM OF RICE,DRY",,"B&G Foods, Inc",Y,,0,,5.95,3.82,8.37,4.16,Breakfast Cereals,6.3,0.5,82.4,370,0.3,0.7,5,28.44,23,124,143,6,1.12,19,0,0,0,0.51,0.13,7.46,0.195,0,0.1,0,0
8101,800,"Cereals, CREAM OF RICE, cooked with water, without salt","CEREALS,CRM OF RICE,CKD W/H2O,WO/SALT",,"B&G Foods, Inc",Y,,0,,5.95,3.82,8.37,4.16,Breakfast Cereals,0.9,0.1,11.4,52,0.04,0.1,1,3.96,3,17,20,1,0.16,3,0,0,0,0.071,0.018,1.039,0.027,0,0,0,0
8102,800,"Cereals, CREAM OF WHEAT, regular, 10 minute cooking, dry","CEREALS,CRM OF WHEAT,REG,10 MINUTE COOKING,DRY",,"B&G Foods, Inc",Y,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,10.5,1.5,76.5,370,0.2,3.8,606,28.6,27,115,120,7,0.88,20,0,0,0,0.5,0.2,4.2,0.108,0,0.5,87,0
8103,800,"Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, without salt","CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,WO/ SALT",,"B&G Foods, Inc",,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,1.44,0.21,10.52,50,0.03,0.5,87,3.74,5,15,16,6,0.13,2.8,0,0,0,0.055,0.025,0.52,0.013,0,0.1,8,0
8104,800,"Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), dry","CEREALS,FARINA,ENR,ASSORTED BRANDS,DRY",,,Y,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,11.6,1.41,73.19,360,0.56,4.2,711,33.39,45,252,153,124,1.32,20,0,0,0,1.009,0.563,13.7,0.463,0,0,87,0
8105,800,"Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), cooked with water, without salt","CEREALS,FARINA,ENR,ASSORTED BRANDS,QUICK,CKD W/ H2O,WO/ SALT",,,,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,1.82,0.34,10.92,55,0.76,0.8,97,5.33,7,37,23,18,0.23,12.8,0,,0,0.126,0.065,1.493,0.096,0,0,60,0
8106,800,"Cereals, CREAM OF WHEAT, instant, dry","CEREALS,CREAM OF WHEAT,INST,DRY",,"B&G Foods, Inc",Y,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,10.6,1.4,75.5,366,0.4,3.3,357,28.6,34,103,115,571,0.98,20,4464,0,0,1.339,1.214,17.857,1.786,0,0.5,323,0
8107,800,"Cereals, CREAM OF WHEAT, instant, prepared with water, without salt","CEREALS,CREAM OF WHEAT,INST,PREP W/ H2O,WO/ SALT",,"B&G Foods, Inc",,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,1.84,0.24,13.08,62,0.07,0.6,64,4.96,6,18,20,102,0.17,3.5,773,,0,0.232,0.21,3.093,0.309,0,0.1,56,0
8113,800,"Cereals, farina, enriched, cooked with water, without salt","CEREALS,FARINA,ENR,CKD W/ H2O,WO/ SALT",,,Y,,0,,5.7,4.05,0.84,4.12,Breakfast Cereals,1.82,0.34,10.92,53,0.76,0.8,97,5.33,7,37,23,18,0.23,3,0,0,0,0.126,0.065,1.493,0.096,0,0,60,0
8116,800,"Cereals, MALT-O-MEAL, original, plain, dry","CEREALS,MALT-O-MEAL,ORIGINAL,PLN,DRY",,MOM Brands,Y,,0,,5.7,3.6,8.37,4.1,Breakfast Cereals,11.8,0.7,77.25,365,0,2.1,286,30.86,16,157,100,0,0.57,24.9,0,0,0,1.07,0.73,14.28,1.13,0,0.1,1121,0
8120,800,"Cereals, oats, regular and quick, not fortified, dry","CEREALS,OATS,REG & QUICK,NOT FORT,DRY","oatmeal, old-fashioned oats, rolled oats",,Y,,0,,5.83,3.46,8.37,4.12,Breakfast Cereals,13.15,6.52,67.7,379,0.99,10.1,52,4.25,138,410,362,6,3.64,28.9,0,0,0,0.46,0.155,1.125,0.1,0,2,0,0
8121,800,"Cereals, oats, regular and quick, unenriched, cooked with water (includes boiling and microwaving), without salt","CEREALS,OATS,REG & QUICK,UNENR,CKD W/ H2O,WO/ SALT","oatmeal, cooked",,Y,,0,,5.83,3.46,8.37,4.12,Breakfast Cereals,2.54,1.52,12,71,0.27,1.7,9,0.9,27,77,70,4,1,5.4,0,0,0,0.076,0.016,0.225,0.005,0,0.3,0,0
8122,800,"Cereals, oats, instant, fortified, plain, dry","CEREALS,OATS,INST,FORT,PLN,DRY","instant oatmeal, Quaker original flavor",,Y,,0,,5.83,3.46,8.37,4.12,Breakfast Cereals,11.92,6.9,69.52,362,1.5,10,351,24.72,128,423,366,220,2.51,23.2,2574,0,0,0.445,0.05,1.035,0.08,0,1.9,0,0
8123,800,"Cereals, oats, instant, fortified, plain, prepared with water (boiling water added or microwaved)","CEREALS,OATS,INST,FORT,PLN,PREP W/ H2O",instant oatmeal,,Y,,0,,5.83,3.46,8.37,4.12,Breakfast Cereals,2.37,1.36,11.67,68,0.46,1.7,80,5.96,26,77,61,49,0.62,5,433,0,0,0.26,0.215,3.025,0.29,0,0.4,39,0
8124,800,"Cereals, QUAKER, Instant Oatmeal, apples and cinnamon, dry","CEREALS,QUAKER,INST OATMEAL,APPLS & CINN,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,8.62,4.61,76.74,366,28.87,8.3,243,8.78,87,294,327,454,1.97,,2454,,1.2,0.73,1.04,12.21,0.98,0,,,0
8128,800,"Cereals, oats, instant, fortified, with cinnamon and spice, dry","CEREALS,OATS,INST,FORT,W/ CINN & SPICE,DRY",oatmeal,,Y,,0,,5.83,,,,Breakfast Cereals,9.53,4.84,76.08,369,25.33,8,234,8.46,92,322,284,434,2.29,6.4,1467,0,0,0.748,0.749,9.107,0.882,0,1.9,175,0
8129,800,"Cereals, oats, instant, fortified, with cinnamon and spice, prepared with water","CEREALS,OATS,INST,FORT,W/ CINN & SPICE,PREP W/ H2O",,,,,0,,,,,,Breakfast Cereals,2.37,1.21,18.95,96,6.31,2,61,2.11,24,80,71,111,0.57,1.6,366,0,0,0.168,0.177,2.155,0.22,0,0.5,43,0
8130,800,"Cereals, QUAKER, Instant Oatmeal, maple and brown sugar, dry","CEREALS,QUAKER,INST OATMEAL,MAPLE & BROWN SUGAR,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,9.2,4.63,76.91,368,30.02,7.2,226,8.22,88,297,424,506,1.7,15.8,1735,,0,0.523,0.907,10.667,1.2,0,,114,0
8132,800,"Cereals, oats, instant, fortified, with raisins and spice, dry","CEREALS,OATS,INST,FORT,W/ RAISINS & SPICE,DRY",instant oatmeal,,Y,,0,,,,,,Breakfast Cereals,8.45,4.03,76.33,360,37.14,5.7,228,9.43,79,273,362,462,1.76,6.9,1962,0,0.7,0.846,0.684,10.513,1.079,0,2.3,193,0
8133,800,"Cereals, oats, instant, fortified, with raisins and spice, prepared with water","CEREALS,OATS,INST,FORT,W/ RAISINS & SPICE,PREP W/ H2O",,,,,0,,,,,,Breakfast Cereals,1.98,0.95,17.91,88,8.71,1.3,56,2.21,19,64,85,111,0.42,1.6,460,0,0.1,0.179,0.152,2.343,0.253,0,0.5,45,0
8138,800,"Cereals ready-to-eat, MALT-O-MEAL, MARSHMALLOW MATEYS","CEREALS RTE,MALT-O-MEAL,MARSHMLLW MATEYS",,MOM Brands,Y,,0,,,,,,Breakfast Cereals,6.94,3.53,82.77,387,40.91,4.9,333,30,71,232,186,667,12.5,14.6,1667,133,20,1.25,1.41,16.67,1.66,5,0.9,648,0
8142,800,"Cereals, WHEATENA, dry","CEREALS,WHEATENA,DRY",,Homestat Farm Ltd.,,,0,,5.83,3.59,8.37,3.78,Breakfast Cereals,13.1,2.9,75.6,357,1.6,12.8,500,3.57,130,384,492,13,4.41,70.7,22,,0,0.07,0.14,3.52,0.12,0,2.3,0,0
8143,800,"Cereals, WHEATENA, cooked with water","CEREALS,WHEATENA,CKD W/ H2O",,Homestat Farm Ltd.,,,0,,5.83,3.59,8.37,3.78,Breakfast Cereals,2,0.5,11.8,56,,2.7,80,0.56,20,60,77,2,0.69,,0,,0,0.01,0.02,0.55,0.019,0,,0,0
8144,800,"Cereals, whole wheat hot natural cereal, dry","CEREALS,WHL WHEAT HOT NAT CRL,DRY",,,Y,,0,,5.83,3.59,8.37,3.78,Breakfast Cereals,11.2,2,75.2,342,0.42,9.5,40,3.39,122,379,389,2,2.66,70.7,0,0,0,0.4,0.3,4.9,0.391,0,2.4,0,0
8145,800,"Cereals, whole wheat hot natural cereal, cooked with water, without salt","CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,WO/ SALT",,,,,0,,5.83,3.59,8.37,3.78,Breakfast Cereals,2,0.4,13.7,62,0.08,1.6,7,0.62,22,69,71,0,0.48,12.8,0,,0,0.07,0.05,0.89,0.073,0,0.4,0,0
8146,800,"Cereals ready-to-eat, QUAKER, QUAKER Puffed Wheat","CEREALS RTE,QUAKER,QUAKER PUFFED WHEAT",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,16.26,2.15,76.39,366,1.37,9.4,24,4.41,133,331,364,5,3.07,123.1,11,0,0,0.639,0.397,5.286,0.13,0.42,2,122,0
8147,800,"Cereals ready-to-eat, POST, Shredded Wheat, original big biscuit","CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL BIG BISCUIT",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,11.37,2.01,78.96,337,0.94,12.4,56,2.63,130,375,381,2,2.89,2.8,0,0,0,0.28,0.09,6.26,0.17,0,1.4,0,0
8148,800,"Cereals ready-to-eat, POST, Shredded Wheat, original spoon-size","CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL SPOON-SIZE",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,11.8,2.1,81.4,351,0.9,12.4,58,2.5,133,384,387,2,3.05,5.9,0,0,0,0.29,0.09,5.64,0.14,0,1.5,0,0
8156,800,"Cereals ready-to-eat, rice, puffed, fortified","CEREALS RTE,RICE,PUFFED,FORT",,,,,0,,5.95,3.82,8.37,4.16,Breakfast Cereals,6.3,0.5,89.8,402,,1.7,6,31.7,25,98,113,3,1.03,10.5,0,,0,2.6,1.8,35.3,0.075,0,,0,0
8157,800,"Cereals ready-to-eat, wheat, puffed, fortified","CEREALS RTE,WHEAT,PUFFED,FORT",,,,,0,,5.83,3.59,8.37,3.78,Breakfast Cereals,14.7,1.2,79.6,364,,4.4,28,31.7,145,355,348,4,2.36,123.1,0,,0,2.6,1.8,35.3,0.17,0,,0,0
8159,800,"Cereals, corn grits, yellow, regular and quick, enriched, dry","CEREALS,CORN GRITS,YEL,REG & QUICK,ENR,DRY",,,Y,,0,,6.25,3.46,8.37,4.16,Breakfast Cereals,6.72,1.49,79.91,368,0.55,3.9,4,2.9,28,76,118,2,0.6,17,124,0,0,0.675,0.324,4.255,0.131,0,0,100,0
8160,800,"Cereals, corn grits, yellow, regular and quick, unenriched, dry","CEREALS,CORN GRITS,YEL,REG & QUICK,UNENR,DRY",,,,,0,,6.25,3.46,8.37,4.16,Breakfast Cereals,8.8,1.2,79.6,371,0.64,1.6,2,1,27,73,137,1,0.41,17,214,,0,0.13,0.04,1.2,0.147,0,0.3,0,0
8161,800,"Cereals, corn grits, white, regular and quick, enriched, cooked with water, with salt","CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,W/ SALT",,,,,0,,6.25,3.46,8.37,4.16,Breakfast Cereals,1.71,0.46,14.76,71,0.12,0.8,1,0.57,7,20,27,223,0.18,3.1,0,0,0,0.086,0.058,0.799,0.046,0,0,14,0
8164,800,"Cereals, corn grits, yellow, regular and quick, enriched, cooked with water, without salt","CEREALS,CORN GRITS,YEL,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT",,,,,0,,6.25,3.46,8.37,4.16,Breakfast Cereals,1.23,0.39,13.86,65,0.09,0.7,1,0.57,5,14,22,2,0.14,2.7,0,,0,0.103,0.058,0.762,0.035,0,0,14,0
8165,800,"Cereals, corn grits, yellow, regular, quick, enriched, cooked with water, with salt","CEREALS,CORN GRITS,YEL,REG,QUICK,ENR,CKD W/ H2O,W/ SALT",,,,,0,,6.25,3.46,8.37,4.16,Breakfast Cereals,1.23,0.39,13.86,65,0.09,0.7,1,0.57,5,14,22,223,0.14,2.7,0,0,0,0.103,0.058,0.762,0.035,0,0,14,0
8168,800,"Cereals, CREAM OF RICE, cooked with water, with salt","CEREALS,CREAM OF RICE,CKD W/ H2O,W/ SALT",,"B&G Foods, Inc",,,0,,5.95,3.82,8.37,4.16,Breakfast Cereals,0.9,0.1,11.5,52,0.04,0.1,1,3.96,3,17,20,173,0.16,3,0,,0,0.071,0.018,1.039,0.027,0,0,0,0
8169,800,"Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, with salt","CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,W/ SALT",,"B&G Foods, Inc",,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,1.46,0.21,10.66,50,0.03,0.5,89,3.99,5,16,17,129,0.13,2.8,0,0,0,0.07,0.028,0.585,0.015,0,0.1,12,0
8172,800,"Cereals, farina, unenriched, dry","CEREALS,FARINA,UNENR,DRY",,,,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,10.6,0.5,78,369,,1.9,14,1.5,13,88,94,3,0.53,23.5,0,,0,0.06,0.1,0.7,0.058,0,,0,0
8173,800,"Cereals, farina, enriched, cooked with water, with salt","CEREALS,FARINA,ENR,CKD W/ H2O,W/ SALT",,,,,0,,5.7,4.05,8.37,4.12,Breakfast Cereals,1.82,0.34,10.92,53,0.76,0.8,97,5.33,7,37,23,126,0.23,3,0,,0,0.126,0.065,1.493,0.096,0,0,60,0
8177,800,"Cereals, MALT-O-MEAL, chocolate, dry","CEREALS,MALT-O-MEAL,CHOC,DRY",,MOM Brands,,,0,,5.7,,,,Breakfast Cereals,10.6,0.82,79.55,363,16.63,2.8,375,42.88,33,124,245,10,0.87,,2,0,0,1.25,1.12,20.31,2.05,0,0,1115,0
8180,800,"Cereals, oats, regular and quick and instant, unenriched, cooked with water (includes boiling and microwaving), with salt","CEREALS,OATS,REG & QUICK & INST,UNENR,CKD W/ H2O,W/ SALT",,,,,0,,5.83,3.46,8.37,4.12,Breakfast Cereals,2.54,1.52,12,71,0.27,1.7,9,0.9,27,77,70,71,1,5.4,0,,0,0.076,0.016,0.225,0.005,0,0.3,0,0
8182,800,"Cereals, WHEATENA, cooked with water, with salt","CEREALS,WHEATENA,CKD W/ H2O,W/ SALT",,Homestat Farm Ltd.,,,0,,5.83,3.59,8.37,3.78,Breakfast Cereals,2.03,0.45,11.74,59,0.25,2,80,0.56,21,60,77,238,0.69,11,3,,0,0.011,0.022,0.546,0.019,0,0.4,0,0
8183,800,"Cereals, whole wheat hot natural cereal, cooked with water, with salt","CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,W/ SALT",,,,,0,,5.83,3.59,8.37,3.78,Breakfast Cereals,2,0.4,13.7,62,0.08,1.6,7,0.62,22,69,71,233,0.48,12.8,0,,0,0.07,0.05,0.89,0.073,0,0.4,0,0
8189,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S Low Fat Granola without Raisins","CEREALS RTE,KELLOGG,KELLOGG'S LOFAT GRANOLA WO/ RAISINS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,8.7,5.7,80.9,389,28.3,7,33,3.7,68,228,215,257,7.7,17.3,1531,82,6,0.76,0.87,10.2,4.08,12,1.3,797,0
8191,800,"Cereals ready-to-eat, POST, Shredded Wheat, lightly frosted, spoon-size","CEREALS RTE,POST,SHREDDED WHEAT,LIGHTLY FRSTD,SPOON-SIZE",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,7.8,1.9,83.8,352,22.3,9.6,13,3.46,93,276,327,19,2.88,4.1,0,0,0,0.72,0.82,9.62,0.96,2.88,1,173,0
8192,800,"Cereals ready-to-eat, POST SELECTS Blueberry Morning","CEREALS RTE,POST SELECTS BLUEBERRY MORNING",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,6.5,5.3,81.6,395,29.2,4.7,41,3.3,57,162,195,341,1.6,16.7,1364,73,0.9,0.7,0.8,9.1,0.9,2.7,12.7,163,0
8194,800,"Cereals ready-to-eat, GENERAL MILLS, REESE'S PUFFS","CEREALS RTE,GENERAL MILLS,REESE'S PUFFS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.8,11.1,75.6,413,35.3,4.7,345,15.5,55,207,244,555,12.9,6.5,1724,138,20.7,1.3,1.5,17.2,1.724,5.2,1.8,326,0
8200,800,"Cereals, QUAKER, QUAKER MultiGrain Oatmeal, dry","CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,DRY",,"The Quaker Oats, Co.",Y,,0,,,,,,Breakfast Cereals,12.64,2.73,72.62,334,2.46,11.9,36,2.88,115,346,322,7,3.21,31.3,8,0,0,0.34,0.18,3.98,0.28,0,3.7,0,0
8202,800,"Cereals ready-to-eat, GENERAL MILLS, OATMEAL CRISP, Crunchy Almond","CEREALS RTE,GENERAL MILLS,OATMEAL CRISP,CRUNCHY ALMOND",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,9.89,6.69,78.09,390,22.89,8.2,33,15,67,167,336,212,1.5,17.3,1,0,0,0.2,0.1,6.69,0.66,0,1.6,48,0
8204,800,"Cereals ready-to-eat, chocolate-flavored frosted puffed corn","CEREALS RTE,CHOCOLATE-FLAVORED FRSTD PUFFED CORN",,,Y,,0,,,,,,Breakfast Cereals,3.34,3.5,87.2,405,43.7,3.8,70,15.87,36,141,176,534,0.56,6.5,4409,0,52.9,1.323,1.499,17.637,1.764,5.29,0.6,334,0
8206,800,"Cereals ready-to-eat, MALT-O-MEAL, COCO-ROOS","CEREALS RTE,MALT-O-MEAL,COCO-ROOS",,MOM Brands,Y,,0,,,,,,Breakfast Cereals,3.41,4.61,86.75,389,48.11,3.3,333,30,27,72,201,350,12.5,5.2,1667,133,20,1.25,1.41,16.67,1.66,5,0,648,0
8210,800,"Cereals ready-to-eat, QUAKER, QUAKER OAT CINNAMON LIFE","CEREALS RTE,QUAKER,QUAKER OAT CINN LIFE",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,9.14,4.1,79.02,374,25.18,6.3,387,23.22,90,390,260,463,13.78,,35,0,0.1,1.37,1.55,18.22,1.83,0,,1299,0
8211,800,"Cereals ready-to-eat, QUAKER, HONEY GRAHAM OH!S","CEREALS RTE,QUAKER,HONEY GRAHAM OH!S",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,3.92,7.63,83.65,412,43.23,2.1,11,19.52,43,133,167,679,5.99,7.8,1496,0,36.4,1.049,0.572,4.334,0.321,0,0.7,544,0
8214,800,"Cereals ready-to-eat, QUAKER, Oatmeal Squares","CEREALS RTE,QUAKER,OATMEAL SQUARES",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,11.38,4.83,77.77,379,16.69,8.3,201,29.3,115,371,357,347,7.18,6.9,1188,0,11.5,0.683,0.85,9.57,0.88,0,1.6,703,0
8215,800,"Cereals ready-to-eat, QUAKER, Oatmeal Squares, cinnamon","CEREALS RTE,QUAKER,OATMEAL SQUARES,CINN",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,11.23,4.88,78.09,379,16.67,8.7,210,29.5,114,369,359,344,7.14,6.3,1182,0,12,0.75,0.84,9.51,0.88,0,1.6,708,0
8216,800,"Cereals ready-to-eat, QUAKER, Toasted Multigrain Crisps","CEREALS RTE,QUAKER,TSTD MULTIGRAIN CRISPS",QUAKER Oat Bran Cereal,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,12.38,5.11,74.9,372,16.34,10.2,242,29.9,168,518,438,365,7.72,7,1224,0,11.5,0.72,0.82,9.78,0.89,0,2.1,718,0
8218,800,"Cereals ready-to-eat, QUAKER, QUAKER 100% Natural Granola with Oats, Wheat, Honey, and Raisins","CEREALS RTE,QUAKER,QUAKER GRANOLA W/ OATS,WHEAT& RAISINS",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,9.66,10.38,74.67,412,24.63,9.4,101,2.69,110,357,501,54,2.64,13.8,8,0,0.5,0.379,0.26,2.12,0.229,0.15,6.5,0,2
8220,800,"Cereals ready-to-eat, QUAKER, Low Fat 100% Natural Granola with Raisins","CEREALS RTE,QUAKER,LOFAT 100% NAT GRANOLA W/ RAISINS",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,8.42,5.52,80.57,388,25.65,9.6,65,2.58,100,316,431,234,1.59,17.3,21,0,0.4,0.368,0.201,2.371,0.248,0.06,3,0,1
8221,800,"Cereals, QUAKER, Instant Grits, Butter flavor, dry","CEREALS,QUAKER,INST GRITS,BUTTER FLAVOR,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,8.12,5.64,74.83,369,0.88,4.7,413,30,23,115,121,1197,0.66,,672,,0,0.8,0.69,8.45,0.13,0,,,0
8225,800,"Cereals, QUAKER, Instant Oatmeal, fruit and cream variety, dry","CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM VAR,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,8.3,6.37,75.42,379,31.27,6,307,11.3,84,300,280,499,1.85,16,3142,0,0.3,0.943,1.068,12.568,1.257,0.03,2.1,228,0
8228,800,"Cereals, QUAKER, Instant Oatmeal, raisins, dates and walnuts, dry","CEREALS,QUAKER,INST OATMEAL,RAISINS,DATES & WALNUTS,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,8.82,6.98,72.41,371,30.85,6.9,297,10.7,92,296,374,516,1.94,16.4,2992,0,0.8,0.892,1.017,11.968,1.197,0,2,202,0
8231,800,"Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, dry","CEREALS,QUAKER,OAT BRAN,QUAKER/MOTHER'S OAT BRAN,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,17.03,7.97,62.94,364,1.43,14.3,79,8.07,241,694,579,5,4.2,0,100,0,0,0.97,0.3,0.8,0.11,0,,0,0
8236,800,"Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, prepared with water, no salt","CEREALS,QKR,OAT BRAN,PREP W/H2O,NO SALT",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,2.03,0.95,7.49,43,,1.7,11,0.97,30,83,69,3,0.53,,12,,0,0.115,0.036,0.096,0.013,0,,0,0
8239,800,"Cereals ready-to-eat, GENERAL MILLS, Berry Burst CHEERIOS, Triple Berry","CEREALS RTE,GENERAL MILLS,BERRY BURST CHEERIOS,TRIPLE BERRY",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.8,4.5,80.5,378,27,7.6,370,16.7,89,222,230,639,13.9,18.5,1852,148,22.2,1.4,1.6,18.5,1.852,5.6,4.1,722,0
8240,800,"Cereals, Oat Bran, QUAKER, QUAKER/MOTHER'S Oat Bran, prepared with water, salt","CEREALS,OAT BRAN,QKR,QKR/MOTHER'S OAT BRAN,PREP W/H2O,SALT",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,2.03,0.95,7.49,43,,1.7,11,0.97,30,82,69,46,0.53,,12,,0,0.115,0.036,0.095,0.013,0,,0,0
8243,800,"Cereals ready-to-eat, GENERAL MILLS, HONEY NUT CLUSTERS","CEREALS RTE,GENERAL MILLS,HONEY NUT CLUSTERS",,General Mills Inc.,Y,,0,,,,,,Breakfast Cereals,7.7,2,85.2,374,24.8,6.3,34,7.9,42,140,184,515,6.6,33.7,0,0,10.5,0.7,0.7,8.8,0.877,2.6,1.1,156,0
8244,800,"Cereals ready-to-eat, GENERAL MILLS, FIBER ONE Bran Cereal","CEREALS RTE,GENERAL MILLS,FIBER ONE BRAN CRL",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.59,2.29,84.3,207,1,46.2,333,15,53,200,374,356,12.5,9,18,0,20,1.29,1.39,16.7,1.66,5,0.6,314,0
8245,800,"Cereals ready-to-eat, GENERAL MILLS, OATMEAL CRISP, Hearty Raisin","CEREALS RTE,GENERAL MILLS,OATMEAL CRISP,HEARTY RAISIN",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.5,3.79,80.8,372,27.29,7.5,32,14.5,65,161,355,195,1.5,17.3,0,0,0.4,0.1,0.1,6.5,0.64,0,2,46,0
8247,800,"Cereals ready-to-eat, GENERAL MILLS, TOTAL Raisin Bran","CEREALS RTE,GENERAL MILLS,TOTAL RAISIN BRAN",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.6,1.6,76.8,312,32.3,9.1,1887,34,60,189,504,339,28.3,7,943,189,0,2.8,3.2,37.7,3.774,11.3,1.9,736,0
8249,800,"Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, no salt","CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,NO SALT",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,2.08,0.47,13.49,61,,2.2,8,0.56,22,64,75,3,0.61,,1,,0,0.053,0.024,0.656,0.044,0,,4,0
8252,800,"Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, salt","CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,SALT",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,2.07,0.47,13.47,61,,2.2,8,0.56,22,63,75,70,0.61,,1,,0,0.053,0.024,0.655,0.044,0,,4,0
8259,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S CRISPIX","CEREALS RTE,KELLOGG,KELLOGG'S CRISPIX",Includes USDA Commodity B855,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,6.59,0.8,87.19,378,12.8,1,9,28,13,45,71,660,5.19,12.4,1724,138,21,1.8,2.04,24.1,2.41,6.19,0.1,947,0
8261,800,"Cereals ready-to-eat, GENERAL MILLS, RAISIN NUT BRAN","CEREALS RTE,GENERAL MILLS,RAISIN NUT BRAN",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.19,5.3,80,368,28.5,12.2,41,9.19,65,204,357,440,7.69,7,8,0,0.3,0.8,0.89,10.19,1.02,3.09,2.8,185,0
8262,800,"Cereals ready-to-eat, GENERAL MILLS, BASIC 4","CEREALS RTE,GENERAL MILLS,BASIC 4",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.69,4,79.09,358,22.5,9.1,455,8.19,58,182,318,506,6.8,17,909,73,0.3,0.69,0.8,9.1,0.9,2.7,1.7,163,0
8263,800,"Cereals ready-to-eat, GENERAL MILLS, APPLE CINNAMON CHEERIOS","CEREALS RTE,GENERAL MILLS,APPL CINN CHEERIOS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.3,6.09,79.9,386,34.2,7.3,333,15,80,267,248,390,12.5,18.8,1667,133,20,1.29,1.39,16.7,1.66,5,3.1,648,0
8267,800,"Cereals ready-to-eat, GENERAL MILLS, FROSTED CHEERIOS","CEREALS RTE,GENERAL MILLS,FRSTD CHEERIOS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,9,4.69,79.8,376,32,7.5,370,16.7,89,296,254,553,13.89,21.6,1852,148,22.2,1.39,1.6,18.5,1.85,5.59,1.5,722,0
8268,800,"Cereals ready-to-eat, GENERAL MILLS, FRANKENBERRY","CEREALS RTE,GENERAL MILLS,FRANKENBERRY",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.5,4.3,85.4,386,27.29,4.2,303,13.6,24,182,163,458,11.39,19.8,1515,121,18.2,1.1,1.29,15.19,1.51,4.5,1.2,284,0
8270,800,"Cereals ready-to-eat, GENERAL MILLS, COUNT CHOCULA","CEREALS RTE,GENERAL MILLS,COUNT CHOCULA",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.4,4.69,84.5,383,33.09,5,370,16.7,30,222,228,488,13.89,6.5,1852,148,22.2,1.39,1.6,18.5,1.85,5.59,1.7,351,0
8271,800,"Cereals ready-to-eat, GENERAL MILLS, COCOA PUFFS","CEREALS RTE,GENERAL MILLS,COCOA PUFFS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.6,5.2,83.7,383,37.2,5.7,370,16.7,59,222,272,564,13.9,6.5,1852,148,22.2,1.4,1.6,18.5,1.852,5.6,2.1,351,0
8272,800,"Cereals ready-to-eat, GENERAL MILLS, CINNAMON TOAST CRUNCH","CEREALS RTE,GENERAL MILLS,CINN TOAST CRUNCH",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.45,10.25,77.99,410,30.3,6.8,444,20.48,54,199,201,567,18.12,4.7,3066,210,19.4,2.467,2.067,24.533,2.7,6.65,9.4,349,0
8273,800,"Cereals ready-to-eat, GENERAL MILLS, BOO BERRY","CEREALS RTE,GENERAL MILLS,BOO BERRY",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.5,4.3,85.4,386,27.29,4.2,303,13.6,48,182,163,458,11.39,6.5,1515,121,18.2,1.1,1.29,15.19,1.51,4.5,1.6,284,0
8274,800,"Cereals ready-to-eat, GENERAL MILLS, BERRY BERRY KIX","CEREALS RTE,GENERAL MILLS,BERRY BERRY KIX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.19,4.19,83.9,376,21,5.8,421,23.7,42,211,228,517,7.9,12.2,1579,126,18.9,0.8,0.89,10.5,1.05,3.2,0.6,507,0
8277,800,"Cereals ready-to-eat, GENERAL MILLS, NATURE VALLEY LOW FAT FRUIT GRANOLA","CEREALS RTE,GENERAL MILLS,NATURE VALLEY LOFAT FRUIT GRANOLA",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,7.9,4.69,79.4,381,31.89,5,36,2,44,146,253,497,1.1,13,4,0,0.8,0.1,0.1,0.69,0.111,0,1.3,0,0
8284,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S Low Fat Granola with Raisins","CEREALS RTE,KELLOGG,KELLOGG'S LOFAT GRANOLA W/ RAISINS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,9,5.2,80.1,381,27.9,7.4,36,3.3,68,226,204,249,6.3,17.3,1250,73,4,0.63,0.71,8.3,3.33,10,1.8,648,0
8286,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S MUESLIX","CEREALS RTE,KELLOGG,KELLOGG'S MUESLIX",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,8.6,5.4,74.9,355,25.1,7.7,36,8.19,67,225,324,239,2.59,21.2,545,29,0.3,0.68,0.76,9.1,3.64,10.89,1.6,708,0
8288,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S RICE KRISPIES TREATS Cereal","CEREALS RTE,KELLOGG,KELLOGG'S RICE KRISPIES TREATS CRL",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.3,4.19,85.59,395,29.6,0.4,10,6,21,62,51,567,0.69,5.7,1667,133,20,1.25,1.41,16.7,1.66,5,1,329,1
8290,800,"Cereals ready-to-eat, HEALTH VALLEY, FIBER 7 Flakes","CEREALS RTE,HEALTH VALLEY,FIBER 7 FLAKES",,"Hain Celestial Group, Inc.",Y,,0,,,,,,Breakfast Cereals,14.44,1.41,78.15,353,20,14.1,71,2.54,144,327,480,200,2.89,19,353,0,4.2,0.529,0.6,7.055,0.705,2.12,2.2,122,0
8305,800,"Cereals ready-to-eat, Post, Waffle Crisp","CEREALS RTE,POST,WAFFLE CRISP",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,6.6,5,83,390,34.7,4.4,24,9,72,237,212,596,7.5,19.9,2500,133,0,1.25,1.4,16.7,1.7,5,1.2,314,0
8309,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S HONEY CRUNCH CORN FLAKES","CEREALS RTE,KELLOGG,KELLOGG'S HONEY CRUNCH CORN FLAKES",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,6.8,1.9,87,385,33,3.4,22,6.2,22,60,102,700,0.3,5.1,1670,140,20,1.25,1.5,16.6,1.7,5,0.2,314,0
8314,800,"Cereals, QUAKER, hominy grits, white, quick, dry","CEREALS,QUAKER,HOMINY GRITS,WHITE,QUICK,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,8.8,1.2,79.6,348,0.3,4.8,2,4.42,27,73,137,1,0.41,,0,,0,0.61,0.36,5.32,0.15,0,,,0
8316,800,"Cereals, QUAKER, hominy grits, white, regular, dry","CEREALS,QUAKER,HOMINY GRITS,WHITE,REG,DRY",old fashioned,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,8.8,1.6,79.2,361,0.64,1.6,2,4.42,27,73,137,1,0.41,,3,,0,0.61,0.36,5.32,0.15,0,,,0
8318,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S SMART START Strong Heart Antioxidants Cereal","CEREALS RTE,KELLOGG,KELLOGG'S SMART START ANTIOXIDANTS CRL",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.5,1.5,86.8,371,27.79,5.4,29,36,29,131,182,398,30,28.7,2500,80,30,3,3.4,40,4,12,1.1,781,0
8319,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S FROSTED MINI-WHEATS, bite size","CEREALS RTE,KELLOGG,KELLOGG'S FRSTD MINI-WHEATS,BITE SIZE",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,9.19,1.6,83.4,350,20.29,10.8,28,30,86,368,363,2,2.79,,6,,0,0.68,0.79,9.3,0.93,3,,351,0
8346,800,"Cereals ready-to-eat, MALT-O-MEAL, COLOSSAL CRUNCH","CEREALS RTE,MALT-O-MEAL,COLOSSAL CRUNCH",,MOM Brands,Y,,0,,,,,,Breakfast Cereals,3.64,5.28,81.59,401,42.5,1.7,0,30,5,57,110,806,12.5,6,1667,133,20,1.25,1.41,16.67,1.66,5,0,648,0
8347,800,"Cereals ready-to-eat, MALT-O-MEAL, BERRY COLOSSAL CRUNCH","CEREALS RTE,MALT-O-MEAL,BERRY COLOSSAL CRUNCH",,MOM Brands,,,0,,,,,,Breakfast Cereals,4.19,4.17,86.55,396,41.66,1.8,33,30,11,75,109,633,12.5,8,1667,133,20,1.25,1.41,16.67,1.66,5,0,648,0
8348,800,"Cereals ready-to-eat, MALT-O-MEAL, Crispy Rice","CEREALS RTE,MALT-O-MEAL,CRISPY RICE",,MOM Brands,,,0,,,,,,Breakfast Cereals,6.07,1.12,86.4,346,7.82,0.4,7,27.27,24,121,114,924,11.35,,1515,121,18.2,1.13,1.28,15.14,1.51,4.55,0,1206,0
8349,800,"Cereals ready-to-eat, MALT-O-MEAL, TOOTIE FRUITIES","CEREALS RTE,MALT-O-MEAL,TOOTIE FRUITIES",,MOM Brands,Y,,0,,,,,,Breakfast Cereals,4.69,3.2,85.94,391,45.31,2.2,313,28.12,24,78,104,453,11.72,9.9,1563,125,18.8,1.16,1.33,15.63,1.55,4.69,0.1,606,0
8351,800,"Cereals ready-to-eat, QUAKER, MOTHER'S PEANUT BUTTER BUMPERS Cereal","CEREALS RTE,QUAKER,MOTHER'S PNUT BUTTER BUMPERS CRL",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,7.62,7.33,79.68,407,29.29,2.5,23,1.97,74,213,296,774,1.42,,159,0,0,0.18,0.07,2.7,0.12,0,,0,0
8352,800,"Cereals ready-to-eat, QUAKER, MOTHER'S Toasted Oat Bran cereal","CEREALS RTE,QUAKER,MOTHER'S TSTD OAT BRAN CRL",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,11.45,5.04,75.41,372,15.57,8.6,58,4.07,136,429,489,653,2.89,,63,0,0,0.55,0.32,1.8,0.13,0,,,0
8353,800,"Cereals ready-to-eat, QUAKER, MOTHER'S Cinnamon Oat Crunch","CEREALS RTE,QUAKER,MOTHER'S CINN OAT CRUNCH",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,10.6,4.56,79.79,382,25.37,8.1,50,3.24,106,347,325,275,2.63,,17,0,0.8,0.42,0.11,1.89,0.13,0,,0,0
8354,800,"Cereals ready-to-eat, QUAKER, MOTHER'S GRAHAM BUMPERS","CEREALS RTE,QUAKER,MOTHER'S GRAHAM BUMPERS",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,4.55,1.45,88.89,379,44.33,2.6,18,1.87,57,156,199,758,1.04,,162,,0.3,0.16,0.05,1.12,0.06,0,,0,0
8355,800,"Cereals ready-to-eat, QUAKER, MOTHER'S COCOA BUMPERS","CEREALS RTE,QUAKER,MOTHER'S COCOA BUMPERS",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,4.21,1.61,89.91,382,43.12,2.7,16,2.06,61,166,226,452,1.11,,186,0,0.2,0.15,0.05,1.06,0.04,0,,0,0
8363,800,"Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Toasted Wheat Bran","CEREALS RTE,SUN COUNTRY,KRETSCHMER TSTD WHEAT BRAN",,Sun Country Foods Inc.,,,0,,6.25,,,,Breakfast Cereals,17.56,5.16,59.51,200,,41.3,66,13.88,606,1314,1284,6,11.23,,0,0,0,1.1,0.45,20.62,0.68,0.23,,,0
8365,800,"Cereals ready-to-eat, QUAKER, Shredded Wheat, bagged cereal","CEREALS RTE,QUAKER,SHREDDED WHEAT,BAGGED CRL",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,11.24,2.01,81.01,348,0.81,11.8,45,3.33,172,362,358,4,2.54,,0,0,0,0.226,0.105,5.24,0.256,0,,0,0
8366,800,"Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Wheat Germ, Regular","CEREALS RTE,SUN COUNTRY,KRETSCHMER WHEAT GERM,REG",,Sun Country Foods Inc.,,,0,,6.25,,,,Breakfast Cereals,31.43,9.56,49.38,366,7.14,11.9,50,8.34,313,1130,1097,6,16.01,,127,0,6,1.97,0.78,5.58,0.6,0.21,,317,0
8370,800,"Cereals ready-to-eat, GENERAL MILLS, RICE CRUNCHINS","CEREALS RTE,GENERAL MILLS,RICE CRUNCHINS",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,4.76,2.38,80.95,381,9.52,4.8,0,5.14,,,,238,,,3571,286,42.9,1.071,1.214,14.286,1.429,4.29,,,0
8376,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S MARSHMALLOW FROOT LOOPS","CEREALS RTE,KELLOGG,KELLOGG'S MARSHMLLW FROOT LOOPS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.59,2.79,89.3,376,49.9,7.4,9,15.5,25,65,95,393,5.19,8.5,1724,138,52,1.28,1.47,17.2,1.72,5.19,0.6,326,0
8380,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S, RAISIN BRAN CRUNCH","CEREALS RTE,KELLOGG,KELLOGG'S,RAISIN BRAN CRUNCH",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,6.59,1.79,84.9,354,35.2,8,35,8.5,88,226,246,358,2.79,4.6,943,75,2,0.7,0.8,9.39,0.93,2.79,1.5,170,0
8383,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S SPECIAL K Red Berries","CEREALS RTE,KELLOGG,KELLOGG'S SPL K RED BERRIES",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,6.3,1.29,87.09,358,29.7,8.5,24,26.1,59,166,229,619,1.29,13,1667,134,68,1.69,1.91,22.6,2.25,6.8,1.2,433,0
8384,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S MINI-WHEATS, unfrosted bite size","CEREALS RTE,KELLOGG,KELLOGG'S MINI-WHEATS,UNFROSTED BITE SZE",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,11.6,2,81,342,0.4,13.8,35,29.5,110,469,463,2,2.7,,7,,0,0.68,0.77,9.1,0.91,2.7,,336,0
8386,800,"Cereals ready-to-eat, KASHI GOLEAN CRUNCH!","CEREALS RTE,KASHI GOLEAN CRUNCH!",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,16.7,5.9,71.4,367,24,14.5,59,2.79,82,251,613,186,0.4,17.1,15,0,1,0.07,0.02,0.5,0.02,0,3.7,0,0
8387,800,"Cereals ready-to-eat, KASHI HEART TO HEART, Honey Toasted Oat","CEREALS RTE,KASHI HEART TO HEART,HONEY TSTD OAT",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,11.39,5,78.69,364,15.5,13.7,41,2.4,7,38,243,267,0.1,21.4,3788,0,91,0.31,0.07,1,6.05,18,2.4,1169,0
8388,800,"Cereals ready-to-eat, KASHI 7 Whole Grain Puffs","CEREALS RTE,KASHI 7 WHL GRAIN PUFFS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,13,2.3,78.6,336,0.93,8,38,3,153,240,277,9,3.11,37.2,4,0,0,0.12,0.14,3.2,0.373,0,2.6,0,0
8389,800,"Cereals ready-to-eat, KASHI 7 Whole Grain Honey Puffs","CEREALS RTE,KASHI 7 WHL GRAIN HONEY PUFFS",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,10,1.8,79,349,21.8,6,43,2.5,114,264,222,8,2.51,31.6,0,,0,0.1,0.121,2.6,0.236,0,2,0,0
8390,800,"Cereals ready-to-eat, KASHI GOOD FRIENDS","CEREALS RTE,KASHI GOOD FRIENDS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,9.4,3.2,79.3,299,18.8,21.7,26,4.1,18,236,366,204,2.59,24.5,127,0,0,0.264,0.181,3.257,0.317,0,2.4,0,0
8393,800,"Cereals ready-to-eat, KASHI GOLEAN","CEREALS RTE,KASHI GOLEAN",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,24.89,2.2,67.19,311,16.5,20.1,119,6.09,101,301,845,177,1.7,17.1,106,0,0,0.23,0.1,1.7,0.14,0,1.6,0,0
8402,800,"Cereals, QUAKER, Quick Oats, Dry","CEREALS,QUAKER,QUICK OATS,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,13.7,6.87,68.18,371,1.42,9.4,47,4.64,270,458,358,3,3.2,28.9,0,0,0,0.54,0.12,0.82,0.1,0,2,0,0
8409,800,"Cereals ready-to-eat, MALT-O-MEAL, Frosted Flakes","CEREALS RTE,MALT-O-MEAL,FRSTD FLAKES",,MOM Brands,Y,,0,,6.25,,,,Breakfast Cereals,4.25,0.87,90.2,389,39.27,1.2,3,11.6,12,46,82,451,0.24,5.5,1613,129,19.4,1.21,1.37,16.12,1.61,4.84,0.2,304,0
8410,800,"Cereals, QUAKER, Instant Oatmeal, Cinnamon-Spice, dry","CEREALS,QUAKER,INST OATMEAL,CINNAMON-SPICE,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,10.39,5.1,74.52,369,21.14,8.2,229,8.31,99,353,303,416,2.6,2.9,1467,0,0.1,0.717,0.813,9.2,0.862,0,1.9,175,0
8411,800,"Cereals, QUAKER, Instant Oatmeal, DINOSAUR EGGS, Brown Sugar, dry","CEREALS,QUAKER,INST OATMEAL,DINOSAUR EGGS,BROWN SUGAR,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,8.69,7.59,73.68,384,28.91,6.4,220,7.91,89,302,250,500,2.01,,2196,0,0,0.66,0.75,8.79,0.88,0,,,0
8417,800,"Cereals, QUAKER, Instant Oatmeal, Banana Bread, dry","CEREALS,QUAKER,INST OATMEAL,BANANA BREAD,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,8.97,4.85,75.7,368,29.45,6.7,277,10.07,92,315,287,700,2.07,,2683,0,0.9,0.98,1,11.31,1.14,0,,,0
8435,800,"Cereals ready-to-eat, UNCLE SAM CEREAL","CEREALS RTE,UNCLE SAM CRL",,"Attune Foods, Inc.",Y,,0,,,,,,Breakfast Cereals,15.98,11.6,65.78,346,1.56,20.3,95,4.03,206,374,446,206,3.87,88.3,0,0,2.4,0.679,0.127,4.803,0.956,0,1.8,0,0
8436,800,"Cereals, QUAKER, Instant Oatmeal, Raisin and Spice, dry","CEREALS,QUAKER,INST OATMEAL,RAISIN & SPICE,DRY",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,9.11,4,75.68,360,35.65,5.8,235,9.1,82,292,360,440,1.98,2.9,1646,0,0.7,0.79,0.67,10.47,1.11,0,2.3,193,0
8444,800,"Cereals, QUAKER, Instant Grits, Redeye Gravy & Country Ham flavor, dry","CEREALS,QUAKER,INST GRITS,REDEYE GRVY COUNTRY HAM FLAVOR,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,9.83,1.58,75.86,342,0.71,4.6,441,42.03,32,79,172,1805,0.48,,1,,0,0.85,0.74,8.97,0.15,0,,,0
8449,800,"Cereals, QUAKER, Instant Grits Product with American Cheese Flavor, dry","CEREALS,QUAKER,INST GRITS PRODUCT W/ AMERICAN CHS FLAVOR,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,8.8,4.67,74.18,360,2.02,4.3,418,30.38,27,76,134,1518,0.42,,11,,0,0.76,0.69,8.14,0.16,0.33,,,1
8450,800,"Cereals, QUAKER, Instant Grits, Ham 'n' Cheese flavor, dry","CEREALS,QUAKER,INST GRITS,HAM 'N' CHS FLAVOR,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,10.73,4.68,71.08,355,2.69,4.2,409,38.2,35,95,210,1930,0.58,,13,,0,0.8,0.68,8.27,0.18,0.42,,,1
8451,800,"Cereals, QUAKER, Quick Oats with Iron, Dry","CEREALS,QUAKER,QUICK OATS W/ IRON,DRY",quick oats with iron for WIC program,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,13.7,6.87,68.18,371,1.42,9.4,47,49.45,270,458,358,3,3.2,,0,,0,0.54,0.123,0.823,0.1,0,,,0
8452,800,"Cereals, QUAKER, Whole Wheat Natural Cereal, dry","CEREALS,QUAKER,WHL WHEAT NAT CRL,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,11.8,2,74.8,333,2,9.9,44,3.3,147,406,502,8,4.1,,11,,0,0.48,0.14,5.1,0.44,0,,0,0
8453,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S SPECIAL K Chocolatey Strawberry","CEREALS RTE,KELLOGG,KELLOGG'S SPL K CHOCOLATEY STRAWBERRY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,6.9,3.9,83.3,368,28.6,9.5,25,27.89,59,180,280,631,1.5,,2586,138,72,1.8,2.04,24.1,2.41,7,,,0
8459,800,"Cereals ready-to-eat, KELLOGG'S, FROSTED MINI-WHEATS, Maple & Brown Sugar, Bite Size","CEREALS RTE,KELLG'S,FRSTD MINI-WHTS,MPLE & BRWN SGR,BTE SZE",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,8.7,1.5,84.7,351,22.7,10.3,30,29.5,82,349,345,6,2.7,,5,0,0,0.68,0.77,9.1,0.91,2.7,,336,0
8462,800,"Cereals ready-to-eat, KASHI, ORGANIC PROMISE Autumn Wheat","CEREALS RTE,KASHI,ORGANIC PROMISE AUTUMN WHEAT",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,12,1.4,79,338,12.4,11.2,29,3.1,81,225,342,4,1.5,67.3,0,0,0,0.364,0.109,5.2,0.285,0,1.8,0,0
8463,800,"Cereals ready-to-eat, KASHI ORGANIC PROMISE, STRAWBERRY FIELDS","CEREALS RTE,KASHI ORGANIC PROMISE,STRAWBERRY FIELDS",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,9.4,0.7,83.5,358,20.5,5,14,1.8,43,98,123,337,0.9,,3,,19,0.23,0.04,3.4,0.1,,,,0
8469,800,"Cereals ready-to-eat, KELLOGG'S, Reduced Sugar Frosted Flakes Cereal","CEREALS RTE,KELLOGG'S,RED SUGAR FRSTD FLAKES CRL",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,5.59,0.4,87.3,357,23.89,10.1,5,15,29,72,126,528,0.69,8.9,1667,133,20,1.25,1.41,16.7,1.66,5,0,314,0
8471,800,"Cereals ready-to-eat, KELLOGG'S, SPECIAL K Protein Plus","CEREALS RTE,KELLOGG'S,SPL K PROT PLUS",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,31.2,2.6,60.6,359,20.3,8.3,79,25.3,95,359,391,601,3.3,,2344,0,66,1.64,1.86,21.9,2.19,6.6,,419,0
8476,800,"Cereals ready-to-eat, MALT-O-MEAL, Honey BUZZERS","CEREALS RTE,MALT-O-MEAL,HONEY BUZZERS",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,3.45,1.72,89.66,379,37.93,3.4,14,31.03,28,69,121,759,12.93,,1724,138,20.7,1.293,1.466,17.241,1.724,5.17,,,0
8478,800,"Cereals ready-to-eat, MALT-O-MEAL, GOLDEN PUFFS","CEREALS RTE,MALT-O-MEAL,GOLDEN PUFFS",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,5.77,0.89,89.72,370,51.34,2.6,11,7.92,46,222,204,204,7.3,27.2,1852,151,27.6,1.74,2.167,25.167,2.067,6.67,1.1,728,0
8481,800,"Cereals ready-to-eat, MALT-O-MEAL, HONEY GRAHAM SQUARES","CEREALS RTE,MALT-O-MEAL,HONEY GRAHAM SQUARES",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,4.46,9.97,74.68,398,32.7,4.4,367,33.81,31,137,226,838,13.94,,1959,152,29.9,1.58,1.65,18.97,2.05,5.76,1.3,648,0
8484,800,"Cereals ready-to-eat, MALT-O-MEAL, Raisin Bran Cereal","CEREALS RTE,MALT-O-MEAL,RAISIN BRAN CRL",,MOM Brands,Y,,0,,6.25,,,,Breakfast Cereals,7.63,1.87,80.37,342,33.04,10.2,33,15.25,136,339,546,466,6.36,38.6,847,102,0,0.63,0.72,8.47,0.85,2.53,0.3,320,0
8487,800,"Cereals ready-to-eat, MALT-O-MEAL, Blueberry MUFFIN TOPS Cereal","CEREALS RTE,MALT-O-MEAL,BLUEBERRY MUFFIN TOPS CRL",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,4.9,11.48,79.91,443,35.36,4.7,338,34.29,38,176,179,462,14.68,,1665,130,25,1.5,1.6,19.64,1.96,5,1.6,648,0
8488,800,"Cereals, MALT-O-MEAL, Farina Hot Wheat Cereal, dry","CEREALS,MALT-O-MEAL,FARINA HOT WHEAT CRL,DRY",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,10.48,0.49,77.2,365,0.7,2.9,377,40.93,13,109,93,3,0.51,,0,0,0,1.22,1.07,19.77,2,0,0,,0
8489,800,"Cereals, MALT-O-MEAL, Maple & Brown Sugar Hot Wheat Cereal, dry","CEREALS,MALT-O-MEAL,MAPLE & BROWN SUGAR HOT WHEAT CRL,DRY",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,8.82,0.47,80.52,368,28,1.8,318,31.29,15,125,130,5,0.5,,1,0,1,1.05,0.93,17.12,1.74,0,0,870,0
8491,800,"Cereals ready-to-eat, MOM'S BEST, Honey Nut TOASTY O'S","CEREALS RTE,MOM'S BEST,HONEY NUT TOASTY O'S",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,8.6,4.51,79.84,388,30.17,6.3,380,3.02,92,315,241,683,0.01,,0,0,0,0.3,0.1,1.33,0.01,0.02,0,,0
8493,800,"Cereals ready-to-eat, MALT-O-MEAL, Apple ZINGS","CEREALS RTE,MALT-O-MEAL,APPL ZINGS",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,4.51,2.71,87.3,390,44.61,2.3,303,27.27,24,61,96,454,11.21,,1515,121,18.2,1.13,1.28,15.14,1.51,4.55,0.1,587,0
8494,800,"Cereals ready-to-eat, MALT-O-MEAL, CINNAMON TOASTERS","CEREALS RTE,MALT-O-MEAL,CINN TOASTERS",,MOM Brands,Y,,0,,6.25,,,,Breakfast Cereals,3.32,12.06,78.33,425,32.86,5,333,30,27,250,157,473,12.5,25.3,1667,133,20,1.25,1.41,16.67,1.66,5,1.6,648,0
8495,800,"Cereals ready-to-eat, MALT-O-MEAL, Cocoa DYNO-BITES","CEREALS RTE,MALT-O-MEAL,COCOA DYNO-BITES",,MOM Brands,Y,,0,,6.25,,,,Breakfast Cereals,4.15,3.43,87.93,397,43.15,1.1,17,6.21,28,69,181,534,5.96,8.7,2586,138,0,1.3,1.48,17.23,1.72,5.17,0,341,0
8500,800,"Cereals ready-to-eat, MALT-O-MEAL, Frosted Mini SPOONERS","CEREALS RTE,MALT-O-MEAL,FRSTD MINI SPOONERS",,MOM Brands,Y,,0,,6.25,,,,Breakfast Cereals,9.09,1.94,81.81,354,20,10.9,29,29.45,100,273,327,18,6.82,52,0,0,0,0.68,0.76,9.09,0.91,2.73,1.6,699,0
8501,800,"Cereals ready-to-eat, MALT-O-MEAL, Fruity DYNO-BITES","CEREALS RTE,MALT-O-MEAL,FRUITY DYNO-BITES",,MOM Brands,Y,,0,,6.25,,,,Breakfast Cereals,3.9,3.15,90.1,404,42.6,1,3,7.62,15,67,76,630,5.99,9,3630,195,1,1.46,2.51,26.5,2.74,6.9,0.2,492,1
8504,800,"Cereals ready-to-eat, RALSTON Enriched Wheat Bran flakes","CEREALS RTE,RALSTON ENR WHEAT BRAN FLAKES",Includes USDA Commodity B877,Ralston Foods,,,0,,,,,,Breakfast Cereals,10.21,3.36,79.77,310,17.17,16.9,45,67.67,190,533,630,586,64.33,9.2,1771,345,239.7,4.713,7.29,90.567,6.8,20.69,2.7,,0
8505,800,"Cereals ready-to-eat, RALSTON Corn Biscuits","CEREALS RTE,RALSTON CORN BISCUITS",Includes USDA Commodity Corn Squares B851,Ralston Foods,,,0,,,,,,Breakfast Cereals,5.83,1.05,85.79,367,9.51,2.6,378,38.37,15,38,200,767,17.13,2.2,4167,333,18.5,1.52,1.697,21.833,2.23,5,0,,0
8506,800,"Cereals ready-to-eat, RALSTON Corn Flakes","CEREALS RTE,RALSTON CORN FLAKES",Includes USDA Commodity B878,Ralston Foods,,,0,,,,,,Breakfast Cereals,5.9,0.91,88.01,357,7.84,2.7,2,19.4,7,33,107,571,0.2,2.2,3571,286,65,4.483,1.74,21.033,1.907,5.36,0,,0
8507,800,"Cereals ready-to-eat, RALSTON Crispy Hexagons","CEREALS RTE,RALSTON CRISPY HEXAGONS",Includes USDA Commodity Corn and Rice B855,Ralston Foods,,,0,,,,,,Breakfast Cereals,5.94,0.95,86.78,379,13.79,1.5,8,27.93,16,63,224,517,7.43,2.2,4310,345,20.7,1.81,2.052,24.138,2.414,7.24,0,,0
8508,800,"Cereals ready-to-eat, USDA Commodity Corn and Rice (includes all commodity brands)","CEREALS RTE,USDA CMDTY CORN & RICE (INCLUDES ALL BRANDS)",Includes USDA Commodity B855,,,,0,,,,,,Breakfast Cereals,6.06,1.08,86.85,378,10.35,1.4,10,34.06,19,77,105,795,7.6,6.3,2792,,38.5,6.288,3.87,29.62,5.986,,0,,
8509,800,"Cereals ready-to-eat, USDA Commodity Rice Crisps (includes all commodity brands)","CEREALS RTE,USDA CMDTY RICE CRISPS (INCLUDES ALL BRANDS)",Includes USDA Commodity B856,,,,0,,,,,,Breakfast Cereals,6.45,1.27,86.04,381,8.35,0.7,5,10.53,24,96,108,850,1.19,13.6,2028,,46,2.052,2.518,26.217,2.683,,0,,
8510,2500,Milk and cereal bar,MILK & CRL BAR,,,Y,,0,,,,,,Snacks,6.47,10.98,72.05,413,45.97,0.4,410,5.99,21,155,254,319,0.84,7.7,627,68,15.4,0.615,0.696,8.194,0.819,2,2.5,87,6
8511,800,"Cereals, MALT-O-MEAL, original, plain, prepared with water, without salt","CEREALS,MALT-O-MEAL,ORIGINAL,PLN,PREP W/ H2O,WO/ SALT",,MOM Brands,,,0,,,,,,Breakfast Cereals,1.67,0.09,10.09,48,0.13,0.3,37,5.19,2,22,14,0,0.07,,0,0,0,0.14,0.1,1.87,0.15,0,0,,0
8512,800,"Cereals, MALT-O-MEAL, chocolate, prepared with water, without salt","CEREALS,MALT-O-MEAL,CHOC,PREP W/ H2O,WO/ SALT",,MOM Brands,,,0,,,,,,Breakfast Cereals,1.37,0.1,9.22,47,2.17,0.4,49,5.59,4,16,32,1,0.2,,0,0,0,0.15,0.15,2.65,0.27,0,0,,0
8513,800,"Cereals ready-to-eat, GENERAL MILLS, CHOCOLATE LUCKY CHARMS","CEREALS RTE,GENERAL MILLS,CHOC LUCKY CHARMS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.59,4.4,84.4,381,36.79,5.3,357,16.1,57,214,249,539,13.39,9.9,1786,143,21.4,1.29,1.5,17.89,1.78,5.4,1.5,338,0
8531,800,"Cereals ready-to-eat, KELLOGG, SPECIAL K, Fruit & Yogurt","CEREALS RTE,KELLOGG,SPL K,FRUIT & YOGURT",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.1,2.9,85.3,367,32.1,8.1,27,25.3,51,157,188,452,1.2,29.5,2344,133,66,1.64,1.86,21.9,2.19,6.6,1.2,419,0
8537,800,"Cereals ready-to-eat, KASHI 7 Whole Grain Flakes","CEREALS RTE,KASHI 7 WHL GRAIN FLAKES",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,11,1.5,81.4,337,11.3,11.8,29,2.9,75,174,244,291,1.5,,6,,0,0.29,0.1,4.2,0.2,,,,0
8538,800,"Cereals ready-to-eat, KASHI, HEART TO HEART, Oat Flakes & Blueberry Clusters","CEREALS RTE,KASHI,HEART TO HEART,OAT FLAKES & BLUEBRY CLSTRS",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,10.39,3.79,80.3,376,22.7,7.4,43,3.2,2,279,213,244,2.32,24.9,2273,0,55,0.4,0.09,1.79,3.64,10.89,1.9,684,0
8539,800,"Cereals ready-to-eat, KASHI ORGANIC PROMISE, CINNAMON HARVEST","CEREALS RTE,KASHI ORGANIC PROMISE,CINN HARVEST",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,11,1.4,79,336,16.5,10.7,25,2.8,,,316,4,,,0,,0,,,,,,,,0
8542,800,"Cereals ready-to-eat, KELLOGG'S, FROSTED MINI-WHEATS Bite Size Strawberry Delight","CEREALS RTE,KELLOGG'S,FRSTD MINI-WHEATS BITE SIZE STRAWB DEL",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,8.7,1.6,84.6,352,22.7,10.2,26,29.5,81,346,342,3,2.7,,6,0,0,0.68,0.77,9.1,0.91,2.7,,345,0
8543,800,"Cereals ready-to-eat, KELLOGG'S, SPECIAL K Vanilla Almond","CEREALS RTE,KELLOGG'S,SPL K VANILLA ALMOND",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.8,4,83,366,29.2,9.6,34,27,74,204,254,559,1.6,28.5,2500,133,70,1.75,1.98,23.29,2.32,7,0.7,448,0
8544,800,"Cereals ready-to-eat, POST GREAT GRAINS Cranberry Almond Crunch","CEREALS RTE,POST GREAT GRAINS CRANBERRY ALMOND CRUNCH",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,8.9,5.9,76.6,384,25.5,11.1,40,3.8,89,255,308,214,3.1,37,1563,83,25,0.8,0.9,10.4,1,3.1,2,189,0
8546,2500,Rice and Wheat cereal bar,RICE & WHEAT CRL BAR,,,Y,,0,,6.25,,,,Snacks,9.09,9.09,72.73,409,31.8,1.8,31,2.56,46,136,143,500,1.78,24.9,0,0,0,0.682,0.773,9.091,0.909,0,1.2,0,0
8549,800,"Cereals ready-to-eat, QUAKER, QUAKER Honey Graham LIFE Cereal","CEREALS RTE,QUAKER,QUAKER HONEY GRAHAM LIFE CRL",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,9.33,4.14,78.56,373,23.12,6.3,366,29.73,90,391,269,488,13.82,,38,,0,1.381,1.565,18.416,1.842,0,,,0
8550,800,"Cereals ready-to-eat, QUAKER, Christmas Crunch","CEREALS RTE,QUAKER,CHRISTMAS CRUNCH",,"The Quaker Oats, Co.",Y,,0,,6.25,,,,Breakfast Cereals,4.44,4.83,85.92,397,44.31,2.6,11,19.78,55,168,186,724,16.36,6.5,148,0,0.1,1.635,1.846,21.736,2.179,0,1.1,1518,0
8553,800,"Cereals ready-to-eat, GENERAL MILLS, CHEERIOS, Yogurt Burst, strawberry","CEREALS RTE,GENERAL MILLS,CHEERIOS,YOGURT BURST,STRAWBERRY",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.67,5.23,81.75,400,30,6.7,333,15,80,200,200,567,12.5,17.8,2500,133,20,1.25,1.417,16.667,1.667,5,1.7,652,0
8554,800,"Cereals ready-to-eat, POST SELECTS Maple Pecan Crunch","CEREALS RTE,POST SELECTS MAPLE PECAN CRUNCH",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,8.5,8.7,77.4,413,22.5,7.4,39,3.5,85,259,274,239,2.9,32.1,1442,77,0.1,0.7,0.8,9.6,1,2.9,3.7,173,0
8560,800,"Cereals ready-to-eat, KASHI GO LEAN CRUNCH!, Honey Almond Flax","CEREALS RTE,KASHI GO LN CRUNCH!,HONEY ALMOND FLAX",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,16.79,9.9,66.9,379,22.2,15,75,2.8,105,270,620,268,0.6,17.5,13,0,1,0.07,0.07,0.8,0.03,0,1.7,0,0
8561,800,"Cereals, KASHI GO LEAN Hot Cereal, Hearty Honey & Cinnamon, dry","CEREALS,KASHI GO LN HOT CRL,HEARTY HONEY & CINN,DRY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,18.39,5.3,68,367,17.7,12,66,3.7,68,241,586,273,0.89,,12,,1,0.23,0.07,1.1,0.05,,,0,0
8562,800,"Cereals, KASHI GO LEAN Hot Cereal, Creamy TRULY VANILLA, dry","CEREALS,KASHI GO LN HOT CRL,CREAMY TRULY VANILLA,DRY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,22.29,5.3,61.09,360,14.8,18.5,95,2.7,21,117,661,274,0.6,,1,,0,0.2,0.07,0.8,0.02,,,,1
8567,800,"Cereals ready-to-eat, KASHI 7 Whole Grain Nuggets","CEREALS RTE,KASHI 7 WHL GRAIN NUGGETS",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,11.8,2.8,81,356,5,11.7,41,24,84,271,,448,,,0,,0,,,,,,,,0
8568,800,"Cereals, KASHI HEART TO HEART, Instant Oatmeal, Apple Cinnamon, dry","CEREALS,KASHI HEART TO HEART,INST OATMEAL,APPL CINN,DRY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,11.1,5,73.8,353,25,12.5,47,2.4,,,640,206,,,14,,2,,,,,,,,0
8569,800,"Cereals, KASHI HEART TO HEART, Instant Oatmeal, golden brown maple, dry","CEREALS,KASHI HEART TO HEART,INST OATMEAL,GLDN BRWN MPLE,DRY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,11.39,5.09,73.59,356,23.79,12.7,25,1.79,,,527,220,,,10,,1,,,,,,,,0
8571,800,"Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS, Pumpkin Granola","CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS,PUMPKIN GRANOLA",,Nature's Path,Y,,0,,6.25,,,,Breakfast Cereals,11.23,18.33,66.1,467,18.17,8.4,51,4.04,40,323,291,74,0.4,1.2,0,0,0.3,0.12,0.01,0.2,0.03,0,26.2,0,0
8573,800,"Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, dry","CEREALS,CRM OF WHEAT,2 1/2 MINUTE COOK TIME,DRY",,"B&G Foods, Inc",,,0,,,4.05,8.37,4.12,Breakfast Cereals,11.61,1.41,71.79,355,0.47,4.4,882,32.02,46,398,160,328,1.35,,,,0,0.76,0.417,8.475,0.09,,0,,
8574,800,"Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, stove-top, without salt","CEREALS,CRM OF WHT,2 1/2 MIN CK,CKD W/H2O,STOVE-TOP,WO/SALT",,"B&G Foods, Inc",,,0,,,4.05,8.37,4.12,Breakfast Cereals,1.44,0.2,11.74,56,0.07,0.7,104,4.09,7,47,23,34,0.22,,,,0,0.093,0.067,0.803,0.031,,0,15,
8575,800,"Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, microwaved, without salt","CEREALS,CRM OF WHT,2 1/2 MIN COOK TIME,CKD W/H2O,MW,WO/ SALT",,"B&G Foods, Inc",,,0,,,4.05,8.37,4.12,Breakfast Cereals,1.88,0.37,10.1,52,0.34,0.7,131,4.98,8,57,26,45,0.26,,,,0,0.087,0.045,0.715,0.033,,0,20,
8576,800,"Cereals, CREAM OF WHEAT, 1 minute cook time, dry","CEREALS,CRM OF WHEAT,1 MINUTE COOK TIME,DRY",,"B&G Foods, Inc",,,0,,,4.05,8.37,4.12,Breakfast Cereals,11.77,1.47,72.63,359,0.51,4.4,801,29.75,45,167,151,7,1.35,,,,0,0.74,0.375,6.075,0.092,,0,,
8577,800,"Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, stove-top, without salt","CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,STOVE-TOP,WO/ SALT",,"B&G Foods, Inc",,,0,,,4.05,8.37,4.12,Breakfast Cereals,1.65,0.42,11.16,56,0.07,0.4,125,4.7,8,27,23,4,0.26,,,,0,0.055,0.022,0.842,0.033,,0,14,
8578,800,"Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, microwaved, without salt","CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,MICROWAVED,WO/ SALT",,"B&G Foods, Inc",,,0,,,4.05,8.37,4.12,Breakfast Cereals,1.95,0.37,10.67,55,2.98,1.5,126,4.88,8,28,23,4,0.25,,,,0,0.097,0.037,0.82,0.02,,0,16,
8579,800,"Cereals ready-to-eat, GENERAL MILLS, 25% Less Sugar CINNAMON TOAST CRUNCH","CEREALS RTE,GENERAL MILLS,25% LESS SUGAR CINN TOAST CRUNCH",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.09,9.89,78.19,386,21.39,11.2,714,12.89,57,357,167,565,10.69,6.9,1429,114,17.1,1.1,1.2,14.3,1.42,4.3,7.8,267,0
8580,800,"Incaparina, dry mix (corn and soy flours), unprepared","INCAPARINA,DRY MIX (CORN & SOY FLOURS),UNPREP",,,,,0,,6.25,,,,Breakfast Cereals,21.75,5.58,60.53,379,,9.9,600,22,220,530,1030,4,23,14.5,5900,,,1.93,0.61,27,0.69,1.5,,,
8582,800,"Cereals ready-to-eat, GENERAL MILLS, DORA THE EXPLORER","CEREALS RTE,GENERAL MILLS,DORA THE EXPLORER",,General Mills Inc.,Y,,0,,,,,,Breakfast Cereals,5.6,5.7,82.8,366,21.2,10.2,370,30,30,74,198,564,13.9,8.5,1852,148,22.2,1.4,1.6,18.5,1.852,5.6,3,722,0
8583,800,"Cereals ready-to-eat, GENERAL MILLS, Fruity CHEERIOS","CEREALS RTE,GENERAL MILLS,FRUITY CHEERIOS",,General Mills Inc.,Y,,0,,,,,,Breakfast Cereals,5.8,4.59,84.19,381,32.2,5.9,370,16.7,30,222,214,501,13.89,13.1,1852,148,55.6,1.39,1.6,18.5,1.85,5.59,0.9,722,0
8584,800,"Cereals ready-to-eat, KELLOGG'S SPECIAL K Chocolatey Delight","CEREALS RTE,KELLOGG'S SPL K CHOCOLATEY DELIGHT",,"Kellogg, Co.",Y,,0,,,,,,Breakfast Cereals,6.5,7.3,81.2,381,29.9,10.6,18,26.1,61,175,272,582,1.4,31.6,2419,129,68,1.69,1.92,22.6,2.26,6.8,1.8,433,0
8586,800,"Cereals ready-to-eat, GENERAL MILLS, 25% Less Sugar TRIX","CEREALS RTE,GENERAL MILLS,25% LESS SUGAR TRIX",,General Mills Inc.,Y,,0,,,,,,Breakfast Cereals,5.4,4,85.5,383,25,4.3,357,19.29,29,214,177,497,13.39,10.5,1786,114,17.1,1.29,1.5,17.89,1.78,4.3,1.4,338,0
8587,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S SPECIAL K Low Fat Granola","CEREALS RTE,KELLOGG,KELLOGG'S SPL K LOFAT GRANOLA",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,13.1,5.4,74.8,375,18,11.3,40,,75,237,225,219,1.6,,962,77,1,1,1.13,13.5,1.35,4,,250,0
8588,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S CINNABON cereal","CEREALS RTE,KELLOGG,KELLOGG'S CINNABON CRL",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,5.69,7.3,83.3,410,41.59,3.9,26,15.69,13,57,129,385,5.59,10.5,1741,161,65,1.46,1.59,18.39,1.83,5.4,2.3,339,0
8589,800,"Cereals ready-to-eat, KASHI GOLEAN CRISP Toasted Berry Crumble","CEREALS RTE,KASHI GOLEAN CRISP TSTD BERRY CRUMBLE",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,18,8.19,66.69,368,21.7,15.8,111,3.59,64,203,418,245,0.6,,17,,1,0.14,0.05,0.3,,,,,0
8590,800,"Cereals ready-to-eat, KASHI HEART TO HEART, Warm Cinnamon","CEREALS RTE,KASHI HEART TO HEART,WARM CINN",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,11.6,4.9,78.5,365,15.69,13.2,55,3.09,26,97,324,251,0.89,,3788,,91,0.38,0.14,1.2,6.05,18,,,0
8591,800,"Cereals ready-to-eat, KASHI ORGANIC PROMISE, ISLAND VANILLA","CEREALS RTE,KASHI ORGANIC PROMISE,ISLAND VANILLA",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,10.7,1.9,80.8,350,16.9,10.7,37,2.8,108,275,313,12,2.6,,0,,0,0.34,0.1,4.8,0.3,,,,0
8592,800,"Cereals ready-to-eat, GENERAL MILLS, CHEERIOS, Banana Nut","CEREALS RTE,GENERAL MILLS,CHEERIOS,BANANA NUT",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.5,4,84.69,375,33.09,6.1,357,16.1,57,214,255,533,13.39,11,1786,143,53.6,1.29,1.5,17.89,1.78,5.4,1.2,695,0
8593,800,"Cereals ready-to-eat, GENERAL MILLS, CHEERIOS, Chocolate","CEREALS RTE,GENERAL MILLS,CHEERIOS,CHOC",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.8,5.09,83.5,380,34.09,6.2,370,16.7,59,222,282,556,13.89,13.2,1852,148,55.6,1.39,1.6,18.5,1.85,5.59,1.8,722,0
8594,800,"Cereals ready-to-eat, GENERAL MILLS, Chocolate CHEX","CEREALS RTE,GENERAL MILLS,CHOC CHEX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,4.8,8.39,81.09,412,26.2,2,286,25.7,29,143,186,629,10.69,13.8,1429,114,17.1,1.1,1.2,14.3,1.42,4.3,4.9,639,0
8595,800,"Cereals ready-to-eat, GENERAL MILLS, Cinnamon CHEX","CEREALS RTE,GENERAL MILLS,CINN CHEX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5,6.59,82.4,403,26.1,2.4,333,27,27,67,126,605,12.5,13.8,2500,133,20,1.29,1.39,16.7,1.66,5,5.3,663,0
8596,800,"Cereals ready-to-eat, GENERAL MILLS, FIBER ONE, Caramel Delight","CEREALS RTE,GENERAL MILLS,FIBER ONE,CARAMEL DELIGHT",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,5.8,5.8,82.69,344,20.79,19.1,200,28.79,64,200,259,470,7.5,23.8,1000,80,12,0.8,0.89,10,1,3,4.2,781,0
8598,800,"Cereals ready-to-eat, GENERAL MILLS, FIBER ONE, HONEY CLUSTERS","CEREALS RTE,GENERAL MILLS,FIBER ONE,HONEY CLUSTERS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,7.69,2.59,83.9,323,17.79,19,192,31.2,77,192,372,394,14.39,35,0,0,11.5,1.2,1.6,19.2,1.92,2.9,1.2,750,0
8599,800,"Cereals ready-to-eat, GENERAL MILLS, FIBER ONE, RAISIN BRAN CLUSTERS","CEREALS RTE,GENERAL MILLS,FIBER ONE,RAISIN BRAN CLUSTERS",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.3,2.29,83.4,317,25.6,17.9,182,8.19,58,182,423,337,6.8,30.5,0,0,10.9,1,0.8,9.1,0.9,2.7,1.9,163,0
8602,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S SPECIAL K, Cinnamon Pecan","CEREALS RTE,KELLOGG,KELLOGG'S SPL K,CINN PECAN",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.5,6,81.2,375,24,10.3,30,27,67,191,267,650,1.5,29.2,2500,133,70,1.75,1.98,23.3,2.33,7,0.9,448,0
8603,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S SPECIAL K Blueberry","CEREALS RTE,KELLOGG,KELLOGG'S SPL K BLUEBERRY",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,6.9,1.5,86.3,363,26.7,8.6,18,27,55,164,204,481,1.3,25.9,2500,133,70,1.75,1.98,23.3,2.33,7,5.3,448,0
8608,800,"Cereals ready-to-eat, KASHI Berry Blossom","CEREALS RTE,KASHI BERRY BLOSSOM",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.5,3,83.09,322,23.39,18.9,35,3.2,87,188,250,419,1.6,,85,,6,0.28,0.15,3.2,0.07,,,0,0
8610,800,"Cereals ready-to-eat, KASHI Honey Sunshine","CEREALS RTE,KASHI HONEY SUNSHINE",,"Kellogg, Co.",Y,,0,,6.25,,,,Breakfast Cereals,7.8,4.09,82,332,20.29,17.9,29,3,79,171,269,446,1.39,19.2,113,0,0,0.31,0.15,3.2,0.03,0,2.4,0,0
8613,800,"Cereals ready-to-eat, KELLOGG'S SPECIAL K Multigrain Oats and Honey","CEREALS RTE,KELLOGG'S SPL K MULTIGRAIN OATS & HONEY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.8,1.8,85,362,26.4,8.6,18,27.9,78,230,241,494,1.9,,2586,138,72,1.81,2.05,24.1,2.4,7.2,,464,0
8615,800,"Cereals ready-to-eat, KELLOGG'S CRUNCHY NUT Golden Honey Nut flakes","CEREALS RTE,KELLOGG'S CRUNCHY NUT GOLDEN HONEY NUT FLAKES",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,6.7,3.9,83.3,385,33.5,2.4,20,14.5,24,62,137,442,0.6,,1667,133,20,1.21,1.37,16.1,1.61,4.8,,295,0
8617,800,"Cereals ready-to-eat, KELLOGG's FROSTED MINI-WHEATS Bite Size Blueberry Muffin","CEREALS RTE,KELLOGG'S FRSTD MINI-WHEATS BITE SZ BLUEB MUFFIN",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,8.6,1.6,84.8,352,22.7,10.2,26,29.5,81,346,341,5,2.7,,15,,0,0.68,0.77,9.1,0.91,2.7,,345,0
8625,800,"Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S Halloween Crunch","CEREALS RTE,QUAKER,CAP'N CRUNCH'S HALLOWEEN CRUNCH",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,4.41,5.66,85.14,402,43.82,2.5,11,19.6,54,167,185,719,15.42,,147,,0.1,1.6,1.8,20.56,2.12,0,,,0
8627,800,"Cereals ready-to-eat, QUAKER, Natural Granola Apple Cranberry Almond","CEREALS RTE,QUAKER,NAT GRANOLA APPL CRANBERRY ALMOND",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,9.21,11.06,74.73,418,27.43,9.9,98,2.47,106,334,444,47,2.44,,19,,3.1,0.34,0.26,1.98,0.193,0.14,,,2
8628,800,"Cereals ready-to-eat, QUAKER, Maple Brown Sugar LIFE Cereal","CEREALS RTE,QUAKER,MAPLE BROWN SUGAR LIFE CRL",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,9.17,4.06,78.86,373,24.9,6.3,349,28.69,91,389,262,477,13.47,,37,,0,1.346,1.526,17.871,1.795,0,,,0
8629,800,"Cereals ready-to-eat, QUAKER, Cap'n Crunch's OOPS! All Berries Cereal","CEREALS RTE,QUAKER,CAP'N CRUNCH'S OOPS! ALL BERRIES CRL",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,4.6,3.99,87.1,395,44.18,2.6,11,21.57,56,170,189,637,17.98,,150,,0.4,1.798,2.036,23.961,2.395,0,,,0
8631,800,"Cereals ready-to-eat, KELLOGG'S FROSTED MINI-WHEATS LITTLE BITES, chocolate","CEREALS RTE,KELLOGG'S FRSTD MINI-WHEATS LITTLE BITES,CHOC",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,8.5,3.4,81.4,354,22.29,10.9,33,28.89,90,335,481,371,2.7,,0,,0,0.67,0.75,8.89,0.88,3,,338,0
8632,800,"Cereals ready-to-eat, QUAKER Oatmeal Squares, Golden Maple","CEREALS RTE,QUAKER OATMEAL SQUARES,GOLDEN MAPLE",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,11.3,4.83,78.04,380,16.82,8.3,201,29,115,371,358,347,7.18,,1189,,11.5,0.687,0.85,9.58,0.88,0,,,0
8633,800,"Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS with vanilla bunches","CEREALS RTE,POST,HONEY BUNCHES OF OATS W/ VANILLA BUNCHES",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,7.9,5.1,81.8,394,20.7,7.8,33,28.9,75,232,262,267,6.7,7.3,1786,107,0,0.7,0.8,8.9,0.9,2.7,3.3,338,0
8634,800,"Cereals ready-to-eat, GENERAL MILLS, PEANUT BUTTER TOAST CRUNCH","CEREALS RTE,GENERAL MILLS,PNUT BUTTER TOAST CRUNCH",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,8.19,9.8,76.19,410,27.1,5.5,323,14.5,52,194,264,452,14.5,,1613,129,19.4,1.2,1.39,16.1,1.61,4.8,,,0
8635,800,"Cereals ready-to-eat, GENERAL MILLS, COCOA PUFFS, 25% Reduced Sugar","CEREALS RTE,GENERAL MILLS,COCOA PUFFS,25% RED SUGAR",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.5,5.19,82.69,380,25.79,6.7,333,15,67,250,328,528,12.5,11.3,1667,133,20,1.29,1.39,16.7,1.66,5,1.6,314,0
8637,800,"Cereals ready-to-eat, GENERAL MILLS, Oat Cluster CHEERIOS Crunch","CEREALS RTE,GENERAL MILLS,OAT CLUSTER CHEERIOS CRUNCH",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,8.5,4.6,80.7,378,27.9,7,296,16.7,59,222,285,489,13.9,21.1,1852,148,22.2,1.4,1.6,18.5,1.852,5.6,1.4,574,0
8639,800,"Cereals, QUAKER, Instant Oatmeal, Cinnamon Spice, reduced sugar","CEREALS,QUAKER,INST OATMEAL,CINN SPICE,RED SUGAR",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,11.26,6.11,69.45,358,11.91,8.8,313,12,116,391,329,760,2.62,,3409,,0.3,0.9,1.17,13.63,1.37,0,,,0
8640,800,"Cereals, QUAKER, Instant Oatmeal Organic, Regular","CEREALS,QUAKER,INST OATMEAL ORGANIC,REG","instant oatmeal, not fortified, no added salt","The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,16,6.3,67,367,1,9.8,52,4.2,148,474,350,4,3.07,,0,,0,0.73,0.14,0.78,0.12,0,,,0
8641,800,"Cereals, QUAKER, Instant Oatmeal, fruit and cream, variety of flavors, reduced sugar","CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM,RED SUGAR",,"The Quaker Oats, Co.",,,0,,,,,,Breakfast Cereals,10.16,7.46,71.57,376,17.66,8.3,246,12.13,103,359,339,559,2.3,,1666,,0.1,1.447,0.617,9.085,0.98,0.03,,,0
8642,800,"Cereals, QUAKER, Instant Oatmeal, Apple and Cinnamon, reduced sugar","CEREALS,QUAKER,INST OATMEAL,APPL & CINN,RED SUGAR",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,10.29,5.64,72.17,358,17.78,9.7,355,12.77,104,357,389,535,2.39,,3549,,1.3,1.065,1.207,14.195,1.42,0,,,0
8643,800,"Cereals ready-to-eat, GENERAL MILLS, Honey KIX","CEREALS RTE,GENERAL MILLS,HONEY KIX",,General Mills Inc.,Y,,0,,6.25,,,,Breakfast Cereals,6.4,3.9,83,364,18.2,8.3,455,38.2,49,182,212,582,18.2,13.1,3030,182,27.3,2.29,2.29,21.2,2.72,6.4,0.2,830,0
8647,800,"Cereals ready-to-eat, KASHI INDIGO MORNING","CEREALS RTE,KASHI INDIGO MORNING",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.7,3.4,82.8,364,22.2,7.1,,2.6,106,256,289,472,1.8,,209,,4,0.32,0.17,3,0.52,,,0,0
8648,800,"Cereals ready-to-eat, KASHI Simply Maize","CEREALS RTE,KASHI SIMPLY MAIZE",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.8,3.4,83.3,371,22.1,6.1,,2.6,105,259,254,415,1.8,,,,,0.32,0.17,3,0.52,,,0,0
8649,800,"Cereals ready-to-eat, KASHI GOLEAN CRISP Cinnamon Crumble","CEREALS RTE,KASHI GOLEAN CRISP CINN CRUMBLE",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,22.1,8.19,62.59,362,18.6,16.8,135,4.59,73,228,514,246,0.6,,22,,1,0.11,0.03,0.2,,,,,0
8651,800,"Cereals ready-to-eat, GENERAL MILLS, FIBER ONE 80 Calories, Honey Squares","CEREALS RTE,GENERAL MILLS,FIBER ONE 80 CAL,HONEY SQUARES",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,4.8,2.59,85.19,248,10.8,38.5,1000,15,53,333,229,425,12.5,,1667,133,20,1.29,1.39,16.7,1.66,5,,,0
8652,800,"Cereals ready-to-eat, KELLOGG'S KRAVE chocolate cereal","CEREALS RTE,KELLOGG'S KRAVE CHOC CRL",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7,11.1,76.1,397,35.7,9.9,61,14.5,40,102,222,320,5,,6452,133,48,1.21,1.13,16.1,1.61,4.8,,248,1
8653,800,"Cereals ready-to-eat, KELLOGG'S RICE KRISPIES, Gluten Free","CEREALS RTE,KELLOGG'S RICE KRISPIES,GLUTEN FREE",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.8,2.3,82.4,371,3.7,2.7,10,30,149,292,280,614,2.1,,4167,200,50,1.25,1.42,16.7,1.67,5,,663,0
8655,800,"Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, pecan bunches","CEREALS RTE,POST,HONEY BUNCHES OF OATS,PECAN BUNCHES",,"Post Foods, LLC",Y,,0,,,,,,Breakfast Cereals,7,5.4,82,399,21.9,5.2,19,15.5,36,140,177,483,1,17.3,2586,138,0.2,1.3,1.5,17.2,1.7,5.2,1.4,671,0
8656,800,"Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS flakes","CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS FLAKES",,Nature's Path,Y,,0,,6.25,,,,Breakfast Cereals,11.91,5.46,75.27,350,12.25,16.6,55,5.89,28,460,501,458,0.31,1.8,1,0,0,0.13,0.01,0.22,0.03,0,0.3,0,0
8657,800,"Cereals ready-to-eat, BARBARA'S PUFFINS, original","CEREALS RTE,BARBARA'S PUFFINS,ORIGINAL",,"Barbara's Bakery, Inc",Y,,0,,,,,,Breakfast Cereals,7.41,3.7,84,333,18.52,18.5,70,1.33,107,126,315,704,1.28,16.7,0,0,55.6,0.111,0.068,1.9,0.243,0,0.7,0,0
8658,800,"Cereals ready-to-eat, KELLOGG'S KRAVE double chocolate cereal","CEREALS RTE,KELLOGG'S KRAVE DOUBLE CHOC CRL",,"Kellogg, Co.",,,0,,,,,,Breakfast Cereals,7.1,11.2,75.9,397,36.3,10.6,67,15,48,112,275,320,5,,1667,133,50,1.25,1.13,16.7,1.67,5,,248,1
8659,800,"Cereals ready-to-eat, KELLOGG'S FROSTED FLAKES, CHOCO ZUCARITAS","CEREALS RTE,KELLOGG'S FRSTD FLAKES,CHOCO ZUCARITAS",chocolate cereal,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,5.1,3.5,85.1,387,38.1,1.4,7,15,36,77,179,515,0.8,,1667,133,20,1.25,1.42,16.7,1.67,5,,314,0
8660,800,"Cereals ready-to-eat, KELLOGG'S APPLE JACKS with marshmallows","CEREALS RTE,KELLOGG'S APPL JACKS W/ MARSHMALLOWS",,"Kellogg, Co.",,,0,,,,,,Breakfast Cereals,4.3,2.8,89.6,378,51.1,7.4,10,16.1,23,61,90,381,5.4,,1786,143,54,1.34,1.52,17.9,1.79,5.4,,338,0
8661,800,"Cereals ready-to-eat, KELLOGG'S CINNAMON JACKS","CEREALS RTE,KELLOGG'S CINN JACKS",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,5.9,7.8,83,397,33.9,9,20,16.1,43,96,155,451,5.4,,1786,143,54,1.34,1.51,17.89,1.78,5,,338,0
8662,800,"Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with real strawberries","CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ REAL STRAWBERRIES",,"Post Foods, LLC",,,0,,,,,,Breakfast Cereals,6.7,4.9,83.3,399,24,5.4,26,26.1,46,139,219,410,1,,2419,129,15.6,1.2,1.4,16.1,1.7,4.8,,304,0
8663,800,"Cereals ready-to-eat, KASHI ORGANIC PROMISE, Berry Fruitful","CEREALS RTE,KASHI ORGANIC PROMISE,BERRY FRUITFUL",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,10.7,1.3,76.2,318,14.6,10.5,29,3,106,242,312,5,2.2,,13,0,0,0.32,0.1,4.6,0.25,0,,,0
8665,800,"Cereals ready-to-eat, POST HONEY BUNCHES OF OATS with cinnamon bunches","CEREALS RTE,POST HONEY BUNCHES OF OATS W/ CINN BUNCHES",,"Post Foods, LLC",,,0,,6.25,,,,Breakfast Cereals,7.1,5,82.8,400,20.4,5.8,36,28,46,145,184,464,1,,2500,133,0.4,1.3,1.4,16.7,1.7,5,,,0
8666,800,"Cereals ready-to-eat, GENERAL MILLS, Cinnamon Burst CHEERIOS","CEREALS RTE,GENERAL MILLS,CINN BURST CHEERIOS",,General Mills Inc.,,,0,,,,,,Breakfast Cereals,6.3,6.09,83.2,375,28.1,9.4,313,25.29,50,125,328,375,11.69,,1563,125,46.9,1.2,1.29,15.6,1.56,4.69,,,0
8668,800,"Cereals ready-to-eat, GENERAL MILLS, FIBER ONE, Nutty Clusters & Almonds","CEREALS RTE,GENERAL MILLS,FIBER ONE,NUTTY CLUSTERS & ALMONDS",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,7.9,6.8,79.5,348,22.1,18.2,182,8.19,58,182,385,378,6.8,,0,0,10.9,0.69,0.8,9.1,0.9,2.7,,,0
8669,800,"Cereals ready-to-eat, GENERAL MILLS, FIBER ONE 80 Calories, Chocolate Squares","CEREALS RTE,GENERAL MILLS,FIBER ONE 80 CAL,CHOC SQUARES",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,3.29,2.9,84,253,17.29,35.2,1333,15,53,267,351,400,12.5,,1667,133,20,1.29,1.39,16.7,1.66,5,,,0
8670,800,"Cereals ready-to-eat, GENERAL MILLS, HONEY NUT CHEERIOS, MEDLEY CRUNCH","CEREALS RTE,GENERAL MILLS,HONEY NUT CHEERIOS,MEDLEY CRUNCH",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,9.1,5.4,79.5,387,29.1,7.5,323,14.5,103,258,345,385,12.1,,1613,129,19.4,1.2,1.39,16.1,1.61,4.8,,,0
8671,800,"Cereals ready-to-eat, GENERAL MILLS, Dulce De Leche CHEERIOS","CEREALS RTE,GENERAL MILLS,DULCE DE LECHE CHEERIOS",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,6.5,5.69,82,378,20.89,7.3,370,33.29,59,222,272,509,13.89,,1852,148,55.6,1.39,1.6,18.5,1.85,5.59,,,0
8672,800,"Cereals ready-to-eat, MALT-O-MEAL, CHOCOLATE MARSHMALLOW MATEYS","CEREALS RTE,MALT-O-MEAL,CHOC MARSHMLLW MATEYS",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,3.5,3.67,88.18,392,55.45,2.5,267,24,30,85,183,368,10,,1333,133,16,1,1.12,13.32,1.33,4,0,514,0
8673,800,"Cereals, ready-to-eat, MALT-O-MEAL, Blueberry Mini SPOONERS","CEREALS,RTE,MALT-O-MEAL,BLUEBERRY MINI SPOONERS",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,8.81,1.92,79.4,350,18.44,10.3,33,29.45,73,331,327,2,6.81,,0,0,0,1.1,0.99,14.06,1.33,3.05,0,,0
8674,800,"Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey","CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,6.78,4.17,84.94,396,21.62,5,23,27,27,133,200,515,12.5,,1667,133,20,1.25,1.41,16.67,1.66,5,0.4,648,0
8675,800,"Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey & almonds","CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY & ALMONDS",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,7.8,4.88,77.26,379,20.26,6.1,33,41.38,61,204,240,453,17.87,,1876,144,29.6,2.09,1.99,23.51,2.69,7.55,0,648,0
8676,800,"Cereals ready-to-eat, MALT-O-MEAL, Honey Nut SCOOTERS","CEREALS RTE,MALT-O-MEAL,HONEY NUT SCOOTERS",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,8.59,4.51,79.62,387,29.97,6.3,333,30,92,318,241,695,12.5,,1667,133,20,1.25,1.41,16.67,1.66,5,0,648,0
8677,800,"Cereals ready-to-eat, KELLOGG'S FROSTED MINI-WHEATS Touch of Fruit in the Middle, Raspberry","CEREALS RTE,KELLOGG'S FRSTD MINI-WHEATS TOUCH FRUIT MDL,RASP",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,8.8,1.8,82.1,342,17.8,10.6,33,29.5,83,359,352,17,2.7,,6,,0,0.68,0.77,9.1,0.91,2.7,,,0
8678,800,"Cereals ready-to-eat, GENERAL MILLS, Apple Cinnamon CHEX","CEREALS RTE,GENERAL MILLS,APPL CINN CHEX",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,4.69,6.45,82.8,408,26,2,323,29,26,129,162,614,12.1,,1613,129,19.4,1.2,1.39,16.1,1.61,4.8,,,0
8679,800,"Cereals ready-to-eat, GENERAL MILLS, FROSTED TOAST CRUNCH","CEREALS RTE,GENERAL MILLS,FRSTD TOAST CRUNCH",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,5.19,10.1,78.59,410,29.2,4.9,333,15,27,133,169,565,12.5,,1667,133,20,1.29,1.39,16.7,1.66,5,,,0
8680,800,"Cereals, oats, instant, fortified, maple and brown sugar, dry","CEREALS,OATS,INST,FORT,MAPLE & BROWN SUGAR,DRY",,,Y,,0,,,,,,Breakfast Cereals,9.25,4.73,76.67,368,30.28,7.2,258,10.36,90,305,361,505,1.72,16.8,2310,0,0,1.069,1.002,11.739,1.464,0,1.4,132,0
8681,800,"Cereals ready-to-eat, CASCADIAN FARM, Cinnamon Crunch","CEREALS RTE,CASCADIAN FARM,CINN CRUNCH",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,5.69,8.5,81.59,407,31,11,0,2.7,0,148,237,380,0,,0,0,0,0.1,0,1.5,0,0,,,0
8682,800,"Cereals ready-to-eat, GENERAL MILLS, Multi Grain CHEERIOS, Peanut Butter","CEREALS RTE,GENERAL MILLS,MULTI GRAIN CHEERIOS,PNUT BUTTER",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,6.8,6.19,82,390,32.5,6,357,28.89,57,214,297,447,13.39,,1786,143,21.4,1.29,1.5,17.89,1.78,5.4,,,0
8683,800,"Cereals ready-to-eat, CASCADIAN FARM, Multi-Grain Squares","CEREALS RTE,CASCADIAN FARM,MULTI-GRAIN SQUARES",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,9.39,1.89,83,387,13.19,7.5,0,2.7,0,0,359,359,0,,0,0,0,0,0,0,0,0,,,0
8684,800,"Cereals ready-to-eat, CASCADIAN FARM, Honey Nut O's","CEREALS RTE,CASCADIAN FARM,HONEY NUT O'S",,General Mills Inc.,,,0,,6.25,,,,Breakfast Cereals,8.3,3.29,83.09,371,24.79,8.5,67,2.4,53,200,250,572,1,,0,0,0,0.2,0,1.29,0,0,,,0
8685,800,"Cereals ready-to-eat, QUAKER WHOLE HEARTS oat cereal","CEREALS RTE,QUAKER WHL HEARTS OAT CRL",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,7.63,5.61,80.1,376,21.53,9.1,0,32.11,77,322,568,554,11.89,,3964,,71.3,2.378,1.348,15.855,1.586,4.75,,,0
8686,800,"Cereals, QUAKER, Weight Control Instant Oatmeal, maple and brown sugar","CEREALS,QUAKER,WT CONTROL INST OATMEAL,MAPLE & BROWN SUGAR",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,16.37,6.2,64.25,361,1.25,13,268,10.13,116,392,330,642,2.6,,2429,,0.1,1.018,0.935,10.446,1.056,0,,,1
8687,800,"Cereals, QUAKER, Weight Control Instant Oatmeal, banana bread","CEREALS,QUAKER,WEIGHT CONTROL INST OATMEAL,BANANA BREAD",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,16.5,6.16,64.42,361,1.29,12.6,243,8.78,117,396,327,619,2.6,,2544,,0.1,0.735,0.865,10.177,1.018,0,,,1
8688,800,"Cereals, QUAKER, Instant Oatmeal, Cinnamon Swirl, high fiber","CEREALS,QUAKER,INST OATMEAL,CINN SWIRL,HI FIBER",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,8.79,4.8,75.67,366,14.7,22.3,278,9.41,91,306,256,473,2.04,,3112,,0.2,0.762,1.058,12.448,1.241,0,,,0
8689,800,"Cereals, QUAKER, oatmeal, REAL MEDLEYS, blueberry hazelnut, dry","CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,BLUEBERRY HAZELNUT,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,9.81,9.8,69.47,386,18.71,7.7,64,3.08,98,287,317,337,2.15,,20,,2.8,0.352,0.115,1.557,0.127,0,,,1
8690,800,"Cereals, QUAKER, oatmeal, REAL MEDLEYS, apple walnut, dry","CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,APPL WALNUT,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,8.18,10.36,70.53,390,29.36,7,57,2.77,86,239,344,356,1.83,,20,,0.9,0.269,0.09,1.089,0.148,0,,,0
8691,800,"Cereals, QUAKER, oatmeal, REAL MEDLEYS, summer berry, dry","CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,SMMR BERRY,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,11.31,4.4,72.58,353,20.43,8.5,124,3.13,113,358,445,354,2.56,,19,,9.4,0.378,0.215,1.687,0.158,0.2,,,1
8692,800,"Cereals, QUAKER, oatmeal, REAL MEDLEYS, peach almond, dry","CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,PEACH ALMOND,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,10.1,9.84,68.61,387,24.85,7.4,105,2.8,115,302,560,201,2.18,,108,,16.1,0.293,0.188,1.87,0.121,0,,,0
8693,800,"Cereals, QUAKER, oatmeal, REAL MEDLEYS, cherry pistachio, dry","CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,CHERRY PISTACHIO,DRY",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,12.02,11.02,66.73,394,26.34,7.1,132,2.99,103,333,501,181,2.14,,45,,0.7,0.334,0.25,1.33,0.231,0.21,,,1
8694,800,"Cereals, QUAKER, Instant Oatmeal, weight control, cinnamon","CEREALS,QUAKER,INST OATMEAL,WEIGHT CONTROL,CINN",,"The Quaker Oats, Co.",,,0,,6.25,,,,Breakfast Cereals,16.5,6.28,64.21,361,1.27,13,245,8.84,119,402,334,618,2.65,,2558,,0.1,0.741,0.87,10.871,1.025,0,,,1
8695,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S FROSTED MINI-WHEATS, little bites","CEREALS RTE,KELLOGG,KELLOGG'S FRSTD MINI-WHEATS,LITTLE BITES",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,9.19,1.7,83.4,351,20.2,10.8,30,28.89,77,343,371,2,2.7,,0,,0,0.67,0.75,8.89,0.88,2.7,,338,0
8696,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S RAISIN BRAN, Cinnamon Almond","CEREALS RTE,KELLOGG,KELLOGG'S RAISIN BRAN,CINN ALMOND",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.4,2.9,81.19,347,31.29,9.2,47,7.8,106,252,449,373,2.7,,909,73,2,0.64,0.73,8.6,0.86,3,,,0
8697,800,"Cereals ready-to-eat, KASHI ORGANIC PROMISE, RAISIN VINEYARD","CEREALS RTE,KASHI ORGANIC PROMISE,RAISIN VINEYARD",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,8.69,0.8,79.9,342,23.39,5,24,2.09,50,119,294,279,0.89,,6,,1,0.23,0.05,3,0.15,,,,0
8699,800,"Cereals ready-to-eat, KELLOGG'S KRAVE Smores","CEREALS RTE,KELLOGG'S KRAVE SMORES",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.3,10.89,76.4,401,31.7,9.4,57,14.5,32,97,245,342,5,,3333,133,48,1.21,1.37,16.1,1.61,5,,,0
8700,800,"Cereals ready-to-eat, KELLOGG RAISIN BRAN with Omega-3 from flaxseed","CEREALS RTE,KELLOGG RAISIN BRAN W/ OMEGA-3 FROM FLAXSEED",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.3,2.5,82.69,349,31.29,9.6,39,8.5,96,235,262,355,2.79,,943,75,2,0.7,0.8,9.39,0.93,3,,,0
8701,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S SPECIAL K Multi-grain","CEREALS RTE,KELLOGG,KELLOGG'S SPL K MULTI-GRAIN",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.59,1.29,86.59,364,20.7,9.6,36,29,63,200,250,606,1.7,,2419,129,68,1.69,1.91,22.6,2.25,7,,,0
8702,800,"Cereals, KELLOGG'S SPECIAL K NOURISH, Cinnamon Raisin Pecan, dry","CEREALS,KELLOGG'S SPL K NOURISH,CINN RAISIN PECAN,DRY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,14.1,10.39,61.9,370,23.79,9.2,385,10.39,115,431,326,295,1.89,,962,187,23,0.57,0.64,7.69,0.76,2,,,0
8703,800,"Cereals, KELLOGG'S SPECIAL K NOURISH, Cranberry Almond, dry","CEREALS,KELLOGG'S SPL K NOURISH,CRANBERRY ALMOND,DRY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,15,8.39,63.29,361,22.39,9.3,385,10.39,115,467,271,284,1.7,,962,154,23,0.57,0.64,7.69,0.76,1,,,0
8704,800,"Cereals, KELLOGG'S SPECIAL K NOURISH, Maple Brown Sugar Crunch, dry","CEREALS,KELLOGG'S SPL K NOURISH,MAPLE BROWN SUGAR CRUNCH,DRY",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,15.39,9.89,62.09,371,22,9.3,385,10.39,115,457,320,266,1.79,,962,154,23,0.57,0.64,7.69,0.76,1,,,0
8705,800,"Cereals ready-to-eat, KASHI GOLEAN Vanilla Graham Clusters","CEREALS RTE,KASHI GOLEAN VANILLA GRAHAM CLUSTERS",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,21.5,2.59,70.09,330,17.79,17.3,105,5.3,76,226,695,166,1.39,,97,,0,0.18,0.09,0.89,0.1,,,,0
8706,800,"Cereals ready-to-eat, KELLOGG SCOOBY-DOO! cereal","CEREALS RTE,KELLOGG SCOOBY-DOO! CRL",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,8.6,4.09,84,376,18.5,9.8,22,28.1,84,193,289,344,5,,1667,133,47,1.16,1.33,15.6,1.55,5,,,0
8707,800,"Cereals ready-to-eat, KELLOGG'S SPECIAL K Chocolate Almond","CEREALS RTE,KELLOGG'S SPL K CHOC ALMOND",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,7.59,5.09,81.5,375,27.5,10.3,105,25.7,74,196,312,545,4,,2679,215,75,1.87,2.13,25,2.5,7,,,0
8708,800,"Cereals ready-to-eat, KELLOGG's FROSTED MINI-WHEATS Touch of Fruit in the Middle, raisin","CEREALS RTE,KELLOGG'S FRSTD MINI-WHTS TCH FRT IN MDLE,RASN",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,9.1,1.6,82.1,343,17.2,10.8,32,29.5,86,364,433,3,2.7,,5,,0,0.68,0.76,9.1,0.91,3,,,0
8709,800,"Cereals ready-to-eat, MOM'S BEST, Sweetened WHEAT-FULS","CEREALS RTE,MOM'S BEST,SWTND WHEAT-FULS",,MOM Brands,,,0,,6.25,,,,Breakfast Cereals,8.18,1.83,80.91,373,20.29,10,36,3.26,73,273,336,14,2.77,,0,0,0,0.21,0.11,5.44,0.28,0.21,1.5,,0
8710,800,"Cereals ready-to-eat, KELLOGG'S, SPECIAL K gluten free, touch of brown sugar","CEREALS RTE,KELLOGG'S,SPL K GLUTEN FREE,TOUCH OF BROWN SUGAR",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,6.09,2.5,86.5,369,19.1,9.3,163,18.39,109,248,212,376,1.39,,1531,82,37,1.07,0.68,14.3,1.42,4.3,,,0
8711,800,"Cereals ready-to-eat, KELLOGG'S, SPECIAL K protein, cinnamon brown sugar crunch","CEREALS RTE,KELLOGG'S,SPL K PROT,CINN BROWN SUGAR CRUNCH",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,22.29,2.59,69.8,356,30.29,9.5,205,26.1,57,287,186,611,1.79,,2419,134,68,1.69,1.91,22.6,2.25,6.8,,,0
8712,800,"Cereals ready-to-eat, KELLOGG, KELLOGG'S RAISIN BRAN with cranberries","CEREALS RTE,KELLOGG,KELLOGG'S RAISIN BRAN W/ CRANBERRIES",,"Kellogg, Co.",,,0,,6.25,,,,Breakfast Cereals,6.9,1.5,84.19,344,30.29,9.2,39,7.59,106,259,350,361,2.5,,2119,68,0,0.63,0.72,8.5,0.85,2.5,,,0
9001,900,"Acerola, (west indian cherry), raw","ACEROLA,(WEST INDIAN CHERRY),RAW",,,,"18% seed, 2% stem end",20,Malpighia emarginata,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.4,0.3,7.69,32,,1.1,12,0.2,18,11,146,7,0.1,0.6,767,,1677.6,0.02,0.06,0.4,0.009,0,,0,0
9002,900,"Acerola juice, raw","ACEROLA JUICE,RAW",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.4,0.3,4.8,23,4.5,0.3,10,0.5,12,9,97,3,0.1,0.1,509,,1600,0.02,0.06,0.4,0.004,0,1.4,0,0
9003,900,"Apples, raw, with skin","APPLES,RAW,WITH SKIN",Includes USDA commodity food A343,,Y,Core and stem,10,Malus domestica,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.26,0.17,13.81,52,10.39,2.4,6,0.12,5,11,107,1,0.04,0,54,0,4.6,0.017,0.026,0.091,0.041,0,2.2,0,0
9004,900,"Apples, raw, without skin","APPLES,RAW,WITHOUT SKIN",,,Y,"10% core and stem, 13% skin",23,Malus domestica,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.27,0.13,12.76,48,10.1,1.3,5,0.07,4,11,90,0,0.05,0,38,0,4,0.019,0.028,0.091,0.037,0,0.6,0,0
9005,900,"Apples, raw, without skin, cooked, boiled","APPLES,RAW,WO/SKN,CKD,BLD",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.26,0.36,13.64,53,11.01,2.4,5,0.19,3,8,88,1,0.04,0.3,44,0,0.2,0.016,0.012,0.095,0.044,0,0.6,0,0
9006,900,"Apples, raw, without skin, cooked, microwave","APPLES,RAW,WO/ SKN,CKD,MICROWAVE",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.28,0.42,14.41,56,11.61,2.8,5,0.17,3,8,93,1,0.04,0.3,40,0,0.3,0.017,0.011,0.061,0.046,0,0.7,0,0
9007,900,"Apples, canned, sweetened, sliced, drained, unheated","APPLES,CND,SWTND,SLICED,DRND,UNHTD",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.18,0.49,16.7,67,15,1.7,4,0.23,2,5,68,3,0.03,0.3,51,0,0.4,0.009,0.01,0.073,0.044,0,0.6,0,0
9008,900,"Apples, canned, sweetened, sliced, drained, heated","APPLES,CND,SWTND,SLICED,DRND,HTD",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.18,0.43,16.84,67,14.84,2,4,0.24,3,6,70,3,0.05,0.3,56,0,0.2,0.009,0.01,0.081,0.044,0,0.6,0,0
9009,900,"Apples, dehydrated (low moisture), sulfured, uncooked","APPLES,DEHYD (LO MOIST),SULFURED,UNCKD",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.32,0.58,93.53,346,81.13,12.4,19,2,22,55,640,124,0.29,1.8,81,0,2.2,0.046,0.13,0.68,0.28,0,4.3,0,0
9010,900,"Apples, dehydrated (low moisture), sulfured, stewed","APPLES,DEHYD (LO MOIST),SULFURED,STWD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.28,0.12,19.91,74,,2.6,4,0.43,5,12,136,26,0.06,0.4,19,0,0.6,0.008,0.029,0.14,0.054,0,,0,0
9011,900,"Apples, dried, sulfured, uncooked","APPLES,DRIED,SULFURED,UNCKD",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.93,0.32,65.89,243,57.19,8.7,14,1.4,16,38,450,87,0.2,1.3,0,0,3.9,0,0.159,0.927,0.125,0,3,0,0
9012,900,"Apples, dried, sulfured, stewed, without added sugar","APPLES,DRIED,SULFURED,STWD,WO/ SUGAR",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.22,0.07,15.32,57,13.32,2,3,0.33,4,9,105,20,0.05,0.3,17,0,1,0.006,0.019,0.129,0.05,0,0.7,0,0
9013,900,"Apples, dried, sulfured, stewed, with added sugar","APPLES,DRIED,SULFURED,STWD,W/ SUGAR",,,,,0,,6.25,,,,Fruits and Fruit Juices,0.2,0.07,20.73,83,,1.9,3,0.31,3,8,98,19,0.04,,16,0,0.9,0.006,0.018,0.121,0.047,0,,0,0
9014,900,"Apples, frozen, unsweetened, unheated","APPLES,FRZ,UNSWTND,UNHTD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.28,0.32,12.31,48,10.1,1.3,4,0.18,3,8,77,3,0.05,0.2,34,0,0.1,0.013,0.011,0.042,0.034,0,,0,0
9015,900,"Apples, frozen, unsweetened, heated","APPLES,FRZ,UNSWTND,HTD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.29,0.33,12,47,,1.3,5,0.19,3,8,76,3,0.05,0.2,20,0,0.4,0.014,0.011,0.043,0.032,0,,0,0
9016,900,"Apple juice, canned or bottled, unsweetened, without added ascorbic acid","APPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.1,0.13,11.3,46,9.62,0.2,8,0.12,5,7,101,4,0.02,0.1,1,0,0.9,0.021,0.017,0.073,0.018,0,0,0,0
9017,900,"Apple juice, frozen concentrate, unsweetened, undiluted, without added ascorbic acid","APPLE JUC,FRZ CONC,UNSWTND,UNDIL,WO/ VIT C",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.51,0.37,41,166,38.83,0.4,20,0.91,17,25,448,25,0.13,0.4,0,0,2.1,0.011,0.054,0.135,0.116,0,0,0,0
9018,900,"Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water without added ascorbic acid","APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O WO/ VIT C",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.14,0.1,11.54,47,10.93,0.1,6,0.26,5,7,126,7,0.04,0.1,0,0,0.6,0.003,0.015,0.038,0.033,0,0,0,0
9019,900,"Applesauce, canned, unsweetened, without added ascorbic acid (includes USDA commodity)","APPLESAUCE,CND,UNSWTND,WO/ADDED VIT C (INCLUDES USDA COMMOD)","Includes USDA commodity codes A350, A351",,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.17,0.1,11.27,42,9.39,1.1,4,0.23,3,5,74,2,0.03,0.3,29,0,1,0.026,0.03,0.084,0.027,0,0.5,0,0
9020,900,"Applesauce, canned, sweetened, without salt (includes USDA commodity)","APPLESAUCE,CND,SWTND,WO/ SALT (INCLUDES USDA COMMODITY)",Includes USDA commodity code A350,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.16,0.17,17.49,68,14.67,1.2,3,0.12,3,6,75,2,0.03,0.3,6,0,1.7,0.017,0.022,0.072,0.027,0,0.6,0,0
9021,900,"Apricots, raw","APRICOTS,RAW",Includes USDA commodity food A386,,Y,Pits,7,Prunus armeniaca,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.4,0.39,11.12,48,9.24,2,13,0.39,10,23,259,1,0.2,0.1,1926,0,10,0.03,0.04,0.6,0.054,0,3.3,0,0
9022,900,"Apricots, canned, water pack, with skin, solids and liquids","APRICOTS,CND,H2O PK,W/SKN,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.71,0.16,6.39,27,4.79,1.6,8,0.32,7,13,192,3,0.11,0.1,1959,0,3.4,0.021,0.023,0.395,0.054,0,2.2,0,0
9023,900,"Apricots, canned, water pack, without skin, solids and liquids","APRICOTS,CND,H2O PK,WO/SKN,SOL&LIQUIDS",,,,Pits,6,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.69,0.03,5.48,22,,1.1,8,0.54,9,16,154,11,0.11,,1810,0,1.8,0.02,0.024,0.437,0.054,0,,0,0
9024,900,"Apricots, canned, juice pack, with skin, solids and liquids","APRICOTS,CND,JUC PK,W/SKN,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.63,0.04,12.34,48,10.74,1.6,12,0.3,10,20,165,4,0.11,0.1,1691,0,4.9,0.018,0.019,0.344,0.054,0,2.2,0,0
9025,900,"Apricots, canned, extra light syrup pack, with skin, solids and liquids","APRICOTS,CND,EX LT SYRUP PK,W/SKN,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.69,Fruits and Fruit Juices,0.6,0.1,12.5,49,,1.6,10,0.3,6,12,140,2,0.08,,1271,0,4,0.02,0.02,0.6,0.054,0,,0,0
9026,900,"Apricots, canned, light syrup pack, with skin, solids and liquids","APRICOTS,CND,LT SYRUP PK,W/SKN,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.53,0.05,16.49,63,14.89,1.6,11,0.39,8,13,138,4,0.11,0.1,1322,0,2.7,0.016,0.02,0.304,0.054,0,2.2,0,0
9027,900,"Apricots, canned, heavy syrup pack, with skin, solids and liquids","APRICOTS,CND,HVY SYRUP PK,W/SKN,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.53,0.08,21.47,83,19.87,1.6,9,0.3,7,12,140,4,0.11,0.1,1230,0,3.1,0.02,0.022,0.376,0.054,0,2.2,0,0
9028,900,"Apricots, canned, heavy syrup pack, without skin, solids and liquids","APRICOTS,CND,HVY SYRUP PK,WO/SKN,SOL&LIQUIDS",,,,Pits,6,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.51,0.09,21.45,83,,1.6,9,0.43,8,13,134,11,0.1,,1240,0,2.8,0.019,0.023,0.416,0.054,0,,0,0
9029,900,"Apricots, canned, extra heavy syrup pack, without skin, solids and liquids","APRICOTS,CND,EX HVY SYRUP PK,WO/SKN,SOL&LIQUIDS",,,,Pits,6,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.55,0.04,24.85,96,,1.6,8,0.62,8,15,126,13,0.1,,1471,0,2.4,0.016,0.022,0.34,0.054,0,,0,0
9030,900,"Apricots, dehydrated (low-moisture), sulfured, uncooked","APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,UNCKD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,4.9,0.62,82.89,320,,,61,6.31,63,157,1850,13,1,,12669,0,9.5,0.043,0.148,3.58,0.52,0,,0,0
9031,900,"Apricots, dehydrated (low-moisture), sulfured, stewed","APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,STWD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.93,0.24,32.62,126,,,24,2.48,25,62,728,5,0.39,,4407,0,7.1,0.013,0.067,1.63,0.161,0,,0,0
9032,900,"Apricots, dried, sulfured, uncooked","APRICOTS,DRIED,SULFURED,UNCKD",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,3.39,0.51,62.64,241,53.44,7.3,55,2.66,32,71,1162,10,0.39,2.2,3604,0,1,0.015,0.074,2.589,0.143,0,3.1,0,0
9033,900,"Apricots, dried, sulfured, stewed, without added sugar","APRICOTS,DRIED,SULFURED,STWD,WO/ SUGAR",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.2,0.18,22.15,85,19.57,2.6,19,0.94,11,25,411,4,0.14,0.8,1275,0,0.3,0.005,0.026,0.915,0.051,0,1.1,0,0
9034,900,"Apricots, dried, sulfured, stewed, with added sugar","APRICOTS,DRIED,SULFURED,STWD,W/ SUGAR",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.17,0.15,29.26,113,,4.1,15,1.52,15,38,443,3,0.24,,2139,0,1.4,0.005,0.027,0.853,0.103,0,,0,0
9035,900,"Apricots, frozen, sweetened","APRICOTS,FROZEN,SWEETENED",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.7,0.1,25.1,98,,2.2,10,0.9,9,19,229,4,0.1,0.4,1680,0,9,0.02,0.04,0.8,0.06,0,,0,0
9036,900,"Apricot nectar, canned, without added ascorbic acid","APRICOT NECTAR,CND,WO/ VIT C",,,Y,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.37,0.09,14.39,56,13.79,0.6,7,0.38,5,9,114,3,0.09,0,1316,0,0.6,0.009,0.014,0.26,0.022,0,1.2,0,0
9037,900,"Avocados, raw, all commercial varieties","AVOCADOS,RAW,ALL COMM VAR",,,Y,Seed and skin,26,Persea americana,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2,14.66,8.53,160,0.66,6.7,12,0.55,29,52,485,7,0.64,0.4,146,0,10,0.067,0.13,1.738,0.257,0,21,0,0
9038,900,"Avocados, raw, California","AVOCADOS,RAW,CALIFORNIA",,,,Seed and skin,33,Persea americana,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.96,15.41,8.64,167,0.3,6.8,13,0.61,29,54,507,8,0.68,0.4,147,0,8.8,0.075,0.143,1.912,0.287,0,21,0,0
9039,900,"Avocados, raw, Florida","AVOCADOS,RAW,FLORIDA",,,,Seed and skin,33,Persea americana,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.23,10.06,7.82,120,2.42,5.6,10,0.17,24,40,351,2,0.4,,140,0,17.4,0.021,0.053,0.672,0.078,0,,0,0
9040,900,"Bananas, raw","BANANAS,RAW",,,Y,Skin,36,Musa acuminata Colla,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.09,0.33,22.84,89,12.23,2.6,5,0.26,27,22,358,1,0.15,1,64,0,8.7,0.031,0.073,0.665,0.367,0,0.5,0,0
9041,900,"Bananas, dehydrated, or banana powder","BANANAS,DEHYD,OR BANANA PDR",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,3.89,1.81,88.28,346,47.3,9.9,22,1.15,108,74,1491,3,0.61,3.9,248,0,7,0.18,0.24,2.8,0.44,0,2,0,0
9042,900,"Blackberries, raw","BLACKBERRIES,RAW",,,Y,Caps and spoiled berries,4,Rubus spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.39,0.49,9.61,43,4.88,5.3,29,0.62,20,22,162,1,0.53,0.4,214,0,21,0.02,0.026,0.646,0.03,0,19.8,0,0
9043,900,"Blackberry juice, canned","BLACKBERRY JUC,CND",,,Y,,0,,,,,,Fruits and Fruit Juices,0.3,0.6,7.8,38,7.7,0.1,12,0.48,21,12,135,1,0.41,0.3,123,0,11.3,0.012,0.018,0.446,0.021,0,15.2,0,0
9044,900,"Cherries, tart, dried, sweetened","CHERRIES,TART,DRIED,SWTND",,,Y,,0,,,,,,Fruits and Fruit Juices,1.25,0.73,80.45,333,67.15,2.5,38,0.68,22,36,376,13,0.25,0.4,2829,0,19.3,0.058,0.101,0.867,0.101,0,5.1,0,0
9046,900,"Blackberries, canned, heavy syrup, solids and liquids","BLACKBERRIES,CND,HVY SYRUP,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,1.31,0.14,23.1,92,19.7,3.4,21,0.65,17,14,99,3,0.18,0.3,219,0,2.8,0.027,0.039,0.287,0.036,0,13.3,0,0
9048,900,"Blackberries, frozen, unsweetened","BLACKBERRIES,FRZ,UNSWTND",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.18,0.43,15.67,64,10.67,5,29,0.8,22,30,140,1,0.25,0.4,114,0,3.1,0.029,0.046,1.207,0.061,0,19.8,0,0
9050,900,"Blueberries, raw","BLUEBERRIES,RAW",,,Y,Stems and green or spoiled berries,5,Vaccinium spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.74,0.33,14.49,57,9.96,2.4,6,0.28,6,12,77,1,0.16,0.1,54,0,9.7,0.037,0.041,0.418,0.052,0,19.3,0,0
9052,900,"Blueberries, canned, heavy syrup, solids and liquids","BLUEBERRIES,CND,HVY SYRUP,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.65,0.33,22.06,88,20.46,1.6,5,0.33,4,10,40,3,0.07,0.1,36,0,1.1,0.034,0.053,0.113,0.036,0,6.4,0,0
9053,900,"Blueberries, wild, frozen","BLUEBERRIES,WILD,FRZ",,,,,0,,6.25,,,,Fruits and Fruit Juices,0,0.16,13.85,57,,4.4,17,0.58,7,13,68,3,0.67,,59,0,1.7,0.03,0.007,0.61,0.02,0,,,0
9054,900,"Blueberries, frozen, unsweetened","BLUEBERRIES,FRZ,UNSWTND",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.42,0.64,12.17,51,8.45,2.7,8,0.18,5,11,54,1,0.07,0.1,46,0,2.5,0.032,0.037,0.52,0.059,0,16.4,0,0
9055,900,"Blueberries, frozen, sweetened","BLUEBERRIES,FRZ,SWTND",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.4,0.13,21.95,85,19.72,2.2,6,0.39,2,7,60,1,0.06,0.2,49,0,1,0.02,0.052,0.253,0.059,0,17.7,0,0
9056,900,"Boysenberries, canned, heavy syrup","BOYSENBERRIES,CND,HVY SYRUP",,,,,0,Rubus ursinus var. loganobaccus,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.99,0.12,22.31,88,,2.6,18,0.43,11,10,90,3,0.19,0.4,40,0,6.2,0.026,0.029,0.23,0.038,0,,0,0
9057,900,"Boysenberries, frozen, unsweetened","BOYSENBERRIES,FRZ,UNSWTND",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.1,0.26,12.19,50,6.89,5.3,27,0.85,16,27,139,1,0.22,0.2,67,0,3.1,0.053,0.037,0.767,0.056,0,7.8,0,0
9059,900,"Breadfruit, raw","BREADFRUIT,RAW",,,Y,"9% core, 13% skin",22,Artocarpus altilis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.07,0.23,27.12,103,11,4.9,17,0.54,25,30,490,2,0.12,0.6,0,0,29,0.11,0.03,0.9,0.1,0,0.5,0,0
9060,900,"Carambola, (starfruit), raw","CARAMBOLA,(STARFRUIT),RAW",,,Y,Seeds and stem end,3,Averrhoa carambola,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.04,0.33,6.73,31,3.98,2.8,3,0.08,10,12,133,2,0.12,0.6,61,0,34.4,0.014,0.016,0.367,0.017,0,0,0,0
9061,900,"Carissa, (natal-plum), raw","CARISSA,(NATAL-PLUM),RAW",,,,"7% seeds, 7% skin",14,Carissa macrocarpa,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.5,1.3,13.63,62,,,11,1.31,16,7,260,3,,,40,,38,0.04,0.06,0.2,,0,,,0
9062,900,"Cherimoya, raw","CHERIMOYA,RAW",,,,"Seeds, skin and core",31,Annona cherimola,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.57,0.68,17.71,75,12.87,3,10,0.27,17,26,287,7,0.16,,5,,12.6,0.101,0.131,0.644,0.257,0,,0,0
9063,900,"Cherries, sour, red, raw","CHERRIES,SOUR,RED,RAW",,,Y,Pits and stems,10,Prunus cerasus,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1,0.3,12.18,50,8.49,1.6,16,0.32,9,15,173,3,0.1,0,1283,0,10,0.03,0.04,0.4,0.044,0,2.1,0,0
9064,900,"Cherries, sour, red, canned, water pack, solids and liquids (includes USDA commodity red tart cherries, canned)","CHERRIES,SOUR,RED,CND,H2O PK,SOL&LIQUIDS (INCL USDA CMDTY)",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.77,0.1,8.94,36,7.6,1.1,11,1.37,6,10,98,7,0.07,0,754,0,2.1,0.017,0.041,0.177,0.044,0,1.4,0,0
9065,900,"Cherries, sour, red, canned, light syrup pack, solids and liquids","CHERRIES,SOUR,RED,CND,LT SYRUP PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.74,0.1,19.3,75,,0.8,10,1.32,6,10,95,7,0.07,,726,0,2,0.016,0.039,0.17,0.044,0,,0,0
9066,900,"Cherries, sour, red, canned, heavy syrup pack, solids and liquids","CHERRIES,SOUR,RED,CND,HVY SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.73,0.1,23.27,91,22.17,1.1,10,1.3,6,10,93,7,0.06,0,714,0,2,0.016,0.039,0.168,0.044,0,1.4,0,0
9067,900,"Cherries, sour, red, canned, extra heavy syrup pack, solids and liquids","CHERRIES,SOUR,RED,CND,EX HVY SYRUP PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.71,0.09,29.23,114,,0.8,10,1.26,5,9,91,7,0.06,,696,0,1.9,0.016,0.038,0.163,0.044,0,,0,0
9068,900,"Cherries, sour, red, frozen, unsweetened","CHERRIES,SOUR,RED,FRZ,UNSWTND",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.92,0.44,11.02,46,9.02,1.6,13,0.53,9,16,124,1,0.1,0,870,0,1.7,0.044,0.034,0.137,0.067,0,1.5,0,0
9070,900,"Cherries, sweet, raw","CHERRIES,SWEET,RAW",,,Y,Pits and stems,8,Prunus avium,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.06,0.2,16.01,63,12.82,2.1,13,0.36,11,21,222,0,0.07,0,64,0,7,0.027,0.033,0.154,0.049,0,2.1,0,0
9071,900,"Cherries, sweet, canned, water pack, solids and liquids","CHERRIES,SWT,CND,H2O PK,SOL&LIQUIDS",,,Y,Pits,8,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.77,0.13,11.76,46,10.26,1.5,11,0.36,9,15,131,1,0.08,0,160,0,2.2,0.022,0.041,0.41,0.03,0,1.4,0,0
9072,900,"Cherries, sweet, canned, juice pack, solids and liquids","CHERRIES,SWT,CND,JUC PK,SOL&LIQUIDS",,,Y,Pits,8,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.91,0.02,13.81,54,12.31,1.5,14,0.58,12,22,131,3,0.1,0,125,0,2.5,0.018,0.024,0.406,0.03,0,1.4,0,0
9073,900,"Cherries, sweet, canned, light syrup pack, solids and liquids","CHERRIES,SWT,CND,LT SYRUP PK,SOL&LIQUIDS",,,Y,Pits,8,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.61,0.15,17.29,67,15.79,1.5,9,0.36,9,18,148,3,0.1,0,157,0,3.7,0.021,0.041,0.403,0.03,0,1.4,0,0
9074,900,"Cherries, sweet, canned, pitted, heavy syrup pack, solids and liquids","CHERRIES,SWT,CND,PITTED,HVY SYRUP PK,SOL & LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.6,0.15,21.27,83,16.18,1.4,9,0.35,9,18,145,3,0.1,0,154,0,3.6,0.021,0.04,0.396,0.022,0,0.9,0,0
9075,900,"Cherries, sweet, canned, extra heavy syrup pack, solids and liquids","CHERRIES,SWT,CND,EX HVY SYRUP PK,SOL&LIQUIDS",,,,Pits,8,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.59,0.15,26.23,102,,1.5,9,0.35,8,17,142,3,0.1,,151,0,3.6,0.021,0.039,0.388,0.03,0,,0,0
9076,900,"Cherries, sweet, frozen, sweetened","CHERRIES,SWT,FRZ,SWTND",,,Y,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,1.15,0.13,22.36,89,20.26,2.1,12,0.35,10,16,199,1,0.04,0,189,0,1,0.027,0.047,0.177,0.036,0,2.1,0,0
9077,900,"Crabapples, raw","CRABAPPLES,RAW",,,,Core and stems,8,Malus spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.4,0.3,19.95,76,,,18,0.36,7,15,194,1,,,40,,8,0.03,0.02,0.1,,0,,,0
9078,900,"Cranberries, raw","CRANBERRIES,RAW",,,Y,Stems and spoiled berries,2,Vaccinium macrocarpon,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.46,0.13,11.97,46,4.27,3.6,8,0.23,6,11,80,2,0.09,0.1,63,0,14,0.012,0.02,0.101,0.057,0,5,0,0
9079,900,"Cranberries, dried, sweetened","CRANBERRIES,DRIED,SWTND",,,Y,,0,,,3.36,8.37,3.6,Fruits and Fruit Juices,0.17,1.09,82.8,308,72.56,5.3,9,0.39,4,8,49,5,0.1,0.6,46,0,0.2,0.013,0.028,0.548,0.038,0,7.6,0,0
9081,900,"Cranberry sauce, canned, sweetened","CRANBERRY SAU,CND,SWTND",,,Y,,0,,6.25,3.36,8.37,3.84,Fruits and Fruit Juices,0.9,0.15,40.4,159,31.75,1.1,3,0.41,2,4,28,5,0.03,0.4,33,0,1,0.015,0.021,0.1,0.014,0,1.4,0,0
9082,900,"Cranberry-orange relish, canned","CRANBERRY-ORANGE RELISH,CND",,,,,0,,6.25,3.36,8.37,3.82,Fruits and Fruit Juices,0.3,0.1,46.2,178,,0,11,0.2,4,8,38,32,,,70,,18,0.03,0.02,0.1,,0,,,0
9083,900,"Currants, european black, raw","CURRANTS,EUROPEAN BLACK,RAW",,,,Stems,2,Ribes nigrum,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.4,0.41,15.38,63,,,55,1.54,24,59,322,2,0.27,,230,,181,0.05,0.05,0.3,0.066,0,,,0
9084,900,"Currants, red and white, raw","CURRANTS,RED&WHITE,RAW",,,Y,Stems,2,Ribes rubrum,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.4,0.2,13.8,56,7.37,4.3,33,1,13,44,275,1,0.23,0.6,42,0,41,0.04,0.05,0.1,0.07,0,11,0,0
9085,900,"Currants, zante, dried","CURRANTS,ZANTE,DRIED",,,Y,,0,Vitis vinifera,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,4.08,0.27,74.08,283,67.28,6.8,86,3.26,41,125,892,8,0.66,0.7,73,0,4.7,0.16,0.142,1.615,0.296,0,3.3,0,0
9086,900,"Custard-apple, (bullock's-heart), raw","CUSTARD-APPLE,(BULLOCK'S-HEART),RAW",,,,Seeds and skin,42,Annona reticulata,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.7,0.6,25.2,101,,2.4,30,0.71,18,21,382,4,,,33,,19.2,0.08,0.1,0.5,0.221,0,,,0
9087,900,"Dates, deglet noor","DATES,DEGLET NOOR",,,Y,Pits,10,Phoenix dactylifera,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.45,0.39,75.03,282,63.35,8,39,1.02,43,62,656,2,0.29,3,10,0,0.4,0.052,0.066,1.274,0.165,0,2.7,0,0
9088,900,"Elderberries, raw","ELDERBERRIES,RAW",,,,,0,Sambucus spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.66,0.5,18.4,73,,7,38,1.6,5,39,280,6,0.11,0.6,600,,36,0.07,0.06,0.5,0.23,0,,0,0
9089,900,"Figs, raw","FIGS,RAW",,,Y,Stems,1,Ficus carica,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.75,0.3,19.18,74,16.26,2.9,35,0.37,17,14,232,1,0.15,0.2,142,0,2,0.06,0.05,0.4,0.113,0,4.7,0,0
9090,900,"Figs, canned, water pack, solids and liquids","FIGS,CND,H2O PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.4,0.1,13.99,53,11.79,2.2,28,0.29,10,10,103,1,0.12,0.1,38,0,1,0.023,0.038,0.445,0.07,0,3.3,0,0
9091,900,"Figs, canned, light syrup pack, solids and liquids","FIGS,CND,LT SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.39,0.1,17.95,69,16.15,1.8,27,0.29,10,10,102,1,0.11,0.2,37,0,1,0.022,0.038,0.437,0.07,0,4.2,0,0
9092,900,"Figs, canned, heavy syrup pack, solids and liquids","FIGS,CND,HVY SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.38,0.1,22.9,88,20.7,2.2,27,0.28,10,10,99,1,0.11,0.2,37,0,1,0.022,0.037,0.428,0.07,0,5.3,0,0
9093,900,"Figs, canned, extra heavy syrup pack, solids and liquids","FIGS,CND,EX HVY SYRUP PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.38,0.1,27.86,107,,,26,0.28,10,10,97,1,0.11,,36,0,1,0.022,0.036,0.419,,0,,,0
9094,900,"Figs, dried, uncooked","FIGS,DRIED,UNCOOKED",,,Y,Stems,4,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,3.3,0.93,63.87,249,47.92,9.8,162,2.03,68,67,680,10,0.55,0.6,10,0,1.2,0.085,0.082,0.619,0.106,0,15.6,0,0
9095,900,"Figs, dried, stewed","FIGS,DRIED,STEWED",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.42,0.4,27.57,107,23.35,4.2,70,0.88,29,29,294,4,0.24,0.2,4,0,4.4,0.011,0.11,0.64,0.133,0,6.7,0,0
9096,900,"Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, water pack, solids and liquids","FRUIT COCKTAIL,CND,H2O PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.42,0.05,8.51,32,7.51,1,5,0.25,7,11,94,4,0.09,0.5,250,0,2.1,0.016,0.011,0.363,0.052,0,2.6,0,0
9097,900,"Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, juice pack, solids and liquids","FRUIT COCKTAIL,CND,JUC PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.46,0.01,11.86,46,10.86,1,8,0.21,7,14,95,4,0.09,0.5,305,0,2.7,0.012,0.016,0.403,0.051,0,2.6,0,0
9098,900,"Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra light syrup, solids and liquids","FRUIT COCKTAIL,CND,EX LT SYRUP,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.69,Fruits and Fruit Juices,0.4,0.07,11.63,45,,1.1,8,0.3,6,12,104,4,0.08,,233,0,3,0.03,0.01,0.5,0.051,0,,0,0
9099,900,"Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, light syrup, solids and liquids","FRUIT COCKTAIL,CND,LT SYRUP,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.4,0.07,14.93,57,13.93,1,6,0.29,5,11,89,6,0.09,0.5,208,0,1.9,0.018,0.019,0.38,0.051,0,2.6,0,0
9100,900,"Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, heavy syrup, solids and liquids","FRUIT COCKTAIL,CND,HVY SYRUP,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.39,0.07,18.91,73,17.91,1,6,0.29,5,11,88,6,0.08,0.5,205,0,1.9,0.018,0.019,0.374,0.05,0,2.6,0,0
9101,900,"Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra heavy syrup, solids and liquids","FRUIT COCKTAIL,CND,EX HVY SYRUP,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.39,0.07,22.89,88,,1.1,6,0.28,5,11,86,6,0.08,,201,0,1.9,0.018,0.019,0.368,0.049,0,,0,0
9102,900,"Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, water pack, solids and liquids","FRUIT SALAD,CND,H2O PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.35,0.07,7.87,30,,1,7,0.3,5,9,78,3,0.08,,440,0,1.9,0.015,0.021,0.374,0.032,0,,0,0
9103,900,"Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, juice pack, solids and liquids","FRUIT SALAD,CND,JUC PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.51,0.03,13.05,50,,1,11,0.25,8,14,116,5,0.14,,600,0,3.3,0.011,0.014,0.356,0.027,0,,0,0
9104,900,"Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, light syrup, solids and liquids","FRUIT SALAD,CND,LT SYRUP,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.34,0.07,15.14,58,,1,7,0.29,5,9,82,6,0.07,,429,0,2.5,0.014,0.02,0.365,0.032,0,,0,0
9105,900,"Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, heavy syrup, solids and liquids","FRUIT SALAD,CND,HVY SYRUP,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.34,0.07,19.11,73,18.11,1,6,0.28,5,9,80,6,0.07,0.5,504,0,2.4,0.015,0.021,0.347,0.032,0,2.6,0,0
9106,900,"Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, extra heavy syrup, solids and liquids","FRUIT SALAD,CND,EX HVY SYRUP,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.33,0.06,22.77,88,,1,6,0.28,5,9,80,5,0.07,,637,0,2.1,0.014,0.02,0.353,0.032,0,,0,0
9107,900,"Gooseberries, raw","GOOSEBERRIES,RAW",,,,,0,Ribes spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.88,0.58,10.18,44,,4.3,25,0.31,10,27,198,1,0.12,0.6,290,,27.7,0.04,0.03,0.3,0.08,0,,0,0
9109,900,"Gooseberries, canned, light syrup pack, solids and liquids","GOOSEBERRIES,CND,LT SYRUP PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.65,0.2,18.75,73,,2.4,16,0.33,6,7,77,2,0.11,0.4,138,,10,0.02,0.053,0.153,0.012,0,,0,0
9110,900,"Goji berries, dried","GOJI BERRIES,DRIED",wolfberries,,,,,Lycium barbarum L.,,,,,Fruits and Fruit Juices,14.26,0.39,77.06,349,45.61,13,190,6.8,,,,298,,,26822,,48.4,,,,,,,,0
9111,900,"Grapefruit, raw, pink and red and white, all areas","GRAPEFRUIT,RAW,PINK&RED&WHITE,ALL AREAS",,,Y,"Peel, seeds, core, and membrane",50,Citrus paradisi,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.63,0.1,8.08,32,6.98,1.1,12,0.09,8,8,139,0,0.07,0.3,927,0,34.4,0.036,0.02,0.25,0.042,0,0,0,0
9112,900,"Grapefruit, raw, pink and red, all areas","GRAPEFRUIT,RAW,PINK&RED,ALL AREAS",,,,"Peel, seeds, core, and membrane",49,Citrus paradisi,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.77,0.14,10.66,42,6.89,1.6,22,0.08,9,18,135,0,0.07,0.1,1150,0,31.2,0.043,0.031,0.204,0.053,0,0,0,0
9113,900,"Grapefruit, raw, pink and red, California and Arizona","GRAPEFRUIT,RAW,PINK&RED,CALIFORNIA&ARIZONA",,,,"Peel, seeds, core, and membrane",49,Citrus paradisi,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.5,0.1,9.69,37,,,11,0.08,9,12,147,1,0.07,,259,0,38.1,0.034,0.02,0.191,0.042,0,,0,0
9114,900,"Grapefruit, raw, pink and red, Florida","GRAPEFRUIT,RAW,PINK & RED,FLORIDA",,,,"Peel, seeds, core, and membrane",49,Citrus paradisi,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.55,0.1,7.5,30,,1.1,15,0.12,8,9,127,0,0.07,1.4,259,0,37,0.04,0.02,0.2,0.042,0,,0,0
9116,900,"Grapefruit, raw, white, all areas","GRAPEFRUIT,RAW,WHITE,ALL AREAS",,,Y,"Peel, seeds, core, and membrane",51,Citrus paradisi,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.69,0.1,8.41,33,7.31,1.1,12,0.06,9,8,148,0,0.07,1.4,33,0,33.3,0.037,0.02,0.269,0.043,0,0,0,0
9117,900,"Grapefruit, raw, white, California","GRAPEFRUIT,RAW,WHITE,CALIFORNIA",,,,"Peel, seeds, core, and membrane",51,Citrus paradisi,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.88,0.1,9.09,37,,,12,0.08,9,12,143,0,0.07,,10,0,33.3,0.037,0.02,0.269,0.043,0,,0,0
9118,900,"Grapefruit, raw, white, Florida","GRAPEFRUIT,RAW,WHITE,FLORIDA",,,,"Peel, seeds, core, and membrane",51,Citrus paradisi,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.63,0.1,8.19,32,,,15,0.05,9,7,150,0,0.07,,10,0,37,0.04,0.02,0.2,0.043,0,,0,0
9119,900,"Grapefruit, sections, canned, water pack, solids and liquids","GRAPEFRUIT,SECTIONS,CND,H2O PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.58,0.1,9.15,36,8.75,0.4,15,0.41,10,10,132,2,0.09,0.9,0,0,21.8,0.039,0.021,0.249,0.02,0,0,0,0
9120,900,"Grapefruit, sections, canned, juice pack, solids and liquids","GRAPEFRUIT,SECTIONS,CND,JUC PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.7,0.09,9.21,37,8.8,0.4,15,0.21,11,12,169,7,0.08,0.9,0,0,33.9,0.029,0.018,0.249,0.02,0,0,0,0
9121,900,"Grapefruit, sections, canned, light syrup pack, solids and liquids","GRAPEFRUIT,SECTIONS,CND,LT SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.56,0.1,15.44,60,15.04,0.4,14,0.4,10,10,129,2,0.08,0.9,0,0,21.3,0.038,0.02,0.243,0.02,0,0,0,0
9123,900,"Grapefruit juice, white, canned or bottled, unsweetened","GRAPEFRUIT JUC,WHITE,CND OR BTLD,UNSWTND",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.58,0.1,7.93,34,7.2,0.8,14,0.11,8,15,129,3,0.08,0.1,35,0,28.3,0.042,0.02,0.231,0.02,0,0,0,0
9124,900,"Grapefruit juice, white, canned, sweetened","GRAPEFRUIT JUC,WHITE,CND,SWTND",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.58,0.09,11.13,46,11.03,0.1,8,0.36,10,11,162,2,0.06,0.1,7,0,26.9,0.04,0.023,0.319,0.02,0,0,0,0
9125,900,"Grapefruit juice, white, frozen concentrate, unsweetened, undiluted","GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,UNDIL",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,1.97,0.48,34.56,146,34.16,0.4,27,0.49,38,49,484,3,0.18,0.3,31,0,119.8,0.145,0.078,0.772,0.154,0,0.1,0,0
9126,900,"Grapefruit juice, white, frozen concentrate, unsweetened, diluted with 3 volume water","GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.55,0.13,9.73,41,9.63,0.1,8,0.14,11,14,136,1,0.05,0.1,9,0,33.7,0.041,0.022,0.217,0.044,0,0,0,0
9127,900,"Grapefruit juice, pink or red, with added calcium","GRAPEFRUIT JUC,PINK OR RED,W/ ADDED CA",,,Y,,0,,,,,,Fruits and Fruit Juices,0.5,0.1,8.69,38,8.33,0,146,0.2,12,15,162,1,0.05,0,440,0,25,0.04,0.02,0.2,0.044,0,0,0,0
9128,900,"Grapefruit juice, white, raw","GRAPEFRUIT JUC,WHITE,RAW",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.5,0.1,9.2,39,9.1,0.1,9,0.2,12,15,162,1,0.05,0.1,10,0,38,0.04,0.02,0.2,0.044,0,0,0,0
9129,900,"Grapes, muscadine, raw","Grapes, muscadine, raw",,,,Seeds,4,Vitis rotundifolia,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.81,0.47,13.93,57,,3.9,37,0.26,14,24,203,1,0.11,,67,,6.5,,1.5,,,,,,
9130,900,"Grape juice, canned or bottled, unsweetened, with added ascorbic acid","GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.37,0.13,14.77,60,14.2,0.2,11,0.25,10,14,104,5,0.07,0,8,0,25,0.017,0.015,0.133,0.032,0,0.4,0,0
9131,900,"Grapes, american type (slip skin), raw","GRAPES,AMERICAN TYPE (SLIP SKN),RAW",,,Y,"6% seeds, 34% skin, 2% stems",42,Vitis spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.63,0.35,17.15,67,16.25,0.9,14,0.29,5,10,191,2,0.04,0.1,100,0,4,0.092,0.057,0.3,0.11,0,14.6,0,0
9132,900,"Grapes, red or green (European type, such as Thompson seedless), raw","GRAPES,RED OR GRN (EURO TYPE,SUCH AS THOMPSON SEEDLESS),RAW",,,Y,Stems,4,Vitis vinifera,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.72,0.16,18.1,69,15.48,0.9,10,0.36,7,20,191,2,0.07,0.1,66,0,3.2,0.069,0.07,0.188,0.086,0,14.6,0,0
9133,900,"Grapes, canned, thompson seedless, water pack, solids and liquids","GRAPES,CND,THOMPSON SEEDLESS,H2O PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.5,0.11,10.3,40,9.7,0.6,10,0.98,6,18,107,6,0.05,0.1,45,0,1,0.031,0.023,0.13,0.065,0,9.8,0,0
9134,900,"Grapes, canned, thompson seedless, heavy syrup pack, solids and liquids","GRAPES,CND,THOMPSON SEEDLESS,HVY SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.48,0.1,19.65,76,19.05,0.6,10,0.94,6,17,103,5,0.05,0.1,64,0,1,0.03,0.022,0.125,0.065,0,9.8,0,0
9135,900,"Grape juice, canned or bottled, unsweetened, without added ascorbic acid","GRAPE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.37,0.13,14.77,60,14.2,0.2,11,0.25,10,14,104,5,0.07,0,8,0,0.1,0.017,0.015,0.133,0.032,0,0.4,0,0
9138,900,"Groundcherries, (cape-gooseberries or poha), raw","GROUNDCHERRIES,(CAPE-GOOSEBERRIES OR POHA),RAW",,,,Husks,6,Physalis spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.9,0.7,11.2,53,,,9,1,,40,,,,,720,,11,0.11,0.04,2.8,,0,,,0
9139,900,"Guavas, common, raw","GUAVAS,COMMON,RAW",,,Y,Skin,22,Psidium guajava,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.55,0.95,14.32,68,8.92,5.4,18,0.26,22,40,417,2,0.23,0.6,624,0,228.3,0.067,0.04,1.084,0.11,0,2.6,0,0
9140,900,"Guavas, strawberry, raw","GUAVAS,STRAWBERRY,RAW",,,,"Seeds, stem, and blossom end",15,Psidium cattleianum,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.58,0.6,17.36,69,,5.4,21,0.22,17,27,292,37,,,90,,37,0.03,0.03,0.6,,0,,,0
9143,900,"Guava sauce, cooked","GUAVA SAUCE,COOKED",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.32,0.14,9.48,36,5.88,3.6,7,0.18,7,11,225,4,0.17,0.5,283,0,146.4,0.026,0.013,0.42,0.09,0,1.9,0,0
9144,900,"Jackfruit, raw","JACKFRUIT,RAW",,,,Seeds and skin,72,Artocarpus heterophyllus,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.72,0.64,23.25,95,19.08,1.5,24,0.23,29,21,448,2,0.13,,110,,13.7,0.105,0.055,0.92,0.329,0,,0,0
9145,900,"Java-plum, (jambolan), raw","JAVA-PLUM,(JAMBOLAN),RAW",,,,Seed,19,Syzygium cumini,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.72,0.23,15.56,60,,,19,0.19,15,17,79,14,,,3,,14.3,0.006,0.012,0.26,0.038,0,,,0
9146,900,"Jujube, raw","JUJUBE,RAW",,,,Seeds,7,Ziziphus jujuba,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.2,0.2,20.23,79,,,21,0.48,10,23,250,3,0.05,,40,,69,0.02,0.04,0.9,0.081,0,,,0
9147,900,"Jujube, Chinese, fresh, dried","JUJUBE,CHINESE,FRSH,DRIED",,,,Seeds,11,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,4.72,0.5,72.52,281,,6,63,5.09,,68,217,5,0.39,0,,,217.6,0.047,0.053,,,0,,,0
9148,900,"Kiwifruit, green, raw","KIWIFRUIT,GRN,RAW",Chinese gooseberry,,Y,Skin,24,Actinidia deliciosa,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.14,0.52,14.66,61,8.99,3,34,0.31,17,34,312,3,0.14,0.2,87,0,92.7,0.027,0.025,0.341,0.063,0,40.3,0,0
9149,900,"Kumquats, raw","KUMQUATS,RAW",,,Y,Seeds,7,Fortunella spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.88,0.86,15.9,71,9.36,6.5,62,0.86,20,19,186,10,0.17,0,290,0,43.9,0.037,0.09,0.429,0.036,0,0,0,0
9150,900,"Lemons, raw, without peel","LEMONS,RAW,WITHOUT PEEL",Includes USDA commodity food A415,,Y,"45% peel, 2% seeds",47,Citrus limon,6.25,3.36,8.37,2.48,Fruits and Fruit Juices,1.1,0.3,9.32,29,2.5,2.8,26,0.6,8,16,138,2,0.06,0.4,22,0,53,0.04,0.02,0.1,0.08,0,0,0,0
9152,900,"Lemon juice, raw","LEMON JUICE,RAW",,,Y,,0,,6.25,3.36,8.37,2.7,Fruits and Fruit Juices,0.35,0.24,6.9,22,2.52,0.3,6,0.08,6,8,103,1,0.05,0.1,6,0,38.7,0.024,0.015,0.091,0.046,0,0,0,0
9153,900,"Lemon juice from concentrate, canned or bottled","LEMON JUC FROM CONC,CND OR BTLD",,,Y,,0,,6.25,3.36,8.37,2.7,Fruits and Fruit Juices,0.45,0.07,5.62,17,1.53,0.7,10,0.06,7,9,109,24,0.19,0.1,33,0,14.3,0.021,0.017,0.18,0.037,0,0.1,0,0
9154,900,"Lemon juice, frozen, unsweetened, single strength","LEMON JUC,FRZ,UNSWTND,SINGLE STRENGTH",,,Y,,0,,6.25,3.36,8.37,2.7,Fruits and Fruit Juices,0.46,0.32,6.5,22,2.4,0.4,8,0.12,8,8,89,1,0.05,0.1,13,0,31.5,0.059,0.013,0.137,0.06,0,0,0,0
9156,900,"Lemon peel, raw","LEMON PEEL,RAW",,,Y,,0,,6.25,,,,Fruits and Fruit Juices,1.5,0.3,16,47,4.17,10.6,134,0.8,15,12,160,6,0.25,0.7,50,0,129,0.06,0.08,0.4,0.172,0,0,0,0
9159,900,"Limes, raw","LIMES,RAW",,,Y,Peel and seeds,16,Citrus latifolia,6.25,3.36,8.37,2.48,Fruits and Fruit Juices,0.7,0.2,10.54,30,1.69,2.8,33,0.6,6,18,102,2,0.11,0.4,50,0,29.1,0.03,0.02,0.2,0.043,0,0.6,0,0
9160,900,"Lime juice, raw","LIME JUICE,RAW",,,Y,,0,,6.25,3.36,8.37,2.7,Fruits and Fruit Juices,0.42,0.07,8.42,25,1.69,0.4,14,0.09,8,14,117,2,0.08,0.1,50,0,30,0.025,0.015,0.142,0.038,0,0.6,0,0
9161,900,"Lime juice, canned or bottled, unsweetened","LIME JUC,CND OR BTLD,UNSWTND",,,Y,,0,,6.25,3.36,8.37,2.7,Fruits and Fruit Juices,0.25,0.23,6.69,21,1.37,0.4,12,0.23,7,10,75,16,0.06,0.1,16,0,6.4,0.033,0.003,0.163,0.027,0,0.5,0,0
9163,900,"Blueberries, dried, sweetened","BLUEBERRIES,DRIED,SWTND",,,Y,,0,,,3.36,8.37,3.6,Fruits and Fruit Juices,2.5,2.5,80,317,67.5,7.5,19,0.9,18,36,214,3,0.49,0.6,141,0,23.8,0.092,0.127,1.154,0.152,0,59.4,0,0
9164,900,"Litchis, raw","LITCHIS,RAW",lychee,,Y,Shell and seeds,40,Litchi chinensis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.83,0.44,16.53,66,15.23,1.3,5,0.31,10,31,171,1,0.07,0.6,0,0,71.5,0.011,0.065,0.603,0.1,0,0.4,0,0
9165,900,"Litchis, dried","LITCHIS,DRIED",lychee,,Y,Shell and seeds,46,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,3.8,1.2,70.7,277,66.1,4.6,33,1.7,42,181,1110,3,0.28,1.3,0,0,183,0.01,0.57,3.1,0.09,0,1.6,0,0
9167,900,"Loganberries, frozen","LOGANBERRIES,FROZEN",,,Y,,0,Rubus ursinus var. loganobaccus,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.52,0.31,13.02,55,7.7,5.3,26,0.64,21,26,145,1,0.34,0.2,35,0,15.3,0.05,0.034,0.84,0.065,0,7.8,0,0
9172,900,"Longans, raw","LONGANS,RAW",,,,Shell and seeds,47,Dimocarpus longan,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.31,0.1,15.14,60,,1.1,1,0.13,10,21,266,0,0.05,,,,84,0.031,0.14,0.3,,0,,,0
9173,900,"Longans, dried","LONGANS,DRIED",,,,Shell and seeds,64,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,4.9,0.4,74,286,,,45,5.4,46,196,658,48,0.22,,0,,28,0.04,0.5,1,,0,,,0
9174,900,"Loquats, raw","LOQUATS,RAW",,,,Seeds and skin,35,Eriobotrya japonica,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.43,0.2,12.14,47,,1.7,16,0.28,13,27,266,1,0.05,0.6,1528,,1,0.019,0.024,0.18,0.1,0,,0,0
9175,900,"Mammy-apple, (mamey), raw","MAMMY-APPLE,(MAMEY),RAW",,,,Seeds and skin,40,Mammea americana,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.5,0.5,12.5,51,,3,11,0.7,16,11,47,15,0.1,0.6,230,,14,0.02,0.04,0.4,0.1,0,,0,0
9176,900,"Mangos, raw","MANGOS,RAW",,,Y,Seeds and skin,29,Mangifera indica,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.82,0.38,14.98,60,13.66,1.6,11,0.16,10,14,168,1,0.09,0.6,1082,0,36.4,0.028,0.038,0.669,0.119,0,4.2,0,0
9177,900,"Mangosteen, canned, syrup pack","MANGOSTEEN,CND,SYRUP PK",,,,,0,Garcinia mangostana,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.41,0.58,17.91,73,,1.8,12,0.3,13,8,48,7,0.21,,35,0,2.9,0.054,0.054,0.286,0.018,0,,0,0
9178,900,"Mango, dried, sweetened","MANGO,DRIED,SWTND",,,Y,,0,,,,,,Fruits and Fruit Juices,2.45,1.18,78.58,319,66.27,2.4,0,0.23,20,50,279,162,0.3,2.1,1343,0,42.3,0.062,0.085,2,0.334,0,13.2,0,0
9181,900,"Melons, cantaloupe, raw","MELONS,CANTALOUPE,RAW",includes USDA commodity food A415,,Y,"9% cavity contents, 1% cutting loss, 39% rind",49,Cucumis melo,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.84,0.19,8.16,34,7.86,0.9,9,0.21,12,15,267,16,0.18,0.4,3382,0,36.7,0.041,0.019,0.734,0.072,0,2.5,0,0
9183,900,"Melons, casaba, raw","MELONS,CASABA,RAW",,,Y,"11% cavity contents, 29% rind",40,Cucumis melo,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.11,0.1,6.58,28,5.69,0.9,11,0.34,11,5,182,9,0.07,0.4,0,0,21.8,0.015,0.031,0.232,0.163,0,2.5,0,0
9184,900,"Melons, honeydew, raw","MELONS,HONEYDEW,RAW",,,Y,"5% cavity contents, rind 49%",54,Cucumis melo,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.54,0.14,9.09,36,8.12,0.8,6,0.17,10,11,228,18,0.09,0.7,50,0,18,0.038,0.012,0.418,0.088,0,2.9,0,0
9185,900,"Melon balls, frozen","MELON BALLS,FROZEN",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.84,0.25,7.94,33,,0.7,10,0.29,14,12,280,31,0.17,,1774,0,6.2,0.166,0.022,0.64,0.106,0,,0,0
9190,900,"Mulberries, raw","MULBERRIES,RAW",,,Y,,0,Morus nigra,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.44,0.39,9.8,43,8.1,1.7,39,1.85,18,38,194,10,0.12,0.6,25,0,36.4,0.029,0.101,0.62,0.05,0,7.8,0,0
9191,900,"Nectarines, raw","NECTARINES,RAW",,,Y,Pit,9,Prunus persica var. nucipersica,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.06,0.32,10.55,44,7.89,1.7,6,0.28,9,26,201,0,0.17,0,332,0,5.4,0.034,0.027,1.125,0.025,0,2.2,0,0
9192,900,"Oheloberries, raw","OHELOBERRIES,RAW",,,,,0,Vaccinium reticulatum,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.38,0.22,6.84,28,,,7,0.09,6,10,38,1,,,830,,6,0.017,0.036,0.27,,0,,,0
9193,900,"Olives, ripe, canned (small-extra large)","OLIVES,RIPE,CND (SMALL-EXTRA LRG)",,,Y,,0,Olea europaea,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.84,10.68,6.26,115,0,3.2,88,3.3,4,3,8,735,0.22,0.9,403,0,0.9,0.003,0,0.037,0.009,0,1.4,0,0
9194,900,"Olives, ripe, canned (jumbo-super colossal)","OLIVES,RIPE,CND (JUMBO-SUPER COLOSSAL)",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.97,6.87,5.61,81,0,2.5,94,3.32,4,3,9,735,0.22,0.9,346,0,1.5,0.003,0,0.022,0.012,0,1.4,0,0
9195,900,"Olives, pickled, canned or bottled, green","OLIVES,PICKLED,CND OR BTLD,GRN",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.03,15.32,3.84,145,0.54,3.3,52,0.49,11,4,42,1556,0.04,0.9,393,0,0,0.021,0.007,0.237,0.031,0,1.4,0,0
9200,900,"Oranges, raw, all commercial varieties","ORANGES,RAW,ALL COMM VAR",,,Y,Peel and seeds,27,Citrus sinensis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.94,0.12,11.75,47,9.35,2.4,40,0.1,10,14,181,0,0.07,0.5,225,0,53.2,0.087,0.04,0.282,0.06,0,0,0,0
9201,900,"Oranges, raw, California, valencias","ORANGES,RAW,CALIFORNIA,VALENCIAS",,,,Peel and seeds,25,Citrus sinensis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.04,0.3,11.89,49,,2.5,40,0.09,10,17,179,0,0.06,,230,0,48.5,0.087,0.04,0.274,0.063,0,,0,0
9202,900,"Oranges, raw, navels","ORANGES,RAW,NAVELS",,,,Peel and navel,32,Citrus sinensis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.91,0.15,12.54,49,8.5,2.2,43,0.13,11,23,166,1,0.08,0,247,0,59.1,0.068,0.051,0.425,0.079,0,0,0,0
9203,900,"Oranges, raw, Florida","ORANGES,RAW,FLORIDA",,,,Peel and seeds,26,Citrus sinensis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.7,0.21,11.54,46,9.14,2.4,43,0.09,10,12,169,0,0.08,0.5,225,0,45,0.1,0.04,0.4,0.051,0,0,0,0
9205,900,"Oranges, raw, with peel","ORANGES,RAW,WITH PEEL",,,,Seeds,1,Citrus sinensis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.3,0.3,15.5,63,,4.5,70,0.8,14,22,196,2,0.11,0.7,250,,71,0.1,0.05,0.5,0.093,0,,0,0
9206,900,"Orange juice, raw","ORANGE JUICE,RAW",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.7,0.2,10.4,45,8.4,0.2,11,0.2,11,17,200,1,0.05,0.1,200,0,50,0.09,0.03,0.4,0.04,0,0.1,0,0
9207,900,"Orange juice, canned, unsweetened","ORANGE JUC,CND,UNSWTND",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.68,0.15,11.01,47,8.76,0.3,10,0.1,10,17,184,4,0.04,0.1,175,0,30.1,0.039,0.021,0.201,0.031,0,0.1,0,0
9209,900,"Orange juice, chilled, includes from concentrate","ORANGE JUC,CHILLED,INCL FROM CONC",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.68,0.12,11.54,49,8.31,0.3,11,0.13,11,17,178,2,0.07,0.1,42,0,33.6,0.046,0.039,0.28,0.076,0,0,0,0
9210,900,"Orange juice, chilled, includes from concentrate, with added calcium and vitamin D","ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA & VITAMIN D",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.68,0.12,11.27,47,8.31,0.3,140,0.13,11,47,178,2,0.07,0.1,42,40,33.6,0.046,0.039,0.28,0.076,0,0,0,0
9211,900,"Orange juice, chilled, includes from concentrate, with added calcium","ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.68,0.12,11.27,47,8.31,0.3,140,0.13,11,47,178,2,0.07,0.1,42,0,33.6,0.046,0.039,0.28,0.076,0,0,0,0
9212,900,"Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added calcium","ORANGE JUC,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O,W/ ADDED CA",,,,,,,,,,,Fruits and Fruit Juices,0.6,0.06,8.47,37,7.42,0.2,147,0.08,10,78,158,4,0.04,0.1,66,0,36.2,0.069,0.044,0.273,0.065,0,0.1,0,0
9213,900,"Orange juice, frozen concentrate, unsweetened, undiluted, with added calcium","ORANGE JUC,FRZ CONC,UNSWTND,UNDIL,W/ ADDED CA",,,Y,,0,,,,,,Fruits and Fruit Juices,2.4,0.25,33.86,147,29.68,1,578,0.33,35,313,629,7,0.16,0.4,264,0,144.8,0.275,0.175,1.093,0.26,0,0.4,0,0
9214,900,"Orange juice, frozen concentrate, unsweetened, undiluted","ORANGE JUC,FRZ CONC,UNSWTND,UNDIL",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,2.4,0.25,35.19,148,29.68,1,38,0.33,35,61,629,7,0.16,0.4,264,0,144.8,0.275,0.175,1.093,0.26,0,0.4,0,0
9215,900,"Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water","ORANGE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.6,0.06,8.8,37,7.42,0.2,12,0.08,10,15,158,4,0.04,0.1,66,0,36.2,0.069,0.044,0.273,0.065,0,0.1,0,0
9216,900,"Orange peel, raw","ORANGE PEEL,RAW",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.5,0.2,25,97,,10.6,161,0.8,22,21,212,3,0.25,1,420,,136,0.12,0.09,0.9,0.176,0,,0,0
9217,900,"Orange-grapefruit juice, canned or bottled, unsweetened","ORANGE-GRAPEFRUIT JUC,CND OR BTLD,UNSWTND",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.6,0.1,10.28,43,10.18,0.1,8,0.46,10,14,158,3,0.07,0.1,119,0,29.1,0.056,0.03,0.336,0.023,0,0.1,0,0
9218,900,"Tangerines, (mandarin oranges), raw","TANGERINES,(MANDARIN ORANGES),RAW",,,Y,Peel and seeds,26,Citrus reticulata,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.81,0.31,13.34,53,10.58,1.8,37,0.15,12,20,166,2,0.07,0.1,681,0,26.7,0.058,0.036,0.376,0.078,0,0,0,0
9219,900,"Tangerines, (mandarin oranges), canned, juice pack","TANGERINES,(MANDARIN ORANGES),CND,JUC PK",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.62,0.03,9.57,37,8.87,0.7,11,0.27,11,10,133,5,0.51,0.4,852,0,34.2,0.082,0.029,0.445,0.042,0,0,0,0
9220,900,"Tangerines, (mandarin oranges), canned, light syrup pack","TANGERINES,(MANDARIN ORANGES),CND,LT SYRUP PK",,,Y,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.45,0.1,16.19,61,15.49,0.7,7,0.37,8,10,78,6,0.24,0.4,840,0,19.8,0.053,0.044,0.445,0.042,0,0,0,0
9221,900,"Tangerine juice, raw","TANGERINE JUICE,RAW",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.5,0.2,10.1,43,9.9,0.2,18,0.2,8,14,178,1,0.03,0.1,253,0,31,0.06,0.02,0.1,0.042,0,0,0,0
9223,900,"Tangerine juice, canned, sweetened","TANGERINE JUC,CND,SWTND",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.5,0.2,12,50,11.8,0.2,18,0.2,8,14,178,1,0.03,0.1,253,0,22,0.06,0.02,0.1,0.032,0,0,0,0
9226,900,"Papayas, raw","PAPAYAS,RAW",,,Y,Seeds and skin,38,Carica papaya,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.47,0.26,10.82,43,7.82,1.7,20,0.25,21,10,182,8,0.08,0.6,950,0,60.9,0.023,0.027,0.357,0.038,0,2.6,0,0
9228,900,"Papaya, canned, heavy syrup, drained","PAPAYA,CND,HVY SYRUP,DRND",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.14,0.55,55.83,206,52.2,1.5,21,0.29,6,6,67,9,0.05,0.4,6,,3.5,0.015,0.015,0.06,0.015,,0.3,,
9229,900,"Papaya nectar, canned","PAPAYA NECTAR,CANNED",,,Y,,0,,6.25,3.36,8.37,3.8,Fruits and Fruit Juices,0.17,0.15,14.51,57,13.91,0.6,10,0.34,3,0,31,5,0.15,0.3,361,0,3,0.006,0.004,0.15,0.009,0,0.8,0,0
9231,900,"Passion-fruit, (granadilla), purple, raw","PASSION-FRUIT,(GRANADILLA),PURPLE,RAW",,,Y,Shell,48,Passiflora edulis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.2,0.7,23.38,97,11.2,10.4,12,1.6,29,68,348,28,0.1,0.6,1272,0,30,0,0.13,1.5,0.1,0,0.7,0,0
9232,900,"Passion-fruit juice, purple, raw","PASSION-FRUIT JUC,PURPLE,RAW",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.39,0.05,13.6,51,13.4,0.2,4,0.24,17,13,278,6,0.05,0.1,717,0,29.8,0,0.131,1.46,0.05,0,0.4,0,0
9233,900,"Passion-fruit juice, yellow, raw","PASSION-FRUIT JUC,YEL,RAW",,,Y,,0,Passiflora edulis f. flavicarpa,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.67,0.18,14.45,60,14.25,0.2,4,0.36,17,25,278,6,0.06,0.1,943,0,18.2,0,0.101,2.24,0.06,0,0.4,0,0
9236,900,"Peaches, yellow, raw","PEACHES,YEL,RAW",,,Y,Pit,4,Prunus persica,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.91,0.25,9.54,39,8.39,1.5,6,0.25,9,20,190,0,0.17,0.1,326,0,6.6,0.024,0.031,0.806,0.025,0,2.6,0,0
9237,900,"Peaches, canned, water pack, solids and liquids","PEACHES,CND,H2O PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.44,0.06,6.11,24,4.81,1.3,2,0.32,5,10,99,3,0.09,0.3,532,0,2.9,0.009,0.019,0.521,0.019,0,1.7,0,0
9238,900,"Peaches, canned, juice pack, solids and liquids","PEACHES,CND,JUC PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.63,0.03,11.57,44,10.27,1.3,6,0.27,7,17,128,4,0.11,0.3,381,0,3.6,0.008,0.017,0.582,0.019,0,1.7,0,0
9239,900,"Peaches, canned, extra light syrup, solids and liquids","PEACHES,CND,EX LT SYRUP,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.69,Fruits and Fruit Juices,0.4,0.1,11.1,42,,1,5,0.3,5,11,74,5,0.09,,270,0,3,0.02,0.02,0.8,0.019,0,,0,0
9240,900,"Peaches, canned, light syrup pack, solids and liquids","PEACHES,CND,LT SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.45,0.03,14.55,54,13.25,1.3,3,0.36,5,11,97,5,0.09,0.3,354,0,2.4,0.009,0.025,0.593,0.019,0,1.7,0,0
9241,900,"Peaches, canned, heavy syrup pack, solids and liquids","PEACHES,CND,HVY SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.45,0.1,19.94,74,18.64,1.3,3,0.27,5,11,92,6,0.09,0.3,332,0,2.8,0.011,0.024,0.614,0.019,0,1.7,0,0
9242,900,"Peaches, canned, extra heavy syrup pack, solids and liquids","PEACHES,CND,EX HVY SYRUP PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.47,0.03,26.06,96,,1,3,0.29,5,11,83,8,0.09,,131,0,1.2,0.011,0.021,0.52,0.019,0,,0,0
9243,900,"Peaches, spiced, canned, heavy syrup pack, solids and liquids","PEACHES,SPICED,CND,HVY SYRUP PK,SOL&LIQUIDS",,,Y,Pits,4,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.41,0.1,20.08,75,18.78,1.3,6,0.28,7,9,85,4,0.08,0.3,317,0,5.3,0.011,0.035,0.537,0.019,0,1.7,0,0
9244,900,"Peaches, dehydrated (low-moisture), sulfured, uncooked","PEACHES,DEHYD (LOW-MOISTURE),SULFURED,UNCKD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,4.89,1.03,83.18,325,,,38,5.51,57,162,1351,10,0.78,,1417,0,10.6,0.039,0.11,4.825,0.159,0,,0,0
9245,900,"Peaches, dehydrated (low-moisture), sulfured, stewed","PEACHES,DEHYD (LOW-MOISTURE),SULFURED,STWD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.01,0.42,34.14,133,,,16,2.26,23,66,554,4,0.32,,396,0,6.8,0.008,0.06,2.03,0.054,0,,0,0
9246,900,"Peaches, dried, sulfured, uncooked","PEACHES,DRIED,SULFURED,UNCKD",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,3.61,0.76,61.33,239,41.74,8.2,28,4.06,42,119,996,7,0.57,0.5,2163,0,4.8,0.002,0.212,4.375,0.067,0,15.7,0,0
9247,900,"Peaches, dried, sulfured, stewed, without added sugar","PEACHES,DRIED,SULFURED,STWD,WO/ SUGAR",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.16,0.25,19.69,77,16.99,2.7,9,1.31,13,38,320,2,0.18,0.2,197,0,3.7,0.005,0.021,1.519,0.038,0,5,0,0
9248,900,"Peaches, dried, sulfured, stewed, with added sugar","PEACHES,DRIED,SULFURED,STWD,W/ SUGAR",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.06,0.22,26.6,103,,2.4,8,1.2,12,35,292,2,0.17,0.7,180,0,3.4,0.005,0.019,1.388,0.035,0,,0,0
9250,900,"Peaches, frozen, sliced, sweetened","PEACHES,FRZ,SLICED,SWTND",,,Y,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.63,0.13,23.98,94,22.18,1.8,3,0.37,5,11,130,6,0.05,0.4,284,0,94.2,0.013,0.035,0.653,0.018,0,2.2,0,0
9251,900,"Peach nectar, canned, without added ascorbic acid","PEACH NECTAR,CND,WO/ VIT C",,,Y,,0,,6.25,3.36,8.37,3.79,Fruits and Fruit Juices,0.27,0.02,13.92,54,13.32,0.6,5,0.19,4,6,40,7,0.08,0.2,258,0,5.3,0.003,0.014,0.288,0.007,0,1,0,0
9252,900,"Pears, raw","PEARS,RAW",Includes USDA commodity food A435,,Y,"Stem, core and seeds",10,Pyrus communis,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.36,0.14,15.23,57,9.75,3.1,9,0.18,7,12,116,1,0.1,0.1,25,0,4.3,0.012,0.026,0.161,0.029,0,4.4,0,0
9253,900,"Pears, canned, water pack, solids and liquids","PEARS,CND,H2O PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.19,0.03,7.81,29,6.1,1.6,4,0.21,4,7,53,2,0.09,0,0,0,1,0.008,0.01,0.054,0.014,0,0.3,0,0
9254,900,"Pears, canned, juice pack, solids and liquids","PEARS,CND,JUC PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.34,0.07,12.94,50,9.7,1.6,9,0.29,7,12,96,4,0.09,0,6,0,1.6,0.011,0.011,0.2,0.014,0,0.3,0,0
9255,900,"Pears, canned, extra light syrup pack, solids and liquids","PEARS,CND,EX LT SYRUP PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.69,Fruits and Fruit Juices,0.3,0.1,12.2,47,,1.6,7,0.2,5,7,45,2,0.07,,0,0,2,0.01,0.02,0.4,0.014,0,,0,0
9256,900,"Pears, canned, light syrup pack, solids and liquids","PEARS,CND,LT SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.19,0.03,15.17,57,12.1,1.6,5,0.28,4,7,66,5,0.08,0,0,0,0.7,0.01,0.016,0.154,0.014,0,0.3,0,0
9257,900,"Pears, canned, heavy syrup pack, solids and liquids","PEARS,CND,HVY SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.2,0.13,19.17,74,15.2,1.6,5,0.22,4,7,65,5,0.08,0,0,0,1.1,0.01,0.022,0.242,0.014,0,0.3,0,0
9258,900,"Pears, canned, extra heavy syrup pack, solids and liquids","PEARS,CND,EX HVY SYRUP PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.19,0.13,25.25,97,,1.6,5,0.22,4,7,64,5,0.08,,0,0,1.1,0.01,0.022,0.238,0.014,0,,0,0
9259,900,"Pears, dried, sulfured, uncooked","PEARS,DRIED,SULFURED,UNCKD",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.87,0.63,69.7,262,62.2,7.5,34,2.1,33,59,533,6,0.39,0.2,3,0,7,0.008,0.145,1.372,0.072,0,20.4,0,0
9260,900,"Pears, dried, sulfured, stewed, without added sugar","PEARS,DRIED,SULFURED,STWD,WO/ SUGAR",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.91,0.31,33.81,127,27.41,6.4,16,1.02,16,28,258,3,0.19,0.1,42,0,4,0.004,0.02,0.351,0.035,0,9.9,0,0
9261,900,"Pears, dried, sulfured, stewed, with added sugar","PEARS,DRIED,SULFURED,STWD,W/ SUGAR",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.86,0.29,37.14,140,,5.8,15,0.97,15,27,245,3,0.18,2.4,40,0,3.8,0.004,0.019,0.333,0.033,0,,0,0
9262,900,"Pear nectar, canned, without added ascorbic acid","PEAR NECTAR,CND,WO/ VIT C",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.11,0.01,15.76,60,15.16,0.6,5,0.26,3,3,13,4,0.07,0,1,0,1.1,0.002,0.013,0.128,0.014,0,1.8,0,0
9263,900,"Persimmons, japanese, raw","PERSIMMONS,JAPANESE,RAW",,,Y,"2% calyx, 14% skin",16,Diospyros kaki,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.58,0.19,18.59,70,12.53,3.6,8,0.15,9,17,161,1,0.11,0.6,1627,0,7.5,0.03,0.02,0.1,0.1,0,2.6,0,0
9264,900,"Persimmons, japanese, dried","PERSIMMONS,JAPANESE,DRIED",,,,Stems,8,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.38,0.59,73.43,274,,14.5,25,0.74,31,81,802,2,0.42,,767,0,0,,0.029,0.18,,0,,,0
9265,900,"Persimmons, native, raw","PERSIMMONS,NATIVE,RAW",,,,"2% calyx, 16% seeds",18,Diospyros virginiana,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.8,0.4,33.5,127,,,27,2.5,,26,310,1,,,,,66,,,,,0,,,0
9266,900,"Pineapple, raw, all varieties","PINEAPPLE,RAW,ALL VAR",,,Y,"8% core, 16% crown, 26% parings",49,Ananas comosus,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.54,0.12,13.12,50,9.85,1.4,13,0.29,12,8,109,1,0.12,0.1,58,0,47.8,0.079,0.032,0.5,0.112,0,0.7,0,0
9267,900,"Pineapple, canned, water pack, solids and liquids","PINEAPPLE,CND,H2O PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.43,0.09,8.3,32,7.5,0.8,15,0.4,18,4,127,1,0.12,0.4,38,0,7.7,0.093,0.026,0.298,0.074,0,0.3,0,0
9268,900,"Pineapple, canned, juice pack, solids and liquids","PINEAPPLE,CND,JUC PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.42,0.08,15.7,60,14.45,0.8,14,0.28,14,6,122,1,0.1,0.4,38,0,9.5,0.095,0.019,0.284,0.074,0,0.3,0,0
9269,900,"Pineapple, canned, light syrup pack, solids and liquids","PINEAPPLE,CND,LT SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.36,0.12,13.45,52,12.65,0.8,14,0.39,16,7,105,1,0.12,0.4,38,0,7.5,0.091,0.025,0.292,0.074,0,0.3,0,0
9270,900,"Pineapple, canned, heavy syrup pack, solids and liquids","PINEAPPLE,CND,HVY SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.35,0.11,20.2,78,16.9,0.8,14,0.38,16,7,104,1,0.12,0.4,14,0,7.4,0.09,0.025,0.287,0.074,0,0.3,0,0
9271,900,"Pineapple, canned, extra heavy syrup pack, solids and liquids","PINEAPPLE,CND,EX HVY SYRUP PK,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.34,0.11,21.5,83,,0.8,14,0.38,15,7,102,1,0.11,,14,0,7.3,0.089,0.025,0.282,0.074,0,,0,0
9272,900,"Pineapple, frozen, chunks, sweetened","PINEAPPLE,FRZ,CHUNKS,SWTND",,,Y,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.4,0.1,22.2,86,21.1,1.1,9,0.4,10,4,100,2,0.11,0.1,30,0,8,0.1,0.03,0.3,0.075,0,0.7,0,0
9273,900,"Pineapple juice, canned or bottled, unsweetened, without added ascorbic acid","PINEAPPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.36,0.12,12.87,53,9.98,0.2,13,0.31,12,8,130,2,0.11,0.1,5,0,10,0.058,0.021,0.199,0.1,0,0.3,0,0
9274,900,"Pineapple juice, frozen concentrate, unsweetened, undiluted","PINEAPPLE JUC,FRZ CONC,UNSWTND,UNDIL",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,1.3,0.1,44.3,179,43.6,0.7,39,0.9,35,28,472,3,0.4,0.4,50,0,42,0.23,0.06,0.9,0.255,0,1,0,0
9275,900,"Pineapple juice, frozen concentrate, unsweetened, diluted with 3 volume water","PINEAPPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.4,0.03,12.67,51,12.47,0.2,13,0.16,14,9,132,1,0.08,0.1,10,0,12,0.07,0.02,0.2,0.074,0,0.3,0,0
9276,900,"Pitanga, (surinam-cherry), raw","PITANGA,(SURINAM-CHERRY),RAW",,,,"Seed, stem, and blossom end",12,Eugenia uniflora,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.8,0.4,7.49,33,,,9,0.2,12,11,103,3,,,1500,,26.3,0.03,0.04,0.3,,0,,,0
9277,900,"Plantains, raw","PLANTAINS,RAW",,,Y,Skin and stems,35,Musa X paradisiaca,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.3,0.37,31.89,122,15,2.3,3,0.6,37,34,499,4,0.14,1.5,1127,0,18.4,0.052,0.054,0.686,0.299,0,0.7,0,0
9278,900,"Plantains, cooked","PLANTAINS,COOKED",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.79,0.18,31.15,116,14,2.3,2,0.58,32,28,465,5,0.13,1.4,909,0,10.9,0.046,0.052,0.756,0.24,0,0.7,0,0
9279,900,"Plums, raw","PLUMS,RAW",,,Y,Pits,6,Prunus spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.7,0.28,11.42,46,9.92,1.4,6,0.17,7,16,157,0,0.1,0,345,0,9.5,0.028,0.026,0.417,0.029,0,6.4,0,0
9281,900,"Plums, canned, purple, water pack, solids and liquids","PLUMS,CND,PURPLE,H2O PK,SOL&LIQUIDS",,,Y,Pits,5,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.39,0.01,11.03,41,10.1,0.9,7,0.16,5,13,126,1,0.08,0,914,0,2.7,0.021,0.041,0.37,0.027,0,4.3,0,0
9282,900,"Plums, canned, purple, juice pack, solids and liquids","PLUMS,CND,PURPLE,JUC PK,SOL&LIQUIDS",,,Y,Pits,5,,6.25,3.36,8.37,3.7,Fruits and Fruit Juices,0.51,0.02,15.15,58,14.22,0.9,10,0.34,8,15,154,1,0.11,0,1009,0,2.8,0.023,0.059,0.473,0.027,0,4.3,0,0
9283,900,"Plums, canned, purple, light syrup pack, solids and liquids","PLUMS,CND,PURPLE,LT SYRUP PK,SOL&LIQUIDS",,,Y,Pits,5,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.37,0.1,16.28,63,15.35,0.9,9,0.86,5,13,93,20,0.08,0,231,0,0.4,0.016,0.039,0.297,0.027,0,4.3,0,0
9284,900,"Plums, canned, purple, heavy syrup pack, solids and liquids","PLUMS,CND,PURPLE,HVY SYRUP PK,SOL&LIQUIDS",,,Y,Pits,5,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.36,0.1,23.24,89,22.31,0.9,9,0.84,5,13,91,19,0.07,0,259,0,0.4,0.016,0.038,0.291,0.027,0,4.3,0,0
9285,900,"Plums, canned, purple, extra heavy syrup pack, solids and liquids","PLUMS,CND,PURPLE,EX HVY SYRUP PK,SOL&LIQUIDS",,,,Pits,5,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.36,0.1,26.31,101,,1,9,0.82,5,12,89,19,0.07,,254,0,0.4,0.016,0.037,0.285,0.027,0,,0,0
9286,900,"Pomegranates, raw","POMEGRANATES,RAW",,,Y,Skin and membrane,44,Punica granatum,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.67,1.17,18.7,83,13.67,4,10,0.3,12,36,236,3,0.35,0.5,0,0,10.2,0.067,0.053,0.293,0.075,0,16.4,0,0
9287,900,"Prickly pears, raw","PRICKLY PEARS,RAW",,,,"Seeds, skin, and bud end",25,Opuntia spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.73,0.51,9.57,41,,3.6,56,0.3,85,24,220,5,0.12,0.6,43,,14,0.014,0.06,0.46,0.06,0,,0,0
9288,900,"Prunes, canned, heavy syrup pack, solids and liquids","PRUNES,CND,HVY SYRUP PK,SOL&LIQUIDS",,,,Pits,12,Prunus domestica,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.87,0.2,27.8,105,,3.8,17,0.41,15,26,226,3,0.19,,797,0,2.8,0.034,0.122,0.866,0.203,0,,0,0
9289,900,"Prunes, dehydrated (low-moisture), uncooked","PRUNES,DEHYD (LOW-MOISTURE),UNCKD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,3.7,0.73,89.07,339,,,72,3.52,64,112,1058,5,0.75,,1762,0,0,0.118,0.165,2.995,0.745,0,,0,0
9290,900,"Prunes, dehydrated (low-moisture), stewed","PRUNES,DEHYD (LOW-MOISTURE),STWD",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.23,0.24,29.7,113,,,24,1.17,21,37,353,2,0.25,,523,0,0,0.046,0.03,0.985,0.191,0,,0,0
9291,900,"Plums, dried (prunes), uncooked","PLUMS,DRIED (PRUNES),UNCKD",,,Y,Pits,13,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.18,0.38,63.88,240,38.13,7.1,43,0.93,41,69,732,2,0.44,0.3,781,0,0.6,0.051,0.186,1.882,0.205,0,59.5,0,0
9292,900,"Plums, dried (prunes), stewed, without added sugar","PLUMS,DRIED (PRUNES),STWD,WO/ ADDED SUGAR",,,Y,Pits,15,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.96,0.16,28.08,107,24.98,3.1,19,0.41,18,30,321,1,0.19,0.1,342,0,2.9,0.024,0.1,0.723,0.218,0,26.1,0,0
9293,900,"Plums, dried (prunes), stewed, with added sugar","PLUMS,DRIED (PRUNES),STWD,W/ ADDED SUGAR",,,,Pits,15,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.09,0.22,32.88,124,,3.8,21,1.04,19,33,312,2,0.22,1,285,0,2.7,0.022,0.093,0.675,0.203,0,,0,0
9294,900,"Prune juice, canned","PRUNE JUICE,CANNED",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.61,0.03,17.45,71,16.45,1,12,1.18,14,25,276,4,0.21,0.6,3,0,4.1,0.016,0.07,0.785,0.218,0,3.4,0,0
9295,900,"Pummelo, raw","PUMMELO,RAW",,,,"Seeds, skin, and membrane",44,Citrus maxima,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.76,0.04,9.62,38,,1,4,0.11,6,17,216,1,0.08,,8,,61,0.034,0.027,0.22,0.036,0,,,0
9296,900,"Quinces, raw","QUINCES,RAW",,,,"Core, seeds, and parings",39,Cydonia oblonga,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.4,0.1,15.3,57,,1.9,11,0.7,8,17,197,4,0.04,0.6,40,,15,0.02,0.03,0.2,0.04,0,,0,0
9297,900,"Raisins, golden seedless","RAISINS,GOLDEN SEEDLESS",,,Y,,0,Vitis vinifera,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,3.39,0.46,79.52,302,59.19,4,53,1.79,35,115,746,12,0.32,0.7,0,0,3.2,0.008,0.191,1.142,0.323,0,3.5,0,0
9298,900,"Raisins, seedless","RAISINS,SEEDLESS",,,Y,,0,Vitis vinifera,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,3.07,0.46,79.18,299,59.19,3.7,50,1.88,32,101,749,11,0.22,0.6,0,0,2.3,0.106,0.125,0.766,0.174,0,3.5,0,0
9299,900,"Raisins, seeded","RAISINS,SEEDED",,,,,0,Vitis vinifera,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.52,0.54,78.47,296,,6.8,28,2.59,30,75,825,28,0.18,0.6,0,0,5.4,0.112,0.182,1.114,0.188,0,,0,0
9301,900,"Rambutan, canned, syrup pack","RAMBUTAN,CND,SYRUP PK",,,,,0,Nephelium lappaceum,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.65,0.21,20.87,82,,0.9,22,0.35,7,9,42,11,0.08,,3,,4.9,0.013,0.022,1.352,0.02,0,,0,0
9302,900,"Raspberries, raw","RASPBERRIES,RAW",,,Y,"Caps, stems, and spoiled berries",4,Rubus spp.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.2,0.65,11.94,52,4.42,6.5,25,0.69,22,29,151,1,0.42,0.2,33,0,26.2,0.032,0.038,0.598,0.055,0,7.8,0,0
9304,900,"Raspberries, canned, red, heavy syrup pack, solids and liquids","RASPBERRIES,CND,RED,HVY SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.83,0.12,23.36,91,20.06,3.3,11,0.42,12,9,94,3,0.16,0.1,33,0,8.7,0.02,0.031,0.443,0.042,0,5.2,0,0
9306,900,"Raspberries, frozen, red, sweetened","RASPBERRIES,FRZ,RED,SWTND",,,Y,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.7,0.16,26.16,103,21.76,4.4,15,0.65,13,17,114,1,0.18,0.3,60,0,16.5,0.019,0.045,0.23,0.034,0,6.5,0,0
9307,900,"Rhubarb, raw","RHUBARB,RAW",,,Y,"19% ends, 6% leaves",25,Rheum rhabarbarum,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.9,0.2,4.54,21,1.1,1.8,86,0.22,12,14,288,4,0.1,1.1,102,0,8,0.02,0.03,0.3,0.024,0,29.3,0,0
9309,900,"Rhubarb, frozen, uncooked","RHUBARB,FROZEN,UNCOOKED",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.55,0.11,5.1,21,1.1,1.8,194,0.29,18,12,108,2,0.1,1.1,107,0,4.8,0.031,0.029,0.203,0.025,0,29.3,0,0
9310,900,"Rhubarb, frozen, cooked, with sugar","RHUBARB,FRZ,CKD,W/SUGAR",,,Y,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.39,0.05,31.2,116,28.7,2,145,0.21,12,8,96,1,0.08,0.9,73,0,3.3,0.018,0.023,0.2,0.02,0,21.1,0,0
9311,900,"Roselle, raw","ROSELLE,RAW",,,,Seed pods and stem,39,Hibiscus sabdariffa,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.96,0.64,11.31,49,,,215,1.48,51,37,208,6,,,287,,12,0.011,0.028,0.31,,0,,,0
9312,900,"Rose-apples, raw","ROSE-APPLES,RAW",,,,Caps and pits,33,Syzygium jambos,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.6,0.3,5.7,25,,,29,0.07,5,8,123,0,0.06,,339,,22.3,0.02,0.03,0.8,,0,,,0
9313,900,"Sapodilla, raw","SAPODILLA,RAW",,,,Seeds and skin,20,Manilkara zapota,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.44,1.1,19.96,83,,5.3,21,0.8,12,12,193,12,0.1,0.6,60,,14.7,0,0.02,0.2,0.037,0,,0,0
9314,900,"Sapote, mamey, raw","SAPOTE,MAMEY,RAW","mamey colorado, marmalade plum",,,Seeds and skin,31,Pouteria sapota,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.45,0.46,32.1,124,20.14,5.4,18,0.78,11,26,454,7,0.19,,143,,23,0.013,0.116,1.432,0.72,0,,,0
9315,900,"Soursop, raw","SOURSOP,RAW",,,Y,Seeds and skin,33,Annona muricata,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1,0.3,16.84,66,13.54,3.3,14,0.6,21,27,278,14,0.1,0.6,2,0,20.6,0.07,0.05,0.9,0.059,0,0.4,0,0
9316,900,"Strawberries, raw","STRAWBERRIES,RAW",,,Y,Caps and stems,6,Fragaria X ananassa,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.67,0.3,7.68,32,4.89,2,16,0.41,13,24,153,1,0.14,0.4,12,0,58.8,0.024,0.022,0.386,0.047,0,2.2,0,0
9317,900,"Strawberries, canned, heavy syrup pack, solids and liquids","STRAWBERRIES,CND,HVY SYRUP PK,SOL&LIQUIDS",,,Y,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.56,0.26,23.53,92,21.83,1.7,13,0.49,8,12,86,4,0.09,0.3,26,0,31.7,0.021,0.034,0.057,0.049,0,1.5,0,0
9318,900,"Strawberries, frozen, unsweetened","STRAWBERRIES,FRZ,UNSWTND",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.43,0.11,9.13,35,4.56,2.1,16,0.75,11,13,148,2,0.13,0.7,45,0,41.2,0.022,0.037,0.462,0.028,0,2.2,0,0
9319,900,"Strawberries, frozen, sweetened, whole","STRAWBERRIES,FRZ,SWTND,WHL",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.52,0.14,21,78,18.61,1.9,11,0.47,6,12,98,1,0.05,0.7,27,0,39.5,0.015,0.077,0.293,0.028,0,1.9,0,0
9320,900,"Strawberries, frozen, sweetened, sliced","STRAWBERRIES,FRZ,SWTND,SLICED",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.53,0.13,25.92,96,24.01,1.9,11,0.59,7,13,98,3,0.06,0.7,24,0,41.4,0.016,0.051,0.401,0.03,0,1.7,0,0
9321,900,"Sugar-apples, (sweetsop), raw","SUGAR-APPLES,(SWEETSOP),RAW",,,,Seeds and skin,45,Annona squamosa,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.06,0.29,23.64,94,,4.4,24,0.6,21,32,247,9,0.1,0.6,6,,36.3,0.11,0.113,0.883,0.2,0,,0,0
9322,900,"Tamarinds, raw","TAMARINDS,RAW",,,Y,Pods and seeds,66,Tamarindus indica,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.8,0.6,62.5,239,38.8,5.1,74,2.8,92,113,628,28,0.1,1.3,30,0,3.5,0.428,0.152,1.938,0.066,0,2.8,0,0
9325,900,"Fruit salad, (pineapple and papaya and banana and guava), tropical, canned, heavy syrup, solids and liquids","FRUIT SALAD,TROPICAL,CND,HVY SYRUP,SOL&LIQUIDS",,,,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.41,0.1,22.36,86,,1.3,13,0.52,13,7,131,2,0.11,0.5,127,0,17.5,0.054,0.045,0.562,0.12,0,,0,0
9326,900,"Watermelon, raw","WATERMELON,RAW",,,Y,"Rind, seeds, and cutting loss",48,Citrullus lanatus,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.61,0.15,7.55,30,6.2,0.4,7,0.24,10,11,112,1,0.1,0.4,569,0,8.1,0.033,0.021,0.178,0.045,0,0.1,0,0
9328,900,"Maraschino cherries, canned, drained","MARASCHINO CHERRIES,CND,DRND",,,Y,,0,,6.25,3.36,8.37,3.87,Fruits and Fruit Juices,0.22,0.21,41.97,165,38.77,3.2,54,0.43,4,3,21,4,0.26,0.2,45,0,0,0,0,0.004,0.005,0,1.5,0,0
9334,900,"Feijoa, raw","FEIJOA,RAW",,,,Skin,43,Acca sellowiana,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.71,0.42,15.21,61,8.2,6.4,17,0.14,9,19,172,3,0.06,,6,,32.9,0.006,0.018,0.295,0.067,0,3.5,0,0
9340,900,"Pears, asian, raw","PEARS,ASIAN,RAW",,,Y,Core and stem,9,Pyrus pyrifolia (Burman f.) Nakai,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.5,0.23,10.65,42,7.05,3.6,4,0,8,11,121,0,0.02,0.1,0,0,3.8,0.009,0.01,0.219,0.022,0,4.5,0,0
9351,900,"Fruit cocktail, canned, heavy syrup, drained","FRUIT COCKTAIL,CND,HVY SYRUP,DRND",,,Y,,0,,,3.36,8.37,3.6,Fruits and Fruit Juices,0.47,0.1,18.8,70,17.14,1.7,7,0.29,5,12,90,6,0.08,0.5,273,0,1.9,0.019,0.021,0.374,0.051,0,3.9,0,0
9352,900,"Blueberries, canned, light syrup, drained","BLUEBERRIES,CND,LT SYRUP,DRND",,,Y,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.04,0.4,22.66,88,17.45,2.6,6,0.43,4,12,54,3,0.09,0.1,36,0,0.5,0.046,0.132,0.363,0.049,0,19.9,0,0
9353,900,"Blueberries, wild, canned, heavy syrup, drained","BLUEBERRIES,WILD,CND,HVY SYRUP,DRND",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.56,0.34,28.32,107,19.28,4.9,19,2.2,6,14,46,1,0.12,,,,0.3,0.033,0.313,0.469,0.035,,14.8,0,
9354,900,"Pineapple, canned, juice pack, drained","PINEAPPLE,CND,JUC PK,DRND",,,Y,,0,,,3.36,8.37,3.7,Fruits and Fruit Juices,0.51,0.11,15.56,60,14.26,1.3,16,0.28,15,7,124,1,0.1,0.4,50,0,9.4,0.102,0.021,0.284,0.075,0,0.7,0,0
9357,900,"Apricots, canned, heavy syrup, drained","APRICOTS,CND,HVY SYRUP,DRND",,,Y,,0,,,3.36,8.37,3.75,Fruits and Fruit Juices,0.64,0.11,21.31,83,18.65,2.7,10,0.3,7,13,143,4,0.11,0.1,2924,0,3.1,0.021,0.024,0.376,0.055,0,3.3,0,0
9362,900,"Cherries, sour, canned, water pack, drained","CHERRIES,SOUR,CND,H2O PK,DRND",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.69,0.21,10.45,42,6.99,1.2,11,0.64,8,16,115,4,0.07,,,,0.3,0.025,0.065,0.26,0.047,0,8.1,,
9367,900,"Cherries, sweet, canned, pitted, heavy syrup, drained","CHERRIES,SWT,CND,PITTED,HVY SYRUP,DRND",,,Y,,0,,,3.36,8.37,3.75,Fruits and Fruit Juices,0.73,0.21,21.07,83,16.18,2.3,10,0.35,9,20,148,3,0.1,0,237,0,3.6,0.022,0.043,0.396,0.022,0,0.9,0,0
9370,900,"Peaches, canned, heavy syrup, drained","PEACHES,CND,HVY SYRUP,DRND",,,Y,,0,,,3.36,8.37,3.75,Fruits and Fruit Juices,0.52,0.18,18.43,72,14.66,1.2,3,0.27,5,12,94,6,0.09,0,626,0,0.7,0.02,0.02,0.625,0.013,0,2.4,0,0
9374,900,"Pears, canned, heavy syrup, drained","PEARS,CND,HVY SYRUP,DRND",,,Y,,0,,,3.36,8.37,3.75,Fruits and Fruit Juices,0.24,0.18,19.08,74,16.42,2.7,6,0.22,4,8,66,5,0.08,0.1,8,0,1.1,0.011,0.024,0.242,0.014,0,0.3,0,0
9379,900,"Plums, canned, heavy syrup, drained","PLUMS,CND,HVY SYRUP,DRND",,,Y,,0,,,3.36,8.37,3.75,Fruits and Fruit Juices,0.44,0.14,23.12,89,21.58,1.5,10,0.84,5,15,93,19,0.07,0,399,0,0.4,0.017,0.041,0.291,0.028,0,6.4,0,0
9383,900,"Tangerines, (mandarin oranges), canned, juice pack, drained","TANGERINES,(MANDARIN ORANGES),CND,JUC PK,DRND",,,Y,,0,,,3.36,8.37,3.7,Fruits and Fruit Juices,0.75,0.04,9.41,38,8.25,1.2,12,0.27,11,11,136,5,0.53,0.4,1312,0,33.9,0.088,0.031,0.445,0.043,0,0,0,0
9400,900,"Apple juice, canned or bottled, unsweetened, with added ascorbic acid","APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.1,0.13,11.3,46,9.62,0.2,8,0.12,5,7,101,4,0.02,0.1,1,0,38.5,0.021,0.017,0.073,0.018,0,0,0,0
9401,900,"Applesauce, canned, unsweetened, with added ascorbic acid","APPLESAUCE,CND,UNSWTND,W/ VIT C",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.17,0.1,11.27,42,9.39,1.1,4,0.23,3,5,74,2,0.03,0.3,29,0,21.2,0.026,0.03,0.084,0.027,0,0.5,0,0
9402,900,"Applesauce, canned, sweetened, with salt","APPLESAUCE,CND,SWTND,W/SALT",,,,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.18,0.18,19.91,76,,1.2,4,0.35,3,7,61,28,0.04,0.3,11,0,1.7,0.013,0.028,0.188,0.026,0,,0,0
9403,900,"Apricot nectar, canned, with added ascorbic acid","APRICOT NECTAR,CND,W/ VIT C",,,,,0,,6.25,3.36,8.37,3.78,Fruits and Fruit Juices,0.37,0.09,14.39,56,13.24,0.6,7,0.38,5,9,114,3,0.09,0.2,1316,0,17.6,0.009,0.014,0.26,0.022,0,,0,0
9404,900,"Grapefruit juice, pink, raw","GRAPEFRUIT JUICE,PINK,RAW",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.5,0.1,9.2,39,,,9,0.2,12,15,162,1,0.05,,440,0,38,0.04,0.02,0.2,0.044,0,,0,0
9407,900,"Peach nectar, canned, with added ascorbic acid","PEACH NECTAR,CND,W/ VIT C",,,,,0,,6.25,3.36,8.37,3.79,Fruits and Fruit Juices,0.27,0.02,13.92,54,12.35,0.6,5,0.19,4,6,40,7,0.08,0.2,258,0,17.6,0.003,0.014,0.288,0.007,0,,0,0
9408,900,"Pear nectar, canned, with added ascorbic acid","PEAR NECTAR,CND,W/ VIT C",vitamin C,,,,0,,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.11,0.01,15.76,60,15.16,0.6,5,0.26,3,3,13,4,0.07,0.5,1,0,27,0.002,0.013,0.128,0.014,0,,0,0
9409,900,"Pineapple juice, canned or bottled, unsweetened, with added ascorbic acid","PINEAPPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.36,0.12,12.87,53,9.98,0.2,13,0.31,12,8,130,2,0.11,0.1,5,0,43.8,0.058,0.021,0.199,0.1,0,0.3,0,0
9410,900,"Apple juice, frozen concentrate, unsweetened, undiluted, with added ascorbic acid","APPLE JUC,FRZ CONC,UNSWTND,UNDIL,W/ VIT C",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.51,0.37,41,166,38.83,,20,0.91,17,25,448,25,0.13,0.4,0,0,88.9,0.011,0.054,0.135,0.116,0,,0,0
9411,900,"Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added ascorbic acid","APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O,W/ VIT C",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.14,0.1,11.54,47,,0.1,6,0.26,5,7,126,7,0.04,0.1,0,0,25,0.003,0.015,0.038,0.033,0,,0,0
9412,900,"Pears, raw, bartlett","PEARS,RAW,BARTLETT",,,,"Stem, core and seeds",10,Pyrus communis,,,,,Fruits and Fruit Juices,0.39,0.16,15.01,63,9.69,3.1,9,0.19,6,11,101,1,0.08,0.1,28,,4.4,0.012,0.026,0.164,0.026,,3.8,,
9413,900,"Pears, raw, red anjou","PEARS,RAW,RED ANJOU",,,,"Stem, core and seeds",11,Pyrus communis,,,,,Fruits and Fruit Juices,0.33,0.14,14.94,62,9.54,3,11,0.19,7,13,123,1,0.13,0.1,24,,5.2,0.012,0.028,0.162,0.039,,4.9,,
9414,900,"Pears, raw, bosc","PEARS,RAW,BOSC",,,,"Stem, core and seeds",10,Pyrus communis,,,,,Fruits and Fruit Juices,0.36,0.09,16.1,67,10.23,3.1,10,0.15,7,14,122,1,0.13,0,19,,2.8,0.012,0.023,0.152,0.021,,5.2,,
9415,900,"Pears, raw, green anjou","PEARS,RAW,GRN ANJOU",,,,"Stem, core and seeds",10,Pyrus communis,,,,,Fruits and Fruit Juices,0.44,0.1,15.79,66,9.73,3.1,11,0.24,7,13,127,1,0.1,0,25,,4.4,0.01,0.022,0.151,0.026,,4.3,,
9416,900,"Grapefruit juice, white, bottled, unsweetened, OCEAN SPRAY","GRAPEFRUIT JUC,WHITE,BTLD,UNSWTND,OCEAN SPRAY",,"Ocean Spray Cranberries, Inc.",,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.58,0.1,7.93,34,7.5,0.8,14,0.11,8,15,129,3,0.08,,35,,28.3,,,,,,,,0
9420,900,"Jackfruit, canned, syrup pack","JACKFRUIT,CND,SYRUP PK",,,,,0,Artocarpus heterophyllus,6.25,3.36,8.37,3.75,Fruits and Fruit Juices,0.36,0.14,23.94,92,,0.9,44,0.29,10,6,96,11,0.11,,2,,0.5,0.033,0.036,0.677,0.044,0,,0,0
9421,900,"Dates, medjool","DATES,MEDJOOL",,,,Pits,8,Phoenix dactylifera,,3.36,8.37,3.6,Fruits and Fruit Juices,1.81,0.15,74.97,277,66.47,6.7,64,0.9,54,62,696,1,0.44,,149,0,0,0.05,0.06,1.61,0.249,,2.7,0,
9422,900,"Durian, raw or frozen","DURIAN,RAW OR FROZEN",,,,Shell and seeds (for raw fruit),68,Durio zibethinus,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.47,5.33,27.09,147,,3.8,6,0.43,30,39,436,2,0.28,,44,,19.7,0.374,0.2,1.074,0.316,0,,,0
9423,900,Prune puree,PRUNE PUREE,,,,,0,,,,,,Fruits and Fruit Juices,2.1,0.2,65.1,257,39,3.3,31,2.8,,72,852,23,,,2000,,4.3,0.04,,2.5,,,,,0
9426,900,Candied fruit,CANDIED FRUIT,,,Y,,0,,,,,,Fruits and Fruit Juices,0.34,0.07,82.74,322,80.68,1.6,18,0.17,4,5,56,98,0.05,0.6,19,0,0,0,0,0,0,0,0.3,0,0
9427,900,"Abiyuch, raw","ABIYUCH,RAW",garlic pear,,,,,Crateva religiosa,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.5,0.1,17.6,69,8.55,5.3,8,1.61,24,47,304,20,0.31,,100,,54.1,,,,,,,,
9428,900,"Rowal, raw","ROWAL,RAW",,,,,,Pangium edule,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,2.3,2,23.9,111,14.1,6.2,15,2.2,32,52,131,4,0.43,,383,,25.8,,,,,,,,
9429,900,"Pineapple, raw, traditional varieties","PINEAPPLE,RAW,TRADITIONAL VAR",,,,"8% core, 13% crown, 22% parings",42,Ananas comosus,,3.36,8.37,3.6,Fruits and Fruit Juices,0.55,0.13,11.82,45,8.29,,13,0.25,12,9,125,1,0.08,0,52,0,16.9,0.078,0.029,0.47,0.106,,0.7,,
9430,900,"Pineapple, raw, extra sweet variety","PINEAPPLE,RAW,EX SWT VAR",,,,"8% core, 16% crown, 26% parings",49,Ananas comosus,,3.36,8.37,3.6,Fruits and Fruit Juices,0.53,0.11,13.5,51,10.32,1.4,13,0.28,12,8,108,1,0.12,0.1,57,0,56.4,0.08,0.033,0.507,0.114,,0.7,0,
9431,900,"USDA Commodity, mixed fruit (peaches, pears, grapes), canned, light syrup, drained","USDA CMDTY,MXD FRUIT (PEACH,PEARS,GRAPES),CND,LT SYRUP,DRND",Commodity code A404,,,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.46,0.1,14.65,57,11.25,1.6,5,0.31,5,12,89,5,0.09,,302,0,2.2,0.012,0.024,0.392,0.016,,4.6,0,0
9432,900,"USDA Commodity, mixed fruit (peaches, pears, grapes), canned, light syrup, solids and liquids","USDA CMDTY,MXD FRUIT (PEACH,PEAR,GRAPE),CND,LT SYR,SOL & LIQ",Commodity code A404,,,,0,,6.25,3.36,8.37,3.71,Fruits and Fruit Juices,0.41,0.08,14.3,55,11.46,1.2,5,0.29,5,13,85,6,0.08,,198,0,3.1,0.013,0.038,0.385,0.016,,2.9,0,0
9433,900,"Clementines, raw","CLEMENTINES,RAW",,,,Peel and seeds,23,Citrus clementina hort. ex Tanaka,,3.36,8.37,3.6,Fruits and Fruit Juices,0.85,0.15,12.02,47,9.18,1.7,30,0.14,10,21,177,1,0.06,0.1,,0,48.8,0.086,0.03,0.636,0.075,,0,0,
9434,900,"Guanabana nectar, canned","GUANABANA NECTAR,CND",,,Y,,0,,6.25,3.36,8.37,3.8,Fruits and Fruit Juices,0.11,0.17,14.93,59,13.07,0.1,7,0.36,3,2,25,8,0.02,0.4,0,0,11.1,0.003,0.011,0.12,0.007,0,0,0,0
9435,900,"Guava nectar, canned, with added ascorbic acid","GUAVA NECTAR,CND,W/ ADDED VIT C",,,,,0,,6.25,3.36,8.37,3.8,Fruits and Fruit Juices,0.09,0.06,16.25,63,12.95,1,8,0.38,2,2,39,6,0.03,,106,,21.1,0.003,0.003,0.17,0.01,,1,0,0
9436,900,"Mango nectar, canned","MANGO NECTAR,CND",,,Y,,0,,6.25,3.36,8.37,3.8,Fruits and Fruit Juices,0.11,0.06,13.12,51,12.45,0.3,17,0.36,3,2,24,5,0.02,0.4,692,0,15.2,0.003,0.003,0.08,0.015,0,0.8,0,0
9437,900,"Tamarind nectar, canned","TAMARIND NECTAR,CND",,,,,0,,6.25,3.36,8.37,3.8,Fruits and Fruit Juices,0.09,0.12,14.73,57,12.7,0.5,10,0.75,4,2,27,7,0.02,,0,,7.1,0.003,0.003,0.07,0.007,0,0.1,0,0
9438,900,"USDA Commodity peaches, canned, light syrup, drained","USDA CMDTY PEACHES,CND,LT SYRUP,DRND","Commodity codes A408, A409, A411",,,,0,,,3.36,8.37,3.71,Fruits and Fruit Juices,0.56,0.15,15.65,61,10.61,0.7,3,0.25,5,10,87,7,0.16,,493,,2.5,0.023,0.02,0.585,0.016,,2.8,0,
9439,900,"USDA Commodity pears, canned, juice pack, drained","USDA CMDTY PEARS,CND,JUC PK,DRND","Commodity codes A437, A434, A431, A433",,,,0,,,3.36,8.37,3.7,Fruits and Fruit Juices,0.34,0.19,12.91,51,8.27,2.2,9,0.34,7,9,99,4,0.14,,,,0.3,0.02,0.046,0.218,0.016,,0.3,0,
9440,900,"USDA Commodity pears, canned, light syrup, drained","USDA CMDTY PEARS,CND,LT SYRUP,DRND","Commodity codes A437, A434, A431, A433",,,,0,,,3.36,8.37,3.71,Fruits and Fruit Juices,0.28,0.15,16.21,62,11.22,1.6,5,0.28,4,7,61,5,0.09,,,,0.9,0.02,0.014,0.115,0.016,,0.3,0,
9442,900,"Pomegranate juice, bottled","POMEGRANATE JUC,BTLD",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.15,0.29,13.13,54,12.65,0.1,11,0.1,7,11,214,9,0.09,0.3,0,0,0.1,0.015,0.015,0.233,0.04,0,10.4,0,0
9443,900,"Juice, apple and grape blend, with added ascorbic acid","JUICE,APPL & GRAPE BLEND,W/ ADDED VIT C",,,Y,,0,,,3.36,8.37,3.92,Fruits and Fruit Juices,0.16,0.12,12.46,50,10.92,0.2,11,0.11,7,9,96,7,0.05,0.1,4,0,28.2,0.006,0.015,0.087,0.021,0,0.2,0,0
9444,900,"Juice, apple, grape and pear blend, with added ascorbic acid and calcium","JUICE,APPL,GRAPE & PEAR BLEND,W/ ADDED VIT C & CA",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.17,0.12,12.96,52,9.95,0.2,72,0.14,6,11,89,5,0.06,0.1,1,0,50.7,0.005,0.015,0.094,0.018,0,0,0,0
9446,900,"Plantains, green, fried","PLANTAINS,GRN,FRIED",tostones de platano,,,,0,,6.25,4,9,4,Fruits and Fruit Juices,1.5,11.81,49.17,309,3.63,3.5,4,0.67,58,44,482,2,0.23,,1192,,3.4,0.047,0.102,0.818,0.264,,,,
9447,900,"Plantains, yellow, fried, Latino restaurant","PLANTAINS,YEL,FRIED,LATINO RESTAURANT",platanos maduros,,,,0,,6.25,4,9,4,Fruits and Fruit Juices,1.42,7.51,40.77,236,21.76,3.2,6,0.62,45,43,507,6,0.24,0.4,1318,,,0.07,0.02,0.837,0.29,,31.8,,
9448,900,"Nance, canned, syrup, drained","NANCE,CND,SYRUP,DRND",yellow cherries,,,,,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.56,1.28,22.79,95,15.66,7,42,0.37,16,7,194,8,0.06,,,,10.8,0.015,0.02,0.3,0.015,,,,
9449,900,"Nance, frozen, unsweetened","NANCE,FRZ,UNSWTND",yellow cherries,,,Pits,27,Byrsonima crassifolia (L.) Kunth,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.66,1.16,16.97,73,8.31,7.5,46,0.38,20,10,244,3,0.09,0.4,74,,92.5,0.015,0.018,0.29,0.021,,11.9,0,
9450,900,"Naranjilla (lulo) pulp, frozen, unsweetened","NARANJILLA (LULO) PULP,FRZ,UNSWTND",,,,,0,Solanum quitoense Lam.,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,0.44,0.22,5.9,25,3.74,1.1,8,0.35,11,12,200,4,0.1,0.4,568,,3.2,0.045,0,1.45,0.107,,14.6,0,
9451,900,Horned melon (Kiwano),HORNED MELON (KIWANO),African horned melon,,,Rind,36,Cucumis metulifer,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.78,1.26,7.56,44,,,13,1.13,40,37,123,2,0.48,,147,,5.3,0.025,0.015,0.565,0.063,,,0,
9452,900,Orange Pineapple Juice Blend,ORANGE PNAPPL JUC BLEND,,,Y,,0,,6.25,,,,Fruits and Fruit Juices,0.41,0.08,12.2,51,10.57,0.2,8,0.18,10,11,150,4,0.06,0.1,17,0,40.7,0.04,0.025,0.173,0.061,0,0.1,0,0
9500,900,"Apples, raw, red delicious, with skin","APPLES,RAW,RED DELICIOUS,W/ SKN",,,,Core and stem,11,Malus domestica,,,,,Fruits and Fruit Juices,0.27,0.2,14.06,59,10.48,2.3,6,0.11,5,12,104,1,0.04,0,55,,,0.015,0.025,0.075,0.034,,2.6,,
9501,900,"Apples, raw, golden delicious, with skin","APPLES,RAW,GOLDEN DELICIOUS,W/ SKN",,,,Core and stem,10,Malus domestica,,,,,Fruits and Fruit Juices,0.28,0.15,13.6,57,10.04,2.4,6,0.13,5,10,100,2,0.04,0,51,,,0.018,0.026,0.094,0.051,,1.8,,
9502,900,"Apples, raw, granny smith, with skin","APPLES,RAW,GRANNY SMITH,W/ SKN",,,,Core and stem,11,Malus domestica,,,,,Fruits and Fruit Juices,0.44,0.19,13.61,58,9.59,2.8,5,0.15,5,12,120,1,0.04,0.1,100,,,0.019,0.025,0.126,0.037,,3.2,,
9503,900,"Apples, raw, gala, with skin","APPLES,RAW,GALA,W/ SKN",,,,Core and stem,9,Malus domestica,,,,,Fruits and Fruit Juices,0.25,0.12,13.68,57,10.37,2.3,7,0.12,5,11,108,1,0.05,0,28,,,0.017,0.029,0.075,0.049,,1.3,,
9504,900,"Apples, raw, fuji, with skin","APPLES,RAW,FUJI,W/ SKN",,,,Core and stem,11,Malus domestica,,,,,Fruits and Fruit Juices,0.2,0.18,15.22,63,11.68,2.1,7,0.1,5,13,109,1,0.04,0,38,,,0.013,0.026,0.07,0.045,,1,,
9506,900,"Orange juice, chilled, includes from concentrate, with added calcium and vitamins A, D, E","ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADD CA & VITAMINS A,D,E",,,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.68,0.12,11.54,49,8.31,0.3,146,0.13,11,17,178,2,0.07,0.1,417,42,33.6,0.046,0.039,0.28,0.076,0,0,0,0
9507,900,"Fruit juice smoothie, NAKED JUICE, MIGHTY MANGO","FRUIT JUC SMOOTHIE,NAKED JUC,MIGHTY MANGO",,"Naked Juice Co. of Glendora, Inc.",,,0,,6.25,,,,Fruits and Fruit Juices,0.42,0,15,63,12.5,0,8,0.15,,,142,4,,,2083,,2.5,,,,,,,,0
9508,900,"Fruit juice smoothie, NAKED JUICE, GREEN MACHINE","FRUIT JUC SMOOTHIE,NAKED JUC,GRN MACHINE",,"Naked Juice Co. of Glendora, Inc.",Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.6,0.26,12.53,53,11.15,0.7,11,0.42,10,15,165,6,0.06,0.4,428,0,8.2,0.07,0.09,0.29,0.075,0.63,21.2,0,0
9510,900,"Pineapple juice, canned, not from concentrate, unsweetened, with added vitamins A, C and E","PINEAPPLE JUC,CND,NOT FROM CONC,UNSWTND,W/ ADD VIT A,C & E",,Dole Food Company,,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.36,0.14,12.18,50,9.98,0.2,14,0.26,11,9,132,3,0.11,,235,0,31.3,0.058,0.016,0.141,0.1,0,,0,0
9511,900,"Fruit juice smoothie, NAKED JUICE, BLUE MACHINE","FRUIT JUC SMOOTHIE,NAKED JUC,BLUE MACHINE",,"Naked Juice Co. of Glendora, Inc.",,,0,,6.25,,,,Fruits and Fruit Juices,0.42,0,16.67,71,12.08,2.9,0,0.15,,,154,4,,,0,,25,,,8.333,0.833,2.5,,,0
9512,900,"Grape juice, canned or bottled, unsweetened, with added ascorbic acid and calcium","GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C & CA",,,Y,,0,,6.25,,,,Fruits and Fruit Juices,0.37,0.13,14.77,62,14.2,0.2,42,0.25,10,14,104,5,0.07,0,8,0,25,0.017,0.015,0.133,0.032,0,0.4,0,0
9513,900,"Fruit juice smoothie, ODWALLA, ORIGINAL SUPERFOOD","FRUIT JUC SMOOTHIE,ODWALLA,ORIGINAL SUPERFOOD",,Odwalla,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.63,0.36,11.51,50,10.16,0.6,7,0.39,9,24,145,3,0.06,0.3,1408,0,31.3,0.05,0.085,0.455,0.026,0,1.8,0,0
9514,900,"Fruit juice smoothie, BOLTHOUSE FARMS, BERRY BOOST","FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,BERRY BOOST",,"Wm. Bolthouse Farms, Inc.",,,0,,6.25,,,,Fruits and Fruit Juices,0.63,0.02,10.9,46,9.3,0,10,0.21,,,116,4,,,290,,108.6,,,,0.4,0.9,,,0
9515,900,"Fruit juice smoothie, BOLTHOUSE FARMS, GREEN GOODNESS","FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,GRN GOODNESS",,"Wm. Bolthouse Farms, Inc.",Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.63,0.33,13.04,56,11.46,0.6,18,0.34,15,16,177,11,0.08,0.2,417,0,6.2,0.06,0.08,0.333,0.08,0.55,2.6,0,0
9516,900,"Fruit juice smoothie, BOLTHOUSE FARMS, strawberry banana","FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,STRAWBERRY BANANA",,"Wm. Bolthouse Farms, Inc.",Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.44,0.3,12.37,52,10.33,0.6,11,0.32,13,16,184,5,0.07,0.4,20,0,47.3,0.035,0.053,0.287,0.075,0,1.6,0,0
9517,900,"Apple juice, canned or bottled, unsweetened, with added ascorbic acid, calcium, and potassium","APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C,CA,& K",,,Y,,0,,,,,,Fruits and Fruit Juices,0.12,0.17,11.49,48,9.47,0.3,70,0.13,5,9,184,5,0.04,0.1,1,0,30.3,0.004,0.015,0.067,0.018,0,0,0,0
9518,900,"Raspberries, frozen, unsweetened","RASPBERRIES,FRZ,UNSWTND",,,,,0,,6.25,3.36,8.37,3.6,Fruits and Fruit Juices,1.2,0.65,11.94,52,4.42,6.5,25,0.69,22,29,151,1,0.42,0.2,33,0,26.2,0.032,0.038,0.598,0.055,0,7.8,0,0
9519,900,"Guava nectar, with sucralose, canned","GUAVA NECTAR,W/ SUCRALOSE,CND",,,Y,,0,,,,,,Fruits and Fruit Juices,0.3,0.07,13.3,48,10.15,1.2,8,0.54,2,3,33,6,0.02,0.1,49,0,21.3,0.005,0.005,0.17,0.009,0,1,0,0
9520,900,"Kiwifruit, ZESPRI SunGold, raw","KIWIFRUIT,ZESPRI SUNGOLD,RAW",Gold3,,,Skin,28,Actinidia chinensis �Zesy002� (Gold3),,3.36,8.37,3.6,Fruits and Fruit Juices,1.02,0.28,15.79,63,12.3,1.4,17,0.21,12,25,315,3,0.08,0.4,23,0,161.3,0,0.074,0.231,0.079,0.08,6.1,0,0
9522,900,"Cranberry juice blend, 100% juice, bottled, with added vitamin C and calcium","CRANBERRY JUC BLEND,100% JUC,BTLD,W/ ADDED VIT C & CA",,,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.27,0.12,10.91,45,9.8,0.1,19,0.08,5,8,76,6,0.05,0.1,25,0,31.5,0.005,0.015,0.094,0.018,0,0,0,0
9523,900,"Lemon juice from concentrate, bottled, CONCORD","LEMON JUC FROM CONC,BTLD,CONCORD",,Concord Foods,,,0,,,,,,Fruits and Fruit Juices,0.4,0.07,5.37,24,1.42,,8,0.06,6,9,112,29,0.09,,,,0,0.02,0.017,0.197,0.037,,,,
9524,900,"Lemon juice from concentrate, bottled, REAL LEMON","LEMON JUC FROM CONC,BTLD,REAL LEMON",,,,,0,,,3.36,8.37,2.7,Fruits and Fruit Juices,0.47,0.07,5.66,17,1.59,0.7,9,0.06,6,9,109,26,0.23,,33,,16.6,0.02,0.017,0.18,0.037,,0.1,,
9525,900,"Cranberry sauce, whole, canned, OCEAN SPRAY","CRANBERRY SAU,WHL,CND,OCEAN SPRAY",,"Ocean Spray Cranberries, Inc.",,,0,,6.25,3.36,8.37,3.84,Fruits and Fruit Juices,0.75,0.05,40.4,158,31.3,1.2,3,0.2,2,4,21,5,0.02,,33,,1,,,,,,,,0
9526,900,"Cranberry sauce, jellied, canned, OCEAN SPRAY","CRANBERRY SAU,JELLIED,CND,OCEAN SPRAY",,"Ocean Spray Cranberries, Inc.",,,0,,6.25,3.36,8.37,3.84,Fruits and Fruit Juices,1.05,0.04,40.61,160,32.2,1,3,0.62,2,4,34,5,0.03,,33,,1,,,,,,,,0
9528,900,"Ruby Red grapefruit juice blend (grapefruit, grape, apple), OCEAN SPRAY, bottled, with added vitamin C","RUBY RED GRPFRT JUC BLND (GRPFRT,GRP,APL),OCEAN SPRY,W/VIT C",,"Ocean Spray Cranberries, Inc.",,,0,,,3.36,8.37,3.92,Fruits and Fruit Juices,0.5,0.1,10.53,44,10.3,0.2,10,0.14,,,94,8,,,129,,49.2,,,,,,,,0
9530,900,"Fruit juice smoothie, ODWALLA, strawberry banana","FRUIT JUC SMOOTHIE,ODWALLA,STRAWBERRY BANANA",,Odwalla,Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.5,0.32,11.05,48,9.9,0.6,10,0.2,14,18,201,2,0.08,0.2,222,0,38.4,0.05,0.05,0.285,0.065,0,0.9,0,0
9531,900,"Fruit juice smoothie, NAKED JUICE, strawberry banana","FRUIT JUC SMOOTHIE,NAKED JUC,STRAWBERRY BANANA",,"Naked Juice Co. of Glendora, Inc.",Y,,0,,6.25,3.36,8.37,3.92,Fruits and Fruit Juices,0.48,0.27,11.66,50,10.05,0.6,10,0.2,14,18,201,2,0.08,0.4,31,0,8.4,0.04,0.057,0.31,0.115,0,0.9,0,0
10000,1000,"Pork, fresh, composite of separable fat, with added solution, cooked","PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,CKD",,,,,0,,,,,,Pork Products,10.06,60.42,0.32,585,0,0,36,0.82,12,160,214,125,1.13,15.1,0,61,0,0.246,0.139,3.93,0.234,1.4,0,0,81
10001,1000,"Pork, fresh, carcass, separable lean and fat, raw","PORK,FRSH,CARCASS,LN&FAT,RAW",,,,Bone and skin,18,Suidae domesticus,6.25,4.27,9.02,3.87,Pork Products,13.91,35.07,0,376,0,0,19,0.69,13,155,253,42,1.59,28.4,8,,0.4,0.595,0.207,3.846,0.284,0.61,,0,74
10002,1000,"Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder), separable lean only, raw","PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,SHLDR),LN,RAW",,,Y,"Bone and skin 22%, separable fat 8%",30,,6.25,4.27,9.02,3.87,Pork Products,21.2,4.86,0,134,0,0,13,0.82,24,216,363,59,2.21,33.5,2,19,0.2,0.642,0.254,5.573,0.644,0.64,0,0,64
10003,1000,"Pork, fresh, composite of trimmed leg, loin, shoulder, and spareribs, (includes cuts to be cured), separable lean and fat, raw","PORK,FRSH,COMP OF LEG,LOIN,SHLDR,& SPARERIBS,LN & FAT,RAW",,,Y,Bone and skin,24,,6.25,4.27,9.02,3.87,Pork Products,18.22,14.79,0,211,0,0,11,0.89,21,195,319,57,2.27,28.5,6,29,0.3,0.622,0.255,4.73,0.504,0.67,0,0,69
10004,1000,"Pork, fresh, backfat, raw","PORK,FRESH,BACKFAT,RAW",,,Y,Skin,11,,6.25,4.27,9.02,3.87,Pork Products,2.92,88.69,0,812,0,0,2,0.18,2,38,65,11,0.37,8,15,122,0.1,0.084,0.051,0.985,0.04,0.18,0,0,57
10005,1000,"Pork, fresh, belly, raw","PORK,FRSH,BELLY,RAW",,,,Skin,7,,6.25,4.27,9.02,3.87,Pork Products,9.34,53.01,0,518,0,0,5,0.52,4,108,185,32,1.02,8,10,,0.3,0.396,0.242,4.647,0.13,0.84,0,0,72
10006,1000,"Pork, fresh, separable fat, raw","PORK,FRSH,FAT,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,9.25,65.7,0,632,0,0,14,0.26,6,84,333,47,0.6,9,86,69,0,0.16,0.09,2.63,0.143,0.67,0,0,72
10007,1000,"Pork, fresh, separable fat, cooked","PORK,FRSH,FAT,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,7.06,66.1,0,626,0,0,22,0.46,9,109,125,56,0.75,11.5,80,72,0,0.21,0.2,3.12,0.192,0.54,0,0,79
10008,1000,"Pork, fresh, leg (ham), whole, separable lean and fat, raw","PORK,FRSH,LEG (HAM),WHL,LN&FAT,RAW",,,,Bone and skin,17,,6.25,4.27,9.02,3.87,Pork Products,17.43,18.87,0,245,,0,5,0.85,20,199,315,47,1.93,29.4,7,20,0.7,0.736,0.2,4.574,0.401,0.63,,0,73
10009,1000,"Pork, fresh, leg (ham), whole, separable lean and fat, cooked, roasted","PORK,FRSH,LEG (HAM),WHL,LN&FAT,CKD,RSTD",,,Y,Bone and skin,20,,6.25,4.27,9.02,3.87,Pork Products,26.83,17.61,0,273,0,0,14,1.01,22,263,352,60,2.96,45.3,10,33,0.3,0.635,0.313,4.574,0.402,0.68,0,0,94
10010,1000,"Pork, fresh, leg (ham), whole, separable lean only, raw","PORK,FRSH,LEG (HAM),WHL,LN,RAW",,,Y,"Bone and skin 17%, separable fat 18%",35,,6.25,4.27,9.02,3.87,Pork Products,20.48,5.41,0,136,0,0,6,1.01,25,229,369,55,2.27,35.4,6,23,0.9,0.875,0.228,5.338,0.5,0.71,0,0,68
10011,1000,"Pork, fresh, leg (ham), whole, separable lean only, cooked, roasted","PORK,FRSH,LEG (HAM),WHL,LN,CKD,RSTD",,,Y,"Bone and skin 20%, separable fat 12%",32,,6.25,4.27,9.02,3.87,Pork Products,29.41,9.44,0,211,0,0,7,1.12,25,281,373,64,3.26,49.9,9,36,0.4,0.69,0.349,4.935,0.45,0.72,0,0,94
10012,1000,"Pork, fresh, leg (ham), rump half, separable lean and fat, raw","PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,RAW",,,,"Connective tissue 6%, Bone 9%, Skin 2%",17,,6.25,4.27,9.02,3.87,Pork Products,20.27,10.63,0,182,0,0,12,0.62,20,216,356,73,1.7,19.7,16,18,0,0.498,0.309,5.623,0.506,0.4,0,0,63
10013,1000,"Pork, fresh, leg (ham), rump half, separable lean and fat, cooked, roasted","PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,CKD,RSTD",,,Y,"Connective tissue 7%, Bone 9%, Skin 2%",18,,6.25,4.27,9.02,3.87,Pork Products,27.03,10.32,0,209,0,0,16,0.9,25,255,416,77,2.31,25,10,17,0,0.489,0.379,7.444,0.501,0.67,0,0,85
10014,1000,"Pork, fresh, leg (ham), rump half, separable lean only, raw","PORK,FRSH,LEG (HAM),RUMP HALF,LN,RAW",,,,"Connective tissue 6%, Bone 9%, Separable fat 10%",25,,6.25,4.27,9.02,3.87,Pork Products,21.81,2.93,0,120,0,0,12,0.67,22,235,359,76,1.85,21.2,7,11,0,0.545,0.34,6.042,0.557,0.36,0,0,62
10015,1000,"Pork, fresh, leg (ham), rump half, separable lean only, cooked, roasted","PORK,FRSH,LEG (HAM),RUMP HALF,LN,CKD,RSTD",,,,"Connective tissue 7%, Bone 9%, Separable fat 7%",23,,6.25,4.27,9.02,3.87,Pork Products,28.86,4.62,0,165,0,0,16,0.97,27,273,425,80,2.48,26.6,2,12,0,0.523,0.408,7.94,0.538,0.67,0,0,86
10016,1000,"Pork, fresh, leg (ham), shank half, separable lean and fat, raw","PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,RAW",,,,"Connective tissue 9%, Bone 13%, Skin 6%",28,,6.25,4.27,9.02,3.87,Pork Products,19.87,11.96,0,193,0,0,12,0.69,19,204,329,84,2.02,19.5,20,20,0,0.47,0.307,5.75,0.475,0.54,0,0,67
10017,1000,"Pork, fresh, leg (ham), shank half, separable lean and fat, cooked, roasted","PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,CKD,RSTD",,,,"Connective tissue 7%, Bone 11%, Skin 4%",22,,6.25,4.27,9.02,3.87,Pork Products,25.96,13.42,0,232,0,0,15,0.87,22,242,345,81,2.42,26.4,14,22,0,0.411,0.352,7.457,0.442,0.5,0,0,91
10018,1000,"Pork, fresh, leg (ham), shank half, separable lean only, raw","PORK,FRSH,LEG (HAM),SHANK HALF,LN,RAW",,,,"Connective tissue 9%, Bone 13%, Separable fat 10%",32,,6.25,4.27,9.02,3.87,Pork Products,21.66,2.95,0,119,0,0,12,0.77,21,224,329,90,2.25,21.3,9,11,0,0.522,0.343,6.273,0.531,0.51,0,0,66
10019,1000,"Pork, fresh, leg (ham), shank half, separable lean only, cooked, roasted","PORK,FRSH,LEG (HAM),SHANK HALF,LN,CKD,RSTD",,,,"Connective tissue 7%, Bone 11%, Separable fat 9%",27,,6.25,4.27,9.02,3.87,Pork Products,28.69,5.83,0,175,0,0,14,0.92,24,261,376,84,2.67,28.6,4,15,0,0.44,0.373,8.082,0.478,0.5,0,0,93
10020,1000,"Pork, fresh, loin, whole, separable lean and fat, raw","PORK,FRSH,LOIN,WHL,LN&FAT,RAW",,,Y,Bone,22,,6.25,4.27,9.02,3.87,Pork Products,19.74,12.58,0,198,0,0,18,0.79,21,197,356,50,1.74,33.2,7,21,0.6,0.901,0.248,4.58,0.472,0.53,0,0,63
10021,1000,"Pork, fresh, loin, whole, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRSD",,,Y,Bone,21,,6.25,4.27,9.02,3.87,Pork Products,27.23,13.62,0,239,0,0,21,1.07,19,181,374,48,2.38,45.3,7,47,0.6,0.632,0.254,4.419,0.366,0.54,0,0,80
10022,1000,"Pork, fresh, loin, whole, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRLD",,,Y,Bone,21,,6.25,4.27,9.02,3.87,Pork Products,27.32,13.92,0,242,0,0,19,0.87,28,246,423,62,2.39,45.3,7,53,0.6,0.877,0.321,5.037,0.464,0.7,0,0,80
10023,1000,"Pork, fresh, loin, whole, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,WHL,LN&FAT,CKD,RSTD",,,Y,Bone,21,,6.25,4.27,9.02,3.87,Pork Products,27.09,14.65,0,248,0,0,19,0.99,26,242,408,59,2.32,33.4,9,42,0.6,0.988,0.313,5.572,0.516,0.71,0,0,82
10024,1000,"Pork, fresh, loin, whole, separable lean only, raw","PORK,FRSH,LOIN,WHL,LN,RAW",,,Y,"Bone 22%, separable fat 8%",30,,6.25,4.27,9.02,3.87,Pork Products,21.43,5.66,0,143,0,0,17,0.84,23,211,389,52,1.84,36.1,7,22,0.6,0.989,0.267,4.915,0.527,0.63,0,0,59
10025,1000,"Pork, fresh, loin, whole, separable lean only, cooked, braised","PORK,FRSH,LOIN,WHL,LN,CKD,BRSD",,,Y,"Bone 21%, separable fat 7%",28,,6.25,4.27,9.02,3.87,Pork Products,28.57,9.12,0,204,0,0,18,1.13,20,183,387,50,2.48,48.2,7,31,0.6,0.659,0.267,4.588,0.387,0.55,0,0,79
10026,1000,"Pork, fresh, loin, whole, separable lean only, cooked, broiled","PORK,FRSH,LOIN,WHL,LN,CKD,BRLD",,,Y,"Bone 21%, separable fat 7%",28,,6.25,4.27,9.02,3.87,Pork Products,28.57,9.8,0,210,0,0,17,0.91,29,253,438,64,2.48,48.2,7,37,0.7,0.923,0.338,5.243,0.492,0.72,0,0,79
10027,1000,"Pork, fresh, loin, whole, separable lean only, cooked, roasted","PORK,FRSH,LOIN,WHL,LN,CKD,RSTD",,,Y,"Bone 21%, separable fat 7%",28,,6.25,4.27,9.02,3.87,Pork Products,28.62,9.63,0,209,0,0,18,1.09,28,249,425,58,2.53,35.1,8,27,0.6,1.017,0.329,5.893,0.552,0.73,0,0,81
10028,1000,"Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean and fat, raw","PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW",,,,"Bone 18%, Connective tissue 8%",26,,6.25,4.27,9.02,3.87,Pork Products,19.56,12.27,0,194,0,0,35,0.66,17,207,288,69,2.56,29.4,20,29,0,0.499,0.314,6.704,0.427,0.55,0,0,63
10029,1000,"Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRSD",,,,Bone 21% Connective tissue 6%,27,,6.25,4.27,9.02,3.87,Pork Products,26.54,15.71,0,255,0,0,51,0.81,19,213,259,69,3.11,41.8,13,39,0,0.486,0.316,7.381,0.488,0.62,0,0,86
10030,1000,"Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRLD",,,,"Bone 20%, Connective tissue 7%",27,,6.25,4.27,9.02,3.87,Pork Products,23.72,14.35,0,231,0,0,56,0.87,20,241,315,74,3.15,36.4,15,40,0,0.49,0.313,7.927,0.489,0.66,0,0,78
10031,1000,"Pork, fresh, loin, blade (roasts), bone-in, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN&FAT,CKD,RSTD",,,,"Bone 18%, Connective tissue 5%,",20,,6.25,4.27,9.02,3.87,Pork Products,24.29,16.71,0,254,0,0,31,0.81,19,194,318,76,3.21,38.7,12,35,0,0.482,0.379,6.705,0.436,0.79,0,0,83
10032,1000,"Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean only, raw","PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN,RAW",,,,"Bone 18%, Connective tissue 8%, Separable fat 10%,",36,,6.25,4.27,9.02,3.87,Pork Products,21.22,5.84,0,143,0,0,30,0.71,18,226,313,73,2.74,31.6,9,22,0,0.54,0.338,7.113,0.466,0.53,0,0,59
10033,1000,"Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, braised","PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRSD",,,Y,"Bone 21%, Connective tissue 6%, Separable fat 6%",33,,6.25,4.27,9.02,3.87,Pork Products,28.02,11.29,0,222,0,0,49,0.85,20,224,270,70,3.28,44.3,6,36,0,0.507,0.332,7.604,0.515,0.61,0,0,87
10034,1000,"Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, broiled","PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRLD",,,,"Bone 20%, Connective tissue 7%, separable fat 6%",33,,6.25,4.27,9.02,3.87,Pork Products,24.99,9.56,0,193,0,0,55,0.91,21,255,332,76,3.34,38.5,8,36,0,0.513,0.329,8.218,0.517,0.66,0,0,78
10035,1000,"Pork, fresh, loin, blade (roasts), bone-in, separable lean only, cooked, roasted","PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN,CKD,RSTD",,,,"Bone 18%, separable fat 7%, Connective tissue 5%",30,,6.25,4.27,9.02,3.87,Pork Products,25.7,11.89,0,217,0,0,27,0.85,19,203,337,78,3.41,41.2,4,31,0,0.505,0.403,6.882,0.46,0.8,0,0,83
10036,1000,"Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, raw","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN & FAT,RAW","URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops",,Y,"Bone, 14%, Connective tissue 11%",25,,6.25,4.27,9.02,3.87,Pork Products,20.71,9.03,0,170,0,0,19,0.63,25,209,343,55,1.77,33.8,6,21,0,0.485,0.189,6.619,0.697,0.53,0,0,69
10037,1000,"Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD",,,,"Bone 15%, Connective tissue 5%",20,,6.25,4.27,9.02,3.87,Pork Products,28.21,13.51,0,242,0,0,55,0.86,20,225,273,73,3.28,44.1,14,33,0,0.518,0.336,7.868,0.519,0.66,0,0,81
10038,1000,"Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD","URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops",,,"Bone 16%, Connective tissue 9%",25,,6.25,4.27,9.02,3.87,Pork Products,25.61,11.06,0,209,0,0,24,0.79,25,220,344,55,2.14,43.6,6,30,0,0.599,0.234,8.147,0.669,0.59,0,0,84
10039,1000,"Pork, fresh, loin, center loin (roasts), bone-in, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD",,,,"Bone 14%, Connective tissue 4%",18,,6.25,4.27,9.02,3.87,Pork Products,27.01,12.8,0,231,0,0,33,0.89,20,213,350,83,3.53,42.6,15,25,0,0.536,0.422,7.42,0.485,0.87,0,0,76
10040,1000,"Pork, fresh, loin, center loin (chops), bone-in, separable lean only, raw","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,RAW","URMIS #3313, Center loin chops, Center cut pork loin chops, centercut pork chops",,,"Bone, 14%, Connective tissue, 11%, Separable fat, 6%",31,,6.25,4.27,9.02,3.87,Pork Products,21.99,3.71,0,127,0,0,18,0.65,26,220,362,58,1.86,36,0,14,0,0.51,0.198,6.934,0.742,0.5,0,0,69
10041,1000,"Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, braised","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRSD",,,Y,"Bone 15%, Connective tissue 5%, Separable fat 8%",28,,6.25,4.27,9.02,3.87,Pork Products,30.2,7.86,0,200,0,0,53,0.91,21,239,288,75,3.51,47.4,6,29,0,0.547,0.358,8.197,0.555,0.66,0,0,81
10042,1000,"Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, broiled","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRLD","URMIS #3313, Center loin chops, Centercut pork chops, Centercut pork loin chops",,,"Bone, 16%, Connective tissue, 9%, Separable fat, 5%",30,,6.25,4.27,9.02,3.87,Pork Products,26.76,7.29,0,180,0,0,23,0.8,26,228,356,56,2.22,45.7,0,28,0,0.624,0.243,8.485,0.701,0.54,0,0,84
10043,1000,"Pork, fresh, loin, center loin (roasts), bone-in, separable lean only, cooked, roasted","PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN,CKD,RSTD",,,,"Bone 14%, Connective tissue 4%, Separable fat 7%",25,,6.25,4.27,9.02,3.87,Pork Products,28.58,7.95,0,194,0,0,30,0.93,21,223,370,86,3.74,45.2,8,21,0,0.562,0.449,7.655,0.512,0.88,0,0,75
10044,1000,"Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean and fat, raw","PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW","Centercut pork loin, Rib cut chops, Rib chops",,,"Bone 22%, Connective tissue 12%,",34,,6.25,4.27,9.02,3.87,Pork Products,20.28,11.04,0,186,0,0,25,0.59,23,203,337,56,1.85,35.5,8,26,0,0.456,0.177,6.331,0.682,0.54,0,0,58
10045,1000,"Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRSD",,,,"Bone 17%, Connective tissue 6%",23,,6.25,4.27,9.02,3.87,Pork Products,26.66,16.28,0,261,0,0,53,0.81,19,213,259,70,3.1,41.5,16,37,0,0.492,0.318,7.505,0.491,0.64,0,0,79
10046,1000,"Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRLD","Centercut pork loin, Rib cut chops, Rib chops",,,"Bone, 24%, Connective tissue, 11%",35,,6.25,4.27,9.02,3.87,Pork Products,24.42,13.04,0,222,0,0,28,0.68,24,209,329,55,2.15,42.8,8,35,0,0.541,0.21,7.478,0.637,0.58,0,0,67
10047,1000,"Pork, fresh, loin, center rib (roasts), bone-in, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN&FAT,CKD,RSTD",,,,"Bone 17%, Connective tissue 6%",23,,6.25,4.27,9.02,3.87,Pork Products,26.99,14.68,0,248,0,0,19,0.96,21,230,272,91,2.91,40.2,16,29,0,0.522,0.295,9.49,0.485,0.87,0,0,78
10048,1000,"Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean only, raw","PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN,RAW","Centercut pork loin, Rib cut chops, Rib chops",,,"Bone 22%, Connective tissue, 12%, separable fat 6%",40,,6.25,4.27,9.02,3.87,Pork Products,21.79,4.8,0,136,0,0,24,0.61,25,216,359,60,1.97,38.3,0,19,0,0.484,0.186,6.685,0.735,0.5,0,0,56
10049,1000,"Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, braised","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRSD",,,Y,"Bone 17%, Connective tissue 6%, Separable fat 10%",33,,6.25,4.27,9.02,3.87,Pork Products,29.03,9.32,0,208,0,0,51,0.87,20,229,277,72,3.37,45.4,6,32,0,0.526,0.344,7.88,0.533,0.63,0,0,79
10050,1000,"Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, broiled","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRLD","Centercut pork loin chop, Rib cut chops, Rib chops",,Y,"Bone 24%, Connective tissue, 11%, separable fat 5%",40,,6.25,4.27,9.02,3.87,Pork Products,25.79,8.36,0,186,0,0,26,0.68,25,218,343,57,2.25,45.4,0,32,0,0.569,0.219,7.855,0.675,0.52,0,0,66
10051,1000,"Pork, fresh, loin, center rib (roasts), bone-in, separable lean only, cooked, roasted","PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN,CKD,RSTD",,,,"Bone 17%, Connective tissue 6%, separable fat 8%",31,,6.25,4.27,9.02,3.87,Pork Products,28.82,9.21,0,206,0,0,13,1.02,22,244,287,95,3.09,43.1,9,24,0,0.552,0.312,10.003,0.516,0.89,0,0,78
10052,1000,"Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean and fat, raw","PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW","Loin end roast, Hipbone roast, Sirloin end roast",,,"Bone, 17%, Connective tissue, 10%",27,,6.25,4.27,9.02,3.87,Pork Products,20.48,8.96,0,168,0,0,14,0.82,23,209,336,57,1.95,29.2,6,22,0,0.492,0.277,6.093,0.756,0.56,0,0,70
10053,1000,"Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD",,,,"Connective tissue 6%, Bone 18%",24,,6.25,4.27,9.02,3.87,Pork Products,28.81,12.31,0,234,0,0,12,0.71,24,285,400,58,1.97,44.1,13,22,0,0.633,0.264,7.537,0.507,0.63,0,0,87
10054,1000,"Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD",,,Y,"Connective tissue 6%, Bone 15%",21,,6.25,4.27,9.02,3.87,Pork Products,26.96,11.82,0,222,0,0,60,1.01,23,280,363,86,3.6,41.8,16,42,0,0.695,0.278,8.414,0.562,0.75,0,0,87
10055,1000,"Pork, fresh, loin, sirloin (roasts), bone-in, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD","Loin end roast, Hipbone roast, Sirloin end roast",,,"Bone, 20%, Connective tissue, 11%",31,,6.25,4.27,9.02,3.87,Pork Products,26.64,12.87,0,230,0,0,15,0.94,25,228,340,57,2.52,44.4,6,29,0,0.639,0.36,7.865,0.75,0.64,0,0,89
10056,1000,"Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean only, raw","PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN,RAW","Loin end roast, Hipbone roast, Sirloin end roast",,,"Bone 17%, Connective tissue, 11%, separable fat 5%",33,,6.25,4.27,9.02,3.87,Pork Products,21.65,4.02,0,129,0,0,12,0.85,25,219,353,59,2.05,30.9,0,16,0,0.517,0.292,6.344,0.803,0.53,0,0,69
10057,1000,"Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, braised","PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRSD",,,,"Connective tissue 6%, Bone 18%, Separable fat 7%",31,,6.25,4.27,9.02,3.87,Pork Products,31,6.9,0,195,0,0,11,0.73,26,303,428,58,2.09,47.4,6,17,0,0.676,0.271,7.982,0.538,0.64,0,0,88
10058,1000,"Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, broiled","PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRLD",,,Y,"Connective tissue 6%, Bone 15%, Separable fat 8%",29,,6.25,4.27,9.02,3.87,Pork Products,29.29,5.45,0,174,0,0,65,1.07,25,300,391,89,3.94,45.3,8,38,0,0.752,0.287,9.035,0.606,0.77,0,0,88
10059,1000,"Pork, fresh, loin, sirloin (roasts), bone-in, separable lean only, cooked, roasted","PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN,CKD,RSTD","Loin end roast, Hipbone roast, Sirloin end roast",,,"Bone, 20%, connective tissue, 11%, separable fat, 4%",35,,6.25,4.27,9.02,3.87,Pork Products,27.78,9.44,0,204,0,0,13,0.96,26,235,352,59,2.62,46.4,0,27,0,0.665,0.376,8.165,0.785,0.61,0,0,89
10060,1000,"Pork, fresh, loin, tenderloin, separable lean only, raw",PORK FRSH LOIN TENDERLOIN LN ONLY RAW,"Pork tenderloin, URMIS #3358",,Y,"Bone, 0%, Connective tissue, 3%, Separable fat, 2%",5,,6.25,4.27,9.02,3.87,Pork Products,20.95,2.17,0,109,0,0,5,0.98,27,247,399,53,1.89,30.8,0,8,0,0.998,0.342,6.684,0.777,0.51,0,0,65
10061,1000,"Pork, fresh, loin, tenderloin, separable lean only, cooked, roasted","PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,RSTD","URMIS #3358, Pork, Pork tenderloin",,Y,"Connective tissue 3%, Separable fat .70%",4,,6.25,4.27,9.02,3.87,Pork Products,26.17,3.51,0,143,0,0,6,1.15,29,267,421,57,2.42,38.2,0,10,0,0.95,0.387,7.432,0.739,0.57,0,0,73
10062,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, raw","PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,RAW","URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops",,Y,Connective tissue 12%,12,,6.25,4.27,9.02,3.87,Pork Products,21.55,6.94,0,155,0,0,7,0.5,26,226,373,48,1.55,33.1,4,18,0,0.667,0.185,7.988,0.726,0.53,0,0,67
10063,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRSD",,,,Connective tissue 6%,6,,6.25,4.27,9.02,3.87,Pork Products,29.2,8.31,0,200,0,0,12,0.88,23,221,261,66,2.29,40.3,11,38,0,0.526,0.238,9.905,0.537,0.67,0,0,72
10064,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRLD","URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops",,,Connective tissue,14,,6.25,4.27,9.02,3.87,Pork Products,26.62,9.14,0,196,0,0,7,0.63,26,230,357,44,2.09,43.6,5,3,0,0.636,0.19,8.242,0.696,0.59,0,0,73
10065,1000,"Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD","Boneless pork loin, Centercut pork loin roast",,,Connective tissue,12,,6.25,4.27,9.02,3.87,Pork Products,26.45,8.82,0,192,0,0,7,0.64,25,223,349,46,2.11,34.9,4,20,0,0.547,0.232,7.104,0.692,0.58,0,0,80
10066,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean only, raw","PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,RAW","URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops",,Y,"Connective tissue, 12%, Separable fat, 5%",17,,6.25,4.27,9.02,3.87,Pork Products,22.41,3.42,0,127,0,0,5,0.51,27,234,387,49,1.59,34.5,0,13,0,0.693,0.19,8.265,0.756,0.51,0,0,66
10067,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, braised","PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRSD",,,,"Connective tissue 6%, Separable fat 7%",13,,6.25,4.27,9.02,3.87,Pork Products,30.54,4.34,0,170,0,0,8,0.91,23,230,269,67,2.37,42.1,6,36,0,0.545,0.245,10.263,0.561,0.66,0,0,71
10068,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, broiled","PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRLD","URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops",,Y,"Connective tissue, 9%, separable fat, 4%",13,,6.25,4.27,9.02,3.87,Pork Products,27.58,6.08,0,173,0,0,5,0.63,27,237,367,45,2.15,45.3,0,23,0,0.658,0.195,8.512,0.722,0.56,0,0,72
10069,1000,"Pork, fresh, loin, top loin (roasts), boneless, separable lean only, cooked, roasted","PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,CKD,RSTD","Boneless pork loin, Centercut boneless pork loin roast",,,"Connective tissue 8%, separable fat 4%",12,,6.25,4.27,9.02,3.87,Pork Products,27.23,6.28,0,173,0,0,6,0.64,26,227,357,47,2.16,35.8,0,18,0,0.561,0.237,7.277,0.713,0.55,0,0,79
10070,1000,"Pork, fresh, shoulder, whole, separable lean and fat, raw","PORK,FRSH,SHLDR,WHL,LN&FAT,RAW",,,Y,Bone and skin,25,,6.25,4.27,9.02,3.87,Pork Products,17.18,17.99,0,236,0,0,15,1.05,18,182,302,65,2.7,25.5,7,70,0.7,0.767,0.275,3.833,0.348,0.74,0,0,71
10071,1000,"Pork, fresh, shoulder, whole, separable lean and fat, cooked, roasted","PORK,FRSH,SHLDR,WHL,LN&FAT,CKD,RSTD",,,Y,Bone and skin,25,,6.25,4.27,9.02,3.87,Pork Products,23.28,21.39,0,292,0,0,24,1.32,18,212,329,68,3.71,33.4,8,61,0.5,0.581,0.329,3.991,0.288,0.8,0,0,90
10072,1000,"Pork, fresh, shoulder, whole, separable lean only, raw","PORK,FRSH,SHLDR,WHL,LN,RAW",,,,"Bone and skin 25%, separable fat 14%",39,,6.25,4.27,9.02,3.87,Pork Products,19.55,7.14,0,148,,0,14,1.22,21,202,341,76,3.14,29.5,6,,0.8,0.884,0.314,4.275,0.415,0.84,,0,67
10073,1000,"Pork, fresh, shoulder, whole, separable lean only, cooked, roasted","PORK,FRSH,SHLDR,WHL,LN,CKD,RSTD",,,Y,"Bone and skin 25%, separable fat 14%",39,,6.25,4.27,9.02,3.87,Pork Products,25.33,13.54,0,230,0,0,18,1.5,20,221,346,75,4.16,37.4,7,39,0.6,0.628,0.37,4.26,0.317,0.86,0,0,90
10074,1000,"Pork, fresh, shoulder, arm picnic, separable lean and fat, raw","PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,RAW",,,,"Bone 16%, Connective tissue 6%",22,,6.25,4.27,9.02,3.87,Pork Products,18.71,12.51,0,193,0,0,12,0.57,18,200,413,84,2.15,21.9,18,30,0,0.585,0.246,4.518,0.44,0.57,0,0,63
10075,1000,"Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, braised","PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,BRSD",,,Y,"Connective tissue 8%, Bone 15%,",23,,6.25,4.27,9.02,3.87,Pork Products,24.88,14.33,0,235,0,0,16,0.92,22,240,357,96,3.1,29.4,13,45,0,0.439,0.322,5.308,0.346,0.74,0,0,86
10076,1000,"Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, roasted","PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,RSTD",,,,Bone and skin,27,,6.25,4.27,9.02,3.87,Pork Products,23.47,24.01,0,317,,0,19,1.18,17,228,325,70,3.45,33.6,8,,0.2,0.522,0.302,3.918,0.348,0.71,,0,94
10077,1000,"Pork, fresh, shoulder, arm picnic, separable lean only, raw","PORK,FRSH,SHLDR,ARM PICNIC,LN,RAW",,,,"Bone 16%, Connective tissue 6%, separable fat 10%",32,,6.25,4.27,9.02,3.87,Pork Products,20.26,3.77,0,120,0,0,11,0.62,20,219,427,90,2.41,24,7,24,0,0.655,0.272,4.828,0.489,0.55,0,0,62
10078,1000,"Pork, fresh, shoulder, arm picnic, separable lean only, cooked, braised","PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,BRSD",,,Y,"Bone 15%, Connective tissue 8%, Separable fat 7%",30,,6.25,4.27,9.02,3.87,Pork Products,26.76,8.87,0,194,0,0,16,0.97,23,254,382,100,3.35,31.2,6,42,0,0.463,0.335,5.538,0.362,0.76,0,0,87
10079,1000,"Pork, fresh, shoulder, arm picnic, separable lean only, cooked, roasted","PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,RSTD",,,,"Bone and skin 27%, separable fat 16%",43,,6.25,4.27,9.02,3.87,Pork Products,26.68,12.62,0,228,,0,9,1.42,20,247,351,80,4.07,38.5,7,36,0.3,0.578,0.357,4.314,0.41,0.78,,0,95
10080,1000,"Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, raw","PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN & FAT,RAW","URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak",,Y,"Bone 9%, Connective tissue 15%",24,,6.25,4.27,9.02,3.87,Pork Products,17.42,12.36,0,186,0,0,16,1.12,20,190,318,61,3.09,26.2,8,30,0,0.52,0.353,4.239,0.486,0.91,0,0,62
10081,1000,"Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, cooked, braised","PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STKS),LN & FAT,CKD,BRSD","URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak",,Y,"Bone 9%, Connective tissue 17%",26,,6.25,4.27,9.02,3.87,Pork Products,25.07,17.69,0,267,0,0,26,1.75,23,208,305,58,4.84,42.4,8,47,0,0.501,0.365,3.872,0.448,0.93,0,0,98
10082,1000,"Pork, fresh, shoulder, blade, boston (steaks), separable lean and fat, cooked, broiled","PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN&FAT,CKD,BRLD",,,Y,Bone,23,,6.25,4.27,9.02,3.87,Pork Products,25.58,16.61,0,259,0,0,36,1.4,21,210,326,69,4.51,36.3,9,63,0.3,0.695,0.397,4.07,0.277,1.06,0,0,95
10083,1000,"Pork, fresh, shoulder, blade, boston (roasts), separable lean and fat, cooked, roasted","PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN&FAT,CKD,RSTD",,,Y,Bone,24,,6.25,4.27,9.02,3.87,Pork Products,23.11,18.86,0,269,0,0,28,1.45,18,197,332,67,3.96,34.3,7,54,0.7,0.638,0.355,4.061,0.23,0.88,0,0,86
10084,1000,"Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, raw","PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,RAW","URMIS # 3186, Pork shoulder chop, Shoulder blade steak, Pork steak",,Y,"Bone, 9%, Connective tissue, 15%, Separable fat, 8%",32,,6.25,4.27,9.02,3.87,Pork Products,18.73,5.71,0,132,0,0,14,1.2,22,202,339,65,3.36,28.2,0,22,0,0.558,0.384,4.387,0.521,0.91,0,0,60
10085,1000,"Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, cooked, braised","PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,CKD,BRSD","URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak",,Y,"Bone, 9%, Connective tissue, 17%, Separable fat, 6%",32,,6.25,4.27,9.02,3.87,Pork Products,26.57,13.2,0,233,0,0,25,1.85,24,217,318,60,5.2,45,0,45,0,0.526,0.388,3.935,0.47,0.9,0,0,100
10086,1000,"Pork, fresh, shoulder, blade, boston (steaks), separable lean only, cooked, broiled","PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN,CKD,BRLD",,,Y,"Bone 23%, separable fat 10%",33,,6.25,4.27,9.02,3.87,Pork Products,26.74,12.54,0,227,0,0,33,1.56,24,220,343,74,5.02,39.3,8,48,0.3,0.75,0.44,4.3,0.31,1.13,0,0,94
10087,1000,"Pork, fresh, shoulder, blade, boston (roasts), separable lean only, cooked, roasted","PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN,CKD,RSTD",,,Y,"Bone 24%, separable fat 7%",31,,6.25,4.27,9.02,3.87,Pork Products,24.21,14.3,0,232,0,0,27,1.56,26,235,427,88,4.23,36.1,9,41,1,1.116,0.4,4.96,0.437,1.16,0,0,85
10088,1000,"Pork, fresh, spareribs, separable lean and fat, raw","PORK,FRSH,SPARERIBS,LN&FAT,RAW",,,Y,Bone,30,,6.25,4.27,9.02,3.87,Pork Products,15.47,23.4,0,277,0,0,15,0.91,16,141,242,81,2.5,22,0,91,0,0.319,0.251,4.662,0.574,0.38,0,0,80
10089,1000,"Pork, fresh, spareribs, separable lean and fat, cooked, braised","PORK,FRSH,SPARERIBS,LN&FAT,CKD,BRSD",,,Y,Bone,38,,6.25,4.27,9.02,3.87,Pork Products,29.06,30.3,0,397,0,0,47,1.85,24,261,320,93,4.6,37.4,10,104,0,0.408,0.382,5.475,0.35,1.08,0,0,121
10093,1000,"Pork, fresh, composite of trimmed retail cuts (leg, loin, and shoulder), separable lean only, cooked","PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,&SHLDR),LN,CKD",,,Y,"Bone and skin 22%, separable fat 9%",31,,6.25,4.27,9.02,3.87,Pork Products,27.51,9.21,0,201,0,0,18,1,25,231,357,55,2.9,44.2,4,31,0.2,0.672,0.311,6.503,0.577,0.68,0,0,84
10094,1000,"Pork, fresh, loin, center loin (chops), boneless, separable lean only, raw","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,RAW",,,Y,separable fat 16%,16,,,,,,Pork Products,23.75,3.09,0,123,0,0,6,0.48,26,221,386,87,1.42,46.9,4,23,0,0.69,0.203,8.21,0.363,0.41,0,0,56
10096,1000,"Pork, fresh, variety meats and by-products, brain, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,RAW",,,,Blood clots and membrane,2,,6.25,4.27,9.02,3.87,Pork Products,10.28,9.21,0,127,,0,10,1.6,14,282,258,120,1.27,15.9,0,,13.5,0.155,0.275,4.275,0.19,2.19,,0,2195
10097,1000,"Pork, fresh, variety meats and by-products, brain, cooked, braised","PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,12.14,9.51,0,138,,0,9,1.82,12,220,195,91,1.48,18.5,0,,14,0.078,0.223,3.33,0.14,1.42,,0,2552
10098,1000,"Pork, fresh, variety meats and by-products, chitterlings, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,RAW",,,,Separable fat,18,,6.25,4.27,9.02,3.87,Pork Products,7.64,16.61,0,182,0,0,16,1.02,6,48,18,24,1.02,15.1,0,,1.1,0.02,0.091,0.215,0.014,0.82,0,0,154
10099,1000,"Pork, fresh, variety meats and by-products, chitterlings, cooked, simmered","PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,12.49,20.32,0,233,0,0,25,1.47,9,66,14,18,1.85,27,0,0,0,0.014,0.046,0.087,0,0.42,0,0,277
10100,1000,"Pork, fresh, variety meats and by-products, ears, frozen, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,RAW",,,,Thaw juice and trim,5,,6.25,4.27,9.02,3.87,Pork Products,22.45,15.1,0.6,234,,0,21,2.4,7,41,55,191,0.19,4.3,0,,0,0.08,0.11,0.78,0.02,0.07,,0,82
10101,1000,"Pork, fresh, variety meats and by-products, ears, frozen, cooked, simmered","PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,15.95,10.8,0.2,166,,0,18,1.5,7,24,40,167,0.2,4.4,0,,0,0.02,0.07,0.56,0.01,0.04,,0,90
10102,1000,"Pork, fresh, variety meats and by-products, feet, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,RAW",,,,Bone and hard tissue,29,,6.25,4.27,9.02,3.87,Pork Products,23.16,12.59,0,212,0,0,70,0.58,6,75,63,132,0.76,23.3,0,,0,0.026,0.106,1.13,0.053,0.52,0,0,88
10103,1000,"Pork, fresh, variety meats and by-products, heart, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,17.27,4.36,1.33,118,0,0,5,4.68,19,169,294,56,2.8,10.4,25,,5.3,0.613,1.185,6.765,0.39,3.79,,0,131
10104,1000,"Pork, fresh, variety meats and by-products, heart, cooked, braised","PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,23.6,5.05,0.4,148,,0,7,5.83,24,178,206,35,3.09,18.3,22,,2,0.555,1.702,6.05,0.39,3.79,,0,221
10105,1000,"Pork, fresh, variety meats and by-products, jowl, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,JOWL,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,6.38,69.61,0,655,0,0,4,0.42,3,86,148,25,0.84,1.5,9,,0,0.386,0.236,4.535,0.09,0.82,,0,90
10106,1000,"Pork, fresh, variety meats and by-products, kidneys, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW",,,,"Fat, veins, and membranes",7,,6.25,4.27,9.02,3.87,Pork Products,16.46,3.25,0,100,,0,9,4.89,17,204,229,121,2.75,190,198,,13.3,0.34,1.697,8.207,0.44,8.49,,0,319
10107,1000,"Pork, fresh, variety meats and by-products, kidneys, cooked, braised","PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,25.4,4.7,0,151,,0,13,5.29,18,240,143,80,4.15,311.5,260,,10.6,0.396,1.586,5.785,0.46,7.79,,0,480
10109,1000,"Pork, fresh, variety meats and by-products, leaf fat, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,LEAF FAT,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,1.76,94.16,0,857,,0,1,0.09,1,19,31,5,0.18,8,0,,0,0.106,0.065,1.249,0.03,0.23,,0,110
10110,1000,"Pork, fresh, variety meats and by-products, liver, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,21.39,3.65,2.47,134,,0,9,23.3,18,288,273,87,5.76,52.7,21650,,25.3,0.283,3.005,15.301,0.69,26,,0,301
10111,1000,"Pork, fresh, variety meats and by-products, liver, cooked, braised","PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,26.02,4.4,3.76,165,,0,10,17.92,14,241,150,49,6.72,67.5,17997,,23.6,0.258,2.196,8.435,0.57,18.67,,0,355
10112,1000,"Pork, fresh, variety meats and by-products, lungs, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,RAW",,,,Blood clots and membranes,13,,6.25,4.27,9.02,3.87,Pork Products,14.08,2.72,0,85,,0,7,18.9,14,196,303,153,2.03,17.8,0,,12.3,0.085,0.43,3.345,0.1,2.75,,0,320
10113,1000,"Pork, fresh, variety meats and by-products, lungs, cooked, braised","PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,16.6,3.1,0,99,,0,8,16.41,12,186,151,81,2.45,23.4,0,,7.9,0.079,0.322,1.364,0.08,2.03,,0,387
10114,1000,"Pork, fresh, variety meats and by-products, mechanically separated, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,15.03,26.54,0,304,,0,315,4.25,16,200,298,50,2.44,32.9,10,,0.7,0.697,0.201,3.171,0.37,0.58,,0,77
10115,1000,"Pork, fresh, variety meats and by-products, pancreas, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,18.56,13.24,0,199,,0,11,2.13,17,234,197,44,2.62,40.8,0,,15.3,0.105,0.46,3.45,0.46,16.4,,0,193
10116,1000,"Pork, fresh, variety meats and by-products, pancreas, cooked, braised","PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,28.5,10.8,0,219,,0,16,2.69,23,291,168,42,4.29,72.8,0,,5.7,0.092,0.658,3.206,0.44,17.07,,0,315
10117,1000,"Pork, fresh, variety meats and by-products, spleen, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,17.86,2.59,0,100,,0,10,22.32,13,260,396,98,2.54,32.8,0,,28.5,0.13,0.3,5.867,0.06,3.26,,0,363
10118,1000,"Pork, fresh, variety meats and by-products, spleen, cooked, braised","PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,28.2,3.2,0,149,,0,13,22.23,15,283,227,107,3.54,49.6,0,,11.6,0.139,0.258,5.938,0.06,2.76,,0,504
10119,1000,"Pork, fresh, variety meats and by-products, stomach, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,STOMACH,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,16.85,10.14,0,159,0,0,11,1.01,11,130,140,75,1.85,31.1,0,0,0,0.051,0.201,2.48,0.034,0.3,0,0,223
10120,1000,"Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, pan-fried","PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,PAN-FRIED",,,Y,"Bone 19%, Connective tissue 8%, separable fat 6%",33,,6.25,4.27,9.02,3.87,Pork Products,26.38,12.14,0,222,0,0,46,0.88,21,237,335,88,3.03,38.7,10,23,0,0.506,0.353,8.628,0.501,0.72,0,0,82
10121,1000,"Pork, fresh, variety meats and by-products, tongue, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,RAW",,,,Cartilage and connective tissue,16,,6.25,4.27,9.02,4.11,Pork Products,16.3,17.2,0,225,0,0,16,3.35,18,193,243,110,3.01,10.4,0,,4.4,0.49,0.485,5.3,0.24,2.84,,0,101
10122,1000,"Pork, fresh, variety meats and by-products, tongue, cooked, braised","PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD",,,,Skin and trimmings,24,,6.25,4.27,9.02,4.11,Pork Products,24.1,18.6,0,271,,0,19,4.99,20,174,237,109,4.53,15.5,0,,1.7,0.317,0.51,5.34,0.23,2.39,,0,146
10123,1000,"Pork, cured, bacon, unprepared","PORK,CURED,BACON,UNPREP",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,12.62,39.69,1.28,417,1,0,5,0.41,12,144,198,662,1.18,20.1,37,16,0,0.276,0.081,4.022,0.266,0.5,0,0,66
10128,1000,"Pork, cured, breakfast strips, raw or unheated","PORK,CURED,BRKFST STRIPS,RAW OR UNHTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,11.74,37.16,0.7,388,,0,8,0.94,12,137,204,987,1.66,25,0,,27.2,0.475,0.18,3.65,0.21,0.99,,0,69
10130,1000,"Canadian bacon, unprepared","CANADIAN BACON,UNPREP",,,Y,,0,,,,,,Pork Products,20.31,2.62,1.34,110,0.9,0,6,0.44,20,240,683,751,1.23,37.1,0,6,0,0.511,0.141,7.227,0.241,0.37,0,0,48
10132,1000,"Pork, cured, feet, pickled","PORK,CURED,FEET,PICKLED",,,Y,Bone and hard tissue 66%,66,,6.25,4.27,9.02,3.87,Pork Products,11.63,10.02,0.01,140,0,0,32,0.31,11,87,13,946,0.2,15.8,37,16,0,0.006,0.015,0.22,0.007,0.21,0,0,83
10134,1000,"Pork, cured, ham, boneless, extra lean (approximately 5% fat), roasted","PORK,CURED,HAM,BNLESS,EX LN (APPROX 5% FAT),RSTD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,20.93,5.53,1.5,145,0,0,8,1.48,14,196,287,1203,2.88,19.5,0,32,0,0.754,0.202,4.023,0.4,0.65,0,0,53
10136,1000,"Pork, cured, ham, boneless, regular (approximately 11% fat), roasted","PORK,CURED,HAM,BNLESS,REG (APPROX 11% FAT),RSTD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,22.62,9.02,0,178,0,0,8,1.34,22,281,409,1500,2.47,19.8,0,32,0,0.73,0.33,6.15,0.31,0.7,0,0,59
10137,1000,"Pork, cured, ham, extra lean (approximately 4% fat), canned, unheated","PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,UNHTD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,18.49,4.56,0,120,0,0,6,0.94,17,224,364,1255,1.93,14.5,0,93,0,0.836,0.23,5.302,0.45,0.82,0,0,38
10138,1000,"Pork, cured, ham, extra lean (approximately 4% fat), canned, roasted","PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,RSTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,21.16,4.88,0.52,136,,0,6,0.92,21,209,348,1135,2.23,17.4,0,,0,1.035,0.247,4.892,0.45,0.71,,0,30
10140,1000,"Pork, cured, ham, regular (approximately 13% fat), canned, roasted","PORK,CURED,HAM,REG (APPROX 13% FAT),CND,RSTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,20.53,15.2,0.42,226,,0,8,1.37,17,243,357,941,2.5,35.9,0,,14,0.82,0.26,5.3,0.3,1.06,,0,62
10141,1000,"Pork, cured, ham, center slice, country-style, separable lean only, raw","PORK,CURED,HAM,CNTR SLICE,COUNTRY-STYLE,LN,RAW",,,Y,"Bone and skin 3%, separable fat 12%",15,,6.25,4.27,9.02,3.87,Pork Products,27.8,8.32,0.3,195,0,0,10,1.11,25,318,510,2695,2.81,25.8,0,37,0,0.567,0.242,3.881,0.42,0.88,0,0,70
10142,1000,"Pork, cured, ham, center slice, separable lean and fat, unheated","PORK,CURED,HAM,CNTR SLICE,LN&FAT,UNHTD",,,,Bone,3,,6.25,4.27,9.02,3.87,Pork Products,20.17,12.9,0.05,203,,0,7,0.75,16,215,337,1386,1.88,22.6,0,,0,0.845,0.205,4.809,0.47,0.8,,0,54
10146,1000,"Pork, cured, ham, patties, unheated","PORK,CURED,HAM,PATTIES,UNHTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,12.78,28.19,1.69,315,,0,8,1.05,10,149,239,1088,1.57,15.8,0,,0,0.46,0.154,3.014,0.16,1.08,,0,70
10149,1000,"Pork, cured, ham, steak, boneless, extra lean, unheated","PORK,CURED,HAM,STEAK,BNLESS,EX LN,UNHTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,19.56,4.25,0,122,,0,4,1,19,260,325,1269,2.02,15.5,0,,32.3,0.8,0.2,5.08,0.37,0.79,,0,45
10150,1000,"Pork, cured, ham, whole, separable lean and fat, unheated","PORK,CURED,HAM,WHL,LN&FAT,UNHTD",,,,Bone and skin,18,,6.25,4.27,9.02,3.87,Pork Products,18.49,18.52,0.06,246,0,0,7,0.71,15,201,310,1284,1.76,15.3,0,,34.9,0.777,0.189,4.463,0.41,0.74,0,0,56
10152,1000,"Pork, cured, ham, whole, separable lean only, unheated","PORK,CURED,HAM,WHL,LN,UNHTD",,,Y,"Bone and skin 18%, separable fat 19%",37,,6.25,4.27,9.02,3.87,Pork Products,22.32,5.71,0.05,147,0,0,7,0.81,18,232,371,1516,2.04,18.8,0,27,0,0.932,0.226,5.252,0.53,0.87,0,0,52
10153,1000,"Pork, cured, ham, whole, separable lean only, roasted","PORK,CURED,HAM,WHL,LN,RSTD",,,Y,"Bone and skin 24%, separable fat 15%",39,,6.25,4.27,9.02,3.87,Pork Products,25.05,5.5,0,157,0,0,7,0.94,22,227,316,1327,2.57,25.4,0,34,0,0.68,0.254,5.02,0.47,0.7,0,0,55
10158,1000,"USDA Commodity, pork, canned","USDA CMDTY,PORK,CND",,,,,0,,,,,,Pork Products,19.4,12.95,0.59,196,0,0,5,1.05,20,173,243,213,2.77,46,0,,0,0.052,0.18,5.767,0.311,0.93,0,0,75
10163,1000,"Pork, fresh, loin, center loin (chops), boneless, separable lean only, cooked, pan-broiled","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,CKD,PAN-BROILED",,,Y,Separable lean 14%,14,,,,,,Pork Products,30.02,4.65,0,162,0,0,6,0.64,27,242,407,91,1.75,54,5,29,0,0.608,0.24,9.303,0.383,0.63,0,0,74
10164,1000,"Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, raw","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN & FAT,RAW",,,Y,,0,,,,,,Pork Products,21.14,12.96,0,201,0,0,9,0.48,23,203,345,82,1.31,41.3,16,11,0,0.615,0.203,7.413,0.336,0.43,0,0,59
10165,1000,"Pork, cured, salt pork, raw","PORK,CURED,SALT PORK,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,5.05,80.5,0,748,0,0,6,0.44,7,52,66,2684,0.9,5.8,0,9,0,0.215,0.061,1.62,0.08,0.29,0,0,86
10166,1000,"Pork, cured, separable fat (from ham and arm picnic), unheated","PORK,CURED,FAT (FROM HAM&ARM PICNIC),UNHTD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,5.68,61.41,0.09,579,0,0,5,0.39,6,98,105,505,0.8,4.7,0,8,0,0.241,0.068,1.82,0.03,0.33,0,0,68
10167,1000,"Pork, cured, separable fat (from ham and arm picnic), roasted","PORK,CURED,FAT (FROM HAM&ARM PICNIC),RSTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,7.64,61.86,0,591,,0,8,0.61,9,160,164,624,1.31,11.7,0,,0,0.287,0.091,2.228,0.03,0.42,,0,86
10168,1000,"Pork, cured, shoulder, arm picnic, separable lean and fat, roasted","PORK,CURED,SHLDR,ARM PICNIC,LN&FAT,RSTD",,,Y,Bone and skin,27,,6.25,4.27,9.02,3.87,Pork Products,20.43,21.35,0,280,0,0,10,0.95,14,221,258,1072,2.51,33.6,0,29,0,0.612,0.19,4.127,0.28,0.93,0,0,58
10169,1000,"Pork, cured, shoulder, arm picnic, separable lean only, roasted","PORK,CURED,SHLDR,ARM PICNIC,LN,RSTD",,,Y,"Bone and skin 27%, separable fat 19%",46,,6.25,4.27,9.02,3.87,Pork Products,24.94,7.04,0,170,0,0,11,1.08,16,243,292,1231,2.94,41.3,0,35,0,0.727,0.226,4.798,0.37,1.11,0,0,48
10170,1000,"Pork, cured, shoulder, blade roll, separable lean and fat, unheated","PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,UNHTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,16.47,21.98,0,269,,0,7,0.82,13,199,295,1250,2.35,22,0,,0.3,0.54,0.22,2.72,0.26,1.3,,0,53
10171,1000,"Pork, cured, shoulder, blade roll, separable lean and fat, roasted","PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,RSTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,17.28,23.48,0.37,287,,0,7,0.89,13,156,194,973,2.45,28.6,0,,3.2,0.46,0.285,2.377,0.21,1.05,,0,67
10173,1000,"Pork, fresh, variety meats and by-products, feet, cooked, simmered","PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,CKD,SIMMRD",,,Y,Bone and hard tissue,60,,6.25,4.27,9.02,3.87,Pork Products,21.94,16.05,0,238,0,0,0,0.98,5,82,33,73,1.05,23,0,0,0,0.016,0.057,0.585,0.038,0.41,0,0,107
10174,1000,"Pork, fresh, variety meats and by-products, tail, raw","PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,RAW",,,,Bone and hard tissue,30,,6.25,4.27,9.02,3.87,Pork Products,17.75,33.5,0,378,,0,18,0.99,8,50,349,63,2.31,2.7,0,,0,0.21,0.11,2.06,0.37,0.88,,0,97
10175,1000,"Pork, fresh, variety meats and by-products, tail, cooked, simmered","PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,CKD,SIMMRD",,,,Bone and hard tissue,32,,6.25,4.27,9.02,3.87,Pork Products,17,35.8,0,396,,0,14,0.79,7,47,157,25,1.64,3.1,0,,0,0.07,0.07,1.12,0.27,0.55,,0,129
10176,1000,"Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, pan-fried","PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,PAN-FRIED",,,Y,"Bone 14%, separable fat 8%, Connective tissue 6%",28,,6.25,4.27,9.02,3.87,Pork Products,29.56,7.66,0,195,0,0,51,0.99,24,268,378,99,3.42,43.7,10,20,0,0.567,0.395,9.667,0.562,0.8,0,0,78
10177,1000,"Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, pan-fried","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,PAN-FRIED",,,Y,"Bone 17%, Connective tissue 6%, separable fat 9%",32,,6.25,4.27,9.02,3.87,Pork Products,28.84,9.73,0,211,0,0,45,0.88,21,237,335,88,3.03,38.7,10,21,0,0.553,0.385,9.432,0.548,0.79,0,0,77
10178,1000,"Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, pan-fried","PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED",,,Y,"Bone 19%, Connective tissue 8%",27,,6.25,4.27,9.02,3.87,Pork Products,25.02,16.56,0,256,0,0,48,0.84,20,226,318,85,2.88,36.7,17,27,0,0.485,0.335,8.311,0.476,0.72,0,0,82
10179,1000,"Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, pan-fried","PORK,FRSH,LOIN,CNTR LOIN CHOPS,BONE-IN,LN&FAT,CKD,PAN-FRIED",,,Y,"Bone 14%, Connective tissue 6%",20,,6.25,4.27,9.02,3.87,Pork Products,27.63,13.32,0,238,0,0,53,0.93,23,251,353,94,3.2,40.8,17,25,0,0.536,0.369,9.186,0.525,0.79,0,0,79
10180,1000,"Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, pan-fried","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED",,,Y,"Bone 17%, Connective tissue 6%",23,,6.25,4.27,9.02,3.87,Pork Products,26.81,15.71,0,256,0,0,48,0.83,20,222,313,84,2.83,36.1,18,26,0,0.521,0.358,8.931,0.51,0.78,0,0,78
10181,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, pan-fried","PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,PAN-FRIED",,,Y,"Connective tissue 5%, separable fat 5%,",10,,6.25,4.27,9.02,3.87,Pork Products,30.46,4.62,0,172,0,0,8,0.84,26,293,390,87,2.32,42,9,20,0,0.657,0.233,10.85,0.579,0.83,0,0,69
10182,1000,"Pork, cured, ham, boneless, extra lean and regular, unheated","PORK,CURED,HAM,BNLESS,EX LN&REG,UNHTD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,18.26,8.39,2.28,162,0,0,7,0.9,18,236,297,1278,2.05,16.3,0,26,0,0.889,0.24,5.09,0.38,0.8,0,0,53
10183,1000,"Pork, cured, ham, boneless, extra lean and regular, roasted","PORK,CURED,HAM,BNLESS,EX LN&REG,RSTD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,21.97,7.66,0.5,165,0,0,8,1.4,19,248,362,1385,2.63,19.5,0,32,0,0.739,0.28,5.324,0.35,0.68,0,0,57
10184,1000,"Pork, cured, ham, extra lean and regular, canned, unheated","PORK,CURED,HAM,EX LN&REG,CND,UNHTD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,17.97,7.46,0,144,0,0,6,0.9,16,207,334,1276,1.84,22.1,0,22,0,0.879,0.23,4.585,0.46,0.8,0,0,38
10185,1000,"Pork, cured, ham, extra lean and regular, canned, roasted","PORK,CURED,HAM,EX LN&REG,CND,RSTD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,20.94,8.43,0.49,167,0,0,7,1.07,20,221,351,1068,2.32,26.6,0,30,0,0.961,0.251,5.032,0.4,0.83,0,0,41
10186,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, pan-fried","PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED",,,Y,Connective tissue 5%,5,,6.25,4.27,9.02,3.87,Pork Products,29.36,7.86,0,196,0,0,12,0.82,25,283,376,86,2.26,40.5,13,23,0,0.635,0.229,10.523,0.558,0.82,0,0,70
10187,1000,"Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, raw","PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,RAW",,,,Bone and skin,25,,6.25,4.27,9.02,3.87,Pork Products,18.95,14.95,0,216,,0,19,0.86,21,200,335,55,2.01,28.4,7,,0.5,0.841,0.254,4.504,0.445,0.66,,0,67
10188,1000,"Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, cooked","PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,26.36,13.89,0,238,0,0,20,1.11,24,221,341,57,3.06,42,7,38,0.1,0.611,0.29,6.047,0.542,0.7,0,0,88
10189,1000,"Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, cooked, pan-broiled","PORK,FRSH,LOIN,CNTR LON (CHPS),BNLESS,LN & FAT,CKD,PAN-BRLED",,,Y,,0,,,,,,Pork Products,26.68,13.6,0,229,0,0,9,0.62,25,222,366,86,1.6,47.8,16,10,0,0.55,0.234,8.403,0.355,0.61,0,0,75
10192,1000,"Pork, fresh, backribs, separable lean and fat, raw","PORK,FRSH,BACKRIBS,LN&FAT,RAW",,,,"Bone 30%, Connective tissue 7%",37,,6.25,4.27,9.02,3.87,Pork Products,19.07,16.33,0,224,0,0,31,0.76,16,154,247,87,2.54,30.7,22,42,0,0.457,0.305,6.776,0.422,0.56,0,0,69
10193,1000,"Pork, fresh, backribs, separable lean and fat, cooked, roasted","PORK,FRSH,BACKRIBS,LN&FAT,CKD,RSTD",,,,Bone,43,,6.25,4.27,9.02,3.87,Pork Products,23.01,21.51,0,292,0,0,46,0.92,17,165,240,94,3.07,32.2,20,48,0,0.46,0.331,7.636,0.413,0.74,0,0,84
10194,1000,"Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean and fat, raw","PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW",,,,Connective tissue,11,,6.25,4.27,9.02,3.87,Pork Products,19.9,14.01,0,211,0,0,5,0.71,20,193,384,42,1.57,32,6,54,0.3,0.779,0.247,4.638,0.417,0.5,,0,60
10195,1000,"Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRSD",,,,Connective tissue,5,,6.25,4.27,9.02,3.87,Pork Products,26.29,15.79,0,255,,0,5,0.92,17,172,387,40,2.07,33.4,7,,0.3,0.525,0.242,4.311,0.31,0.44,,0,73
10196,1000,"Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRLD",,,,Connective tissue,6,,6.25,4.27,9.02,3.87,Pork Products,27.63,15.76,0,260,,0,28,0.77,26,237,401,62,2.26,44,7,,0.3,0.834,0.3,4.945,0.371,0.67,,0,82
10197,1000,"Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, pan-fried","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED",,,Y,Connective tissue,8,,6.25,4.27,9.02,3.87,Pork Products,25.82,18.05,0,273,0,0,11,0.73,24,228,428,50,2.04,41.9,7,34,0,0.708,0.313,4.805,0.357,0.59,0,0,73
10198,1000,"Pork, fresh, loin, center rib (roasts), boneless, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN&FAT,CKD,RSTD",,,,Connective tissue,8,,6.25,4.27,9.02,3.87,Pork Products,26.99,15.15,0,252,,0,6,0.93,22,214,346,48,2.64,40.3,9,43,0.4,0.604,0.29,5.044,0.363,0.56,,0,81
10199,1000,"Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean only, raw","PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN,RAW",,,,"Connective tissue 11%, separable fat 11%",22,,6.25,4.27,9.02,3.87,Pork Products,21.8,6.48,0,152,0,0,5,0.77,22,207,421,45,1.69,35.4,6,25,0.3,0.856,0.268,5.036,0.47,0.53,0,0,55
10200,1000,"Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, braised","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRSD",,,Y,"Connective tissue 5%, separable fat 10%",15,,6.25,4.27,9.02,3.87,Pork Products,27.95,10.14,0,211,0,0,5,0.99,19,173,405,41,2.16,45.4,6,35,0.3,0.549,0.258,4.519,0.331,0.44,0,0,71
10201,1000,"Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, broiled","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRLD",,,,"Connective tissue 6%, separable fat 10%",16,,6.25,4.27,9.02,3.87,Pork Products,29.46,10.05,0,216,,0,31,0.82,28,245,420,65,2.38,47.3,6,,0.3,0.894,0.323,5.231,0.4,0.7,,0,81
10202,1000,"Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, pan-fried","PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,PAN-FRIED",,,Y,"Connective tissue 8%, separable fat 11%",19,,6.25,4.27,9.02,3.87,Pork Products,27.68,11.8,0,224,0,0,5,0.78,27,237,454,52,2.14,45.4,6,22,0.3,0.761,0.34,5.115,0.388,0.61,0,0,70
10203,1000,"Pork, fresh, loin, center rib (roasts), boneless, separable lean only, cooked, roasted","PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN,CKD,RSTD",,,,"Connective tissue 8%, separable fat 10%",18,,6.25,4.27,9.02,3.87,Pork Products,28.81,10.13,0,214,,0,6,1,24,222,363,50,2.83,43.2,8,29,0.4,0.639,0.312,5.355,0.4,0.55,,0,83
10204,1000,"Pork, fresh, loin, country-style ribs, separable lean and fat, raw","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,RAW",Country Ribs,,,"Bone 21%, Connective tissue 14%",35,,6.25,4.27,9.02,3.87,Pork Products,19.34,11.82,0,189,0,0,22,0.85,21,193,318,63,2.78,32.3,8,29,0,0.375,0.253,3.082,0.539,1,0,0,74
10205,1000,"Pork, fresh, loin, country-style ribs, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,CKD,BRSD",Country ribs,,,"Bone 24%, Connective tissue 15%",39,,6.25,4.27,9.02,3.87,Pork Products,26.49,17.71,0,273,0,0,34,1.34,23,202,288,58,4.23,46.3,6,50,0,0.461,0.283,5.548,0.472,0.96,0,0,103
10206,1000,"Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, roasted","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,RSTD",,,,"Connective tisue 8%, Bone 17%",25,,6.25,4.27,9.02,3.87,Pork Products,21.75,29.46,0,359,0,0,25,1,22,214,322,52,2.2,34.5,8,72,0.3,0.82,0.329,4.196,0.419,0.76,0,0,91
10207,1000,"Pork, fresh, loin, country-style ribs, separable lean only, raw","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,RAW",Country ribs,,,"Bone 21%, Connective tissue, 14%, separable fat 6%",41,,6.25,4.27,9.02,3.87,Pork Products,20.76,5.64,0,140,0,0,21,0.9,23,204,338,67,3,34.8,0,22,0,0.394,0.271,3.097,0.577,1.01,0,0,74
10208,1000,"Pork, fresh, loin, country-style ribs, separable lean only, cooked, braised","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,CKD,BRSD",Country ribs,,,"Bone 24%, Connective tissue, 15%, separable fat 4%",43,,6.25,4.27,9.02,3.87,Pork Products,27.74,14.26,0,247,0,0,33,1.39,23,208,297,60,4.46,48.6,0,49,0,0.477,0.296,5.715,0.491,0.94,0,0,105
10209,1000,"Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, roasted","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,RSTD",,,,"Connective tissue 8%, Bone 17%, Separable fat 7%",32,,6.25,4.27,9.02,3.87,Pork Products,29.2,11.38,0,227,0,0,31,0.98,22,235,390,91,3.94,47.6,5,42,0,0.574,0.458,7.82,0.523,0.9,0,0,99
10210,1000,"Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean and fat, raw","PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW",,,,Connective tissue 4%,6,,6.25,4.27,9.02,3.87,Pork Products,22.49,4.05,0,133,0,0,9,0.55,22,247,354,63,1.7,36.7,8,18,0,0.6,0.252,7.239,0.6,0.49,0,0,63
10211,1000,"Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, braised","PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRSD",,,Y,Connective tissue 2%,2,,6.25,4.27,9.02,3.87,Pork Products,28.41,5.47,0,171,0,0,11,0.71,25,291,411,56,2.01,45.5,7,15,0,0.656,0.265,7.76,0.523,0.62,0,0,80
10212,1000,"Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRLD",,,Y,Connective tissue 2%,2,,6.25,4.27,9.02,3.87,Pork Products,28.19,5.53,0,170,0,0,11,0.87,27,292,420,65,2.15,45.3,8,26,0,0.653,0.29,8.654,0.584,0.75,0,0,76
10213,1000,"Pork, fresh, loin, sirloin (roasts), boneless, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD",,,Y,Connective tissue 3%,3,,6.25,4.27,9.02,3.87,Pork Products,29.62,7.32,0,192,0,0,13,0.66,27,304,398,66,2.2,44.7,7,25,0,0.705,0.327,8.055,0.533,0.93,0,0,84
10214,1000,"Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean only, raw","PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN,RAW",,,,"Connective tissue 5%, Separable fat 2%",7,,6.25,4.27,9.02,3.87,Pork Products,22.81,2.59,0,121,0,0,9,0.56,23,251,354,63,1.72,37.4,7,16,0,0.61,0.256,7.348,0.611,0.49,0,0,63
10215,1000,"Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, braised","PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRSD",,,,"Connective tissue 3%, Separable fat 1%",4,,6.25,4.27,9.02,3.87,Pork Products,28.75,4.5,0,163,0,0,11,0.71,25,294,416,56,2.04,46.1,5,14,0,0.663,0.266,7.834,0.528,0.63,0,0,80
10216,1000,"Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, broiled","PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRLD",,,Y,"Connective tissue 2%, Separable fat 2%",4,,6.25,4.27,9.02,3.87,Pork Products,28.6,4.36,0,161,0,0,11,0.88,27,296,425,66,2.18,45.9,7,25,0,0.662,0.292,8.761,0.591,0.75,0,0,76
10217,1000,"Pork, fresh, loin, sirloin (roasts), boneless, separable lean only, cooked, roasted","PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN,CKD,RSTD",,,Y,"Connective tissue 3%, separable fat 3%",6,,6.25,4.27,9.02,3.87,Pork Products,30.39,5.31,0,178,0,0,12,0.66,28,311,408,66,2.25,45.9,4,24,0,0.722,0.332,8.224,0.544,0.94,0,0,84
10218,1000,"Pork, fresh, loin, tenderloin, separable lean and fat, raw","PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,RAW","URMIS #3358, Pork tenderloin",,Y,Connective tissue 5%,5,,6.25,4.27,9.02,3.87,Pork Products,20.65,3.53,0,120,0,0,6,0.97,27,243,393,52,1.87,30.3,2,10,0,0.982,0.337,6.61,0.765,0.52,0,0,65
10219,1000,"Pork, fresh, ground, raw","PORK,FRESH,GROUND,RAW",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,16.88,21.19,0,263,,0,14,0.88,19,175,287,56,2.2,24.6,7,,0.7,0.732,0.235,4.338,0.383,0.7,,0,72
10220,1000,"Pork, fresh, ground, cooked","PORK,FRESH,GROUND,COOKED",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,25.69,20.77,0,297,0,0,22,1.29,24,226,362,73,3.21,35.4,8,21,0.7,0.706,0.22,4.206,0.391,0.54,0,0,94
10221,1000,"Pork, fresh, loin, tenderloin, separable lean and fat, cooked, broiled","PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,BRLD",,,,Connective tissue,3,,6.25,4.27,9.02,3.87,Pork Products,29.86,8.11,0,201,,0,5,1.39,35,290,444,64,2.89,47.7,7,,1,0.968,0.378,5.054,0.515,0.98,,0,94
10222,1000,"Pork, fresh, loin, tenderloin, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,RSTD","URMIS #3358, Pork tenderloin",,Y,Connective tissue,4,,6.25,4.27,9.02,3.87,Pork Products,26.04,3.96,0,147,0,0,6,1.15,29,265,419,57,2.41,38,1,10,0,0.944,0.385,7.402,0.735,0.57,0,0,73
10223,1000,"Pork, fresh, loin, tenderloin, separable lean only, cooked, broiled","PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,BRLD",,,,"Connective tissue 3%, separable fat 3%",6,,6.25,4.27,9.02,3.87,Pork Products,30.42,6.33,0,187,,0,5,1.43,36,295,451,65,2.95,51.6,7,,1,0.988,0.387,5.135,0.528,1,,0,94
10224,1000,"Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, raw","PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,RAW","Boneless pork loin, Centercut boneless pork loin roast",,,Connective tissue,16,,6.25,4.27,9.02,3.87,Pork Products,21.34,8.33,0,166,0,0,7,0.53,24,216,358,47,1.73,26.5,5,21,0,0.426,0.181,5.566,0.718,0.54,0,0,64
10225,1000,"Pork, fresh, loin, top loin (roasts), boneless, separable lean only, raw","PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,RAW","Boneless pork loin, Centercut boneless pork loin roast",,,"Connective tissue 10%, separable fat 6%",16,,6.25,4.27,9.02,3.87,Pork Products,22.39,4.06,0,132,0,0,5,0.54,26,225,374,49,1.8,27.7,0,16,0,0.443,0.187,5.745,0.755,0.51,0,0,63
10226,1000,"Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, raw","PORK,FRSH,COMP OF RTL CUTS (LOIN & SHLDR BLADE),LN & FAT,RAW",,,Y,Bone,22,,6.25,4.27,9.02,3.87,Pork Products,20.08,10.14,0,177,0,0,16,0.74,23,205,345,54,2.01,31.6,7,22,0.1,0.582,0.238,5.452,0.625,0.64,0,0,65
10227,1000,"Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, cooked","PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN&FAT,CKD",,,Y,Bone,22,,6.25,4.27,9.02,3.87,Pork Products,26.07,13.66,0,235,0,0,20,0.93,24,222,345,55,2.56,41.8,7,38,0.1,0.679,0.293,6.368,0.561,0.68,0,0,83
10228,1000,"Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, raw","PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,RAW",,,,"Bone 22%, separable fat 8%",30,,6.25,4.27,9.02,3.87,Pork Products,21.23,5.88,0,144,,0,17,0.88,23,209,384,54,1.99,32.4,7,,0.6,0.98,0.272,4.825,0.51,0.66,,0,60
10229,1000,"Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, cooked","PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,CKD",,,,"Bone 22%, separable fat 8%",30,,6.25,4.27,9.02,3.87,Pork Products,29.47,9.44,0,211,,0,22,1.07,26,234,377,57,2.87,45.4,7,,0.4,0.873,0.344,5.251,0.435,0.75,,0,85
10802,1000,"USDA Commodity, pork, cured, ham, boneless, cooked, heated","USDA COMMODITY,PORK,CURED,HAM,BNLESS,CKD,HTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,18.84,7.62,0,149,0,0,6,0.85,21,292,281,1155,2.23,19.8,0,,23.3,0.53,0.238,3.553,0.256,1.41,,0,73
10803,1000,"USDA Commodity, pork, ground, fine/coarse, frozen, cooked","USDA COMMODITY,PORK,GROUND,FINE/COARSE,FRZ,CKD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,23.55,18.19,0,265,,0,8,1.51,23,231,311,76,3.59,35.4,15,,2.3,0.598,0.247,3.597,0.167,2.3,,0,105
10804,1000,"USDA Commodity, pork, cured, ham, boneless, cooked, unheated","USDA COMMODITY,PORK,CURED,HAM,BNLESS,CKD,UNHTD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,17.44,6.16,0.69,133,,0,7,1.07,20,278,272,1210,2.3,16.4,5,,22.7,0.534,0.187,2.525,0.229,0.68,,0,71
10805,1000,"USDA Commodity, pork, ground, fine/coarse, frozen, raw","USDA COMMODITY,PORK,GROUND,FINE/COARSE,FRZ,RAW",,,,,0,,,4.27,9.02,3.87,Pork Products,15.41,17.18,0,221,,0,14,0.91,20,181,297,58,2.28,24.6,6,,0.6,0.668,0.214,3.959,0.35,0.64,,0,58
10851,1000,"HORMEL, Cure 81 Ham","HORMEL,CURE 81 HAM",,,,,0,,,4,9,4,Pork Products,18.43,3.59,0.21,106,0,,4,0.8,20,,319,1038,2,,0,,1.6,,,,,,,,51
10852,1000,"HORMEL ALWAYS TENDER, Pork Tenderloin, Teriyaki-Flavored","HORMEL ALWAYS TENDER,PORK TENDERLOIN,TERIYAKI-FLAVORED",,,,,0,,,4,9,4,Pork Products,18.2,3.07,4.63,119,3.33,,7,1,22,,536,413,1.5,,0,,2.7,,,,,,,,46
10853,1000,"HORMEL ALWAYS TENDER, Pork Tenderloin, Peppercorn-Flavored","HORMEL ALWAYS TENDER,PORK TENDERLOIN,PEPPERCORN-FLAVORED",,,,,0,,,4,9,4,Pork Products,17.21,3.8,1.82,110,0.14,,14,1.1,21,,586,594,1.4,,0,,1.4,,,,,,,,47
10854,1000,"HORMEL ALWAYS TENDER, Pork Loin Filets, Lemon Garlic-Flavored","HORMEL ALWAYS TENDER,PORK LOIN FILETS,LEMON GARLIC-FLAVORED",,,,,0,,,4,9,4,Pork Products,17.83,4.16,1.79,118,0.22,,6,0.6,20,,542,590,1.3,,0,,1.7,,,,,,,,42
10855,1000,"HORMEL ALWAYS TENDER, Center Cut Chops, Fresh Pork","HORMEL ALWAYS TENDER,CNTR CUT CHOPS,FRSH PORK",,,,,0,,,4,9,4,Pork Products,18.74,9.62,0.84,167,0.28,,14,0.6,21,,307,378,1.5,,0,,1.7,,,,,,,,52
10856,1000,"HORMEL ALWAYS TENDER, Boneless Pork Loin, Fresh Pork","HORMEL ALWAYS TENDER,BNLESS PORK LOIN,FRSH PORK",,,,,0,,,4,9,4,Pork Products,19.02,7.18,0.76,145,0.08,,4,0.6,21,,310,358,1.6,,0,,1.3,,,,,,,,49
10857,1000,HORMEL Canadian Style Bacon,HORMEL CANADIAN STYLE BACON,,,,,0,,,4,9,4,Pork Products,16.88,4.94,1.87,122,1.43,,6,0.9,19,,279,1016,1.8,,0,,1.4,,,,,,,,49
10858,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, pan-broiled","PORK,FRSH,LN,TP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,PN-BRLD",,,,Separable fat,9,,6.25,4.27,9.02,3.87,Pork Products,28.95,5,0,169,0,0,10,0.63,28,320,517,209,2.02,37.7,0,,0,0.631,0.188,10.323,0.489,0.52,0,0,75
10859,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, pan-broiled","PORK,FRSH,LN,TPLN(CHPS),BNLS,LN & FT,W/ADDED SLN,CKD,PN-BRLD",,,,,0,,,4.27,9.02,3.87,Pork Products,28.35,7.66,0,190,0,0,10,0.63,28,317,512,205,1.98,35.5,6,,0,0.616,0.184,10.192,0.476,0.55,0,0,75
10860,1000,"Pork, cured, bacon, cooked, baked","PORK,CURED,BACON,CKD,BKD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,35.73,43.27,1.35,548,0,0,10,1.49,30,506,539,2193,3.36,59,37,,0,0.348,0.251,10.623,0.309,1.16,0.1,0,107
10861,1000,"Pork, cured, bacon, cooked, microwaved","PORK,CURED,BACON,CKD,MICROWAVED",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,39.01,34.12,0.48,476,0,0,13,1.14,34,389,525,1783,3.51,65.1,,,0,0.554,0.257,10.714,0.513,1,,0,111
10862,1000,"Pork, cured, bacon, pre-sliced, cooked, pan-fried","PORK,CURED,BACON,PRE-SLICED,CKD,PAN-FRIED",,,Y,,0,,6.25,4.27,9.02,3.87,Pork Products,33.92,35.09,1.7,468,0,0,11,0.95,31,388,499,1684,3.06,50.7,37,17,0,0.56,0.232,10.457,0.535,1.09,0,0,99
10863,1000,"Pork, fresh, variety meats and by-products, stomach, cooked, simmered","PORK,FRSH,VAR MEATS & BY-PRODUCTS,STOMACH,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Pork Products,21.4,7.26,0.09,157,0,0,15,1.23,15,129,85,40,2.92,40.3,0,,0,0.04,0.188,1.38,0.021,0.48,0,0,316
10864,1000,"Pork, bacon, rendered fat, cooked","PORK,BACON,RENDERED FAT,CKD",bacon drippings,,,,0,,6.25,4.27,9.02,3.87,Pork Products,0.07,99.5,0,898,0,0,1,0.13,0,9,15,27,0.06,5.7,37,,0,0.004,0.015,0.725,0.005,0.09,0,0,97
10865,1000,"Pork, cured, ham -- water added, rump, bone-in, separable lean only, heated, roasted","PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,HTD,RSTD",,,,"Bone 10%, separable fat 9%",19,,,,,,Pork Products,21.41,3.56,0.87,121,0.84,0,8,0.71,18,246,250,1150,1.81,27.5,37,,0,0.356,0.189,4.43,0.434,0.36,0,0,62
10866,1000,"Pork, cured, ham -- water added, rump, bone-in, separable lean only, unheated","PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,UNHTD",,,,"Bone 12%, Separable fat 16%",28,,6.25,,,,Pork Products,15.43,3.48,0.67,95,0.67,0,7,1.13,16,235,205,1170,1.37,28.8,29,,0,0.235,0.213,5.32,0.265,0.54,0,0,53
10867,1000,"Pork, cured, ham -- water added, shank, bone-in, separable lean only, heated, roasted","PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,HTD,RSTD",,,,"Bone 13%, Connective tissue 6%, Separable fat 16%",35,,,,,,Pork Products,20.92,4.43,1.2,128,0.91,0,9,1.56,18,216,241,1060,3.09,26.2,37,,0,0.257,0.192,5.073,0.348,0.6,0,0,65
10868,1000,"Pork, cured, ham -- water added, slice, bone-in, separable lean only, heated, pan-broil","PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,HTD,PAN-BROIL",,,,"Separable fat 9%, Bone 4%",13,,,,,,Pork Products,22.04,4.3,1.48,131,1.48,0,11,1.12,20,260,289,1374,2.29,30,38,,0,0.384,0.182,5.436,0.461,0.58,0,0,65
10869,1000,"Pork, cured, ham and water product, slice, bone-in, separable lean only, heated, pan-broil","PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,HTD,PAN-BROIL",,,,"Bone 3%, Connective tissue 1%, Separable fat 8%",12,,,,,,Pork Products,20.9,3.63,1.35,122,1.1,0,12,0.93,19,258,289,1237,2.25,24.5,38,,0,0.383,0.184,5.023,0.449,0.46,0,0,64
10870,1000,"Pork, cured, ham and water product, slice, boneless, separable lean only, heated, pan-broil","PORK,CURED,HAM & H2O PRODUCT,SLICE,BNLESS,LN,HTD,PAN-BROIL",,,Y,,0,,,,,,Pork Products,15.09,5.06,4.69,123,4.69,0,8,0.74,17,240,272,1390,1.64,32.6,44,34,0,0.308,0.137,4.285,0.335,0.44,0,0,45
10871,1000,"Pork, cured, ham and water product, whole, boneless, separable lean only, heated, roasted","PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,HTD,RSTD",,,Y,,0,,,,,,Pork Products,13.88,5.46,4.61,123,4.61,0,8,0.74,15,224,245,1335,1.64,29.1,44,27,0,0.26,0.141,3.62,0.26,0.37,0,0,43
10872,1000,"Pork, cured, ham and water product, whole, boneless, separable lean only, unheated","PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,UNHTD",,,Y,Separable fat 3%,3,,,,,,Pork Products,14.07,4.86,4.22,116,4.22,0,8,0.78,17,229,268,1310,1.6,29.4,45,23,0,0.284,0.146,3.87,0.294,0.34,0,0,43
10873,1000,"Pork, cured, ham with natural juices, rump, bone-in, separable lean only, heated, roasted","PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,HTD,RSTD",,,,"Bone 14%, Separable fat 9%",23,,,,,,Pork Products,24.14,4.25,0.48,137,0.48,0,10,1.04,22,271,511,861,2.5,49.9,37,,0,0.333,0.238,7.62,0.384,0.61,0,0,72
10874,1000,"Pork, cured, ham with natural juices, shank, bone-in, separable lean only, heated, roasted","PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,HTD,RSTD",,,,"Bone 12%, Connective tissue 3%, Separable fat 11%",26,,,,,,Pork Products,24.95,4.97,0.34,145,0.34,0,7,1.2,21,255,458,820,3.06,48.7,37,,0,0.291,0.198,7.793,0.381,0.69,0,0,74
10875,1000,"Pork, cured, ham with natural juices, slice, bone-in, separable lean only, heated, pan-broil","PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,HTD,PAN-BROIL",,,,"Bone 3%, Separable fat 8%",11,,,,,,Pork Products,27.75,4.38,0,150,0,0,12,1.2,23,291,358,835,3.03,51,45,,0,0.308,0.261,9.01,0.392,0.6,0,0,80
10876,1000,"Pork, cured, ham with natural juices, spiral slice, meat only, boneless, separable lean only, heated, roasted","PRK,CRD,HAM W/ NAT JUCS,SPRL SLC,MEAT ONLY,BNLES,LN,HTD,RSTD",,,,Separable fat,3,,,,,,Pork Products,22.56,3.78,1.08,126,1.08,0,4,0.84,22,312,349,986,1.82,41.8,43,32,0,0.468,0.23,6.72,0.428,0.51,0,0,63
10877,1000,"Pork, cured, ham and water product, rump, bone-in, separable lean only, heated, roasted","PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,HTD,RSTD",,,,"Bone 13%, Connective tissue 1%, Separable fat 12%",26,,,,,,Pork Products,21.28,4.7,1.15,131,1.15,0,10,0.87,19,221,264,1267,2.08,43.4,38,,0,0.33,0.188,4.04,0.335,0.49,0.1,0,66
10878,1000,"Pork, cured, ham -- water added, slice, boneless, separable lean only, heated, pan-broil","PORK,CURED,HAM -- H2O ADDED,SLICE,BNLESS,LN,HTD,PAN-BROIL",,,Y,Separable fat,2,,,,,,Pork Products,18.82,4.09,1.75,119,1.75,0,9,0.86,21,284,337,1223,1.94,39.3,43,34,0,0.409,0.19,5.895,0.435,0.47,0,0,54
10879,1000,"Pork, cured, ham -- water added, whole, boneless, separable lean only, heated, roasted","PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,HTD,RSTD",,,Y,Separable fat 2%,2,,,,,,Pork Products,17.99,4.39,1.57,117,1.57,0,9,0.82,19,270,316,1193,1.82,34.2,44,28,0,0.362,0.183,5.797,0.394,0.4,0,0,53
10880,1000,"Pork, cured, ham -- water added, whole, boneless, separable lean only, unheated","PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,UNHTD",,,Y,Separable fat,3,,,,,,Pork Products,17.34,3.97,1.45,110,1.45,0,8,0.86,19,265,317,1141,1.79,35.1,42,23,0,0.402,0.187,5.473,0.413,0.47,0,0,50
10881,1000,"Pork, cured, ham and water product, shank, bone-in, separable lean only, heated, roasted","PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN,HTD,RSTD",,,,"Bone 16%, Connective tissue 4%, Separable fat 21%",41,,,,,,Pork Products,21.69,4.45,1.26,132,1.26,0,9,1.17,15,202,224,1045,2.82,45.3,37,,0,0.394,0.199,4.563,0.4,0.46,0,0,72
10882,1000,"Pork, cured, ham with natural juices, slice, boneless, separable lean only, heated, pan-broil","PORK,CURED,HAM W/ NAT JUICES,SLICE,BNLESS,LN,HTD,PAN-BROIL",,,Y,Separable fat,1,,,,,,Pork Products,20.95,3.16,1.05,116,1.05,0,6,0.94,22,322,364,1163,2.14,37,44,37,0,0.514,0.218,7.395,0.506,0.42,0,0,57
10883,1000,"Pork, cured, ham with natural juices, whole, boneless, separable lean only, heated, roasted","PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,HTD,RSTD",,,Y,Separable fat 3%,3,,,,,,Pork Products,20.57,3.01,0.84,113,0.81,0,6,0.85,22,318,367,1180,1.98,32.7,44,30,0,0.62,0.216,6.83,0.462,0.42,0,0,56
10884,1000,"Pork, cured, ham with natural juices, whole, boneless, separable lean only, unheated","PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,UNHTD",,,Y,Separable fat 4%,4,,,,,,Pork Products,19.44,3.21,1.03,111,1.03,0,6,0.87,21,303,347,1098,1.98,34.5,44,25,0,0.531,0.209,6.877,0.474,0.41,0,0,53
10885,1000,"Pork, cured, ham -- water added, shank, bone-in, separable lean only, unheated","PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,UNHTD",,,,"Bone 10%, Separable fat 16%",26,,6.25,,,,Pork Products,18.65,1.87,0.71,91,0.71,0,7,0.76,18,229,229,1040,1.99,40,29,,0,0.322,0.218,3.59,0.246,0.31,0,0,50
10886,1000,"Pork, cured, ham -- water added, slice, bone-in, separable lean only, unheated","PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,UNHTD",,,,"Bone 4%, Separable fat 16%",20,,6.25,,,,Pork Products,17.38,2.29,1.23,95,1.23,0,9,1.08,17,235,221,1090,1.86,35.3,28,,0,0.374,0.214,4.71,0.295,0.39,0,0,54
10887,1000,"Pork, cured, ham and water product, rump, bone-in, separable lean only, unheated","PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,UNHTD",,,,Bone,18,,6.25,,,,Pork Products,17.93,3.38,1.24,107,0.97,0,10,0.67,18,218,221,1070,1.65,40.3,32,,0,0.282,0.222,4.09,0.247,0.58,0,0,58
10888,1000,"Pork, cured, ham and water product, slice, bone-in, separable lean only, unheated","PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,UNHTD",,,,"Bone 3%, Separable fat 11%",14,,6.25,,,,Pork Products,14.47,3.78,2.82,103,0.91,0,9,1.5,14,222,209,1160,1.66,13,31,,0,0.423,0.178,4.38,0.362,0.48,0,0,49
10889,1000,"Pork, cured, ham and water product, shank, bone-in, unheated, separable lean only","PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,UNHTD,LN",,,,"Bone 17%, Separable fat 27%",44,,6.25,,,,Pork Products,17.53,4.18,1.2,113,1.06,0,8,0.97,15,209,234,1090,2.19,28.1,32,,0,0.696,0.225,3.58,0.267,0.55,0,0,52
10890,1000,"Pork, cured, ham with natural juices, rump, bone-in, separable lean only, unheated","PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,UNHTD",,,,"Bone 21%, Separable fat 16%",37,,6.25,,,,Pork Products,22.71,3.47,0.43,122,0.43,0,9,1.05,21,253,303,893,2.4,41,34,,0,0.265,0.225,7.23,0.336,0.51,0,0,68
10891,1000,"Pork, cured, ham with natural juices, shank, bone-in, separable lean only, unheated","PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,UNHTD",,,,"Bone 10%, Separable fat 14%",24,,6.25,,,,Pork Products,25.11,3.33,0.3,130,0.3,0,7,1.1,20,250,299,809,2.79,52.3,33,,0,0.235,0.246,5.28,0.393,0.37,0,0,63
10892,1000,"Pork, cured, ham with natural juices, slice, bone-in, separable lean only, unheated","PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,UNHTD",,,,"Bone 3%, Separable fat 9%",12,,6.25,,,,Pork Products,24.34,2.87,0,123,0,0,9,1.1,20,258,300,861,2.3,46.5,39,,0,0.24,0.251,6.59,0.352,0.6,0,0,63
10893,1000,"Pork, cured, ham with natural juices, spiral slice, boneless, separable lean only, unheated","PORK,CURED,HAM W/ NAT JUICES,SPIRAL SLICE,BNLESS,LN,UNHTD",,,Y,Separable fat 5%,5,,6.25,,,,Pork Products,19.25,3.26,1.22,109,1.22,0,4,0.76,20,283,317,895,1.65,37.9,39,25,0,0.399,0.196,5.733,0.365,0.44,0,0,57
10894,1000,"Pork, cured, ham, separable fat, boneless, heated","PORK,CURED,HAM,FAT,BNLESS,HTD",,,,,0,,6.25,,,,Pork Products,8.77,51.57,2,507,0.28,0,6,0.53,16,169,195,677,1.14,16,42,75,0,0.278,0.096,3.08,0.201,0.31,,0,72
10895,1000,"Pork, cured, ham, separable fat, boneless, unheated","PORK,CURED,HAM,FAT,BNLESS,UNHTD",,,,,0,,6.25,,,,Pork Products,7.5,53,1.87,515,0.44,0,4,0.5,11,143,174,616,1.14,15.8,44,48,0,0.233,0.021,2.57,0.187,0.31,0,0,61
10898,1000,"Pork, pickled pork hocks","PORK,PICKLED PORK HOCKS",,,,,0,,6.25,,,,Pork Products,19.11,10.54,0,171,0,0,19,1.14,6,60,47,1050,2.38,26.3,76,,0,0.08,0.068,1.1,0.064,0.51,0,0,89
10899,1000,"Pork, cured, ham, slice, bone-in, separable lean only, heated, pan-broil","PORK,CURED,HAM,SLICE,BONE-IN,LN,HTD,PAN-BROIL",,,,"Bone 5%, Separable fat 9%",14,,,,,,Pork Products,27.18,4.09,0.74,148,0.74,0,15,1.42,25,296,427,870,3.04,25.3,0,44,0,0.575,0.317,7.767,0.54,0.66,0,0,73
10900,1000,"Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, unheated","PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,UNHTD",,,Y,,0,,,,,,Pork Products,19.38,3.43,1.02,112,1.02,0,6,0.87,21,302,346,1096,1.97,34.4,44,25,0,0.53,0.209,6.859,0.473,0.41,0,0,53
10901,1000,"Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, unheated","PORK,CURED,HAM W/ NAT JUICES,SPIRL SLCE,BNLES,LN & FAT,UNHTD",,,Y,,0,,,,,,Pork Products,18.66,5.75,1.18,129,1.18,0,4,0.75,19,276,310,881,1.63,36.8,39,27,0,0.391,0.187,5.575,0.356,0.43,0,0,57
10902,1000,"Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, unheated","PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN & FAT,UNHTD",,,,Bone,3,,,,,,Pork Products,22.82,7.4,0.17,159,0.04,0,9,1.05,19,248,289,839,2.2,43.7,39,,0,0.239,0.23,6.227,0.337,0.57,0,0,63
10903,1000,"Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, unheated","PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,UNHTD",,,,Bone,10,,,,,,Pork Products,22.35,11.11,0.32,191,0.32,0,6,1.01,19,233,279,779,2.53,46.6,35,,0,0.235,0.211,4.856,0.361,0.36,0,0,62
10904,1000,"Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, unheated","PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,UNHTD",,,,Bone,21,,,,,,Pork Products,19.7,13.26,0.43,200,0.43,0,8,0.94,19,231,278,838,2.15,36,36,,0,0.259,0.185,6.31,0.306,0.47,0,0,67
10905,1000,"Pork, cured, ham and water product, whole, boneless, separable lean and fat, unheated","PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,UNHTD",,,Y,,0,,,,,,Pork Products,14.05,4.99,4.21,117,4.21,0,8,0.78,17,228,267,1308,1.59,29.4,45,23,0,0.284,0.146,3.867,0.294,0.34,0,0,43
10906,1000,"Pork, cured, ham and water product, slice, bone-in, separable lean and fat, unheated","PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN & FAT,UNHTD",,,,Bone,3,,,,,,Pork Products,13.69,9.29,2.72,149,0.85,0,8,1.39,14,213,205,1099,1.6,13.3,33,,0,0.402,0.16,4.177,0.342,0.46,0,0,50
10907,1000,"Pork, cured, ham and water product, shank, bone-in, separable lean and fat, unheated","PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,UNHTD",,,,Bone,17,,,,,,Pork Products,14.28,20,1.42,243,0.86,0,6,0.82,14,188,215,936,1.85,24.1,36,,0,0.546,0.159,3.253,0.241,0.47,0,0,55
10908,1000,"Pork, cured, ham and water product, rump, bone-in, separable lean and fat, unheated","PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,UNHTD",,,,Bone,18,,,,,,Pork Products,16.09,12.13,1.35,179,0.88,0,9,0.64,17,205,213,990,1.56,36,34,,0,0.273,0.186,3.822,0.236,0.53,0,0,58
10909,1000,"Pork, cured, ham -- water added, whole, boneless, separable lean and fat, unheated","PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,UNHTD",,,Y,,0,,,,,,Pork Products,17.06,5.38,1.42,121,1.42,0,8,0.85,19,262,312,1126,1.77,34.6,42,22,0,0.397,0.183,5.389,0.407,0.46,0,0,50
10910,1000,"Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, unheated","PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN & FAT,UNHTD",,,,Bone,4,,,,,,Pork Products,15.73,10.77,1.1,164,1.1,0,8,0.98,16,220,213,1011,1.74,32,31,,0,0.35,0.182,4.352,0.277,0.38,0,0,55
10911,1000,"Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, unheated","PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,UNHTD",,,,Bone,10,,,,,,Pork Products,16.65,11.02,0.66,167,0.66,0,7,0.72,17,214,219,964,1.84,35.7,32,,0,0.306,0.183,3.407,0.235,0.31,0,0,52
10912,1000,"Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, unheated","PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,UNHTD",,,,Bone,12,,,,,,Pork Products,13.99,12.5,0.8,172,0.62,0,6,1.02,15,218,199,1069,1.33,26.4,32,,0,0.235,0.178,4.819,0.251,0.5,0,0,54
10913,1000,"Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, heated, roasted","PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,HTD,RSTD",,,,Bone,10,,,,,,Pork Products,20.1,8.56,0.99,161,0.78,0,8,0.69,18,238,244,1101,1.74,26.3,37,,0,0.348,0.18,4.29,0.41,0.35,0,0,63
10914,1000,"Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, heated, roasted","PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,HTD,RSTD",,,,"Bone 13%, Connective tissue 6%",19,,,,,,Pork Products,18.62,13.37,1.35,200,0.79,0,9,1.37,17,207,232,988,2.72,24.2,38,,0,0.261,0.173,4.695,0.32,0.55,0,0,66
10915,1000,"Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, heated, pan-broil","PORK,CURED,HAM -- H2O ADDED,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL",,,,Bone,4,,,,,,Pork Products,20.8,8.73,1.54,166,1.54,0,11,1.07,19,251,280,1309,2.19,28.7,39,,0,0.374,0.174,5.215,0.437,0.56,0,0,66
10916,1000,"Pork, cured, ham -- water added, slice, boneless, separable lean and fat, heated, pan-broil","PORK,CURED,HAM -- H2O ADDED,SLCE,BNLESS,LN & FAT,HTD,PAN-BRL",,,Y,,0,,,,,,Pork Products,18.62,5.05,1.72,125,1.72,0,9,0.85,21,281,334,1212,1.93,38.8,43,35,0,0.406,0.188,5.838,0.43,0.47,0,0,54
10917,1000,"Pork, cured, ham -- water added, whole, boneless, separable lean and fat, heated, roasted","PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,HTD,RSTD",,,Y,,0,,,,,,Pork Products,17.77,5.48,1.54,126,1.54,0,9,0.82,19,268,313,1181,1.8,33.8,44,29,0,0.36,0.181,5.734,0.39,0.4,0,0,54
10918,1000,"Pork, cured, ham and water product, rump, bone-in, separable lean and fat, heated, roasted","PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,HTD,RSTD",,,,"Bone 13%, Connective tissue 1%",14,,,,,,Pork Products,19.46,11.48,1.15,186,1.03,0,10,0.82,18,213,254,1181,1.95,39.4,38,,0,0.322,0.175,3.901,0.316,0.47,0,0,67
10919,1000,"Pork, cured, ham and water product, shank, bone-in, separable lean and fat, heated, roasted","PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,HTD,RSTD",,,,"Bone 16%, Connective tissue 4%",20,,,,,,Pork Products,18.17,17.29,1.42,234,0.99,0,8,1,15,193,216,945,2.36,37.3,38,,0,0.362,0.171,4.159,0.346,0.42,0,0,72
10920,1000,"Pork, cured, ham and water product, slice, bone-in, separable lean and fat, heated, pan-broil","PORK,CURED,HAM & H2O PRDCT,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL",,,,"Bone 3%, Connective tissue 1%",4,,,,,,Pork Products,19.85,7.78,1.41,155,1.03,0,11,0.9,19,250,281,1188,2.16,23.8,38,,0,0.374,0.177,4.855,0.427,0.44,0,0,64
10921,1000,"Pork, cured, ham and water product, slice, boneless, separable lean and fat, heated, pan-broil","PORK,CURED,HAM & H2O PRDCT,SLICE,BNLESS,LN & FAT,HTD,PAN-BRL",,,Y,,0,,,,,,Pork Products,15.08,5.13,4.69,124,4.69,0,8,0.74,17,240,272,1389,1.63,32.6,44,34,0,0.308,0.137,4.283,0.335,0.44,0,0,45
10922,1000,"Pork, cured, ham and water product, whole, boneless, separable lean and fat, heated, roasted","PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,HTD,RSTD",,,Y,,0,,,,,,Pork Products,13.88,5.46,4.61,123,4.61,0,8,0.74,15,224,245,1335,1.64,29.1,44,27,0,0.26,0.141,3.62,0.26,0.37,0,0,43
10923,1000,"Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, heated, roasted","PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,HTD,RSTD",,,,Bone,14,,,,,,Pork Products,22.47,9.39,0.6,177,0.45,0,10,0.99,21,260,477,841,2.35,46.2,38,,0,0.327,0.222,7.127,0.364,0.58,0,0,72
10924,1000,"Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, heated, roasted","PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,HTD,RSTD",,,,"Bone 12%, Connective tissue 3%",15,,,,,,Pork Products,22.88,10.93,0.33,191,0.33,0,7,1.11,20,244,424,801,2.82,44.5,38,,0,0.289,0.185,7.19,0.358,0.64,0,0,74
10925,1000,"Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, heated, pan-broil","PORK,CURED,HAM W/ NAT JUICS,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL",,,,Bone,3,,,,,,Pork Products,26.18,8.28,0.17,180,0.02,0,12,1.15,22,280,344,821,2.87,48.2,44,,0,0.306,0.247,8.52,0.376,0.58,0,0,80
10926,1000,"Pork, cured, ham with natural juices, slice, boneless, separable lean and fat, heated, pan-broil","PORK,CURED,HAM W/ NAT JUICS,SLICE,BNLES,LN & FAT,HTD,PAN-BRL",,,Y,,0,,,,,,Pork Products,20.89,3.4,1.04,118,1.04,0,6,0.93,22,321,363,1160,2.13,36.9,44,37,0,0.513,0.217,7.374,0.504,0.42,0,0,58
10927,1000,"Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, heated, roasted","PORK,CURED,HAM W/ NAT JUCS,SPRL SLCE,BNLES,LN & FAT,HTD,RSTD",,,Y,,0,,,,,,Pork Products,22.18,5.1,1.06,139,1.06,0,4,0.83,22,308,345,977,1.8,41.1,43,33,0,0.463,0.226,6.619,0.422,0.5,0,0,64
10928,1000,"Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, heated, roasted","PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,HTD,RSTD",,,Y,,0,,,,,,Pork Products,20.54,3.13,0.84,114,0.81,0,6,0.84,22,318,367,1179,1.98,32.7,44,30,0,0.619,0.215,6.82,0.461,0.42,0,0,56
10929,1000,"Pork, cured, ham, rump, bone-in, separable lean and fat, heated, roasted","PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,HTD,RSTD",,,,Bone,23,,,,,,Pork Products,23.95,8.88,0.64,177,0.64,0,7,1.46,23,263,370,826,2.91,23.5,5,33,0,0.531,0.284,6.871,0.446,0.61,0,0,71
10931,1000,"Pork, cured, ham, rump, bone-in, separable lean only, heated, roasted","PORK,CURED,HAM,RUMP,BONE-IN,LN,HTD,RSTD",,,,"Bone 13%, Separable fat 10%",23,,,,,,Pork Products,26.02,3.07,0.68,132,0.68,0,8,1.59,24,275,394,846,3.16,24.5,0,,0,0.566,0.31,7.387,0.479,0.65,0,0,71
10932,1000,"Pork, cured, ham, rump, bone-in, separable lean only, unheated","PORK,CURED,HAM,RUMP,BONE-IN,LN,UNHTD",,,,"Bone 13%, Separable fat 13%",26,,,,,,Pork Products,24.46,2.92,0.32,125,0,0,7,1.08,24,267,385,737,2.61,21.4,0,,0,0.519,0.225,6.987,0.514,0.56,0,0,63
10933,1000,"Pork, cured, ham, shank, bone-in, separable lean only, heated, roasted","PORK,CURED,HAM,SHANK,BONE-IN,LN,HTD,RSTD",,,,"Bone 12%, Separable fat 10%",22,,,,,,Pork Products,26.49,3.68,0.68,139,0.68,0,7,1.54,23,269,378,828,2.78,24.4,0,34,0,0.484,0.326,7.397,0.472,0.61,0,0,70
10934,1000,"Pork, cured, ham, shank, bone-in, separable lean only, unheated","PORK,CURED,HAM,SHANK,BONE-IN,LN,UNHTD",,,,"Bone 11%, Separable fat 12%",23,,,,,,Pork Products,23.79,3.19,0.18,125,0,0,6,0.99,22,258,364,846,2.34,21.2,0,,0,0.476,0.249,6.97,0.467,0.58,0,0,61
10935,1000,"Pork, cured, ham, shank, bone-in, separable lean and fat, heated, roasted","PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,HTD,RSTD",,,Y,Bone,22,,6.25,4.27,9.02,3.87,Pork Products,24.39,9.35,0.64,191,0.64,0,7,1.42,22,257,356,810,2.59,23.4,5,39,0,0.46,0.298,6.885,0.44,0.58,0,0,70
10936,1000,"Pork, cured, ham, shank, bone-in, separable lean and fat, unheated","PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,UNHTD",,,,Bone,11,,,,,,Pork Products,21.61,9.85,0.41,177,0.06,0,6,0.92,20,243,339,816,2.18,20.5,6,,0,0.444,0.218,6.382,0.429,0.54,0,0,61
10937,1000,"Pork, cured, ham, slice, bone-in, separable lean and fat, heated, pan-broil","PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,HTD,PAN-BROIL",,,,Bone,14,,,,,,Pork Products,25.48,8.48,0.7,181,0.7,0,14,1.34,25,285,405,852,2.87,24.4,4,40,0,0.547,0.296,7.333,0.509,0.63,0,0,73
10938,1000,"Pork, cured, ham, slice, bone-in, separable lean only, unheated","PORK,CURED,HAM,SLICE,BONE-IN,LN,UNHTD",,,,"Bone 5%, Separable fat 11%",16,,,,,,Pork Products,24.36,3.59,0,130,0,0,13,1.23,23,263,370,760,2.43,22.3,0,,0,0.492,0.251,6.493,0.482,0.6,0.3,0,65
10939,1000,"Pork, cured, ham, slice, bone-in, separable lean and fat, unheated","PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,UNHTD",,,,Bone,5,,,,,,Pork Products,22.45,9.17,0.21,173,0.05,0,12,1.15,22,250,348,744,2.29,21.5,5,,0,0.462,0.225,6.05,0.448,0.57,0.3,0,65
10940,1000,"Pork, fresh, spareribs, separable lean and fat, cooked, roasted","PORK,FRSH,SPARERIBS,LN & FAT,CKD,RSTD",,,,Bone,32,,,,,,Pork Products,20.89,30.86,0,361,0,0,19,1.43,18,162,265,91,3.26,30.6,0,88,0,0.418,0.328,6.103,0.59,0.45,0,,105
10942,1000,"Pork, fresh, composite of separable fat, with added solution, raw","PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,RAW",,,,,0,,,,,,Pork Products,9.27,52.33,0,508,0,0,22,0.47,9,121,191,81,0.9,11.1,0,,0,0.204,0.103,3.23,0.275,1.47,0,0,83
10943,1000,"Pork, fresh, loin, tenderloin, separable lean only, with added solution, cooked, roasted","PORK,FRSH,LOIN,TNDERLN,LN,W/ ADDED SLN,CKD,RSTD",,,Y,"Connective tissue, 4%, Separable fat, 1%",5,,,,,,Pork Products,21.61,3.15,0.31,116,0,0,5,0.98,25,316,567,231,2,45.7,0,9,0,0.789,0.36,7.392,0.61,0.47,0,0,57
10944,1000,"Pork, fresh, enhanced, loin, tenderloin, separable lean only, raw","PORK,FRSH,ENHANCED,LOIN,TENDERLOIN,LN,RAW",,,Y,"Connective tissue, 3%, Separable fat, 2%",5,,,4.27,9.02,3.87,Pork Products,20.39,2.09,0,106,0,0,4,0.92,23,290,527,243,1.73,35.2,0,8,0,0.757,0.337,6.45,0.756,0.5,0,0,48
10945,1000,"Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution cooked, braised","PORK,FRSH,SHLDR,(BSTN BTT),BLDE (STKS),LN,W/ADDEDSLNCKD,BRSD",,,Y,"Bone, 9%, Connective tissue, 19%, Separable fat, 7%",35,,,4.27,9.02,3.87,Pork Products,27.58,12.14,0,227,0,0,26,1.82,21,234,388,154,4.85,45.3,0,42,0,0.424,0.381,3.575,0.488,0.94,0,0,98
10946,1000,"Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution, raw","PORK,FRSH,SHLDR,(BSTN BUTT),BLDE (STKS),LN,W/ ADDED SOLN,RAW",,,Y,"Bone, 7%, Connective tissue, 16%, Separable fat, 9%",32,,,,,,Pork Products,18.29,5.36,0.18,122,0,0,14,1.04,19,223,419,165,3.1,28.8,0,21,0,0.512,0.367,3.837,0.509,0.89,0,0,59
10947,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, broiled","PORK,FRSH,LN,TOP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,BRLD",,,Y,Separable fat 7%,7,,,,,,Pork Products,29.65,5.73,0,170,0,0,9,0.56,29,317,608,315,1.74,55.6,0,22,0,0.664,0.24,8.927,0.465,0.68,0,0,70
10948,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, raw","PORK,FRSH,LN,TOP LIN (CHOPS),BNLSS,LN,W/ ADDED SLN,RAW",,,Y,Separable fat 14%,14,,,,,,Pork Products,21.09,3.48,0.22,117,0,0,7,0.41,23,264,537,278,1.28,47.9,0,14,0,0.518,0.21,7.813,0.497,0.41,0,0,51
10949,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, raw","PORK,FRSH,LOIN,TP LN (CHPS),BNLSS,LN & FT,W/ ADDED SLN,RAW",,,Y,,0,,6.25,,,,Pork Products,19.45,10.26,0,171,0,0,9,0.42,21,244,489,251,1.22,42.8,0,12,0,0.475,0.195,7.178,0.467,0.56,0,0,56
10950,1000,"Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, broiled","PORK,FRSH,LN,TP LN (CHPS),BNLSS,LN & FT,W/ADDED SLN,CKD,BRLD",,,Y,,0,,,,,,Pork Products,28.33,9.42,0.02,198,0,0,11,0.57,28,307,581,302,1.7,52.9,0,25,0,0.636,0.233,8.589,0.45,0.73,0,0,71
10951,1000,"Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, raw","PORK,FRSH,LOIN,TENDERLOIN,LN & FAT,W/ ADDED SLN,RAW",,,Y,Connective tissue 3%,3,,,,,,Pork Products,20.16,3.14,0,114,0,0,5,0.91,23,286,519,239,1.72,34.7,0,8,0,0.745,0.333,6.382,0.746,0.52,0,0,49
10952,1000,"Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, cooked, roasted","PORK,FRSH,LOIN,TNDERLN,LN & FT,W/ ADDED SLN,CKD,RSTD",,,Y,Connective tissue,4,,,,,,Pork Products,21.5,3.7,0.31,121,0,0,5,0.97,25,315,563,230,1.99,45.4,0,9,0,0.784,0.358,7.36,0.607,0.48,0,0,57
10953,1000,"Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat,with added solution, raw","PORK,FRSH,SHDR,(BSTN BTT),BLDE(STKS),LN & FT,W/ADDED SLN,RAW",,,Y,"Bone, 7%, Connective tissue, 16%",23,,,,,,Pork Products,17.19,11.12,0.16,169,0,0,15,0.97,18,211,391,155,2.83,26.6,0,18,0,0.474,0.335,3.763,0.48,0.96,0,0,62
10954,1000,"Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, with added solution, cooked, braised","PORK,FRSH,SHDR,(BSTN BT),BLDE(STKS),LN&FT,WADDEDSLN,CKD,BRSD",,,Y,"Bone, 9%, Connective tissue, 19%",28,,,,,,Pork Products,25.84,16.94,0.03,263,0,0,27,1.72,20,227,370,151,4.48,42.3,0,44,0,0.406,0.357,3.61,0.463,0.98,0,0,97
10955,1000,"Pork, cured, ham, rump, bone-in, separable lean and fat, unheated","PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,UNHTD",,,,Bone,13,,,,,,Pork Products,22.27,9.38,0.52,176,0.06,0,7,1.01,22,251,358,722,2.42,20.6,6,,0,0.482,0.199,6.417,0.472,0.53,0,0,62
10956,1000,"Pork, loin, leg cap steak, boneless, separable lean and fat, cooked, broiled","PORK,LOIN,LEG CAP STEAK,BNLESS,LN & FAT,CKD,BRLD","URMIS #3646, Leg cap steak, Gracilis",,,,0,,6.25,4.27,9.02,3.87,Pork Products,27.57,4.41,0,158,0,0,7,0.97,23,221,366,76,4.11,32.1,0,,0,0.481,0.387,8.205,0.43,0.69,0,0,81
10957,1000,"Pork, Leg Cap Steak, boneless, separable lean and fat, raw","PORK,LEG CAP STEAK,BNLESS,LN & FAT,RAW","URMIS #3646, Leg cap steak, Gracilis",,,,0,,6.25,4.27,9.02,3.87,Pork Products,21.64,3.39,0,123,0,0,7,0.84,22,207,365,73,3.18,25.2,0,,0,0.525,0.423,7.092,0.553,0.64,0,0,63
10958,1000,"Pork, Shoulder breast, boneless, separable lean and fat, raw","PORK,SHLDR BREAST,BNLESS,LN & FAT,RAW","URMIS #3604, Shoulder breast, Pectoralis Profundi",,,,0,,6.25,4.27,9.02,3.87,Pork Products,22.54,3.4,0,127,0,0,7,0.89,26,229,378,54,1.95,25.8,0,,0,0.645,0.465,9.602,0.722,0.87,0,0,60
10959,1000,"Pork, Shoulder breast, boneless, separable lean and fat, cooked, broiled","PORK,SHLDR BREAST,BNLESS,LN & FAT,CKD,BRLD","URMIS #3604, Shoulder breast, Pectoralis profundi",,,,0,,6.25,4.27,9.02,3.87,Pork Products,28.47,4.49,0,162,0,0,7,0.92,26,240,364,54,2.43,33.7,0,,0,0.542,0.432,10.412,0.541,0.61,0,0,78
10960,1000,"Pork, shoulder, petite tender, boneless, separable lean and fat, cooked, broiled","PORK,SHLDR,PETITE TENDER,BNLESS,LN & FAT,CKD,BRLD","URMIS #3605, Shoulder petite tender, Teres major",,,,0,,6.25,4.27,9.02,3.87,Pork Products,27.47,4.23,0,155,0,0,8,1.25,27,254,415,53,2.74,27,0,,0,0.733,0.465,6.345,0.594,0.76,0,0,82
10961,1000,"Pork, Shoulder petite tender, boneless, separable lean and fat, raw","PORK,SHLDR PETITE TENDER,BNLESS,LN & FAT,RAW","URMIS #3605, Shoulder petite tender, Teres major",,,,0,,6.25,4.27,9.02,3.87,Pork Products,21.65,3.91,0,128,0,0,6,1.07,24,229,391,50,2.16,21.5,0,,0,0.831,0.6,5.312,0.65,0.59,0,0,66
10962,1000,"Pork, Leg sirloin tip roast, boneless, separable lean and fat, cooked, braised","PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,CKD,BRSD","URMIS #3647, Leg sirloin tip roast, Vastas Lateralis/Rectus femoris",,,,0,,6.25,4.27,9.02,3.87,Pork Products,31.11,2.56,0,156,0,0,5,1.06,25,237,363,43,2.86,37.7,0,,0,0.603,0.51,7.685,0.491,0.58,0,0,84
10963,1000,"Pork, Leg sirloin tip roast, boneless, separable lean and fat, raw","PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,RAW","URMIS #3647, Leg sirloin tip roast, Vastas lateralis/Rectus Femoris",,,,0,,6.25,4.27,9.02,3.87,Pork Products,22.88,1.71,0,113,0,0,5,0.8,25,232,399,50,2.05,26.4,0,,0,0.654,0.357,7.183,0.689,0.53,0,0,62
10972,1000,"Pork, ground, 84% lean / 16% fat, raw","PORK,GROUND,84% LN / 16% FAT,RAW",,,,,0,,,,,,Pork Products,17.99,16,0.44,218,0,0,15,0.88,16,161,244,68,1.91,30.2,0,17,0,0.332,0.338,6.416,0.551,0.73,0,0,68
10973,1000,"Pork, ground, 96% lean / 4% fat, raw","PORK,GROUND,96% LN / 4% FAT,RAW",,,,,0,,,,,,Pork Products,21.1,4,0.21,121,0,0,15,0.86,19,190,310,67,1.93,34.8,0,4,0,0.414,0.368,7.914,0.668,0.64,0,0,59
10974,1000,"Pork, ground, 72% lean / 28% fat, cooked, crumbles","PORK,GROUND,72% LN / 28% FAT,CKD,CRUMBLES",,,,,0,,,,,,Pork Products,22.83,32.93,1.39,393,0,0,20,1.15,19,192,280,94,2.58,38,0,34,0,0.341,0.488,7.522,0.508,1.17,0,0,100
10975,1000,"Pork, ground, 84% lean / 16% fat, cooked, crumbles","PORK,GROUND,84% LN / 16% FAT,CKD,CRUMBLES",,,,,0,,,,,,Pork Products,26.69,20.04,0.58,289,0,0,20,1.1,23,226,354,89,2.57,42.4,0,20,0,0.421,0.486,9.286,0.613,1.02,0,0,89
10976,1000,"Pork, ground, 96% lean / 4% fat, cooked, crumbles","PORK,GROUND,96% LN / 4% FAT,CKD,CRUMBLES",,,,,0,,,,,,Pork Products,30.55,7.15,0,187,0,0,19,1.05,27,261,428,84,2.56,46.7,0,7,0,0.5,0.484,11.05,0.717,0.86,0,0,78
10977,1000,"Pork, ground, 72% lean / 28% fat, cooked, pan-broiled","PORK,GROUND,72% LN / 28% FAT,CKD,PAN-BROILED",,,,,0,,,,,,Pork Products,22.59,31.42,1.08,377,0,0,20,1.21,18,181,275,91,2.48,37.9,0,32,0,0.271,0.488,6.852,0.443,1.11,0,0,99
10978,1000,"Pork, ground, 84% lean / 16% fat, cooked, pan-broiled","PORK,GROUND,84% LN / 16% FAT,CKD,PAN-BROILED",,,,,0,,,,,,Pork Products,27.14,21.39,0,301,0,0,20,1.16,22,221,345,89,2.54,43.5,0,22,0,0.352,0.462,8.573,0.535,0.97,0,0,97
10979,1000,"Pork, ground, 96% lean / 4% fat, cooked, pan-broiled","PORK,GROUND,96% LN / 4% FAT,CKD,PAN-BROILED",,,,,0,,,,,,Pork Products,31.69,6.2,0.57,185,0,0,20,1.11,25,261,415,88,2.59,49.1,0,6,0,0.433,0.435,10.293,0.627,0.83,0,0,85
10980,1000,"Pork loin, fresh, backribs, bone-in, raw, lean only","PORK LOIN,FRSH,BACKRIBS,BONE-IN,RAW,LN",,,Y,"Bone 30%, Connective tissue 7%, Separable fat 9%",50,,,,,,Pork Products,20.85,9.84,0,172,0,0,26,0.84,17,165,268,95,2.73,33.3,11,38,0,0.496,0.331,7.247,0.465,0.54,0,0,66
10981,1000,"Pork loin, fresh, backribs, bone-in, cooked-roasted, lean only","PORK LOIN,FRSH,BACKRIBS,BONE-IN,COOKED-ROASTED,LN",,,Y,"Bone 31%, Connective tissue 4%, Separable fat 5%",40,,,,,,Pork Products,24.15,17.65,0,255,0,0,44,0.96,17,171,249,98,3.24,33.7,15,46,0,0.479,0.348,7.883,0.433,0.75,0,0,84
10982,1000,"Pork, fresh, loin, blade (chops or roasts), boneless, separable lean only, raw","PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BNLESS,LN,RAW",,,,"Connective tissue 7%, Separable fat 6%",13,,,,,,Pork Products,21.35,3.78,0.82,123,0,0,6,0.77,22,244,375,65,1.82,39.1,9,15,0,0.631,0.237,6.848,0.575,0.49,0,0,58
10983,1000,"Pork, fresh, loin, blade (roasts), boneless, separable lean only, cooked, roasted","PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN,CKD,RSTD",,,,"Connective tissue 5%, Separable fat 5%",10,,,,,,Pork Products,27.58,7.14,0,175,0,0,11,0.92,24,277,457,68,2.5,45.6,4,19,0,0.622,0.273,7.68,0.494,0.85,0,0,76
10984,1000,"Pork, fresh, loin, blade (chops), boneless, separable lean only, boneless, cooked, broiled","PORK,FRSH,LOIN,BLADE (CHOPS),BNLESS,LN,BNLESS,CKD,BRLD",,,,"Connective tissue 6%, Separable fat 7%",13,,,,,,Pork Products,26.14,6.74,0.89,169,0,0,7,0.92,25,284,430,58,2.45,47.2,8,26,0,0.671,0.256,8.063,0.54,0.69,0,0,76
10985,1000,"Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, broiled","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,BRLD",,,,"Connective tissue 6%, Separable fat 7%",13,,,,,,Pork Products,27.83,11.65,0,216,0,0,7,0.92,26,285,431,58,2.46,47.4,9,44,0,0.571,0.367,9.152,0.575,0.73,0,0,89
10986,1000,"Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, broiled","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,BRLD",,,,"Connective tissue 5%, Bone 17%, Separable fat 8%",30,,,,,,Pork Products,27.83,11.65,0,216,0,0,61,1.02,24,284,370,84,3.73,42.9,9,44,0,0.571,0.367,9.152,0.575,0.73,0,0,89
10987,1000,"Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, roasted","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,RSTD",,,,"Connective tissue 7%, Separable fat 11%",19,,,,,,Pork Products,29.2,11.38,0,219,0,0,12,0.98,26,294,486,72,2.66,48.5,5,30,0,0.658,0.289,8.13,0.523,0.9,0,0,99
10988,1000,"Pork, fresh, blade, (chops), boneless, separable lean and fat, cooked, broiled","PORK,FRSH,BLADE,(CHOPS),BNLESS,LN & FAT,CKD,BRLD",,,,Connective tissue 6%,6,,,,,,Pork Products,24.73,11.13,0.83,202,0,0,8,0.89,24,271,407,58,2.32,44.6,13,29,0,0.637,0.252,7.698,0.515,0.68,0,0,77
10989,1000,"Pork, fresh, loin, blade (chops or roasts), boneless, separable lean and fat only, raw","PORK,FRSH,LOIN,BLDE (CHOPS OR ROAST),BNLESS,LN & FAT OLY,RAW",,,,Connective tissue 7%,7,,,,,,Pork Products,20.54,7.94,0.76,157,0,0,6,0.74,21,233,372,64,1.74,37.1,14,18,0,0.599,0.227,6.564,0.546,0.49,0,0,59
10990,1000,"Pork, fresh, loin, blade (roasts), boneless, separable lean and fat, cooked, roasted","PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN & FAT,CKD,RSTD",,,,Connective tissue 5%,5,,,,,,Pork Products,26.48,10.32,0,199,0,0,12,0.89,23,268,439,67,2.41,43.7,8,22,0,0.6,0.269,7.435,0.478,0.84,0,0,76
10991,1000,"Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, broiled","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,BRLD",,,,Connective tissue 6%,6,,,,,,Pork Products,26.28,15.73,0,247,0,0,8,0.89,24,272,408,58,2.33,44.7,14,46,0,0.544,0.354,8.699,0.547,0.72,0,0,88
10992,1000,"Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, broiled","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,BRLD",,,,"Connective tissue 5%, Bone 17%",22,,,,,,Pork Products,25.58,17.56,0,260,0,0,57,0.96,22,265,344,81,3.41,39.5,17,47,0,0.532,0.348,8.497,0.534,0.71,0,0,87
10993,1000,"Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, roasted","PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,RSTD",,,,"Connective tissue 7%,",7,,,,,,Pork Products,26.4,18.31,0,270,0,0,13,0.91,24,271,441,70,2.42,43.8,14,35,0,0.601,0.278,7.496,0.481,0.86,0,0,96
10994,1000,"Bacon, pre-sliced, reduced/low sodium, unprepared","BACON,PRE-SLICED,REDUCED/LOW NA,UNPREP",,,,,0,,,,,,Pork Products,12.53,39.27,0.83,407,0.83,0,4,0.42,12,180,506,470,1.19,,0,,0,,,,,0.5,0,,
10998,1000,"Canadian bacon, cooked, pan-fried","CANADIAN BACON,CKD,PAN-FRIED",,,Y,,0,,,,,,Pork Products,28.31,2.78,1.8,146,1.2,0,7,0.56,27,309,999,993,1.73,50.4,0,9,0,0.669,0.185,9.988,0.28,0.43,0.2,0,67
11001,1100,"Alfalfa seeds, sprouted, raw","ALFALFA SEEDS,SPROUTED,RAW",,,Y,,0,Medicago sativa,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.99,0.69,2.1,23,0.2,1.9,32,0.96,27,70,79,6,0.92,0.6,155,0,8.2,0.076,0.126,0.481,0.034,0,30.5,0,0
11003,1100,"Amaranth leaves, raw","AMARANTH LEAVES,RAW",,,,Tough stems,6,Amaranthus spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.46,0.33,4.02,23,,,215,2.32,55,50,611,20,0.9,0.9,2917,0,43.3,0.027,0.158,0.658,0.192,0,1140,0,0
11004,1100,"Amaranth leaves, cooked, boiled, drained, without salt","AMARANTH LEAVES,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.11,0.18,4.11,21,,,209,2.26,55,72,641,21,0.88,0.9,2770,0,41.1,0.02,0.134,0.559,0.177,0,,0,0
11005,1100,"Arrowhead, raw","ARROWHEAD,RAW",,,,Skin and sprout,25,Sagittaria latifolia,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,5.33,0.29,20.23,99,,,10,2.57,51,174,922,22,0.28,0.7,0,0,1.1,0.17,0.073,1.65,0.26,0,,0,0
11006,1100,"Arrowhead, cooked, boiled, drained, without salt","ARROWHEAD,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,4.49,0.1,16.14,78,,,7,1.21,49,197,881,18,0.22,0.6,0,0,0.3,0.144,0.06,1.16,0.206,0,,0,0
11007,1100,"Artichokes, (globe or french), raw","ARTICHOKES,(GLOBE OR FRENCH),RAW",,,,Stem and inedible parts of bracts and flowers,60,Cynara scolymus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.27,0.15,10.51,47,0.99,5.4,44,1.28,60,90,370,94,0.49,0.2,13,0,11.7,0.072,0.066,1.046,0.116,0,14.8,0,0
11008,1100,"Artichokes, (globe or french), cooked, boiled, drained, without salt","ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,WO/SALT",,,Y,Stem and inedible parts of bracts and flowers,60,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.89,0.34,11.95,53,0.99,5.7,21,0.61,42,73,286,60,0.4,0.2,13,0,7.4,0.05,0.089,1.11,0.081,0,14.8,0,0
11009,1100,"Artichokes, (globe or french), frozen, unprepared","ARTICHOKES,(GLOBE OR FRENCH),FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.63,0.43,7.75,38,,3.9,19,0.5,27,58,248,47,0.32,0.2,154,0,5.3,0.058,0.14,0.86,0.082,0,,0,0
11010,1100,"Artichokes, (globe or french), frozen, cooked, boiled, drained, without salt","ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.11,0.5,9.18,45,0.84,4.6,21,0.56,31,61,264,53,0.36,0.2,11,0,5,0.062,0.158,0.915,0.087,0,12.6,0,0
11011,1100,"Asparagus, raw","ASPARAGUS,RAW",,,Y,Butt ends,47,Asparagus officinalis,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.2,0.12,3.88,20,1.88,2.1,24,2.14,14,52,202,2,0.54,2.3,756,0,5.6,0.143,0.141,0.978,0.091,0,41.6,0,0
11012,1100,"Asparagus, cooked, boiled, drained","ASPARAGUS,CKD,BLD,DRND",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.4,0.22,4.11,22,1.3,2,23,0.91,14,54,224,14,0.6,6.1,1006,0,7.7,0.162,0.139,1.084,0.079,0,50.6,0,0
11013,1100,"Asparagus, canned, regular pack, solids and liquids","ASPARAGUS,CND,REG PK,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.18,2.48,15,,1,15,0.6,9,38,172,284,0.47,1.6,526,0,16.5,0.054,0.089,0.851,0.098,0,,0,0
11015,1100,"Asparagus, canned, drained solids","ASPARAGUS,CND,DRND SOL",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.14,0.65,2.46,19,1.06,1.6,16,1.83,10,43,172,287,0.4,1.7,822,0,18.4,0.061,0.1,0.954,0.11,0,41.3,0,0
11018,1100,"Asparagus, frozen, unprepared","ASPARAGUS,FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.23,0.23,4.1,24,,1.9,25,0.73,14,64,253,8,0.59,1.7,948,0,31.8,0.121,0.131,1.202,0.111,0,,0,0
11019,1100,"Asparagus, frozen, cooked, boiled, drained, without salt","ASPARAGUS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.95,0.42,1.92,18,0.32,1.6,18,0.56,10,49,172,3,0.41,3.9,806,0,24.4,0.065,0.103,1.038,0.02,0,80,0,0
11022,1100,"Balsam-pear (bitter gourd), leafy tips, raw","BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,RAW",,,,Tough stems and leaves,62,Momordica charantia,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.3,0.69,3.29,30,,,84,2.04,85,99,608,11,0.3,0.9,1734,0,88,0.181,0.362,1.11,0.803,0,,0,0
11023,1100,"Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, without salt","BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.6,0.2,6.68,34,1.04,1.9,42,1.02,94,77,602,13,0.3,0.9,2416,0,55.6,0.147,0.282,0.995,0.76,0,163.1,0,0
11024,1100,"Balsam-pear (bitter gourd), pods, raw","BALSAM-PEAR (BITTER GOURD),PODS,RAW",,,,Tough stems and leaves,17,Momordica charantia,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1,0.17,3.7,17,,2.8,19,0.43,17,31,296,5,0.8,0.2,471,0,84,0.04,0.04,0.4,0.043,0,,0,0
11025,1100,"Balsam-pear (bitter gourd), pods, cooked, boiled, drained, without salt","BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.84,0.18,4.32,19,1.95,2,9,0.38,16,36,319,6,0.77,0.2,113,0,33,0.051,0.053,0.28,0.041,0,4.8,0,0
11026,1100,"Bamboo shoots, raw","BAMBOO SHOOTS,RAW",,,Y,Sheath,71,Phyllostachys spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.6,0.3,5.2,27,3,2.2,13,0.5,3,59,533,4,1.1,0.8,20,0,4,0.15,0.07,0.6,0.24,0,0,0,0
11027,1100,"Bamboo shoots, cooked, boiled, drained, without salt","BAMBOO SHOOTS,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.53,0.22,1.92,12,,1,12,0.24,3,20,533,4,0.47,0.4,0,0,0,0.02,0.05,0.3,0.098,0,,0,0
11028,1100,"Bamboo shoots, canned, drained solids","BAMBOO SHOOTS,CND,DRND SOL",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.72,0.4,3.22,19,1.89,1.4,8,0.32,4,25,80,7,0.65,0.5,13,0,1.1,0.026,0.026,0.14,0.136,0,0,0,0
11029,1100,"Beans, kidney, mature seeds, sprouted, raw","BEANS,KIDNEY,MATURE SEEDS,SPROUTED,RAW",,,,,0,Phaseolus vulgaris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.2,0.5,4.1,29,,,17,0.81,21,37,187,6,0.4,0.6,2,0,38.7,0.37,0.25,2.92,0.085,0,,0,0
11030,1100,"Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, without salt","BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.83,0.58,4.72,33,,,19,0.89,23,38,194,7,0.44,0.6,2,0,35.6,0.362,0.273,3.024,0.093,0,,0,0
11031,1100,"Lima beans, immature seeds, raw","LIMA BNS,IMMAT SEEDS,RAW",,,Y,Pods and imperfect beans,56,Phaseolus lunatus,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.84,0.86,20.17,113,1.48,4.9,34,3.14,58,136,467,8,0.78,1.8,209,0,23.4,0.217,0.103,1.474,0.204,0,5.6,0,0
11032,1100,"Lima beans, immature seeds, cooked, boiled, drained, without salt","LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.81,0.32,23.64,123,1.63,5.4,32,2.45,74,130,570,17,0.79,2,303,0,10.1,0.14,0.096,1.04,0.193,0,6.2,0,0
11033,1100,"Lima beans, immature seeds, canned, regular pack, solids and liquids","LIMA BNS,IMMAT SEEDS,CND,REG PK,SOL & LIQUIDS",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,4.07,0.29,13.33,71,,3.6,28,1.61,34,71,285,252,0.64,1.1,150,0,7.3,0.029,0.043,0.532,0.062,0,,0,0
11037,1100,"Lima beans, immature seeds, frozen, fordhook, unprepared","LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,UNPREP",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.4,0.35,19.83,106,1.39,5.5,24,1.51,38,74,478,58,0.49,1.7,223,0,19.3,0.092,0.067,1.187,0.136,0,5.3,0,0
11038,1100,"Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, without salt","LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.07,0.34,19.32,103,1.34,5.3,30,1.82,42,97,304,69,0.74,0.6,190,0,12.8,0.074,0.061,1.069,0.122,0,5.1,0,0
11039,1100,"Lima beans, immature seeds, frozen, baby, unprepared","LIMA BNS,IMMAT SEEDS,FRZ,BABY,UNPREP",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,7.59,0.44,25.14,132,,6,35,2.21,50,104,452,52,0.63,2.1,189,0,8.3,0.114,0.075,1.023,0.16,0,,0,0
11040,1100,"Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, without salt","LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.65,0.3,19.45,105,1.37,4.8,28,1.96,56,112,411,29,0.55,1.7,167,0,5.8,0.07,0.055,0.77,0.115,0,5.2,0,0
11043,1100,"Mung beans, mature seeds, sprouted, raw","MUNG BNS,MATURE SEEDS,SPROUTED,RAW",,,Y,,0,Vigna radiata,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.04,0.18,5.94,30,4.13,1.8,13,0.91,21,54,149,6,0.41,0.6,21,0,13.2,0.084,0.124,0.749,0.088,0,33,0,0
11044,1100,"Mung beans, mature seeds, sprouted, cooked, boiled, drained, without salt","MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.03,0.09,4.19,21,2.84,0.8,12,0.65,14,28,101,10,0.47,0.6,13,0,11.4,0.05,0.102,0.817,0.054,0,22.7,0,0
11045,1100,"Mung beans, mature seeds, sprouted, cooked, stir-fried","MUNG BNS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.3,0.21,10.59,50,,1.9,13,1.9,33,79,219,9,0.9,0.6,31,0,16,0.14,0.18,1.2,0.13,0,,0,0
11046,1100,"Beans, navy, mature seeds, sprouted, raw","BEANS,NAVY,MATURE SEEDS,SPROUTED,RAW",,,,,0,Phaseolus vulgaris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,6.15,0.7,13.05,67,,,15,1.93,101,100,307,13,0.89,0.6,4,0,18.8,0.39,0.215,1.22,0.191,0,,0,0
11047,1100,"Beans, navy, mature seeds, sprouted, cooked, boiled, drained, without salt","BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,7.07,0.81,15.01,78,,,16,2.11,111,103,317,14,0.97,0.6,4,0,17.3,0.381,0.235,1.263,0.198,0,,0,0
11048,1100,"Beans, pinto, immature seeds, frozen, unprepared","BEANS,PINTO,IMMAT SEEDS,FRZ,UNPREP",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,9.8,0.5,32.5,170,,5.7,58,3,60,117,756,92,0.77,1.5,0,0,1,0.34,0.12,0.7,0.215,0,,0,0
11049,1100,"Beans, pinto, immature seeds, frozen, cooked, boiled, drained, without salt","BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,9.31,0.48,30.87,162,,5.4,52,2.71,54,100,646,83,0.69,1.4,0,0,0.7,0.274,0.108,0.632,0.194,0,,0,0
11050,1100,"Beans, shellie, canned, solids and liquids","BEANS,SHELLIE,CND,SOL & LIQUIDS",,,Y,,0,,6.25,2.96,8.37,3.82,Vegetables and Vegetable Products,1.76,0.19,6.19,30,0.63,3.4,29,0.99,15,30,109,334,0.27,2.1,228,0,3.1,0.032,0.054,0.205,0.049,0,8,0,0
11052,1100,"Beans, snap, green, raw","BEANS,SNAP,GREEN,RAW",,,Y,"Ends, strings, trimmings",12,Phaseolus vulgaris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.83,0.22,6.97,31,3.26,2.7,37,1.03,25,38,211,6,0.24,0.6,690,0,12.2,0.082,0.104,0.734,0.141,0,43,0,0
11053,1100,"Beans, snap, green, cooked, boiled, drained, without salt","BEANS,SNAP,GRN,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.89,0.28,7.88,35,3.63,3.2,44,0.65,18,29,146,1,0.25,0.2,633,0,9.7,0.074,0.097,0.614,0.056,0,47.9,0,0
11054,1100,"Beans, snap, green, canned, regular pack, solids and liquids","BEANS,SNAP,GRN,CND,REG PK,SOL & LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.72,0.17,3.27,15,1.25,1.5,29,1.02,13,18,92,192,0.36,0,263,0,2.2,0.015,0.02,0.2,0.03,0,29,0,0
11056,1100,"Beans, snap, green, canned, regular pack, drained solids","BEANS,SNAP,GRN,CND,REG PK,DRND SOL","Includes USDA commodity food A059, A061",,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.12,0.46,4.32,22,0.78,1.9,38,1.06,13,20,96,230,0.2,0.4,353,0,2.8,0.016,0.046,0.206,0.03,0,38.9,0,0
11058,1100,"Beans, snap, canned, all styles, seasoned, solids and liquids","BEANS,SNAP,CND,ALL STYLES,SEASONED,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.83,0.2,3.49,16,,1.5,22,0.47,13,16,93,373,0.14,0.2,525,0,3.1,0.025,0.049,0.233,0.044,0,,0,0
11060,1100,"Beans, snap, green, frozen, all styles, unprepared","BEANS,SNAP,GRN,FRZ,ALL STYLES,UNPREP",,,,,0,,,,,,Vegetables and Vegetable Products,1.79,0.21,7.54,39,2.21,2.6,42,0.85,22,32,186,3,0.26,0.6,547,0,12.9,0.098,0.091,0.496,0.044,0,44.8,0,0
11061,1100,"Beans, snap, green, frozen, cooked, boiled, drained without salt","BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.49,0.17,6.45,28,1.88,3,42,0.66,19,29,159,1,0.24,0.4,419,0,4.1,0.035,0.09,0.383,0.06,0,38.1,0,0
11062,1100,"Beans, snap, green, frozen, all styles, microwaved","BEANS,SNAP,GRN,FRZ,ALL STYLES,MICROWAVED",,,,,0,,,,,,Vegetables and Vegetable Products,1.98,0.41,6.98,40,2.6,3.4,61,0.8,29,42,237,3,0.31,1,519,,11,0.073,0.103,0.485,0.063,,57.7,,
11063,1100,"Beans, snap, green, microwaved","BEANS,SNAP,GRN,MICROWAVED",,,,,0,,,,,,Vegetables and Vegetable Products,2.31,0.5,6.41,39,3.22,3.4,55,0.83,28,49,323,3,0.38,,,,7.3,0.078,0.075,0.773,0.124,,,,
11080,1100,"Beets, raw","BEETS,RAW",,,Y,Parings and part tops,33,Beta vulgaris,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.61,0.17,9.56,43,6.76,2.8,16,0.8,23,40,325,78,0.35,0.7,33,0,4.9,0.031,0.04,0.334,0.067,0,0.2,0,0
11081,1100,"Beets, cooked, boiled, drained","BEETS,CKD,BLD,DRND",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.68,0.18,9.96,44,7.96,2,16,0.79,23,38,305,77,0.35,0.7,35,0,3.6,0.027,0.04,0.331,0.067,0,0.2,0,0
11082,1100,"Beets, canned, regular pack, solids and liquids","BEETS,CND,REG PK,SOL&LIQUIDS",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.73,0.09,7.14,30,6.53,1.2,18,0.73,18,15,159,143,0.34,0.1,23,0,2.8,0.01,0.038,0.151,0.055,0,0.2,0,0
11084,1100,"Beets, canned, drained solids","BEETS,CND,DRND SOL",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.91,0.14,7.21,31,5.51,1.8,15,1.82,17,17,148,194,0.21,0.5,24,0,4.1,0.01,0.04,0.157,0.057,0,0.2,0,0
11086,1100,"Beet greens, raw","BEET GREENS,RAW",,,Y,"Stems, bruised and old leaves",44,Beta vulgaris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.2,0.13,4.33,22,0.5,3.7,117,2.57,70,41,762,226,0.38,0.9,6326,0,30,0.1,0.22,0.4,0.106,0,400,0,0
11087,1100,"Beet greens, cooked, boiled, drained, without salt","BEET GRNS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.57,0.2,5.46,27,0.6,2.9,114,1.9,68,41,909,241,0.5,0.9,7654,0,24.9,0.117,0.289,0.499,0.132,0,484,0,0
11088,1100,"Broadbeans, immature seeds, raw","BROADBEANS,IMMAT SEEDS,RAW",,,,Ends,3,Vicia faba,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.6,0.6,11.7,72,,4.2,22,1.9,38,95,250,50,0.58,1.2,350,0,33,0.17,0.11,1.5,0.038,0,,0,0
11089,1100,"Broadbeans, immature seeds, cooked, boiled, drained, without salt","BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,4.8,0.5,10.1,62,,3.6,18,1.5,31,73,193,41,0.47,1,270,0,19.8,0.128,0.09,1.2,0.029,0,,0,0
11090,1100,"Broccoli, raw","BROCCOLI,RAW",,,Y,Leaves and tough stalks with trimmings,39,Brassica oleracea var. italica,,2.44,8.37,3.57,Vegetables and Vegetable Products,2.82,0.37,6.64,34,1.7,2.6,47,0.73,21,66,316,33,0.41,2.5,623,0,89.2,0.071,0.117,0.639,0.175,0,101.6,0,0
11091,1100,"Broccoli, cooked, boiled, drained, without salt","BROCCOLI,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.38,0.41,7.18,35,1.39,3.3,40,0.67,21,67,293,41,0.45,1.6,1548,0,64.9,0.063,0.123,0.553,0.2,0,141.1,0,0
11092,1100,"Broccoli, frozen, chopped, unprepared","BROCCOLI,FRZ,CHOPD,UNPREP",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.81,0.29,4.78,26,1.35,3,56,0.81,18,50,212,24,0.48,2.8,1034,0,56.4,0.053,0.096,0.47,0.13,0,81.1,0,0
11093,1100,"Broccoli, frozen, chopped, cooked, boiled, drained, without salt","BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.1,0.12,5.35,28,1.47,3,33,0.61,13,49,142,11,0.28,0.7,1011,0,40.1,0.055,0.081,0.458,0.13,0,88.1,0,0
11094,1100,"Broccoli, frozen, spears, unprepared","BROCCOLI,FRZ,SPEARS,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.06,0.34,5.35,29,1.47,3,41,0.72,16,59,250,17,0.34,1.9,1138,0,68.3,0.072,0.114,0.462,0.175,0,101.4,0,0
11095,1100,"Broccoli, frozen, spears, cooked, boiled, drained, without salt","BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.1,0.11,5.36,28,1.47,3,51,0.61,20,55,180,24,0.3,1.9,1011,0,40.1,0.055,0.081,0.458,0.13,0,88.1,0,0
11096,1100,"Broccoli raab, raw","BROCCOLI RAAB,RAW","Broccoli rabe, Rapini",,Y,,0,Brassica ruvo,,2.44,8.37,3.57,Vegetables and Vegetable Products,3.17,0.49,2.85,22,0.38,2.7,108,2.14,22,73,196,33,0.77,1,2622,0,20.2,0.162,0.129,1.221,0.171,0,224,0,0
11097,1100,"Broccoli raab, cooked","BROCCOLI RAAB,CKD","Broccoli rabe, Rapini",,Y,,0,,,,,,Vegetables and Vegetable Products,3.83,0.52,3.12,33,0.62,2.8,118,1.27,27,82,343,56,0.54,1.3,4533,0,37,0.169,0.14,2.015,0.22,0,256,0,0
11098,1100,"Brussels sprouts, raw","BRUSSELS SPROUTS,RAW",,,Y,Outer leaves,10,Brassica oleracea (Gemmifera Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.38,0.3,8.95,43,2.2,3.8,42,1.4,23,69,389,25,0.42,1.6,754,0,85,0.139,0.09,0.745,0.219,0,177,0,0
11099,1100,"Brussels sprouts, cooked, boiled, drained, without salt","BRUSSELS SPROUTS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.55,0.5,7.1,36,1.74,2.6,36,1.2,20,56,317,21,0.33,1.5,775,0,62,0.107,0.08,0.607,0.178,0,140.3,0,0
11100,1100,"Brussels sprouts, frozen, unprepared","BRUSSELS SPROUTS,FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.78,0.41,7.86,41,,3.8,26,0.93,20,62,370,10,0.31,1.5,617,0,74.1,0.105,0.122,0.638,0.202,0,,0,0
11101,1100,"Brussels sprouts, frozen, cooked, boiled, drained, without salt","BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.64,0.39,8.32,42,2.08,4.1,26,0.48,18,56,290,15,0.24,0.6,926,0,45.7,0.103,0.113,0.537,0.289,0,193.5,0,0
11104,1100,"Burdock root, raw","BURDOCK ROOT,RAW",,,Y,"Skin, root and tips",25,Arctium lappa,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.53,0.15,17.34,72,2.9,3.3,41,0.8,38,51,308,5,0.33,0.7,0,0,3,0.01,0.03,0.3,0.24,0,1.6,0,0
11105,1100,"Burdock root, cooked, boiled, drained, without salt","BURDOCK ROOT,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,2.09,0.14,21.15,88,3.55,1.8,49,0.77,39,93,360,4,0.38,0.9,0,0,2.6,0.039,0.058,0.32,0.279,0,2,0,0
11106,1100,"Butterbur, (fuki), raw","BUTTERBUR,(FUKI),RAW",,,,"Leaves, stem ends, peels",12,Petasites japonicus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.39,0.04,3.61,14,,,103,0.1,14,12,655,7,0.16,0.9,50,0,31.5,0.02,0.02,0.2,0.096,0,,0,0
11107,1100,"Butterbur, cooked, boiled, drained, without salt","BUTTERBUR,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.23,0.02,2.16,8,,,59,0.1,8,7,354,4,0.09,0.9,27,0,18.9,0.01,0.01,0.1,0.052,0,,0,0
11108,1100,"Butterbur, canned","BUTTERBUR,CANNED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.11,0.13,0.38,3,,,34,0.63,2,4,12,4,0.06,0.9,0,0,11.9,0.006,0.006,0.14,0.033,0,,0,0
11109,1100,"Cabbage, raw","CABBAGE,RAW",,,Y,Outer leaves and core,20,Brassica oleracea (Capitata Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.28,0.1,5.8,25,3.2,2.5,40,0.47,12,26,170,18,0.18,0.3,98,0,36.6,0.061,0.04,0.234,0.124,0,76,0,0
11110,1100,"Cabbage, cooked, boiled, drained, without salt","CABBAGE,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.27,0.06,5.51,23,2.79,1.9,48,0.17,15,33,196,8,0.2,0.6,80,0,37.5,0.061,0.038,0.248,0.112,0,108.7,0,0
11112,1100,"Cabbage, red, raw","CABBAGE,RED,RAW",,,Y,Outer leaves and core,20,Brassica oleracea (Capitata Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.43,0.16,7.37,31,3.83,2.1,45,0.8,16,30,243,27,0.22,0.6,1116,0,57,0.064,0.069,0.418,0.209,0,38.2,0,0
11113,1100,"Cabbage, red, cooked, boiled, drained, without salt","CABBAGE,RED,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.51,0.09,6.94,29,3.32,2.6,42,0.66,17,33,262,28,0.25,2.3,33,0,34.4,0.071,0.06,0.382,0.225,0,47.6,0,0
11114,1100,"Cabbage, savoy, raw","CABBAGE,SAVOY,RAW",,,Y,Outer leaves and core,20,Brassica oleracea (Capitata Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2,0.1,6.1,27,2.27,3.1,35,0.4,28,42,230,28,0.27,0.9,1000,0,31,0.07,0.03,0.3,0.19,0,68.8,0,0
11115,1100,"Cabbage, savoy, cooked, boiled, drained, without salt","CABBAGE,SAVOY,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.09,5.41,24,,2.8,30,0.38,24,33,184,24,0.23,0.7,889,0,17,0.051,0.02,0.024,0.152,0,,0,0
11116,1100,"Cabbage, chinese (pak-choi), raw","CABBAGE,CHINESE (PAK-CHOI),RAW","pak choi, bok choy",,Y,Base and damaged leaves,12,Brassica rapa (Chinensis Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.5,0.2,2.18,13,1.18,1,105,0.8,19,37,252,65,0.19,0.5,4468,0,45,0.04,0.07,0.5,0.194,0,45.5,0,0
11117,1100,"Cabbage, chinese (pak-choi), cooked, boiled, drained, without salt","CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,WO/SALT","bok choy, pak choi",,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.56,0.16,1.78,12,0.83,1,93,1.04,11,29,371,34,0.17,0.4,4249,0,26,0.032,0.063,0.428,0.166,0,34,0,0
11118,1100,"Cabbage, kimchi","CABBAGE,KIMCHI",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.1,0.5,2.4,15,1.06,1.6,33,2.5,14,24,151,498,0.22,0.5,93,0,0,0.01,0.21,1.1,0.213,0,43.6,0,0
11119,1100,"Cabbage, chinese (pe-tsai), raw","CABBAGE,CHINESE (PE-TSAI),RAW",,,Y,Outer leaves and root base,7,Brassica rapa (Pekinensis Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.2,0.2,3.23,16,1.41,1.2,77,0.31,13,29,238,9,0.23,0.6,318,0,27,0.04,0.05,0.4,0.232,0,42.9,0,0
11120,1100,"Cabbage, chinese (pe-tsai), cooked, boiled, drained, without salt","CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.5,0.17,2.41,14,,1.7,32,0.3,10,39,225,9,0.18,0.4,967,0,15.8,0.044,0.044,0.5,0.177,0,,0,0
11122,1100,"Cardoon, raw","CARDOON,RAW",,,,Tough stems and leaves,51,Cynara cardunculus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.7,0.1,4.07,17,,1.6,70,0.7,42,23,400,170,0.17,0.2,0,0,2,0.02,0.03,0.3,0.116,0,,0,0
11123,1100,"Cardoon, cooked, boiled, drained, without salt","CARDOON,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.76,0.11,5.33,22,,1.7,72,0.73,43,23,392,176,0.18,1,118,0,1.7,0.018,0.031,0.294,0.042,0,,0,0
11124,1100,"Carrots, raw","CARROTS,RAW",Includes USDA commodity food A099,,Y,"Crown, tops and scrapings",11,Daucus carota,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.93,0.24,9.58,41,4.74,2.8,33,0.3,12,35,320,69,0.24,0.1,16706,0,5.9,0.066,0.058,0.983,0.138,0,13.2,0,0
11125,1100,"Carrots, cooked, boiled, drained, without salt","CARROTS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.76,0.18,8.22,35,3.45,3,30,0.34,10,30,235,58,0.2,0.7,17033,0,3.6,0.066,0.044,0.645,0.153,0,13.7,0,0
11126,1100,"Carrots, canned, regular pack, solids and liquids","CARROTS,CND,REG PK,SOL&LIQUIDS",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.58,0.14,5.37,23,2.46,1.8,31,0.52,9,20,173,240,0.29,0.4,12264,0,2,0.019,0.027,0.421,0.112,0,9.8,0,0
11128,1100,"Carrots, canned, regular pack, drained solids","CARROTS,CND,REG PK,DRND SOL",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.64,0.19,5.54,25,2.48,1.5,25,0.64,8,24,179,242,0.26,0.4,11170,0,2.7,0.018,0.03,0.552,0.112,0,9.8,0,0
11130,1100,"Carrots, frozen, unprepared","CARROTS,FROZEN,UNPREPARED",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.78,0.46,7.9,36,4.76,3.3,36,0.44,12,33,235,68,0.33,0.7,14210,0,2.5,0.044,0.037,0.464,0.095,0,17.6,0,0
11131,1100,"Carrots, frozen, cooked, boiled, drained, without salt","CARROTS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.58,0.68,7.73,37,4.08,3.3,35,0.53,11,31,192,59,0.35,0.6,16928,0,2.3,0.03,0.037,0.416,0.084,0,13.6,0,0
11134,1100,"Cassava, raw","CASSAVA,RAW",,,Y,Skin,16,Manihot esculenta,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.36,0.28,38.06,160,1.7,1.8,16,0.27,21,27,271,14,0.34,0.7,13,0,20.6,0.087,0.048,0.854,0.088,0,1.9,0,0
11135,1100,"Cauliflower, raw","CAULIFLOWER,RAW",,,Y,"Leaf stalks, cores and trimmings",61,Brassica oleracea (Botrytis Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.92,0.28,4.97,25,1.91,2,22,0.42,15,44,299,30,0.27,0.6,0,0,48.2,0.05,0.06,0.507,0.184,0,15.5,0,0
11136,1100,"Cauliflower, cooked, boiled, drained, without salt","CAULIFLOWER,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.84,0.45,4.11,23,2.08,2.3,16,0.32,9,32,142,15,0.17,0.6,12,0,44.3,0.042,0.052,0.41,0.173,0,13.8,0,0
11137,1100,"Cauliflower, frozen, unprepared","CAULIFLOWER,FRZ,UNPREP",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.01,0.27,4.68,24,2.22,2.3,22,0.54,12,35,193,24,0.17,0.8,12,0,48.8,0.051,0.07,0.429,0.123,0,14.8,0,0
11138,1100,"Cauliflower, frozen, cooked, boiled, drained, without salt","CAULIFLOWER,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.61,0.22,3.75,19,1.05,2.7,17,0.41,9,24,139,18,0.13,0.6,10,0,31.3,0.037,0.053,0.31,0.088,0,11.9,0,0
11141,1100,"Celeriac, raw","CELERIAC,RAW",,,Y,Parings,14,Apium graveolens,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.5,0.3,9.2,42,1.6,1.8,43,0.7,20,115,300,100,0.33,0.7,0,0,8,0.05,0.06,0.7,0.165,0,41,0,0
11142,1100,"Celeriac, cooked, boiled, drained, without salt","CELERIAC,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.96,0.19,5.9,27,,1.2,26,0.43,12,66,173,61,0.2,0.4,0,0,3.6,0.027,0.037,0.427,0.101,0,,0,0
11143,1100,"Celery, raw","CELERY,RAW",,,Y,Roots and trimmings,11,Apium graveolens,,,,,Vegetables and Vegetable Products,0.69,0.17,2.97,16,1.34,1.6,40,0.2,11,24,260,80,0.13,0.4,449,0,3.1,0.021,0.057,0.32,0.074,0,29.3,0,0
11144,1100,"Celery, cooked, boiled, drained, without salt","CELERY,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.83,0.16,4,18,2.37,1.6,42,0.42,12,25,284,91,0.14,1,521,0,6.1,0.023,0.07,0.372,0.086,0,37.8,0,0
11145,1100,"Celtuce, raw","CELTUCE,RAW",,,,Tough leaves and stems,25,Lactuca sativa,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.85,0.3,3.65,18,,1.7,39,0.55,28,39,330,11,0.27,0.9,3500,0,19.5,0.055,0.07,0.55,0.05,0,,0,0
11147,1100,"Chard, swiss, raw","CHARD,SWISS,RAW",,,Y,Tough stems and damaged leaves,8,Beta vulgaris subsp. vulagaris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.2,3.74,19,1.1,1.6,51,1.8,81,46,379,213,0.36,0.9,6116,0,30,0.04,0.09,0.4,0.099,0,830,0,0
11148,1100,"Chard, swiss, cooked, boiled, drained, without salt","CHARD,SWISS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.88,0.08,4.13,20,1.1,2.1,58,2.26,86,33,549,179,0.33,0.9,6124,0,18,0.034,0.086,0.36,0.085,0,327.3,0,0
11149,1100,"Chayote, fruit, raw","CHAYOTE,FRUIT,RAW",christophine,,Y,End and stem,1,Sechium edule,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.82,0.13,4.51,19,1.66,1.7,17,0.34,12,18,125,2,0.74,0.2,0,0,7.7,0.025,0.029,0.47,0.076,0,4.1,0,0
11150,1100,"Chayote, fruit, cooked, boiled, drained, without salt","CHAYOTE,FRUIT,CKD,BLD,DRND,WO/SALT",christophine,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.62,0.48,5.09,24,1.89,2.8,13,0.22,12,29,173,1,0.31,0.3,0,0,8,0.026,0.04,0.42,0.118,0,4.7,0,0
11151,1100,"Chicory, witloof, raw","CHICORY,WITLOOF,RAW",,,,Root base and core,11,Cichorium intybus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.9,0.1,4,17,,3.1,19,0.24,10,26,211,2,0.16,0.2,29,0,2.8,0.062,0.027,0.16,0.042,0,,0,0
11152,1100,"Chicory greens, raw","CHICORY GREENS,RAW",,,Y,Tough stems and damaged leaves,18,Cichorium intybus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.7,0.3,4.7,23,0.7,4,100,0.9,30,47,420,45,0.42,0.3,5717,0,24,0.06,0.1,0.5,0.105,0,297.6,0,0
11154,1100,"Chicory roots, raw","CHICORY ROOTS,RAW",,,,Peels and tops,18,Cichorium intybus,6.25,2.44,8.37,3.84,Vegetables and Vegetable Products,1.4,0.2,17.51,72,8.73,1.5,41,0.8,22,61,290,50,0.33,0.7,6,0,5,0.04,0.03,0.4,0.241,0,,0,0
11156,1100,"Chives, raw","CHIVES,RAW",,,Y,,0,Allium schoenoprasum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.27,0.73,4.35,30,1.85,2.5,92,1.6,42,58,296,3,0.56,0.9,4353,0,58.1,0.078,0.115,0.647,0.138,0,212.7,0,0
11157,1100,"Chrysanthemum, garland, raw","CHRYSANTHEMUM,GARLAND,RAW",,,,Stem ends,4,Chrysanthemum coronarium,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.36,0.56,3.02,24,,3,117,2.29,32,54,567,118,0.71,,2320,0,1.4,0.13,0.144,0.531,0.176,0,350,0,0
11158,1100,"Chrysanthemum, garland, cooked, boiled, drained, without salt","CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.64,0.09,4.31,20,2.01,2.3,69,3.74,18,43,569,53,0.2,0.3,2572,0,23.9,0.021,0.16,0.72,0.118,0,142.7,0,0
11161,1100,"Collards, raw","COLLARDS,RAW",,,Y,Stems,43,Brassica oleracea var. viridis,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.02,0.61,5.42,32,0.46,4,232,0.47,27,25,213,17,0.21,1.3,5019,0,35.3,0.054,0.13,0.742,0.165,0,437.1,0,0
11162,1100,"Collards, cooked, boiled, drained, without salt","COLLARDS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.71,0.72,5.65,33,0.4,4,141,1.13,21,32,117,15,0.23,0.5,7600,0,18.2,0.04,0.106,0.575,0.128,0,406.6,0,0
11163,1100,"Collards, frozen, chopped, unprepared","COLLARDS,FRZ,CHOPD,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.69,0.37,6.46,33,,3.6,201,1.07,29,27,253,48,0.26,1.4,9183,0,40,0.05,0.11,0.641,0.115,0,,0,0
11164,1100,"Collards, frozen, chopped, cooked, boiled, drained, without salt","COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.97,0.41,7.1,36,0.57,2.8,210,1.12,30,27,251,50,0.27,1.5,11493,0,26.4,0.047,0.115,0.635,0.114,0,623.2,0,0
11165,1100,"Coriander (cilantro) leaves, raw","CORIANDER (CILANTRO) LEAVES,RAW","Chinese parsley, raw, Cilantro, raw",,Y,"Roots, old and bruised leaves",15,Coriandrum sativum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.13,0.52,3.67,23,0.87,2.8,67,1.77,26,48,521,46,0.5,0.9,6748,0,27,0.067,0.162,1.114,0.149,0,310,0,0
11167,1100,"Corn, sweet, yellow, raw","CORN,SWT,YEL,RAW",,,Y,"35% husk, silk, trimmings; 29% cob",64,Zea mays,,2.44,8.37,3.57,Vegetables and Vegetable Products,3.27,1.35,18.7,86,6.26,2,2,0.52,37,89,270,15,0.46,0.6,187,0,6.8,0.155,0.055,1.77,0.093,0,0.3,0,0
11168,1100,"Corn, sweet, yellow, cooked, boiled, drained, without salt","CORN,SWT,YEL,CKD,BLD,DRND,WO/SALT",,,Y,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.41,1.5,20.98,96,4.54,2.4,3,0.45,26,77,218,1,0.62,0.2,263,0,5.5,0.093,0.057,1.683,0.139,0,0.4,0,0
11170,1100,"Corn, sweet, yellow, canned, brine pack, regular pack, solids and liquids","CORN,SWT,YEL,CND,BRINE PK,REG PK,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.95,0.77,13.86,61,4.15,1.7,4,0.36,15,46,136,195,0.39,0.5,34,0,2.6,0.015,0.015,0.884,0.037,0,0,0,0
11172,1100,"Corn, sweet, yellow, canned, whole kernel, drained solids","CORN,SWT,YEL,CND,WHL KERNEL,DRND SOL",Includes USDA commodity food A119,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.29,1.22,14.34,67,4.44,2,3,0.27,13,46,132,205,0.32,0.6,46,0,1.8,0.039,0.089,1.005,0.037,0,0,0,0
11174,1100,"Corn, sweet, yellow, canned, cream style, regular pack","CORN,SWT,YEL,CND,CRM STYLE,REG PK",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.74,0.42,18.13,72,3.23,1.2,3,0.38,17,51,134,261,0.53,0.4,74,0,4.6,0.025,0.053,0.96,0.063,0,0,0,0
11176,1100,"Corn, sweet, yellow, canned, vacuum pack, regular pack","CORN,SWT,YEL,CND,VACUUM PK,REG PK",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.41,0.5,19.44,79,5.59,2,5,0.42,23,64,186,272,0.46,0.7,81,0,8.1,0.041,0.073,1.167,0.055,0,0,0,0
11177,1100,"Corn, sweet, yellow, canned, drained solids, rinsed with tap water","CORN,SWT,YEL,CND,DRND SOL,RINSED W/ TAP H2O",,,,,0,,,,,,Vegetables and Vegetable Products,2.18,1.43,13.02,74,4.11,1.7,2,0.22,11,41,116,163,0.28,,,0,1.7,0.015,0.015,0.78,,0,,0,0
11178,1100,"Corn, sweet, yellow, frozen, kernels cut off cob, unprepared","CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,UNPREP",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.02,0.78,20.71,88,2.5,2.1,4,0.42,18,70,213,3,0.38,0.7,195,0,6.4,0.083,0.068,1.739,0.168,0,0.3,0,0
11179,1100,"Corn, sweet, yellow, frozen, kernels cut off cob, boiled, drained, without salt","CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.55,0.67,19.3,81,3.07,2.4,3,0.47,28,79,233,1,0.63,0.7,199,0,3.5,0.03,0.062,1.311,0.099,0,0.3,0,0
11180,1100,"Corn, sweet, yellow, frozen, kernels on cob, unprepared","CORN,SWT,YEL,FRZ,KRNLS ON COB,UNPREP",,,,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.28,0.78,23.5,98,3.78,2.8,4,0.68,32,87,294,5,0.7,0.8,244,0,7.2,0.103,0.088,1.681,0.179,0,0.4,0,0
11181,1100,"Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, without salt","CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT",,,,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.11,0.74,22.33,94,3.59,2.8,3,0.61,29,75,251,4,0.63,0.7,232,0,4.8,0.174,0.069,1.517,0.224,0,0.4,0,0
11182,1100,"Corn, yellow, whole kernel, frozen, microwaved","CORN,YEL,WHL KERNEL,FRZ,MICROWAVED",,,,,0,,,,,,Vegetables and Vegetable Products,3.62,1.42,25.87,131,3.36,2.6,5,0.39,25,95,276,4,0.53,,234,,,0.083,0.05,2.07,0.12,0,0.4,,0
11184,1100,"Corn with red and green peppers, canned, solids and liquids","CORN W/RED&GRN PEPPERS,CND,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.33,0.55,18.17,75,,,5,0.79,25,62,153,347,0.37,0.6,232,0,8.8,0.022,0.08,0.95,0.097,0,,0,0
11190,1100,"Cornsalad, raw","CORNSALAD,RAW",,,,,,Valerianella locusta,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2,0.4,3.6,21,,,38,2.18,13,53,459,4,0.59,0.9,7092,0,38.2,0.071,0.087,0.415,0.273,0,,0,0
11191,1100,"Cowpeas (blackeyes), immature seeds, raw","COWPEAS (BLACKEYES),IMMAT SEEDS,RAW",,,,Pods,49,Vigna unguiculata subsp. unguiculata,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.95,0.35,18.83,90,3,5,126,1.1,51,53,431,4,1.01,2.3,817,0,2.5,0.11,0.145,1.45,0.067,0,,0,0
11192,1100,"Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, without salt","COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,WO/ SALT",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.17,0.38,20.32,97,3.23,5,128,1.12,52,51,418,4,1.03,2.5,791,0,2.2,0.101,0.148,1.403,0.065,0,26.6,0,0
11195,1100,"Cowpeas (blackeyes), immature seeds, frozen, unprepared","COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,UNPREP",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,8.98,0.7,25.13,139,,5,26,2.35,55,122,441,6,1.58,3.6,84,0,4,0.245,0.071,0.811,0.106,0,,0,0
11196,1100,"Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, without salt","COWPEAS (BLACKEYES),IMMTRE SEEDS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,8.49,0.66,23.76,132,4.46,6.4,23,2.12,50,122,375,5,1.42,3.4,75,0,2.6,0.26,0.064,0.728,0.095,0,36.8,0,0
11197,1100,"Cowpeas, young pods with seeds, raw","COWPEAS,YOUNG PODS W/SEEDS,RAW",,,,Ends and strings,9,Vigna unguiculata subsp. unguiculata,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.3,0.3,9.5,44,5.04,3.3,65,1,58,65,215,4,0.34,0.9,1369,0,33,0.15,0.14,1.2,0.173,0,31.5,0,0
11198,1100,"Cowpeas, young pods with seeds, cooked, boiled, drained, without salt","COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.6,0.3,7,34,,,55,0.7,41,49,196,3,0.24,0.7,1400,0,17,0.09,0.09,0.8,0.123,0,,0,0
11199,1100,"Yardlong bean, raw","YARDLONG BEAN,RAW",,,,Ends,5,Vigna unguiculata subsp. sesquipedalis,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.8,0.4,8.35,47,,,50,0.47,44,59,240,4,0.37,1.5,865,0,18.8,0.107,0.11,0.41,0.024,0,,0,0
11200,1100,"Yardlong bean, cooked, boiled, drained, without salt","YARDLONG BEAN,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.53,0.1,9.18,47,,,44,0.98,42,57,290,4,0.36,1.5,450,0,16.2,0.085,0.099,0.63,0.024,0,,0,0
11201,1100,"Cowpeas, leafy tips, raw","COWPEAS,LEAFY TIPS,RAW",,,,Tough stems and leaves,48,Vigna unguiculata subsp. unguiculata,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.1,0.25,4.82,29,,,63,1.92,43,9,455,7,0.29,0.9,712,0,36,0.354,0.175,1.12,0.177,0,,0,0
11202,1100,"Cowpeas, leafy tips, cooked, boiled, drained, without salt","COWPEAS,LEAFY TIPS,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.67,0.1,2.8,22,,,69,1.09,62,42,351,6,0.24,0.9,576,0,18.4,0.256,0.142,1.008,0.135,0,,0,0
11203,1100,"Cress, garden, raw","CRESS,GARDEN,RAW",,,Y,"Stems, crowns and spoiled leaves",29,Lepidium sativum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.6,0.7,5.5,32,4.4,1.1,81,1.3,38,76,606,14,0.23,0.9,6917,0,69,0.08,0.26,1,0.247,0,541.9,0,0
11204,1100,"Cress, garden, cooked, boiled, drained, without salt","CRESS,GARDEN,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.9,0.6,3.8,23,3.11,0.7,61,0.8,26,48,353,8,0.15,0.9,4649,0,23,0.06,0.16,0.8,0.157,0,383.4,0,0
11205,1100,"Cucumber, with peel, raw","CUCUMBER,WITH PEEL,RAW",,,Y,Ends,3,Cucumis sativus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.65,0.11,3.63,15,1.67,0.5,16,0.28,13,24,147,2,0.2,0.3,105,0,2.8,0.027,0.033,0.098,0.04,0,16.4,0,0
11206,1100,"Cucumber, peeled, raw","CUCUMBER,PEELED,RAW",,,Y,"Parings, ends and bruised spots",27,,,,,,Vegetables and Vegetable Products,0.59,0.16,2.16,12,1.38,0.7,14,0.22,12,21,136,2,0.17,0.1,72,0,3.2,0.031,0.025,0.037,0.051,0,7.2,0,0
11207,1100,"Dandelion greens, raw","DANDELION GREENS,RAW",,,Y,,0,Taraxacum officinale,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.7,0.7,9.2,45,0.71,3.5,187,3.1,36,66,397,76,0.41,0.5,10161,0,35,0.19,0.26,0.806,0.251,0,778.4,0,0
11208,1100,"Dandelion greens, cooked, boiled, drained, without salt","DANDELION GRNS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2,0.6,6.4,33,0.5,2.9,140,1.8,24,42,232,44,0.28,0.3,6837,0,18,0.13,0.175,0.514,0.16,0,551.4,0,0
11209,1100,"Eggplant, raw","EGGPLANT,RAW",,,Y,"Ends, parings and trimmings",19,Solanum melongena,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.98,0.18,5.88,25,3.53,3,9,0.23,14,24,229,2,0.16,0.3,23,0,2.2,0.039,0.037,0.649,0.084,0,3.5,0,0
11210,1100,"Eggplant, cooked, boiled, drained, without salt","EGGPLANT,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.83,0.23,8.73,35,3.2,2.5,6,0.25,11,15,123,1,0.12,0.1,37,0,1.3,0.076,0.02,0.6,0.086,0,2.9,0,0
11211,1100,"Edamame, frozen, unprepared","EDAMAME,FRZ,UNPREP",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,11.22,4.73,7.61,109,2.48,4.8,60,2.11,61,161,482,6,1.32,,,,9.7,0.15,0.265,0.925,0.135,,31.4,0,
11212,1100,"Edamame, frozen, prepared","EDAMAME,FRZ,PREP",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,11.91,5.2,8.91,121,2.18,5.2,63,2.27,64,169,436,6,1.37,0.8,298,0,6.1,0.2,0.155,0.915,0.1,0,26.7,0,0
11213,1100,"Endive, raw","ENDIVE,RAW",,,Y,Outer leaves and core,14,Cichorium endivia,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.25,0.2,3.35,17,0.25,3.1,52,0.83,15,28,314,22,0.79,0.2,2167,0,6.5,0.08,0.075,0.4,0.02,0,231,0,0
11214,1100,"Escarole, cooked, boiled, drained, no salt added","ESCAROLE,CKD,BLD,DRND,NO SALT ADDED",,,Y,,0,,,,,,Vegetables and Vegetable Products,1.15,0.18,3.07,19,0.23,2.8,46,0.72,13,22,245,19,0.69,0.2,1888,0,3.3,0.059,0.062,0.312,0.016,0,211.9,0,0
11215,1100,"Garlic, raw","GARLIC,RAW",,,Y,Knob and skin,13,Allium sativum,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,6.36,0.5,33.06,149,1,2.1,181,1.7,25,153,401,17,1.16,14.2,9,0,31.2,0.2,0.11,0.7,1.235,0,1.7,0,0
11216,1100,"Ginger root, raw","GINGER ROOT,RAW",,,Y,Scrapings,7,Zingiber officinale,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.82,0.75,17.77,80,1.7,2,16,0.6,43,34,415,13,0.34,0.7,0,0,5,0.025,0.034,0.75,0.16,0,0.1,0,0
11218,1100,"Gourd, white-flowered (calabash), raw","GOURD,WHITE-FLOWERED (CALABASH),RAW",,,,"Ends, skin, and seeds",30,Lagenaria siceraria,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.62,0.02,3.39,14,,0.5,26,0.2,11,13,150,2,0.7,0.2,16,0,10.1,0.029,0.022,0.32,0.04,0,,0,0
11219,1100,"Gourd, white-flowered (calabash), cooked, boiled, drained, without salt","GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.6,0.02,3.69,15,,1.2,24,0.25,11,13,170,2,0.7,0.2,0,0,8.5,0.029,0.022,0.39,0.038,0,,0,0
11220,1100,"Gourd, dishcloth (towelgourd), raw","GOURD,DISHCLOTH (TOWELGOURD),RAW",,,,"Ribs, skin, stem and blossom end",27,Luffa aegyptiaca,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.2,0.2,4.35,20,2.02,1.1,20,0.36,14,32,139,3,0.07,0.2,410,0,12,0.05,0.06,0.4,0.043,0,0.7,0,0
11221,1100,"Gourd, dishcloth (towelgourd), cooked, boiled, drained, without salt","GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.66,0.34,14.34,56,5.17,2.9,9,0.36,20,31,453,21,0.17,0.2,260,0,5.7,0.046,0.042,0.26,0.099,0,1.7,0,0
11222,1100,"Drumstick leaves, raw","DRUMSTICK LEAVES,RAW",Harseradish tree leaves,,,Stems,38,Moringa oleifera,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,9.4,1.4,8.28,64,,2,185,4,42,112,337,9,0.6,0.9,7564,0,51.7,0.257,0.66,2.22,1.2,0,,0,0
11223,1100,"Drumstick leaves, cooked, boiled, drained, without salt","DRUMSTICK LEAVES,CKD,BLD,DRND,WO/ SALT",Horseradish-tree,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.27,0.93,11.15,60,1,2,151,2.32,34,67,344,9,0.49,0.9,7013,0,31,0.222,0.509,1.995,0.929,0,108,0,0
11224,1100,"Hyacinth-beans, immature seeds, raw","HYACINTH-BEANS,IMMAT SEEDS,RAW",,,,Ends and strings,7,Dolichos lablab,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.1,0.2,9.19,46,4.08,3.3,50,0.74,40,49,252,2,0.37,1.5,864,0,12.9,0.077,0.092,0.52,0.024,0,18.1,0,0
11225,1100,"Hyacinth-beans, immature seeds, cooked, boiled, drained, without salt","HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.95,0.27,9.2,50,,,41,0.76,42,49,262,2,0.38,1.6,142,0,5.1,0.056,0.088,0.48,0.023,0,,0,0
11226,1100,"Jerusalem-artichokes, raw","JERUSALEM-ARTICHOKES,RAW",Sunchokes,,Y,Parings,31,Helianthus tuberosus,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,2,0.01,17.44,73,9.6,1.6,14,3.4,17,78,429,4,0.12,0.7,20,0,4,0.2,0.06,1.3,0.077,0,0.1,0,0
11228,1100,"Jew's ear, (pepeao), raw","JEW'S EAR,(PEPEAO),RAW",,,,Stem end,2,Auricularia polytricha,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,0.48,0.04,6.75,25,,,16,0.56,25,14,43,9,0.66,11.1,0,0,0.6,0.081,0.204,0.07,0.088,0,,0,0
11230,1100,"Pepeao, dried","PEPEAO,DRIED",,,,Stems and defects,13,,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,4.82,0.44,81.03,298,,,113,6.14,146,116,708,70,7.52,45.3,0,0,1.4,0.826,0.35,3,0.95,0,,0,0
11231,1100,"Jute, potherb, raw","JUTE,POTHERB,RAW",,,,Tough leaves and stems,38,Corchorus olitorius,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.65,0.25,5.8,34,,,208,4.76,64,83,559,8,0.79,0.9,5559,0,37,0.133,0.546,1.26,0.6,0,,0,0
11232,1100,"Jute, potherb, cooked, boiled, drained, without salt","JUTE,POTHERB,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.68,0.2,7.29,37,1,2,211,3.14,62,72,550,11,0.79,0.9,5185,0,33,0.091,0.192,0.89,0.57,0,108,0,0
11233,1100,"Kale, raw","KALE,RAW",,,,"Stem ends, tough stems and tough midrib parts",28,Brassica oleracea (Acephala Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.28,0.93,8.75,49,2.26,3.6,150,1.47,47,92,491,38,0.56,0.9,9990,0,120,0.11,0.13,1,0.271,0,704.8,0,0
11234,1100,"Kale, cooked, boiled, drained, without salt","KALE,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.9,0.4,5.63,28,1.25,2,72,0.9,18,28,228,23,0.24,0.9,13621,0,41,0.053,0.07,0.5,0.138,0,817,0,0
11235,1100,"Kale, frozen, unprepared","KALE,FROZEN,UNPREPARED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.66,0.46,4.9,28,,2,136,0.93,18,29,333,15,0.18,0.9,6253,0,39.3,0.056,0.112,0.698,0.09,0,,0,0
11236,1100,"Kale, frozen, cooked, boiled, drained, without salt","KALE,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.84,0.49,5.23,30,1.34,2,138,0.94,18,28,321,15,0.18,0.9,14704,0,25.2,0.043,0.114,0.672,0.086,0,882,0,0
11237,1100,"Kanpyo, (dried gourd strips)","KANPYO,(DRIED GOURD STRIPS)",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,8.58,0.56,65.03,258,,9.8,280,5.12,125,188,1582,15,5.86,2.6,0,0,0.2,0,0.044,2.9,0.532,0,,0,0
11238,1100,"Mushrooms, shiitake, raw","MUSHROOMS,SHIITAKE,RAW",,,,,0,Lentinus edodes,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,2.24,0.49,6.79,34,2.38,2.5,2,0.41,20,112,304,9,1.03,5.7,,18,,0.015,0.217,3.877,0.293,,,0,
11239,1100,"Mushrooms, Chanterelle, raw","MUSHROOMS,CHANTERELLE,RAW",,,,,0,Cantharellus californicus or Cantharellus cibarius,,,,,Vegetables and Vegetable Products,1.49,0.53,6.86,38,1.16,3.8,15,3.47,13,57,506,9,0.71,2.2,,212,,0.015,0.215,4.085,0.044,,,0,
11240,1100,"Mushrooms, morel, raw","MUSHROOMS,MOREL,RAW",,,,,0,Morchella spp.,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.12,0.57,5.1,31,0.6,2.8,43,12.18,19,194,411,21,2.03,2.2,0,206,,0.069,0.205,2.252,0.136,,,0,
11241,1100,"Kohlrabi, raw","KOHLRABI,RAW",,,Y,"Leaves, stems and parings",54,Brassica oleracea (Gongylodes Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.7,0.1,6.2,27,2.6,3.6,24,0.4,19,46,350,20,0.03,0.7,36,0,62,0.05,0.02,0.4,0.15,0,0.1,0,0
11242,1100,"Kohlrabi, cooked, boiled, drained, without salt","KOHLRABI,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.11,6.69,29,2.8,1.1,25,0.4,19,45,340,21,0.31,0.8,35,0,54,0.04,0.02,0.39,0.154,0,0.1,0,0
11243,1100,"Mushrooms, portabella, grilled","MUSHROOMS,PORTABELLA,GRILLED",Portobello,,,,0,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.28,0.58,4.44,29,2.26,2.2,3,0.4,13,135,437,11,0.65,21.9,0,14,0,0.072,0.403,6.255,0.122,0,0,0,0
11244,1100,"Lambsquarters, raw","LAMBSQUARTERS,RAW",,,,,,Chenopodium album,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.2,0.8,7.3,43,,4,309,1.2,34,72,452,43,0.44,0.9,11600,0,80,0.16,0.44,1.2,0.274,0,,0,0
11245,1100,"Lambsquarters, cooked, boiled, drained, without salt","LAMBSQUARTERS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.2,0.7,5,32,0.62,2.1,258,0.7,23,45,288,29,0.3,0.9,7816,0,37,0.1,0.26,0.9,0.174,0,494.2,0,0
11246,1100,"Leeks, (bulb and lower leaf-portion), raw","LEEKS,(BULB&LOWER LEAF-PORTION),RAW",,,Y,"Tops, root end and skin",56,Allium ampeloprasum,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.5,0.3,14.15,61,3.9,1.8,59,2.1,28,35,180,20,0.12,1,1667,0,12,0.06,0.03,0.4,0.233,0,47,0,0
11247,1100,"Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, without salt","LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.81,0.2,7.62,31,2.11,1,30,1.1,14,17,87,10,0.06,0.5,812,0,4.2,0.026,0.02,0.2,0.113,0,25.4,0,0
11248,1100,"Lentils, sprouted, raw","LENTILS,SPROUTED,RAW",,,,,0,Lens culinaris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,8.96,0.55,22.14,106,,,25,3.21,37,173,322,11,1.51,0.6,45,0,16.5,0.228,0.128,1.128,0.19,0,,0,0
11249,1100,"Lentils, sprouted, cooked, stir-fried, without salt","LENTILS,SPROUTED,CKD,STIR-FRIED,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,8.8,0.45,21.25,101,,,14,3.1,35,153,284,10,1.6,0.6,41,0,12.6,0.22,0.09,1.2,0.164,0,,0,0
11250,1100,"Lettuce, butterhead (includes boston and bibb types), raw","LETTUCE,BUTTERHEAD (INCL BOSTON&BIBB TYPES),RAW",,,Y,Outer leaves and core,26,Lactuca sativa var. capitata,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.35,0.22,2.23,13,0.94,1.1,35,1.24,13,33,238,5,0.2,0.6,3312,0,3.7,0.057,0.062,0.357,0.082,0,102.3,0,0
11251,1100,"Lettuce, cos or romaine, raw","LETTUCE,COS OR ROMAINE,RAW",,,Y,Core,6,Lactuca sativa var. logifolia,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.23,0.3,3.29,17,1.19,2.1,33,0.97,14,30,247,8,0.23,0.4,8710,0,4,0.072,0.067,0.313,0.074,0,102.5,0,0
11252,1100,"Lettuce, iceberg (includes crisphead types), raw","LETTUCE,ICEBERG (INCL CRISPHEAD TYPES),RAW",,,Y,Core,5,Lactuca sativa var. capitata,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.9,0.14,2.97,14,1.97,1.2,18,0.41,7,20,141,10,0.15,0.1,502,0,2.8,0.041,0.025,0.123,0.042,0,24.1,0,0
11253,1100,"Lettuce, green leaf, raw","LETTUCE,GRN LEAF,RAW",,,Y,"Outer leaves, core and trimmings",36,Lactuca sativa var. crispa,,2.44,8.37,3.57,Vegetables and Vegetable Products,1.36,0.15,2.87,15,0.78,1.3,36,0.86,13,29,194,28,0.18,0.6,7405,0,9.2,0.07,0.08,0.375,0.09,0,126.3,0,0
11254,1100,"Lotus root, raw","LOTUS ROOT,RAW",,,,Skins and ends of lobes,21,Nelumbo nucifera,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,2.6,0.1,17.23,74,,4.9,45,1.16,23,100,556,40,0.39,0.7,0,0,44,0.16,0.22,0.4,0.258,0,,0,0
11255,1100,"Lotus root, cooked, boiled, drained, without salt","LOTUS ROOT,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.58,0.07,16.02,66,0.5,3.1,26,0.9,22,78,363,45,0.33,0.6,0,0,27.4,0.127,0.01,0.3,0.218,0,0.1,0,0
11257,1100,"Lettuce, red leaf, raw","LETTUCE,RED LEAF,RAW",,,,Core and damaged outer leaves,20,Lactuca sativa var. crispa,,,,,Vegetables and Vegetable Products,1.33,0.22,2.26,16,0.48,0.9,33,1.2,12,28,187,25,0.2,1.5,7492,0,3.7,0.064,0.077,0.321,0.1,0,140.3,0,0
11258,1100,"Mountain yam, hawaii, raw","MOUNTAIN YAM,HAWAII,RAW",,,,Ends and skin,17,Dioscorea pentaphylla,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.34,0.1,16.3,67,0.31,2.5,26,0.44,12,34,418,13,0.27,0.7,0,0,2.6,0.102,0.019,0.481,0.179,0,1.4,0,0
11259,1100,"Mountain yam, hawaii, cooked, steamed, without salt","MOUNTAIN YAM,HAWAII,CKD,STMD,WO/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.73,0.08,20,82,,,8,0.43,10,40,495,12,0.32,0.9,0,0,0,0.086,0.014,0.13,0.209,0,,0,0
11260,1100,"Mushrooms, white, raw","MUSHROOMS,WHITE,RAW",,,Y,Trimmings,3,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.09,0.34,3.26,22,1.98,1,3,0.5,9,86,318,5,0.52,9.3,0,7,2.1,0.081,0.402,3.607,0.104,0.04,0,0,0
11261,1100,"Mushrooms, white, cooked, boiled, drained, without salt","MUSHROOMS,WHITE,CKD,BLD,DRND,WO/ SALT",,,Y,,0,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,2.17,0.47,5.29,28,2.34,2.2,6,1.74,12,87,356,2,0.87,11.9,0,8,4,0.073,0.3,4.46,0.095,0,0,0,0
11263,1100,"Mushrooms, white, stir-fried","MUSHROOMS,WHITE,STIR-FRIED",,,,,0,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.58,0.33,4.04,26,0,1.8,4,0.25,11,105,396,12,0.57,13.9,0,8,0,0.096,0.463,3.987,0.042,0,0,0,0
11264,1100,"Mushrooms, canned, drained solids","MUSHROOMS,CND,DRND SOL",,,Y,,0,,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,1.87,0.29,5.09,25,2.34,2.4,11,0.79,15,66,129,425,0.72,4.1,0,8,0,0.085,0.021,1.593,0.061,0,0,0,0
11265,1100,"Mushrooms, portabella, raw","MUSHROOMS,PORTABELLA,RAW",Portabello,,,Trimmings,3,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,2.11,0.35,3.87,22,2.5,1.3,3,0.31,,108,364,9,0.53,18.6,0,10,0,0.059,0.13,4.494,0.148,0.05,0,0,0
11266,1100,"Mushrooms, brown, italian, or crimini, raw","MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,RAW",,,,Trimmings,3,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,2.5,0.1,4.3,22,1.72,0.6,18,0.4,9,120,448,6,1.1,26,0,3,0,0.095,0.49,3.8,0.11,0.1,0,0,0
11267,1100,"Mushrooms, shiitake, stir-fried","MUSHROOMS,SHIITAKE,STIR-FRIED",,,,,0,Lentinus edodes,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.45,0.35,7.68,39,0.3,3.6,2,0.53,19,111,326,5,0.96,6.3,0,21,0,0.099,0.274,3.87,0.174,0,0,0,0
11268,1100,"Mushrooms, shiitake, dried","MUSHROOMS,SHIITAKE,DRIED",,,Y,,0,Lentinus edodes,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,9.58,0.99,75.37,296,2.21,11.5,11,1.72,132,294,1534,13,7.66,46.1,0,154,3.5,0.3,1.27,14.1,0.965,0,0,0,0
11269,1100,"Mushrooms, shiitake, cooked, without salt","MUSHROOMS,SHIITAKE,CKD,WO/SALT",,,Y,,0,,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,1.56,0.22,14.39,56,3.84,2.1,3,0.44,14,29,117,4,1.33,24.8,0,28,0.3,0.037,0.17,1.5,0.159,0,0,0,0
11270,1100,"Mustard greens, raw","MUSTARD GREENS,RAW",,,Y,Bases,7,Brassica juncea,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.86,0.42,4.67,27,1.32,3.2,115,1.64,32,58,384,20,0.25,0.9,3024,0,70,0.08,0.11,0.8,0.18,0,257.5,0,0
11271,1100,"Mustard greens, cooked, boiled, drained, without salt","MUSTARD GRNS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.56,0.47,4.51,26,1.41,2,118,0.87,13,42,162,9,0.22,0.6,12370,0,25.3,0.041,0.063,0.433,0.098,0,592.7,0,0
11272,1100,"Mustard greens, frozen, unprepared","MUSTARD GRNS,FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.49,0.27,3.41,20,,3.3,116,1.29,15,30,170,29,0.23,0.7,5155,0,25.3,0.048,0.061,0.314,0.131,0,,0,0
11273,1100,"Mustard greens, frozen, cooked, boiled, drained, without salt","MUSTARD GRNS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.27,0.25,3.11,19,0.32,2.8,101,1.12,13,24,139,25,0.2,0.6,7076,0,13.8,0.04,0.053,0.258,0.108,0,335.1,0,0
11274,1100,"Mustard spinach, (tendergreen), raw","MUSTARD SPINACH,(TENDERGREEN),RAW",,,,Trimmings,7,Brassica rapa (Perviridis Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.2,0.3,3.9,22,,2.8,210,1.5,11,28,449,21,0.17,0.8,9900,0,130,0.068,0.093,0.678,0.153,0,,0,0
11275,1100,"Mustard spinach, (tendergreen), cooked, boiled, drained, without salt","MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.7,0.2,2.8,16,,2,158,0.8,7,18,285,14,0.11,0.6,8200,0,65,0.041,0.062,0.43,0.097,0,,0,0
11276,1100,"New Zealand spinach, raw","NEW ZEALAND SPINACH,RAW",,,,Large stems and roots,28,Tetragonia tetragonioides,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.5,0.2,2.5,14,0.29,1.5,58,0.8,39,28,130,130,0.38,0.7,4400,0,30,0.04,0.13,0.5,0.304,0,337,0,0
11277,1100,"New Zealand spinach, cooked, boiled, drained, without salt","NEW ZEALAND SPINACH,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.3,0.17,2.13,12,0.25,1.4,48,0.66,32,22,102,107,0.31,0.9,3622,0,16,0.03,0.107,0.39,0.237,0,292,0,0
11278,1100,"Okra, raw","OKRA,RAW",,,Y,Crown and tips,14,Abelmoschus esculentus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.93,0.19,7.45,33,1.48,3.2,82,0.62,57,61,299,7,0.58,0.7,716,0,23,0.2,0.06,1,0.215,0,31.3,0,0
11279,1100,"Okra, cooked, boiled, drained, without salt","OKRA,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.87,0.21,4.51,22,2.4,2.5,77,0.28,36,32,135,6,0.43,0.4,283,0,16.3,0.132,0.055,0.871,0.187,0,40,0,0
11280,1100,"Okra, frozen, unprepared","OKRA,FROZEN,UNPREPARED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.69,0.25,6.63,30,2.97,2.2,81,0.57,43,42,211,3,0.53,0.6,350,0,12.4,0.089,0.105,0.708,0.042,0,49.4,0,0
11281,1100,"Okra, frozen, cooked, boiled, drained, without salt","OKRA,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.63,0.24,6.41,29,2.87,2.1,74,0.52,40,37,184,3,0.49,0.6,305,0,9.6,0.073,0.096,0.616,0.037,0,47.8,0,0
11282,1100,"Onions, raw","ONIONS,RAW",,,Y,"Stem ends, sprouts and defects",10,Allium cepa,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.1,0.1,9.34,40,4.24,1.7,23,0.21,10,29,146,4,0.17,0.5,2,0,7.4,0.046,0.027,0.116,0.12,0,0.4,0,0
11283,1100,"Onions, cooked, boiled, drained, without salt","ONIONS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.36,0.19,10.15,44,4.73,1.4,22,0.24,11,35,166,3,0.21,0.6,2,0,5.2,0.042,0.023,0.165,0.129,0,0.5,0,0
11284,1100,"Onions, dehydrated flakes","ONIONS,DEHYDRATED FLAKES",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,8.95,0.46,83.28,349,37.41,9.2,257,1.55,92,303,1622,21,1.89,5,18,0,75,0.5,0.1,0.99,1.6,0,3.8,0,0
11285,1100,"Onions, canned, solids and liquids","ONIONS,CND,SOL&LIQUIDS",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.85,0.09,4.02,19,2.2,1.2,45,0.13,6,28,111,371,0.29,0.3,1,0,4.3,0.032,0.006,0.061,0.137,0,0.2,0,0
11286,1100,"Onions, yellow, sauteed","ONIONS,YEL,SAUTEED",,,,,0,,,,,,Vegetables and Vegetable Products,0.95,10.8,7.86,132,,1.7,20,0.27,9,33,133,12,0.21,,,0,1.8,0.049,0.041,0.037,0.207,,21.6,,
11287,1100,"Onions, frozen, chopped, unprepared","ONIONS,FRZ,CHOPD,UNPREP",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.79,0.1,6.82,29,,1.8,17,0.33,7,22,124,12,0.07,0.4,35,0,3.3,0.03,0.027,0.151,0.075,0,,0,0
11288,1100,"Onions, frozen, chopped, cooked, boiled, drained, without salt","ONIONS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.77,0.1,6.59,28,2.9,1.8,16,0.3,6,19,108,12,0.07,0.4,2,0,2.6,0.023,0.025,0.139,0.069,0,0.3,0,0
11289,1100,"Onions, frozen, whole, unprepared","ONIONS,FRZ,WHL,UNPREP",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.89,0.06,8.45,35,3.81,1.7,36,0.46,10,23,142,10,0.12,0.4,2,0,8,0.026,0.024,0.175,0.093,0,0.4,0,0
11290,1100,"Onions, frozen, whole, cooked, boiled, drained, without salt","ONIONS,FRZ,WHL,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.71,0.05,6.7,28,2.9,1.4,27,0.34,8,2,101,8,0.09,0.4,2,0,5.1,0.016,0.018,0.132,0.07,0,0.3,0,0
11291,1100,"Onions, spring or scallions (includes tops and bulb), raw","ONIONS,SPRING OR SCALLIONS (INCL TOPS&BULB),RAW",,,Y,Rootlets,4,Allium cepa or Allium fistulosum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.83,0.19,7.34,32,2.33,2.6,72,1.48,20,37,276,16,0.39,0.6,997,0,18.8,0.055,0.08,0.525,0.061,0,207,0,0
11292,1100,"Onions, young green, tops only","ONIONS,YOUNG GRN,TOPS ONLY",,,Y,,0,Allium cepa,,2.44,8.37,3.57,Vegetables and Vegetable Products,0.97,0.47,5.74,27,3.91,1.8,52,0.51,16,25,159,15,0.2,0.5,4000,0,13.4,0.03,0.026,0.33,0.088,0,156.3,0,0
11293,1100,"Onions, welsh, raw","ONIONS,WELSH,RAW",,,,Leaf tops and roots,35,Allium fistulosum,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.9,0.4,6.5,34,2.18,2.4,18,1.22,23,49,212,17,0.52,0.6,1160,0,27,0.05,0.09,0.4,0.072,0,193.4,0,0
11294,1100,"Onions, sweet, raw","ONIONS,SWT,RAW",,,,"Stem, root, and two outermost layers",16,Allium cepa,,2.78,8.37,3.84,Vegetables and Vegetable Products,0.8,0.08,7.55,32,5.02,0.9,20,0.26,9,27,119,8,0.13,0.5,1,0,4.8,0.041,0.02,0.133,0.13,,0.3,,0
11295,1100,"Onion rings, breaded, par fried, frozen, unprepared","ONION RINGS,BREADED,PAR FR,FRZ,UNPREP",,,,,0,,6.07,3.7,8.8,4,Vegetables and Vegetable Products,3.15,14.1,30.53,258,,1.8,46,0.93,14,49,190,246,0.36,2.4,0,0,4.6,0.1,0.079,0.693,0.132,0,,29,0
11296,1100,"Onion rings, breaded, par fried, frozen, prepared, heated in oven","ONION RINGS,BREADED,PAR FR,FRZ,PREP,HTD IN OVEN",,,Y,,0,,6.07,3.7,8.8,4,Vegetables and Vegetable Products,4.14,14.3,33.79,276,5.1,2.2,31,1.25,17,71,123,370,0.42,5.6,0,0,1.6,0.185,0.116,1.349,0.117,0,34.1,0,0
11297,1100,"Parsley, fresh","PARSLEY,FRSH",,,Y,Tough stems,5,Petroselinum crispum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.97,0.79,6.33,36,0.85,3.3,138,6.2,50,58,554,56,1.07,0.1,8424,0,133,0.086,0.098,1.313,0.09,0,1640,0,0
11298,1100,"Parsnips, raw","PARSNIPS,RAW",,,,Parings,15,Pastinaca sativa,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.2,0.3,17.99,75,4.8,4.9,36,0.59,29,71,375,10,0.59,1.8,0,0,17,0.09,0.05,0.7,0.09,0,22.5,0,0
11299,1100,"Parsnips, cooked, boiled, drained, without salt","PARSNIPS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.32,0.3,17.01,71,4.8,3.6,37,0.58,29,69,367,10,0.26,1.7,0,0,13,0.083,0.051,0.724,0.093,0,1,0,0
11300,1100,"Peas, edible-podded, raw","PEAS,EDIBLE-PODDED,RAW","Snowpeas, Sugar snap peas",,Y,Ends and strings,6,Pisum sativum,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.8,0.2,7.55,42,4,2.6,43,2.08,24,53,200,4,0.27,0.7,1087,0,60,0.15,0.08,0.6,0.16,0,25,0,0
11301,1100,"Peas, edible-podded, boiled, drained, without salt","PEAS,EDIBLE-PODDED,BLD,DRND,WO/ SALT","Sugar snap peas, Snowpeas",,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.27,0.23,7.05,42,3.99,2.8,42,1.97,26,55,240,4,0.37,0.7,1030,0,47.9,0.128,0.076,0.539,0.144,0,25,0,0
11302,1100,"Peas, edible-podded, frozen, unprepared","PEAS,EDIBLE-PODDED,FRZ,UNPREP","Sugar snap peas, Snowpeas",,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.8,0.3,7.2,42,,3.1,50,2,23,51,192,4,0.41,0.7,140,0,22,0.06,0.1,0.5,0.154,0,,0,0
11303,1100,"Peas, edible-podded, frozen, cooked, boiled, drained, without salt","PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,WO/SALT","Sugar snap peas, Snowpeas",,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.5,0.38,9.02,52,4.82,3.1,59,2.4,28,58,217,5,0.49,0.8,1311,0,22,0.064,0.119,0.563,0.174,0,30.2,0,0
11304,1100,"Peas, green, raw","PEAS,GREEN,RAW",,,Y,Pods and inedible peas,62,Pisum sativum,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.42,0.4,14.45,81,5.67,5.7,25,1.47,33,108,244,5,1.24,1.8,765,0,40,0.266,0.132,2.09,0.169,0,24.8,0,0
11305,1100,"Peas, green, cooked, boiled, drained, without salt","PEAS,GRN,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.36,0.22,15.63,84,5.93,5.5,27,1.54,39,117,271,3,1.19,1.9,801,0,14.2,0.259,0.149,2.021,0.216,0,25.9,0,0
11306,1100,"Peas, green, canned, regular pack, solids and liquids","PEAS,GRN,CND,REG PK,SOL&LIQUIDS",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.01,0.48,10.6,58,3.2,3.3,20,1.29,19,63,106,185,0.72,1.3,1529,0,7.8,0.077,0.024,0.995,0.065,0,20.7,0,0
11308,1100,"Peas, green (includes baby and lesuer types), canned, drained solids, unprepared","PEAS,GRN (INCLUDES BABY & LESUER TYPES),CND,DRND SOL,UNPREP",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,4.47,0.8,11.36,68,2.99,4.9,23,1.18,18,67,106,273,0.66,1.7,865,0,4.2,0.107,0.053,0.979,0.056,0,36.8,0,0
11310,1100,"Peas, green, canned, seasoned, solids and liquids","PEAS,GRN,CND,SEASONED,SOL&LIQUIDS",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.09,0.27,9.25,50,,2,15,1.2,15,54,122,254,0.65,1.3,433,0,11.5,0.096,0.071,0.69,0.098,0,,0,0
11311,1100,"Peas, green, canned, drained solids, rinsed in tap water","PEAS,GRN,CND,DRND SOL,RINSED IN TAP H2O",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,4.33,0.95,11.82,71,,,24,1.09,18,65,105,231,0.68,,,0,9.3,0.067,0.04,1.012,,0,,0,0
11312,1100,"Peas, green, frozen, unprepared","PEAS,GRN,FRZ,UNPREP",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.22,0.4,13.62,77,5,4.5,22,1.53,26,82,153,108,0.82,1.9,2058,0,18,0.259,0.1,1.723,0.083,0,27.9,0,0
11313,1100,"Peas, green, frozen, cooked, boiled, drained, without salt","PEAS,GRN,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.15,0.27,14.26,78,4.4,4.5,24,1.52,22,77,110,72,0.67,1,2100,0,9.9,0.283,0.1,1.48,0.113,0,24,0,0
11316,1100,"Peas, mature seeds, sprouted, raw","PEAS,MATURE SEEDS,SPROUTED,RAW",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,8.8,0.68,27.11,124,,,36,2.26,56,165,381,20,1.05,0.6,166,0,10.4,0.225,0.155,3.088,0.265,0,,0,0
11317,1100,"Peas, mature seeds, sprouted, cooked, boiled, drained, without salt","PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,7.05,0.51,17.08,98,,,26,1.67,41,24,268,3,0.78,0.6,107,0,6.6,0.216,0.285,1.072,0.128,0,,0,0
11318,1100,"Peas and carrots, canned, regular pack, solids and liquids","PEAS&CARROTS,CND,REG PK,SOL&LIQUIDS",,,,,0,,6.25,3.98,8.37,3.16,Vegetables and Vegetable Products,2.17,0.27,8.48,38,,2,23,0.75,14,46,100,260,0.58,0.9,5770,0,6.6,0.074,0.053,0.581,0.088,0,,0,0
11322,1100,"Peas and carrots, frozen, unprepared","PEAS&CARROTS,FRZ,UNPREP",,,,,0,,6.25,3.98,8.37,3.16,Vegetables and Vegetable Products,3.4,0.47,11.15,53,,3.4,27,1.09,18,60,194,79,0.52,1.2,9497,0,11.2,0.19,0.081,1.412,0.101,0,,0,0
11323,1100,"Peas and carrots, frozen, cooked, boiled, drained, without salt","PEAS&CARROTS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.98,8.37,3.16,Vegetables and Vegetable Products,3.09,0.42,10.12,48,4.36,3.1,23,0.94,16,49,158,68,0.45,1.1,9514,0,8.1,0.225,0.064,1.154,0.087,0,18.8,0,0
11324,1100,"Peas and onions, canned, solids and liquids","PEAS&ONIONS,CND,SOL&LIQUIDS",,,,,0,,6.25,3.4,8.37,4,Vegetables and Vegetable Products,3.28,0.38,8.57,51,,2.3,17,0.87,16,51,96,442,0.58,0.4,161,0,3,0.1,0.07,1.28,0.192,0,,0,0
11326,1100,"Peas and onions, frozen, unprepared","PEAS&ONIONS,FRZ,UNPREP",,,,,0,,6.25,3.4,8.37,4,Vegetables and Vegetable Products,3.98,0.32,13.51,70,,3.5,23,1.54,21,59,203,61,0.48,0.6,544,0,14,0.297,0.114,1.72,0.144,0,,0,0
11327,1100,"Peas and onions, frozen, cooked, boiled, drained, without salt","PEAS&ONIONS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.4,8.37,4,Vegetables and Vegetable Products,2.54,0.2,8.63,45,3.77,2.2,14,0.94,13,34,117,37,0.29,0.4,1051,0,6.9,0.15,0.069,1.044,0.087,0,12.1,0,0
11329,1100,"Peppers, hot chili, green, canned, pods, excluding seeds, solids and liquids","PEPPERS,HOT CHILI,GRN,CND,PODS,EXCLUDING SEEDS,SOL&LIQUIDS",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.9,0.1,5.1,21,3.12,1.3,7,0.5,14,17,187,1173,0.17,0.3,721,0,68,0.02,0.05,0.8,0.153,0,8.7,0,0
11333,1100,"Peppers, sweet, green, raw","PEPPERS,SWT,GRN,RAW",,,Y,"Stem ends, seeds and core",18,Capsicum annuum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.86,0.17,4.64,20,2.4,1.7,10,0.34,10,20,175,3,0.13,0,370,0,80.4,0.057,0.028,0.48,0.224,0,7.4,0,0
11334,1100,"Peppers, sweet, green, cooked, boiled, drained, without salt","PEPPERS,SWT,GRN,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.92,0.2,6.7,28,3.19,1.2,9,0.46,10,18,166,2,0.12,0.3,468,0,74.4,0.059,0.03,0.477,0.233,0,9.8,0,0
11335,1100,"Peppers, sweet, green, canned, solids and liquids","PEPPERS,SWT,GRN,CND,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.8,0.3,3.9,18,,1.2,41,0.8,11,20,146,1369,0.18,0.3,155,0,46.5,0.025,0.03,0.55,0.178,0,,0,0
11337,1100,"Peppers, sweet, green, frozen, chopped, unprepared","PEPPERS,SWT,GRN,FRZ,CHOPD,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.08,0.21,4.45,20,,1.6,9,0.62,8,17,91,5,0.06,0.2,367,0,58.7,0.069,0.038,1.37,0.137,0,,0,0
11338,1100,"Peppers, sweet, green, frozen, chopped, boiled, drained, without salt","PEPPERS,SWT,GRN,FRZ,CHOPD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.95,0.18,3.9,18,,0.9,8,0.52,7,13,72,4,0.05,0.2,290,0,41.2,0.051,0.031,1.082,0.108,0,,0,0
11339,1100,"Peppers, sweet, green, sauteed","PEPPERS,SWT,GRN,SAUTEED",,,,,0,,,,,,Vegetables and Vegetable Products,0.78,11.85,4.22,127,2.17,1.8,8,0.3,8,15,134,17,0.06,0.6,273,0,177,0.042,0.048,0.582,0.196,0,21.3,,0
11344,1100,"Pigeonpeas, immature seeds, raw","PIGEONPEAS,IMMAT SEEDS,RAW",,,Y,Pods,52,Cajanus cajan,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,7.2,1.64,23.88,136,3,5.1,42,1.6,68,127,552,5,1.04,1.5,67,0,39,0.4,0.17,2.2,0.068,0,24,0,0
11345,1100,"Pigeonpeas, immature seeds, cooked, boiled, drained, without salt","PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.96,1.36,19.49,111,2.48,4.2,41,1.57,40,118,456,5,0.82,1.2,50,0,28.1,0.35,0.166,2.153,0.053,0,19.8,0,0
11349,1100,Poi,POI,,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,0.38,0.14,27.23,112,0.39,0.4,16,0.88,24,39,183,12,0.22,0.7,66,0,4,0.13,0.04,1.1,0.273,0,1,0,0
11350,1100,"Pokeberry shoots, (poke), raw","POKEBERRY SHOOTS,(POKE),RAW",,,,,,Phytolacca americana,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.6,0.4,3.7,23,,1.7,53,1.7,18,44,242,23,0.24,0.9,8700,0,136,0.08,0.33,1.2,0.146,0,,0,0
11351,1100,"Pokeberry shoots, (poke), cooked, boiled, drained, without salt","POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.3,0.4,3.1,20,1.6,1.5,53,1.2,14,33,184,18,0.19,0.9,8700,0,82,0.07,0.25,1.1,0.111,0,108,0,0
11352,1100,"Potatoes, flesh and skin, raw","POTATOES,FLESH & SKN,RAW",,,Y,Parings and trimmings,25,Solanum tuberosum,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.05,0.09,17.49,77,0.82,2.1,12,0.81,23,57,425,6,0.3,0.4,2,0,19.7,0.081,0.032,1.061,0.298,0,2,0,0
11353,1100,"Potatoes, russet, flesh and skin, raw","POTATOES,RUSSET,FLESH & SKN,RAW",Includes USDA commodity food A214,,,Parings and trimmings,25,Solanum tuberosum,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.14,0.08,18.07,79,0.62,1.3,13,0.86,23,55,417,5,0.29,0.4,1,0,5.7,0.082,0.033,1.035,0.345,0,1.8,0,0
11354,1100,"Potatoes, white, flesh and skin, raw","POTATOES,WHITE,FLESH & SKN,RAW",Includes USDA commodity food A215,,,Parings and trimmings,25,Solanum tuberosum,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.68,0.1,15.71,69,1.15,2.4,9,0.52,21,62,407,16,0.29,0.3,8,0,9.1,0.071,0.034,1.066,0.203,0,1.6,0,0
11355,1100,"Potatoes, red, flesh and skin, raw","POTATOES,RED,FLESH & SKN,RAW",,,,Parings and trimmings,25,Solanum tuberosum,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.89,0.14,15.9,70,1.29,1.7,10,0.73,22,61,455,18,0.33,0.5,7,0,8.6,0.081,0.031,1.149,0.17,0,2.9,0,0
11356,1100,"Potatoes, Russet, flesh and skin, baked","POTATOES,RUSSET,FLESH & SKN,BKD",,,,,0,,,,,,Vegetables and Vegetable Products,2.63,0.13,21.44,97,1.08,2.3,18,1.07,30,71,550,14,0.35,0.5,10,0,8.3,0.067,0.048,1.348,0.354,0,2,0,0
11357,1100,"Potatoes, white, flesh and skin, baked","POTATOES,WHITE,FLESH & SKN,BKD",,,,,0,,,,,,Vegetables and Vegetable Products,2.1,0.15,21.08,94,1.53,2.1,10,0.64,27,75,544,7,0.35,0.5,10,0,12.6,0.048,0.043,1.528,0.211,0,2.7,0,0
11358,1100,"Potatoes, red, flesh and skin, baked","POTATOES,RED,FLESH & SKN,BKD",,,,,0,,,,,,Vegetables and Vegetable Products,2.3,0.15,19.59,89,1.43,1.8,9,0.7,28,72,545,12,0.4,,10,0,12.6,0.072,0.05,1.595,0.212,0,2.8,0,0
11359,1100,"Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, as purchased","POTATOES,FR FR,CRNKL OR REG,SALT ADDED IN PROC,FRZ,AS PURCH",,,,,0,,,,,,Vegetables and Vegetable Products,2.34,4.99,23.96,150,0.21,2,13,0.62,21,81,380,349,0.34,0.5,4,0,7.7,0.106,0.037,2.14,0.196,0,2.1,0,0
11360,1100,"Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, oven-heated","POTATOES,FR FR,CRNKL/REG CUT,SALT ADDED IN PROC,FRZ,OVEN-HTD",,,,,0,,,,,,Vegetables and Vegetable Products,2.51,5.13,27.5,166,0.29,2.3,13,0.75,28,97,471,391,0.4,0.1,4,0,11.8,0.122,0.031,2.135,0.172,,2.3,,0
11361,1100,"Potatoes, roasted, salt added in processing, frozen, unprepared","POTATOES,RSTD,SALT ADDED IN PROCESSING,FRZ,UNPREP",,,,,0,,,,,,Vegetables and Vegetable Products,2.22,1.81,26.15,130,0.69,2.6,15,0.5,,,450,298,,,0,,1.7,,,,,,,,0
11362,1100,"Potatoes, raw, skin","POTATOES,RAW,SKIN",,,,,0,Solanum tuberosum,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.57,0.1,12.44,58,,2.5,30,3.24,23,38,413,10,0.35,0.3,0,0,11.4,0.021,0.038,1.033,0.239,0,,0,0
11363,1100,"Potatoes, baked, flesh, without salt","POTATOES,BKD,FLESH,WO/SALT",,,Y,Skin and adhering flesh,23,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.96,0.1,21.55,93,1.7,1.5,5,0.35,25,50,391,5,0.29,0.3,0,0,12.8,0.105,0.021,1.395,0.301,0,0.3,0,0
11364,1100,"Potatoes, baked, skin, without salt","POTATOES,BKD,SKN,WO/SALT",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,4.29,0.1,46.06,198,1.4,7.9,34,7.04,43,101,573,21,0.49,0.7,10,0,13.5,0.122,0.106,3.065,0.614,0,1.7,0,0
11365,1100,"Potatoes, boiled, cooked in skin, flesh, without salt","POTATOES,BLD,CKD IN SKN,FLESH,WO/SALT",,,Y,Skins and eyes,9,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.87,0.1,20.13,87,0.91,1.8,5,0.31,22,44,379,4,0.3,0.3,3,0,13,0.106,0.02,1.439,0.299,0,2.2,0,0
11366,1100,"Potatoes, boiled, cooked in skin, skin, without salt","POTATOES,BLD,CKD IN SKN,SKN,WO/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.86,0.1,17.21,78,,3.3,45,6.07,30,54,407,14,0.44,0.3,0,0,5.2,0.032,0.036,1.222,0.239,0,,0,0
11367,1100,"Potatoes, boiled, cooked without skin, flesh, without salt","POTATOES,BLD,CKD WO/ SKN,FLESH,WO/ SALT",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.71,0.1,20.01,86,0.89,1.8,8,0.31,20,40,328,5,0.27,0.3,2,0,7.4,0.098,0.019,1.312,0.269,0,2.2,0,0
11368,1100,"Potatoes, microwaved, cooked in skin, flesh, without salt","POTATOES,MICROWAVED,CKD IN SKN,FLESH,WO/SALT",,,,Skin and adhering flesh,23,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.1,0.1,23.28,100,,1.6,5,0.41,25,109,411,7,0.33,0.4,0,0,15.1,0.129,0.025,1.625,0.319,0,,0,0
11369,1100,"Potatoes, microwaved, cooked in skin, skin, without salt","POTATOES,MICROWAVED,CKD IN SKN,SKN,WO/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,4.39,0.1,29.63,132,,5.5,46,5.94,37,82,650,16,0.51,0.5,0,0,15.3,0.071,0.075,2.22,0.492,0,,0,0
11370,1100,"Potatoes, hash brown, home-prepared","POTATOES,HASH BROWN,HOME-PREPARED","Potatoes, hashed brown",,Y,,0,,,,,,Vegetables and Vegetable Products,3,12.52,35.11,265,1.49,3.2,14,0.55,35,70,576,342,0.47,0.5,5,0,13,0.172,0.033,2.302,0.472,0,3.7,0,0
11371,1100,"Potatoes, mashed, home-prepared, whole milk and margarine added","POTATOES,MSHD,HOME-PREPARED,WHL MILK & MARGARINE ADDED",,,Y,,0,,,,,,Vegetables and Vegetable Products,1.96,4.2,16.94,113,1.41,1.5,21,0.26,19,48,326,333,0.3,0.8,187,7,10.5,0.092,0.042,1.174,0.247,0.07,6,0,1
11372,1100,"Potatoes, scalloped, home-prepared with butter","POTATOES,SCALLPD,HOME-PREPARED W/BUTTER",,,,,0,,0,,,,Vegetables and Vegetable Products,2.87,3.68,10.78,88,,1.9,57,0.57,19,63,378,335,0.4,1.6,135,0,10.6,0.069,0.092,1.053,0.178,0,,2,12
11373,1100,"Potatoes, au gratin, home-prepared from recipe using butter","POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING BUTTER",,,,,0,,0,,,,Vegetables and Vegetable Products,5.06,7.59,11.27,132,,1.8,119,0.64,20,113,396,433,0.69,2.7,264,0,9.9,0.064,0.116,0.993,0.174,0,,3,23
11374,1100,"Potatoes, canned, solids and liquids","POTATOES,CND,SOL&LIQUIDS",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.2,0.11,9.89,44,,1.4,39,0.72,14,22,205,217,0.39,0.7,0,0,7.6,0.034,0.02,0.889,0.137,0,,0,0
11376,1100,"Potatoes, canned, drained solids","POTATOES,CND,DRND SOL",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.41,0.21,13.61,60,,2.3,5,1.26,14,28,229,219,0.28,0.9,0,0,5.1,0.068,0.013,0.915,0.188,0,,0,0
11378,1100,"Potatoes, mashed, dehydrated, flakes without milk, dry form","POTATOES,MSHD,DEHYD,FLAKES WO/MILK,DRY FORM",Include USDA Commodity food A200,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,8.34,0.41,81.17,354,3.36,6.6,27,1.21,66,156,1098,77,0.7,13.4,11,0,81,0.988,0.11,6.264,0.748,0,8.7,0,0
11379,1100,"Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and butter added","POTATOES,MSHD,DEHYD,PREP FROM FLAKES WO/ MILK,WHL MILK & BUT",,,Y,,0,,,,,,Vegetables and Vegetable Products,1.77,5.13,10.87,97,1.61,0.8,32,0.16,11,39,164,164,0.18,2.5,172,12,9.7,0.13,0.054,0.776,0.098,0.11,1.5,0,14
11380,1100,"Potatoes, mashed, dehydrated, granules without milk, dry form","POTATOES,MSHD,DEHYD,GRANULES WO/MILK,DRY FORM",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,8.22,0.54,85.51,372,3.47,7.1,41,1.09,98,245,703,67,0.91,27.1,11,0,37,0.453,0.253,4.765,0.861,0,9,0,0
11381,1100,"Potatoes, mashed, dehydrated, prepared from granules without milk, whole milk and butter added","POTATOES,MSHD,DEHYD,PREP FR GRNLS WO/MILK,WHL MILK&BUTTER",,,,,0,,6.29,3.21,8.82,4.02,Vegetables and Vegetable Products,2.05,4.96,14.36,108,,2.2,35,0.19,19,60,144,257,0.25,1.3,183,0,6,0.079,0.077,0.764,0.009,0,,0,14
11382,1100,"Potatoes, mashed, dehydrated, granules with milk, dry form","POTATOES,MSHD,DEHYD,GRANULES W/MILK,DRY FORM",,,Y,,0,,6.29,3.21,8.82,4.02,Vegetables and Vegetable Products,10.9,1.1,77.7,357,3.37,6.6,142,3.5,74,237,1848,82,1.2,26.3,75,0,16,0.19,0.3,4.2,0.887,0,8.7,0,2
11383,1100,"Potatoes, mashed, dehydrated, prepared from granules with milk, water and margarine added","POTATOES,MSHD,DEHYD,PREP FROM GRAN W/ MILK,H2O & MARG ADDED",,,,,0,,,,,,Vegetables and Vegetable Products,2.13,4.8,16.13,116,1.74,1.3,35,0.2,20,62,155,172,0.24,5.6,214,11,6.5,0.09,0.083,0.86,0.16,0.1,6.3,0,2
11384,1100,"Potatoes, au gratin, dry mix, unprepared","POTATOES,AU GRATIN,DRY MIX,UNPREP",,,,,0,,0,,,,Vegetables and Vegetable Products,8.9,3.7,74.31,314,,4.1,311,1.63,64,404,990,2095,0.9,10,263,0,15.5,0.07,0.253,4.063,0.15,0,,0,
11385,1100,"Potatoes, au gratin, dry mix, prepared with water, whole milk and butter","POTATOES,AU GRATIN,DRY MIX,PREP W/H2O,WHL MILK&BUTTER",,,,,0,,0,,,,Vegetables and Vegetable Products,2.3,4.12,12.84,93,,0.9,83,0.32,15,95,219,439,0.24,2.7,213,0,3.1,0.02,0.081,0.939,0.04,0,,0,15
11386,1100,"Potatoes, scalloped, dry mix, unprepared","POTATOES,SCALLPD,DRY MIX,UNPREP",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,7.77,4.59,73.93,358,,8.6,62,2.01,59,197,905,1578,0.92,7.9,0,0,16.5,0.06,0.123,4.533,0.18,0,,0,5
11387,1100,"Potatoes, scalloped, dry mix, prepared with water, whole milk and butter","POTATOES,SCALLPD,DRY MIX,PREP W/H2O,WHL MILK&BUTTER",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.12,4.3,12.77,93,,1.1,36,0.38,14,56,203,341,0.25,1.6,148,0,3.3,0.019,0.056,1.029,0.042,0,,0,11
11390,1100,"Potatoes, hash brown, frozen, plain, unprepared","POTATOES,HASH BROWN,FRZ,PLN,UNPREP","Potatoes, hashed brown",,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.06,0.62,17.72,82,,1.4,10,0.98,11,47,285,22,0.21,0.3,0,0,8.2,0.097,0.014,1.664,0.087,0,,0,
11391,1100,"Potatoes, hash brown, frozen, plain, prepared, pan fried in canola oil","POTATOES,HASH BROWN,FRZ,PLN,PREP,PAN FRIED IN CANOLA OIL","Potatoes, hashed brown",,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.65,11.59,28.51,219,0.27,3.2,17,0.54,28,79,496,15,0.38,0.5,0,0,6.7,0.134,0.033,2.314,0.236,0,18.1,0,0
11392,1100,"Potatoes, hash brown, frozen, with butter sauce, unprepared","POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,UNPREP","Potatoes, hashed brown",,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.87,6.66,18.28,135,,2.9,25,0.75,11,29,248,77,0.25,0.3,84,0,5.7,0.053,0.025,1.133,0.212,0,,0,
11393,1100,"Potatoes, hash brown, frozen, with butter sauce, prepared","POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,PREP","Potatoes, hashed brown",,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.46,8.79,24.13,178,,3.8,33,0.99,15,38,327,101,0.33,0.3,111,0,3.8,0.052,0.031,1.421,0.266,0,,0,23
11394,1100,"Potatoes, french fried, shoestring, salt added in processing, frozen, as purchased","POTATOES,FRENCH FR,SHOESTRING,SALT ADDED IN PROC,FRZ,AS PRCH",,,,,0,,,,,,Vegetables and Vegetable Products,2.16,6.24,25.59,167,0.2,2.3,11,0.72,21,90,379,323,0.36,0.5,4,0,12.3,0.09,0.034,1.97,0.17,0,2.6,0,0
11395,1100,"Potatoes, french fried, shoestring, salt added in processing, frozen, oven-heated","POTATOES,FRENCH FR,SHOESTRNG,SALT ADDED IN PROC,FRZ,OVEN-HTD",,,,,0,,,,,,Vegetables and Vegetable Products,2.9,6.76,31.66,199,0.31,2.8,12,0.8,25,112,505,400,0.43,0.6,5,0,14.2,0.129,0.034,2.28,0.192,0,2.7,,0
11396,1100,"Potatoes, o'brien, frozen, unprepared","POTATOES,O'BRIEN,FRZ,UNPREP",,,,,0,,6.25,2.7,8.4,4,Vegetables and Vegetable Products,1.83,0.14,17.47,76,,1.9,13,1.03,18,49,249,33,0.29,1.2,148,0,11.3,0.054,0.045,1.129,0.209,0,,0,
11397,1100,"Potatoes, o'brien, frozen, prepared","POTATOES,O'BRIEN,FRZ,PREP",,,,,0,,6.25,2.7,8.4,4,Vegetables and Vegetable Products,2.22,13.21,21.86,204,,1.7,20,0.96,34,93,473,43,0.55,1.2,188,0,10.4,0.052,0.135,1.448,0.377,0,,0,0
11398,1100,"Potato puffs, frozen, unprepared","POTATO PUFFS,FRZ,UNPREP",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.93,8.71,24.8,178,0.28,2.3,13,0.47,16,64,247,428,0.26,0.3,4,0,6.9,0.184,0.061,1.815,0.194,0,2.5,0,0
11399,1100,"Potato puffs, frozen, oven-heated","POTATO PUFFS,FRZ,OVEN-HEATED",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.13,9.05,27.29,192,0.27,2,14,0.58,17,84,287,463,0.3,0.4,5,0,4,0.069,0.037,1.449,0.121,0,3.7,0,0
11400,1100,"Potatoes, frozen, whole, unprepared","POTATOES,FRZ,WHL,UNPREP",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.38,0.16,17.47,78,0.78,1.2,8,1.01,13,32,346,25,0.3,0.3,2,0,14.2,0.154,0.031,1.68,0.256,0,1.9,0,0
11401,1100,"Potatoes, frozen, whole, cooked, boiled, drained, without salt","POTATOES,FRZ,WHL,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.98,0.13,14.52,65,,1.4,7,0.84,11,26,287,20,0.25,0.2,0,0,9.4,0.102,0.025,1.326,0.202,0,,0,0
11402,1100,"Potatoes, french fried, all types, salt added in processing, frozen, unprepared","POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,UNPREP",,,,,0,,6.25,2.8,8.8,4,Vegetables and Vegetable Products,2.24,4.66,24.81,147,0.2,1.9,9,0.62,21,83,408,332,0.35,,4,0,17.3,0.098,0.048,2.038,0.178,0,2.2,0,0
11403,1100,"Potatoes, french fried, all types, salt added in processing, frozen, home-prepared, oven heated","POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,OVEN HTD",,,Y,,0,,6.25,2.8,8.8,4,Vegetables and Vegetable Products,2.75,5.48,25.55,158,0.37,2,12,0.57,24,87,478,324,0.35,0.4,5,0,8.6,0.13,0.032,2.077,0.261,0,7.4,0,0
11406,1100,"Potatoes, french fried, cottage-cut, salt not added in processing, frozen, as purchased","POTATOES,FRNCH FR,CTTG-CUT,SALT NOT ADDED,FRZ,AS PRCH",,,,,0,,6.25,2.8,8.8,4,Vegetables and Vegetable Products,2.42,5.78,23.98,153,,3,7,1.05,16,46,338,32,0.29,0.3,0,0,8.4,0.099,0.023,1.789,0.18,0,,0,0
11407,1100,"Potatoes, french fried, cottage-cut, salt not added in processing, frozen, oven-heated","POTATOES,FRENCH FR,COTTAGE-CUT,SALT NOT ADDED,FRZ,OVEN-HTD",,,,,0,,6.25,2.8,8.8,4,Vegetables and Vegetable Products,3.44,8.2,34.03,218,,3.2,10,1.49,22,65,480,45,0.41,0.4,0,0,9.5,0.119,0.031,2.413,0.243,0,,0,0
11408,1100,"Potatoes, frozen, french fried, par fried, extruded, unprepared","POTATOES,FRZ,FRENCH FR,PAR FR,EXTRUDED,UNPREP",,,,,0,,6.25,2.8,8.8,4,Vegetables and Vegetable Products,2.83,14.95,30.15,260,,2.9,9,1.32,18,77,430,490,0.33,0.5,0,0,6.3,0.074,0.031,2.241,0.18,0,,0,0
11409,1100,"Potatoes, frozen, french fried, par fried, extruded, prepared, heated in oven, without salt","POTATOES,FRZ,FRCH FR,PAR FR,EXTRUDED,PREP,HTD OVEN,WO/SALT",,,,,0,,6.25,2.8,8.8,4,Vegetables and Vegetable Products,3.55,18.71,39.68,333,,3.2,12,1.66,23,96,539,613,0.41,0.6,0,0,6.2,0.08,0.037,2.665,0.213,0,,0,0
11410,1100,"USDA Commodity, Potato wedges, frozen","USDA COMMODITY,POTATO WEDGES,FRZ",,,,,0,,,,,,Vegetables and Vegetable Products,2.7,2.2,25.5,123,0.3,2,15,0.7,19,87,394,49,0.37,,0,0,11.2,0.1,0.04,1.54,0.35,0,,,0
11411,1100,"Potatoes, french fried, steak fries, salt added in processing, frozen, as purchased","POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,AS PRCH",,,,,0,,,,,,Vegetables and Vegetable Products,2.19,3.39,23.51,133,0.2,1.9,9,0.65,21,78,400,317,0.36,0.4,4,0,18.4,0.098,0.072,2.005,0.168,0,1.8,,0
11412,1100,"Potatoes, french fried, steak fries, salt added in processing, frozen, oven-heated","POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,OVEN-HTD",,,,,0,,,,,,Vegetables and Vegetable Products,2.57,3.76,26.98,152,0.25,2.6,10,0.64,23,90,459,373,0.41,,,0,14,0.132,0.029,2.24,0.192,0,2.3,,0
11413,1100,Potato flour,POTATO FLOUR,,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,6.9,0.34,83.1,357,3.52,5.9,65,1.38,65,168,1001,55,0.54,1.1,0,0,3.8,0.228,0.051,3.507,0.769,0,0,0,0
11414,1100,"Potato salad, home-prepared","POTATO SALAD,HOME-PREPARED",,,,,0,,,,,,Vegetables and Vegetable Products,2.68,8.2,11.17,143,,1.3,19,0.65,15,52,254,529,0.31,4.1,157,0,10,0.077,0.06,0.89,0.141,0,,0,68
11416,1100,"Pumpkin flowers, raw","PUMPKIN FLOWERS,RAW",,,,Pistil and calyx,65,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.03,0.07,3.28,15,,,39,0.7,24,49,173,5,,0.7,1947,0,28,0.042,0.075,0.69,,0,,0,0
11417,1100,"Pumpkin flowers, cooked, boiled, drained, without salt","PUMPKIN FLOWERS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.09,0.08,3.3,15,2.4,0.9,37,0.88,25,34,106,6,0.1,0.7,1734,0,5,0.018,0.032,0.31,0.05,0,0,0,0
11418,1100,"Pumpkin leaves, raw","PUMPKIN LEAVES,RAW",,,,Stem and tough leaves,59,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.15,0.4,2.33,19,,,39,2.22,38,104,436,11,0.2,0.9,1942,0,11,0.094,0.128,0.92,0.207,0,,0,0
11419,1100,"Pumpkin leaves, cooked, boiled, drained, without salt","PUMPKIN LEAVES,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.72,0.22,3.39,21,0.69,2.7,43,3.2,38,79,438,8,0.2,0.9,1600,0,1,0.068,0.136,0.85,0.196,0,108,0,0
11422,1100,"Pumpkin, raw","PUMPKIN,RAW",,,Y,"Seeds, rind and stem",30,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1,0.1,6.5,26,2.76,0.5,21,0.8,12,44,340,1,0.32,0.3,8513,0,9,0.05,0.11,0.6,0.061,0,1.1,0,0
11423,1100,"Pumpkin, cooked, boiled, drained, without salt","PUMPKIN,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.72,0.07,4.9,20,2.08,1.1,15,0.57,9,30,230,1,0.23,0.2,5755,0,4.7,0.031,0.078,0.413,0.044,0,0.8,0,0
11424,1100,"Pumpkin, canned, without salt","PUMPKIN,CND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.1,0.28,8.09,34,3.3,2.9,26,1.39,23,35,206,5,0.17,0.4,15563,0,4.2,0.024,0.054,0.367,0.056,0,16,0,0
11426,1100,"Pumpkin pie mix, canned","PUMPKIN PIE MIX,CANNED",,,,,0,,6.25,2.9,8.4,3.8,Vegetables and Vegetable Products,1.09,0.13,26.39,104,,8.3,37,1.06,16,45,138,208,0.27,1.1,8298,0,3.5,0.016,0.118,0.374,0.159,0,,0,0
11427,1100,"Purslane, raw","PURSLANE,RAW",,,,Tough stems and leaves,24,Portulaca oleracea,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.03,0.36,3.39,20,,,65,1.99,68,44,494,45,0.17,0.9,1320,0,21,0.047,0.112,0.48,0.073,0,,0,0
11428,1100,"Purslane, cooked, boiled, drained, without salt","PURSLANE,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.49,0.19,3.55,18,,,78,0.77,67,37,488,44,0.17,0.9,1852,0,10.5,0.031,0.09,0.46,0.07,0,,0,0
11429,1100,"Radishes, raw","RADISHES,RAW",,,Y,"Stem ends, rootlets and trimmings",10,Raphanus sativus,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.68,0.1,3.4,16,1.86,1.6,25,0.34,10,20,233,39,0.28,0.6,7,0,14.8,0.012,0.039,0.254,0.071,0,1.3,0,0
11430,1100,"Radishes, oriental, raw","RADISHES,ORIENTAL,RAW",,,Y,Tops and parings,21,Raphanus sativus (Longipinratus Group),6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.6,0.1,4.1,18,2.5,1.6,27,0.4,16,23,227,21,0.15,0.7,0,0,22,0.02,0.02,0.2,0.046,0,0.3,0,0
11431,1100,"Radishes, oriental, cooked, boiled, drained, without salt","RADISHES,ORIENTAL,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.67,0.24,3.43,17,1.83,1.6,17,0.15,9,24,285,13,0.13,0.7,0,0,15.1,0,0.023,0.15,0.038,0,0.3,0,0
11432,1100,"Radishes, oriental, dried","RADISHES,ORIENTAL,DRIED",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,7.9,0.72,63.37,271,37.32,23.9,629,6.73,170,204,3494,278,2.13,0.7,0,0,0,0.27,0.68,3.4,0.618,0,4.5,0,0
11435,1100,"Rutabagas, raw","RUTABAGAS,RAW",,,Y,Parings,15,Brassica napus var. napobrassica,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.08,0.16,8.62,37,4.46,2.3,43,0.44,20,53,305,12,0.24,0.7,2,0,25,0.09,0.04,0.7,0.1,0,0.3,0,0
11436,1100,"Rutabagas, cooked, boiled, drained, without salt","RUTABAGAS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.93,0.18,6.84,30,3.95,1.8,18,0.18,10,41,216,5,0.12,0.7,2,0,18.8,0.082,0.041,0.715,0.102,0,0.2,0,0
11437,1100,"Salsify, (vegetable oyster), raw","SALSIFY,(VEG OYSTER),RAW",,,,Scrapings and rootlets,13,Tragopogon porrifolius,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,3.3,0.2,18.6,82,,3.3,60,0.7,23,75,380,20,0.38,0.8,0,0,8,0.08,0.22,0.5,0.277,0,,0,0
11438,1100,"Salsify, cooked, boiled, drained, without salt","SALSIFY,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,2.73,0.17,15.36,68,2.9,3.1,47,0.55,18,56,283,16,0.3,0.6,0,0,4.6,0.056,0.173,0.392,0.218,0,0.3,0,0
11439,1100,"Sauerkraut, canned, solids and liquids","SAUERKRAUT,CND,SOL&LIQUIDS",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.91,0.14,4.28,19,1.78,2.9,30,1.47,13,20,170,661,0.19,0.6,18,0,14.7,0.021,0.022,0.143,0.13,0,13,0,0
11442,1100,"Seaweed, agar, raw","SEAWEED,AGAR,RAW",,,Y,,0,Eucheuma spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.54,0.03,6.75,26,0.28,0.5,54,1.86,67,5,226,9,0.58,0.7,0,0,0,0.005,0.022,0.055,0.032,0,2.3,0,0
11444,1100,"Seaweed, irishmoss, raw","SEAWEED,IRISHMOSS,RAW",,,Y,,0,Chondrus crispus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.51,0.16,12.29,49,0.61,1.3,72,8.9,144,157,63,67,1.95,0.7,118,0,3,0.015,0.466,0.593,0.069,0,5,0,0
11445,1100,"Seaweed, kelp, raw","SEAWEED,KELP,RAW",,,Y,,0,Laminaria spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.68,0.56,9.57,43,0.6,1.3,168,2.85,121,42,89,233,1.23,0.7,116,0,3,0.05,0.15,0.47,0.002,0,66,0,0
11446,1100,"Seaweed, laver, raw","SEAWEED,LAVER,RAW",,,Y,,0,Porphyra laciniata,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.81,0.28,5.11,35,0.49,0.3,70,1.8,2,58,356,48,1.05,0.7,5202,0,39,0.098,0.446,1.47,0.159,0,4,0,0
11447,1100,"Sesbania flower, raw","SESBANIA FLOWER,RAW",,,,"Stems, pistil and calyx",15,Sesbania spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.28,0.04,6.73,27,,,19,0.84,12,30,184,15,,0.9,0,0,73,0.083,0.081,0.43,,0,,0,0
11448,1100,"Sesbania flower, cooked, steamed, without salt","SESBANIA FLOWER,CKD,STMD,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.14,0.05,5.23,22,,,22,0.56,12,21,107,11,,0.7,0,0,37,0.048,0.043,0.25,,0,,0,0
11450,1100,"Soybeans, green, raw","SOYBEANS,GREEN,RAW",,,,Pods,47,Glycine max,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,12.95,6.8,11.05,147,,4.2,197,3.55,65,194,620,15,0.99,1.5,180,0,29,0.435,0.175,1.65,0.065,0,,0,0
11451,1100,"Soybeans, green, cooked, boiled, drained, without salt","SOYBEANS,GRN,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,12.35,6.4,11.05,141,,4.2,145,2.5,60,158,539,14,0.91,1.4,156,0,17,0.26,0.155,1.25,0.06,0,,0,0
11452,1100,"Soybeans, mature seeds, sprouted, raw","SOYBEANS,MATURE SEEDS,SPROUTED,RAW",,,,,0,Glycine max,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,13.09,6.7,9.57,122,,1.1,67,2.1,72,164,484,14,1.17,0.6,11,0,15.3,0.34,0.118,1.148,0.176,0,,0,0
11453,1100,"Soybeans, mature seeds, sprouted, cooked, steamed","SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,8.47,4.45,6.53,81,0.52,0.8,59,1.31,60,135,355,10,1.04,0.6,40,0,8.3,0.205,0.053,1.092,0.105,0,70.6,0,0
11454,1100,"Soybeans, mature seeds, sprouted, cooked, stir-fried","SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,13.1,7.1,9.4,125,,0.8,82,0.4,96,216,567,14,2.1,0.6,17,0,12,0.42,0.19,1.1,0.168,0,,0,0
11457,1100,"Spinach, raw","SPINACH,RAW",,,Y,Large stems and roots,28,Spinacia oleracea,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.86,0.39,3.63,23,0.42,2.2,99,2.71,79,49,558,79,0.53,1,9377,0,28.1,0.078,0.189,0.724,0.195,0,482.9,0,0
11458,1100,"Spinach, cooked, boiled, drained, without salt","SPINACH,CKD,BLD,DRND,WO/ SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.97,0.26,3.75,23,0.43,2.4,136,3.57,87,56,466,70,0.76,1.5,10481,0,9.8,0.095,0.236,0.49,0.242,0,493.6,0,0
11459,1100,"Spinach, canned, regular pack, solids and liquids","SPINACH,CND,REG PK,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.11,0.37,2.92,19,0.33,1.6,83,1.58,56,32,230,319,0.42,1.2,8084,0,13.5,0.018,0.106,0.271,0.08,0,380.8,0,0
11461,1100,"Spinach, canned, regular pack, drained solids","SPINACH,CND,REG PK,DRND SOL",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.81,0.5,3.4,23,0.4,2.4,127,2.3,76,44,346,322,0.46,1.4,9801,0,14.3,0.016,0.138,0.388,0.1,0,461.6,0,0
11463,1100,"Spinach, frozen, chopped or leaf, unprepared","SPINACH,FRZ,CHOPD OR LEAF,UNPREP",,,Y,,0,,,2.44,8.37,3.57,Vegetables and Vegetable Products,3.63,0.57,4.21,29,0.65,2.9,129,1.89,75,49,346,74,0.56,6,11726,0,5.5,0.094,0.224,0.507,0.172,0,372,0,0
11464,1100,"Spinach, frozen, chopped or leaf, cooked, boiled, drained, without salt","SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.01,0.87,4.8,34,0.51,3.7,153,1.96,82,50,302,97,0.49,5.5,12061,0,2.2,0.078,0.176,0.439,0.136,0,540.7,0,0
11467,1100,"Squash, summer, crookneck and straightneck, raw","SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,RAW",,,,Ends,1,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.01,0.27,3.88,19,2.88,1,21,0.44,20,32,222,2,0.29,0.2,150,0,19.3,0.051,0.041,0.448,0.104,0,3.2,0,0
11468,1100,"Squash, summer, crookneck and straightneck, cooked, boiled, drained, without salt","SQUASH,SMMR,CROOKNECK & STRAIGHTNECK,CKD,BLD,DRND,WO/ SALT",,,Y,,0,,,,,,Vegetables and Vegetable Products,1.04,0.39,3.79,23,2.48,1.1,22,0.37,16,29,177,1,0.22,0.2,1117,0,11.6,0.043,0.025,0.507,0.078,0,4.4,0,0
11471,1100,"Squash, summer, crookneck and straightneck, canned, drained, solid, without salt","SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CND,DRND,SOLID,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.61,0.07,2.96,13,1.19,1.4,12,0.71,13,21,96,5,0.29,0.2,102,0,2.7,0.016,0.027,0.418,0.042,0,2.8,0,0
11473,1100,"Squash, summer, crookneck and straightneck, frozen, unprepared","SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.83,0.14,4.8,20,,1.2,18,0.48,23,35,209,5,0.37,0.2,279,0,6.4,0.04,0.048,0.4,0.088,0,,0,0
11474,1100,"Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, without salt","SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.28,0.2,5.54,25,2.33,1.4,20,0.52,27,41,253,6,0.34,0.3,201,0,6.8,0.036,0.047,0.44,0.099,0,5.4,0,0
11475,1100,"Squash, summer, scallop, raw","SQUASH,SUMMER,SCALLOP,RAW",,,,Stem ends,2,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.2,0.2,3.84,18,2.39,1.2,19,0.4,23,36,182,1,0.29,0.2,217,0,18,0.07,0.03,0.6,0.109,0,3.3,0,0
11476,1100,"Squash, summer, scallop, cooked, boiled, drained, without salt","SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.03,0.17,3.3,16,1.5,1.9,15,0.33,19,28,140,1,0.24,0.2,85,0,10.8,0.051,0.025,0.464,0.085,0,3.5,0,0
11477,1100,"Squash, summer, zucchini, includes skin, raw","SQUASH,SMMR,ZUCCHINI,INCL SKN,RAW",,,Y,Ends,5,,,2.44,8.37,3.57,Vegetables and Vegetable Products,1.21,0.32,3.11,17,2.5,1,16,0.37,18,38,261,8,0.32,0.2,200,0,17.9,0.045,0.094,0.451,0.163,0,4.3,0,0
11478,1100,"Squash, summer, zucchini, includes skin, cooked, boiled, drained, without salt","SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.14,0.36,2.69,15,1.71,1,18,0.37,19,37,264,3,0.33,0.2,1117,0,12.9,0.035,0.024,0.51,0.08,0,4.2,0,0
11479,1100,"Squash, summer, zucchini, includes skin, frozen, unprepared","SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.16,0.13,3.58,17,1.71,1.3,18,0.51,13,28,218,2,0.21,0.2,198,0,5.3,0.048,0.042,0.433,0.05,0,4.2,0,0
11480,1100,"Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, without salt","SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.15,0.13,3.56,17,1.69,1.3,17,0.48,13,25,194,2,0.2,0.2,177,0,3.7,0.041,0.04,0.386,0.045,0,4.2,0,0
11481,1100,"Squash, summer, zucchini, italian style, canned","SQUASH,SMMR,ZUCCHINI,ITALIAN STYLE,CND",,,,,0,,6.25,2.5,8.4,3.7,Vegetables and Vegetable Products,1.03,0.11,6.85,29,,,17,0.68,14,29,274,374,0.26,0.4,539,0,2.3,0.042,0.04,0.528,0.152,0,,0,0
11482,1100,"Squash, winter, acorn, raw","SQUASH,WINTER,ACORN,RAW",,,,Rind,24,Cucurbita maxima,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.8,0.1,10.42,40,,1.5,33,0.7,32,36,347,3,0.13,0.5,367,0,11,0.14,0.01,0.7,0.154,0,,0,0
11483,1100,"Squash, winter, acorn, cooked, baked, without salt","SQUASH,WNTR,ACORN,CKD,BKD,WO/SALT",,,,Rind,20,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.12,0.14,14.58,56,,4.4,44,0.93,43,45,437,4,0.17,0.7,428,0,10.8,0.167,0.013,0.881,0.194,0,,0,0
11484,1100,"Squash, winter, acorn, cooked, boiled, mashed, without salt","SQUASH,WNTR,ACORN,CKD,BLD,MSHD,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.67,0.08,8.79,34,,2.6,26,0.56,26,27,263,3,0.11,0.4,817,0,6.5,0.1,0.008,0.531,0.117,0,,0,0
11485,1100,"Squash, winter, butternut, raw","SQUASH,WNTR,BUTTERNUT,RAW",,,,"Seeds, rind and trimmings",16,Cucurbita moschata,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1,0.1,11.69,45,2.2,2,48,0.7,34,33,352,4,0.15,0.5,10630,0,21,0.1,0.02,1.2,0.154,0,1.1,0,0
11486,1100,"Squash, winter, butternut, cooked, baked, without salt","SQUASH,WNTR,BUTTERNUT,CKD,BKD,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.9,0.09,10.49,40,1.97,3.2,41,0.6,29,27,284,4,0.13,0.5,11155,0,15.1,0.072,0.017,0.969,0.124,0,1,0,0
11487,1100,"Squash, winter, butternut, frozen, unprepared","SQUASH,WNTR,BUTTERNUT,FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.76,0.1,14.41,57,2.83,1.3,29,0.88,14,22,212,2,0.17,0.7,4790,0,6.2,0.09,0.059,0.74,0.11,0,1.4,0,0
11488,1100,"Squash, winter, butternut, frozen, cooked, boiled, without salt","SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.23,0.07,10.05,39,,,19,0.58,9,14,133,2,0.12,0.5,3339,0,3.5,0.05,0.039,0.464,0.069,0,,0,0
11489,1100,"Squash, winter, hubbard, raw","SQUASH,WINTER,HUBBARD,RAW",,,,"Seeds, rind, trimmings and cutting loss",36,Cucurbita maxima,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2,0.5,8.7,40,3.95,3.9,14,0.4,19,21,320,7,0.13,0.5,1367,0,11,0.07,0.04,0.5,0.154,0,1.3,0,0
11490,1100,"Squash, winter, hubbard, baked, without salt","SQUASH,WNTR,HUBBARD,BKD,WO/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.48,0.62,10.81,50,4.9,4.9,17,0.47,22,23,358,8,0.15,0.6,6705,0,9.5,0.074,0.047,0.558,0.172,0,1.6,0,0
11491,1100,"Squash, winter, hubbard, cooked, boiled, mashed, without salt","SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.48,0.37,6.46,30,2.93,2.9,10,0.28,13,14,214,5,0.1,0.3,4005,0,6.5,0.042,0.028,0.334,0.103,0,1,0,0
11492,1100,"Squash, winter, spaghetti, raw","SQUASH,WNTR,SPAGHETTI,RAW",,,,Rind and seeds,29,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.64,0.57,6.91,31,2.76,1.5,23,0.31,12,12,108,17,0.19,0.3,120,0,2.1,0.037,0.018,0.95,0.101,0,0.9,0,0
11493,1100,"Squash, winter, spaghetti, cooked, boiled, drained, or baked, without salt","SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.66,0.26,6.46,27,2.53,1.4,21,0.34,11,14,117,18,0.2,0.3,110,0,3.5,0.038,0.022,0.81,0.099,0,0.8,0,0
11495,1100,"Succotash, (corn and limas), raw","SUCCOTASH,(CORN&LIMAS),RAW",,,,,0,,6.25,2.72,8.37,3.71,Vegetables and Vegetable Products,5.03,1.02,19.59,99,,3.8,18,1.83,48,113,369,4,0.61,0.6,292,0,15.1,0.208,0.082,1.587,0.13,0,,0,0
11496,1100,"Succotash, (corn and limas), cooked, boiled, drained, without salt","SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.72,8.37,3.71,Vegetables and Vegetable Products,5.07,0.8,24.38,115,,4.5,17,1.52,53,117,410,17,0.63,0.6,294,0,8.2,0.168,0.096,1.327,0.116,0,,0,0
11497,1100,"Succotash, (corn and limas), canned, with cream style corn","SUCCOTASH,(CORN&LIMAS),CND,W/CRM STYLE CORN",,,,,0,,6.25,2.72,8.37,3.71,Vegetables and Vegetable Products,2.64,0.54,17.61,77,,3,11,0.55,1,59,183,245,0.43,0.6,141,0,6.4,0.027,0.065,0.607,0.128,0,,0,0
11499,1100,"Succotash, (corn and limas), canned, with whole kernel corn, solids and liquids","SUCCOTASH,(CORN&LIMAS),CND,W/WHL KERNEL CORN,SOL&LIQUIDS",,,,,0,,6.25,2.72,8.37,3.71,Vegetables and Vegetable Products,2.6,0.49,13.98,63,,2.6,11,0.53,19,55,163,221,0.5,0.6,146,0,4.6,0.029,0.058,0.64,0.049,0,,0,0
11501,1100,"Succotash, (corn and limas), frozen, unprepared","SUCCOTASH,(CORN&LIMAS),FRZ,UNPREP",,,,,0,,6.25,2.72,8.37,3.71,Vegetables and Vegetable Products,4.31,0.89,19.94,93,,4,16,0.94,24,78,295,45,0.47,0.6,257,0,8.5,0.087,0.072,1.375,0.1,0,,0,0
11502,1100,"Succotash, (corn and limas), frozen, cooked, boiled, drained, without salt","SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.72,8.37,3.71,Vegetables and Vegetable Products,4.31,0.89,19.95,93,2.21,4.1,15,0.89,23,70,265,45,0.45,0.6,194,0,5.9,0.074,0.068,1.306,0.095,0,2.7,0,0
11503,1100,"Swamp cabbage, (skunk cabbage), raw","SWAMP CABBAGE,(SKUNK CABBAGE),RAW",,,,Tough stems,23,Ipomoea aquatica,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.6,0.2,3.14,19,,2.1,77,1.67,71,39,312,113,0.18,0.9,6300,0,55,0.03,0.1,0.9,0.096,0,,0,0
11504,1100,"Swamp cabbage (skunk cabbage), cooked, boiled, drained, without salt","SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,WO/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.08,0.24,3.7,20,,1.9,54,1.32,30,42,284,122,0.16,0.9,5200,0,16,0.05,0.08,0.5,0.081,0,,0,0
11505,1100,"Sweet potato leaves, raw","SWEET POTATO LEAVES,RAW",Sweetpotato leaves,,,Tough stems and bruised leaves,6,Ipomoea batatas,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.49,0.51,8.82,42,,5.3,78,0.97,70,81,508,6,,0.9,3778,0,11,0.156,0.345,1.13,0.19,0,302.2,0,0
11506,1100,"Sweet potato leaves, cooked, steamed, without salt","SWEET POTATO LEAVES,CKD,STMD,WO/ SALT",Sweetpotato leaves,,Y,,0,,,,,,Vegetables and Vegetable Products,2.18,0.34,7.38,41,5.48,1.9,33,0.63,48,40,312,7,0.26,0.9,2939,0,1.5,0.112,0.267,1.003,0.16,0,108.6,0,0
11507,1100,"Sweet potato, raw, unprepared","SWEET POTATO,RAW,UNPREP","Sweetpotato, Includes USDA commodity food A230",,Y,Parings and trimmings,28,Ipomoea batatas,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.57,0.05,20.12,86,4.18,3,30,0.61,25,47,337,55,0.3,0.6,14187,0,2.4,0.078,0.061,0.557,0.209,0,1.8,0,0
11508,1100,"Sweet potato, cooked, baked in skin, flesh, without salt","SWEET POTATO,CKD,BKD IN SKN,FLESH,WO/ SALT",Sweetpotato,,Y,Skin,22,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.01,0.15,20.71,90,6.48,3.3,38,0.69,27,54,475,36,0.32,0.2,19218,0,19.6,0.107,0.106,1.487,0.286,0,2.3,0,0
11510,1100,"Sweet potato, cooked, boiled, without skin","SWEET POTATO,CKD,BLD,WO/ SKN",Sweetpotato,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.37,0.14,17.72,76,5.74,2.5,27,0.72,18,32,230,27,0.2,0.2,15740,0,12.8,0.056,0.047,0.538,0.165,0,2.1,0,0
11512,1100,"Sweet potato, canned, vacuum pack","SWEETPOTATO,CND,VACUUM PK",Sweetpotato,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.65,0.2,21.12,91,5,1.8,22,0.89,22,49,312,53,0.18,0.7,7983,0,26.4,0.037,0.057,0.741,0.19,0,2.2,0,0
11514,1100,"Sweet potato, canned, mashed","SWEET POTATO,CND,MSHD",Sweetpotato,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.98,0.2,23.19,101,5.45,1.7,30,1.33,24,52,210,75,0.21,0.8,8699,0,5.2,0.027,0.09,0.955,0.235,0,2.4,0,0
11516,1100,"Sweet potato, frozen, unprepared","SWEET POTATO,FRZ,UNPREP",Sweetpotato,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.71,0.18,22.22,96,,1.7,37,0.53,22,45,365,6,0.31,0.6,10367,0,13.3,0.067,0.051,0.597,0.177,0,,0,0
11517,1100,"Sweet potato, frozen, cooked, baked, without salt","SWEET POTATO,FRZ,CKD,BKD,WO/ SALT",Sweetpotato,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.71,0.12,23.4,100,9.17,1.8,35,0.54,21,44,377,8,0.3,0.6,20870,0,9.1,0.066,0.056,0.555,0.186,0,2.5,0,0
11518,1100,"Taro, raw","TARO,RAW",,,Y,Ends and skin,14,Colocasia esculenta,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.5,0.2,26.46,112,0.4,4.1,43,0.55,33,84,591,11,0.23,0.7,76,0,4.5,0.095,0.025,0.6,0.283,0,1,0,0
11519,1100,"Taro, cooked, without salt","TARO,COOKED,WITHOUT SALT",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,0.52,0.11,34.6,142,0.49,5.1,18,0.72,30,76,484,15,0.27,0.9,84,0,5,0.107,0.028,0.51,0.331,0,1.2,0,0
11520,1100,"Taro leaves, raw","TARO LEAVES,RAW",,,Y,"Stem, midrib and tough leaves",40,Colocasia esculenta,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.98,0.74,6.7,42,3.01,3.7,107,2.25,45,60,648,3,0.41,0.9,4825,0,52,0.209,0.456,1.513,0.146,0,108.6,0,0
11521,1100,"Taro leaves, cooked, steamed, without salt","TARO LEAVES,CKD,STMD,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.72,0.41,4.02,24,,2,86,1.18,20,27,460,2,0.21,0.9,4238,0,35.5,0.139,0.38,1.267,0.072,0,,0,0
11522,1100,"Taro shoots, raw","TARO SHOOTS,RAW",,,,Ends,12,Colocasia esculenta,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.92,0.09,2.32,11,,,12,0.6,8,28,332,1,0.51,0.9,50,0,21,0.04,0.05,0.8,0.111,0,,0,0
11523,1100,"Taro shoots, cooked, without salt","TARO SHOOTS,CKD,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.73,0.08,3.2,14,,,14,0.41,8,26,344,2,0.54,1,51,0,18.9,0.038,0.053,0.81,0.112,0,,0,0
11525,1100,"Taro, tahitian, raw","TARO,TAHITIAN,RAW",,,,,,Colocasia esculenta,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.79,0.97,6.91,44,,,129,1.3,47,45,606,50,0.09,0.7,2045,0,96,0.062,0.244,0.995,0.116,0,,0,0
11526,1100,"Taro, tahitian, cooked, without salt","TARO,TAHITIAN,CKD,WO/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,4.16,0.68,6.85,44,,,149,1.56,51,67,623,54,0.1,0.8,1764,0,38,0.044,0.198,0.48,0.117,0,,0,0
11527,1100,"Tomatoes, green, raw","TOMATOES,GREEN,RAW",,,Y,Core and stem ends,9,Solanum lycopersicum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.2,0.2,5.1,23,4,1.1,13,0.51,10,28,204,13,0.07,0.4,642,0,23.4,0.06,0.04,0.5,0.081,0,10.1,0,0
11529,1100,"Tomatoes, red, ripe, raw, year round average","TOMATOES,RED,RIPE,RAW,YEAR RND AVERAGE","Includes USDA commodity food A238, A233",,Y,Core and stem ends,9,Solanum lycopersicum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.88,0.2,3.89,18,2.63,1.2,10,0.27,11,24,237,5,0.17,0,833,0,13.7,0.037,0.019,0.594,0.08,0,7.9,0,0
11530,1100,"Tomatoes, red, ripe, cooked","TOMATOES,RED,RIPE,CKD",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.95,0.11,4.01,18,2.49,0.7,11,0.68,9,28,218,11,0.14,0.5,489,0,22.8,0.036,0.022,0.532,0.079,0,2.8,0,0
11531,1100,"Tomatoes, red, ripe, canned, packed in tomato juice","TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.79,0.25,3.47,16,2.55,1.9,33,0.57,10,17,191,115,0.12,0.7,408,0,12.6,0.575,0.055,0.712,0.111,0,2.6,0,0
11533,1100,"Tomatoes, red, ripe, canned, stewed","TOMATOES,RED,RIPE,CND,STWD",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.91,0.19,6.19,26,3.52,1,34,1.33,12,20,207,221,0.17,0.6,172,0,7.9,0.046,0.035,0.714,0.017,0,2.4,0,0
11537,1100,"Tomatoes, red, ripe, canned, with green chilies","TOMATOES,RED,RIPE,CND,W/GRN CHILIES",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.69,0.08,3.62,15,,,20,0.26,11,14,107,401,0.13,0.4,390,0,6.2,0.034,0.019,0.64,0.103,0,,0,0
11540,1100,"Tomato juice, canned, with salt added","TOMATO JUC,CND,W/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.85,0.29,3.53,17,2.58,0.4,10,0.39,11,19,217,253,0.11,0.5,450,0,70.1,0.1,0.078,0.673,0.07,0,2.3,0,0
11546,1100,"Tomato products, canned, paste, without salt added","TOMATO PRODUCTS,CND,PASTE,WO/ SALT ADDED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.32,0.47,18.91,82,12.18,4.1,36,2.98,42,83,1014,59,0.63,5.3,1525,0,21.9,0.06,0.153,3.076,0.216,0,11.4,0,0
11547,1100,"Tomato products, canned, puree, without salt added","TOMATO PRODUCTS,CND,PUREE,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.65,0.21,8.98,38,4.83,1.9,18,1.78,23,40,439,28,0.36,0.7,510,0,10.6,0.025,0.08,1.466,0.126,0,3.4,0,0
11548,1100,Tomato powder,TOMATO POWDER,,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,12.91,0.44,74.68,302,43.9,16.5,166,4.56,178,295,1927,134,1.71,5.3,17247,0,116.7,0.913,0.761,9.133,0.457,0,48.8,0,0
11549,1100,"Tomato products, canned, sauce","TOMATO PRODUCTS,CND,SAU",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.2,0.3,5.31,24,3.56,1.5,14,0.96,15,27,297,474,0.22,0.6,435,0,7,0.024,0.065,0.991,0.098,0,2.8,0,0
11551,1100,"Tomato products, canned, sauce, with mushrooms","TOMATO PRODUCTS,CND,SAU,W/MUSHROOMS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.45,0.13,8.43,35,5.77,1.5,13,0.89,19,32,380,452,0.21,0.2,955,,12.4,0.072,0.108,1.265,0.133,0,3.8,0,0
11553,1100,"Tomato products, canned, sauce, with onions","TOMATO PRODUCTS,CND,SAU,W/ONIONS",,,,,0,,6.25,2.6,8.4,3.7,Vegetables and Vegetable Products,1.56,0.19,9.94,42,,1.8,17,0.93,19,39,413,551,0.23,0.8,850,0,12.7,0.073,0.133,1.242,0.267,0,,0,0
11555,1100,"Tomato products, canned, sauce, with herbs and cheese","TOMATO PRODUCTS,CND,SAU,W/HERBS&CHS",,,,,0,,6.28,3,8.8,3.5,Vegetables and Vegetable Products,2.13,1.93,10.24,59,,2.2,37,0.87,19,54,356,543,0.36,0.9,987,0,10,0.076,0.124,1.209,0.019,,,0,3
11557,1100,"Tomato products, canned, sauce, with onions, green peppers, and celery","TOMATO PRODUCTS,CND,SAU,W/ONIONS,GRN PEPPERS,&CELERY",,,Y,,0,,6.25,2.4,8.4,3.7,Vegetables and Vegetable Products,0.94,0.74,8.77,41,7.36,1.4,13,0.76,21,38,398,368,0.28,0.6,810,0,13.2,0.067,0.12,1.095,0.194,0,3.7,0,0
11559,1100,"Tomato products, canned, sauce, with tomato tidbits","TOMATO PRODUCTS,CND,SAU,W/TOMATO TIDBITS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.32,0.39,7.09,32,,1.4,10,0.68,20,42,373,15,0.19,0.6,801,0,21.5,0.073,0.097,1.183,0.155,0,,0,0
11563,1100,"Tree fern, cooked, without salt","TREE FERN,CKD,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.29,0.07,10.98,40,,3.7,8,0.16,5,4,5,5,0.31,0.9,200,0,30,0,0.3,3.5,0.179,0,,0,0
11564,1100,"Turnips, raw","TURNIPS,RAW",,,Y,Parings,19,Brassica rapa (Rapifera Group),6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.9,0.1,6.43,28,3.8,1.8,30,0.3,11,27,191,67,0.27,0.7,0,0,21,0.04,0.03,0.4,0.09,0,0.1,0,0
11565,1100,"Turnips, cooked, boiled, drained, without salt","TURNIPS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.71,0.08,5.06,22,2.99,2,33,0.18,9,26,177,16,0.12,0.2,0,0,11.6,0.027,0.023,0.299,0.067,0,0.1,0,0
11566,1100,"Turnips, frozen, unprepared","TURNIPS,FROZEN,UNPREPARED",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.04,0.16,2.94,16,,1.8,23,0.7,10,20,137,25,0.14,0.4,26,0,4.4,0.03,0.02,0.4,0.048,0,,0,0
11567,1100,"Turnips, frozen, cooked, boiled, drained, without salt","TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.53,0.24,4.35,23,2.35,2,32,0.98,14,26,182,36,0.2,0.6,0,0,3.9,0.035,0.028,0.56,0.067,0,0.1,0,0
11568,1100,"Turnip greens, raw","TURNIP GREENS,RAW",,,,"Root crown, tough stems and discarded leaves",30,Brassica rapa (Rapifera Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.5,0.3,7.13,32,0.81,3.2,190,1.1,31,42,296,40,0.19,1.2,11587,0,60,0.07,0.1,0.6,0.263,0,251,0,0
11569,1100,"Turnip greens, cooked, boiled, drained, without salt","TURNIP GRNS,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.14,0.23,4.36,20,0.53,3.5,137,0.8,22,29,203,29,0.14,0.9,7625,0,27.4,0.045,0.072,0.411,0.18,0,367.6,0,0
11570,1100,"Turnip greens, canned, solids and liquids","TURNIP GRNS,CND,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.36,0.3,2.42,14,,1.7,118,1.51,20,21,141,277,0.23,0.7,3586,0,15.5,0.012,0.063,0.362,0.037,0,,0,0
11574,1100,"Turnip greens, frozen, unprepared","TURNIP GRNS,FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.47,0.31,3.67,22,,2.5,118,1.51,27,27,184,12,0.17,0.9,6184,0,26.8,0.044,0.091,0.383,0.1,0,,0,0
11575,1100,"Turnip greens, frozen, cooked, boiled, drained, without salt","TURNIP GRNS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.35,0.42,4.98,29,0.75,3.4,152,1.94,26,34,224,15,0.41,1.2,10765,0,21.8,0.054,0.074,0.468,0.067,0,518.9,0,0
11576,1100,"Turnip greens and turnips, frozen, unprepared","TURNIP GRNS&TURNIPS,FRZ,UNPREP",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,2.46,0.19,3.39,21,,2.4,114,1.63,18,24,82,18,0.16,0.9,6108,0,25.8,0.044,0.088,0.388,0.074,0,,0,0
11577,1100,"Turnip greens and turnips, frozen, cooked, boiled, drained, without salt","TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,,,,Vegetables and Vegetable Products,2.99,0.38,4.85,35,1.07,3.1,128,1.75,24,32,216,19,0.37,1.1,8612,0,18.2,0.05,0.065,0.486,0.067,0,415.1,0,0
11578,1100,"Vegetable juice cocktail, canned","VEGETABLE JUC COCKTAIL,CND",,,Y,,0,,6.25,,,,Vegetables and Vegetable Products,0.93,0.31,3.87,22,2.84,0.5,14,0.28,11,19,185,169,0.12,0.2,706,0,54.3,0.05,0.033,0.722,0.071,0,6.1,0,0
11579,1100,"Vegetables, mixed, canned, solids and liquids","VEGETABLES,MXD,CND,SOL&LIQUIDS",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,1.42,0.25,7.13,36,,3.8,21,0.65,15,37,138,224,0.51,0.2,5081,0,3.8,0.034,0.04,0.482,0.077,0,,0,0
11581,1100,"Vegetables, mixed, canned, drained solids","VEGETABLES,MXD,CND,DRND SOL",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.59,0.25,9.26,49,2.41,3,27,1.05,16,42,291,214,0.41,0.3,11651,0,5,0.046,0.048,0.577,0.079,0,18.2,0,0
11583,1100,"Vegetables, mixed, frozen, unprepared","VEGETABLES,MXD,FRZ,UNPREP",,,,,0,,6.25,,,,Vegetables and Vegetable Products,3.33,0.52,13.47,72,,4,25,0.95,24,59,212,47,0.45,0.4,5078,0,10.4,0.122,0.085,1.252,0.096,0,,0,0
11584,1100,"Vegetables, mixed, frozen, cooked, boiled, drained, without salt","VEGETABLES,MXD,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,,,,Vegetables and Vegetable Products,2.86,0.15,13.09,65,3.12,4.4,25,0.82,22,51,169,35,0.49,0.3,4277,0,3.2,0.071,0.12,0.851,0.074,0,23.5,0,0
11585,1100,"Vegetable juice cocktail, low sodium, canned","VEGETABLE JUC COCKTAIL,LO NA,CND",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.91,0.32,3.83,19,2.78,0.5,15,0.29,12,19,204,55,0.12,0.2,706,0,54.3,0.05,0.033,0.722,0.071,0,6.1,,0
11587,1100,"Vinespinach, (basella), raw","VINESPINACH,(BASELLA),RAW",,,,,0,Basella alba,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.3,3.4,19,,,109,1.2,65,52,510,24,0.43,0.8,8000,0,102,0.05,0.155,0.5,0.24,0,,0,0
11588,1100,"Waterchestnuts, chinese, (matai), raw","WATERCHESTNUTS,CHINESE,(MATAI),RAW",,,Y,Skin,23,Eleocharis dulcis,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.4,0.1,23.94,97,4.8,3,11,0.06,22,63,584,14,0.5,0.7,0,0,4,0.14,0.2,1,0.328,0,0.3,0,0
11590,1100,"Waterchestnuts, chinese, canned, solids and liquids","WATERCHESTNUTS,CHINESE,CND,SOL&LIQUIDS",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.88,0.06,12.3,50,2.46,2.5,4,0.87,5,19,118,8,0.38,0.7,0,0,1.3,0.011,0.024,0.36,0.159,0,0.2,0,0
11591,1100,"Watercress, raw","WATERCRESS,RAW",,,Y,Tough stems and ends,8,Nasturtium officinale,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.3,0.1,1.29,11,0.2,0.5,120,0.2,21,60,330,41,0.11,0.9,3191,0,43,0.09,0.12,0.2,0.129,0,250,0,0
11593,1100,"Waxgourd, (chinese preserving melon), raw","WAXGOURD,(CHINESE PRESERVING MELON),RAW",,,,"Stem, center and skin",29,Benincasa hispida,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.4,0.2,3,13,,2.9,19,0.4,10,19,6,111,0.61,0.2,0,0,13,0.04,0.11,0.4,0.035,0,,0,0
11594,1100,"Waxgourd, (chinese preserving melon), cooked, boiled, drained, without salt","WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.4,0.2,3.04,14,1.18,1,18,0.38,10,17,5,107,0.59,0.2,0,0,10.5,0.034,0.001,0.384,0.032,0,2.8,0,0
11595,1100,"Winged beans, immature seeds, raw","WINGED BNS,IMMAT SEEDS,RAW",,,,Ends,2,Psophocarpus tetragonolobus,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.95,0.87,4.31,49,,,84,1.5,34,37,223,4,0.39,1.5,128,0,18.3,0.14,0.1,0.9,0.113,0,,0,0
11596,1100,"Winged beans, immature seeds, cooked, boiled, drained, without salt","WINGED BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.31,0.66,3.21,38,,,61,1.09,30,25,274,4,0.28,1.1,88,0,9.8,0.086,0.072,0.652,0.082,0,,0,0
11597,1100,"Winged bean leaves, raw","WINGED BEAN LEAVES,RAW",,,,,,Psophocarpus tetragonolobus,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.85,1.1,14.1,74,,,224,4,8,63,176,9,1.28,0.9,8090,0,45,0.833,0.602,3.472,0.232,0,,0,0
11599,1100,"Winged bean tuber, raw","WINGED BEAN TUBER,RAW",,,,,,Psophocarpus tetragonolobus,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,11.6,0.9,28.1,148,,,30,2,24,45,586,35,1.39,0.7,0,0,0,0.379,0.149,1.64,0.075,0,,0,0
11601,1100,"Yam, raw","YAM,RAW",,,Y,Skin,14,Dioscorea spp.,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.53,0.17,27.88,118,0.5,4.1,17,0.54,21,55,816,9,0.24,0.7,138,0,17.1,0.112,0.032,0.552,0.293,0,2.3,0,0
11602,1100,"Yam, cooked, boiled, drained, or baked, without salt","YAM,CKD,BLD,DRND,OR BKD,WO/SALT",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.49,0.14,27.48,116,0.49,3.9,14,0.52,18,49,670,8,0.2,0.7,122,0,12.1,0.095,0.028,0.552,0.228,0,2.3,0,0
11603,1100,"Yambean (jicama), raw","YAMBEAN (JICAMA),RAW",,,Y,Ends and skin,8,Pachyrhizus spp.,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,0.72,0.09,8.82,38,1.8,4.9,12,0.6,12,18,150,4,0.16,0.7,21,0,20.2,0.02,0.029,0.2,0.042,0,0.3,0,0
11604,1100,"Yambean (jicama), cooked, boiled, drained, without salt","YAMBEAN (JICAMA),CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,0.72,0.09,8.82,38,,,11,0.57,11,16,135,4,0.15,0.7,19,0,14.1,0.017,0.028,0.19,0.04,0,,0,0
11605,1100,"Beets, harvard, canned, solids and liquids","BEETS,HARVARD,CND,SOL&LIQUIDS",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.84,0.06,18.18,73,,2.5,11,0.36,19,17,164,162,0.23,1.1,11,0,2.4,0.01,0.05,0.084,0.055,0,,0,0
11609,1100,"Beets, pickled, canned, solids and liquids","BEETS,PICKLED,CND,SOL&LIQUIDS",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.8,0.08,16.28,65,11.05,0.8,11,0.41,15,17,115,149,0.26,1,49,0,2.3,0.01,0.048,0.251,0.05,0,0.3,0,0
11613,1100,"Borage, raw","BORAGE,RAW",,,,Tough leaves and stems,20,Borago officinalis,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.7,3.06,21,,,93,3.3,52,53,470,80,0.2,0.9,4200,0,35,0.06,0.15,0.9,0.084,0,,0,0
11614,1100,"Borage, cooked, boiled, drained, without salt","BORAGE,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.09,0.81,3.55,25,,,102,3.64,57,55,491,88,0.22,0.9,4385,0,32.5,0.059,0.165,0.94,0.088,0,,0,0
11615,1100,"Chives, freeze-dried","CHIVES,FREEZE-DRIED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,21.2,3.5,64.29,311,,26.2,813,20,640,518,2960,70,5.12,9.4,68300,0,660,0.9,1.5,5.9,1.996,0,,0,0
11616,1100,"Dock, raw","DOCK,RAW",,,,Stalks,30,Rumex spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2,0.7,3.2,22,,2.9,44,2.4,103,63,390,4,0.2,0.9,4000,0,48,0.04,0.1,0.5,0.122,0,,0,0
11617,1100,"Dock, cooked, boiled, drained, without salt","DOCK,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.83,0.64,2.93,20,,2.6,38,2.08,89,52,321,3,0.17,0.9,3474,0,26.3,0.034,0.086,0.411,0.1,0,,0,0
11618,1100,"Eppaw, raw","EPPAW,RAW",,,,,,Perideridia oregana,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,4.6,1.8,31.68,150,,,110,1.15,32,165,340,12,1.15,0.9,0,0,13,0.11,0.12,0.3,0.176,0,,0,0
11620,1100,"Drumstick pods, raw","DRUMSTICK PODS,RAW",Horseradish tree pods,,,Hard outer covering and fibers,48,Moringa oleifera,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.1,0.2,8.53,37,,3.2,30,0.36,45,50,461,42,0.45,0.7,74,0,141,0.053,0.074,0.62,0.12,0,,0,0
11621,1100,"Drumstick pods, cooked, boiled, drained, without salt","DRUMSTICK PODS,CKD,BLD,DRND,WO/ SALT",Horseradish tree pods,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.09,0.19,8.18,36,,4.2,20,0.45,42,49,457,43,0.42,0.7,70,0,97,0.046,0.068,0.59,0.112,0,,0,0
11622,1100,"Kale, scotch, raw","KALE,SCOTCH,RAW",,,,"Stems, tough part of midribs",39,Brassica napus (Pabularia Group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.8,0.6,8.32,42,,1.7,205,3,88,62,450,70,0.37,0.9,3100,0,130,0.07,0.06,1.3,0.227,0,,0,0
11623,1100,"Kale, scotch, cooked, boiled, drained, without salt","KALE,SCOTCH,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.9,0.41,5.63,28,,1.2,132,1.93,57,38,274,45,0.24,0.9,1994,0,52.8,0.04,0.039,0.792,0.139,0,,0,0
11624,1100,"Leeks, (bulb and lower-leaf portion), freeze-dried","LEEKS,(BULB&LOWER-LEAF PORTION),FREEZE-DRIED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,15.2,2.1,74.65,321,,10.4,360,7.6,161,346,2400,35,0.66,5.7,277,0,118,0.8,0.4,3.5,1.209,0,,0,0
11625,1100,"Parsley, freeze-dried","PARSLEY,FREEZE-DRIED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,31.3,5.2,42.38,271,,32.7,176,53.9,372,548,6300,391,6.11,32.3,63240,0,149,1.04,2.26,10.4,1.375,0,,0,0
11626,1100,"Beans, mung, mature seeds, sprouted, canned, drained solids","BEANS,MUNG,MATURE SEEDS,SPROUTED,CND,DRND SOL",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.4,0.06,2.14,12,0.7,0.8,14,0.43,9,32,27,42,0.28,0.6,8,0,0.3,0.03,0.07,0.22,0.032,0,13.4,0,0
11632,1100,"Peppers, jalapeno, canned, solids and liquids","PEPPERS,JALAPENO,CND,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.92,0.94,4.74,27,2.14,2.6,23,1.88,15,18,193,1671,0.34,0.4,1700,0,10,0.043,0.038,0.403,0.19,0,12.9,0,0
11634,1100,"Peppers, sweet, green, freeze-dried","PEPPERS,SWT,GRN,FREEZE-DRIED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,17.9,3,68.7,314,38.48,21.3,134,10.4,188,327,3170,193,2.41,3.7,5640,0,1900,1.2,1.2,7.4,2.223,0,118.6,0,0
11637,1100,"Radishes, white icicle, raw","RADISHES,WHITE ICICLE,RAW",,,,Parings,35,Raphanus sativus,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.1,0.1,2.63,14,,1.4,27,0.8,9,28,280,16,0.13,0.7,0,0,29,0.03,0.02,0.3,0.075,0,,0,0
11640,1100,"Shallots, freeze-dried","SHALLOTS,FREEZE-DRIED",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,12.3,0.5,80.7,348,38.16,15.7,183,6,104,296,1650,59,1.93,5.7,21,0,39,0.3,0.1,1,1.675,0,3.9,0,0
11641,1100,"Squash, summer, all varieties, raw","SQUASH,SMMR,ALL VAR,RAW",,,Y,Ends,5,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.21,0.18,3.35,16,2.2,1.1,15,0.35,17,38,262,2,0.29,0.2,200,0,17,0.048,0.142,0.487,0.218,0,3,0,0
11642,1100,"Squash, summer, all varieties, cooked, boiled, drained, without salt","SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.91,0.31,4.31,20,2.59,1.4,27,0.36,24,39,192,1,0.39,0.2,212,0,5.5,0.044,0.041,0.513,0.065,0,3.5,0,0
11643,1100,"Squash, winter, all varieties, raw","SQUASH,WNTR,ALL VAR,RAW",,,Y,"Seeds, rind and stem",29,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.95,0.13,8.59,34,2.2,1.5,28,0.58,14,23,350,4,0.21,0.4,1367,0,12.3,0.03,0.062,0.5,0.156,0,1.1,0,0
11644,1100,"Squash, winter, all varieties, cooked, baked, without salt","SQUASH,WNTR,ALL VAR,CKD,BKD,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.89,0.35,8.85,37,3.3,2.8,22,0.44,13,19,241,1,0.22,0.4,5223,0,9.6,0.016,0.067,0.495,0.161,0,4.4,0,0
11645,1100,"Sweet potato, canned, syrup pack, solids and liquids","SWEET POTATO,CND,SYRUP PK,SOL & LIQUIDS",Sweetpotato,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,0.98,0.2,20.93,89,15.4,2.5,15,0.8,13,27,185,29,0.19,0.7,7530,0,10.5,0.024,0.046,0.456,0.051,0,2.1,0,0
11647,1100,"Sweet potato, canned, syrup pack, drained solids","SWEET POTATO,CND,SYRUP PK,DRND SOL",Sweetpotato,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.28,0.32,25.36,108,5.74,3,17,0.95,12,25,193,39,0.16,0.8,9169,0,10.8,0.025,0.038,0.34,0.062,0,2.6,0,0
11649,1100,"Tomato products, canned, sauce, spanish style","TOMATO PRODUCTS,CND,SAU,SPANISH STYLE",,,,,0,,6.25,2.64,8.37,3.7,Vegetables and Vegetable Products,1.44,0.27,7.24,33,,1.4,17,3.48,19,48,369,472,0.34,0.6,985,0,8.6,0.074,0.062,1.292,0.177,0,,0,0
11653,1100,"Beans, pinto, mature seeds, sprouted, raw","BEANS,PINTO,MATURE SEEDS,SPROUTED,RAW",,,,,0,Phaseolus vulgaris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.25,0.9,11.6,62,,,43,1.97,53,94,307,153,0.5,0.6,2,0,21.7,0.23,0.175,2.28,0.171,0,,0,0
11654,1100,"Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, without salt","BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.86,0.32,4.1,22,,,15,0.66,18,30,98,51,0.17,0.6,1,0,6.1,0.067,0.059,0.725,0.054,0,,0,0
11655,1100,"Carrot juice, canned","CARROT JUICE,CANNED",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.95,0.15,9.28,40,3.91,0.8,24,0.46,14,42,292,66,0.18,0.6,19124,0,8.5,0.092,0.055,0.386,0.217,0,15.5,0,0
11656,1100,"Corn pudding, home prepared","CORN PUDD,HOME PREP",,,,,0,,,,,,Vegetables and Vegetable Products,4.42,5.04,16.97,131,6.59,1.2,39,0.53,15,90,176,282,0.48,6.1,296,22,3.7,0.069,0.154,1.033,0.127,0.31,0.5,0,72
11657,1100,"Potatoes, mashed, home-prepared, whole milk added","POTATOES,MSHD,HOME-PREPARED,WHL MILK ADDED",,,Y,,0,,,,,,Vegetables and Vegetable Products,1.91,0.57,17.57,83,1.48,1.5,24,0.27,18,46,296,302,0.28,0.8,27,8,6.2,0.089,0.041,1.118,0.232,0.07,1.8,0,2
11658,1100,Spinach souffle,SPINACH SOUFFLE,,,,,0,,,,,,Vegetables and Vegetable Products,7.89,12.95,5.9,172,1.85,0.7,165,1.19,30,139,231,566,0.85,11.1,2891,31,7.3,0.082,0.263,0.479,0.098,0.4,126.5,6,118
11659,1100,"Sweet potato, cooked, candied, home-prepared","SWEET POTATO,CKD,CANDIED,HOME-PREPARED",Sweetpotato,,Y,,0,,0,,,,Vegetables and Vegetable Products,0.89,3.54,32.12,164,27.25,2.1,26,0.79,13,25,178,119,0.17,0.8,6524,2,9,0.021,0.041,0.406,0.05,0.01,2.1,0,9
11660,1100,"Tomatoes, red, ripe, cooked, stewed","TOMATOES,RED,RIPE,CKD,STWD",,,,,0,,6.25,,,,Vegetables and Vegetable Products,1.96,2.68,13.05,79,,1.7,26,1.06,15,38,247,455,0.18,1.2,666,0,18.2,0.108,0.08,1.11,0.086,0,,0,0
11663,1100,"Seaweed, agar, dried","SEAWEED,AGAR,DRIED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,6.21,0.3,80.88,306,2.97,7.7,625,21.4,770,52,1125,102,5.8,7.4,0,0,0,0.01,0.222,0.202,0.303,0,24.4,0,0
11666,1100,"Seaweed, spirulina, raw","SEAWEED,SPIRULINA,RAW",,,,,0,Spirulina spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.92,0.39,2.42,26,0.3,0.4,12,2.79,19,11,127,98,0.2,0.7,56,0,0.9,0.222,0.342,1.196,0.034,0,2.5,0,0
11667,1100,"Seaweed, spirulina, dried","SEAWEED,SPIRULINA,DRIED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,57.47,7.72,23.9,290,3.1,3.6,120,28.5,195,118,1363,1048,2,7.2,570,0,10.1,2.38,3.67,12.82,0.364,0,25.5,0,0
11669,1100,"Seaweed, wakame, raw","SEAWEED,WAKAME,RAW",,,Y,,0,Undaria spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.03,0.64,9.14,45,0.65,0.5,150,2.18,107,80,50,872,0.38,0.7,360,0,3,0.06,0.23,1.6,0.002,0,5.3,0,0
11670,1100,"Peppers, hot chili, green, raw","PEPPERS,HOT CHILI,GRN,RAW",,,Y,"Stem ends, seeds and core",27,Capsicum frutescens,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2,0.2,9.46,40,5.1,1.5,18,1.2,25,46,340,7,0.3,0.5,1179,0,242.5,0.09,0.09,0.95,0.278,0,14.3,0,0
11671,1100,"Potatoes, o'brien, home-prepared","POTATOES,O'BRIEN,HOME-PREPARED",,,,,0,,6.25,2.7,8.4,4,Vegetables and Vegetable Products,2.35,1.28,15.47,81,,,36,0.47,18,50,266,217,0.3,1.2,481,0,16.7,0.075,0.056,1.008,0.213,0,,0,4
11672,1100,Potato pancakes,POTATO PANCAKES,,,,,0,,,,,,Vegetables and Vegetable Products,6.08,14.76,27.81,268,1.79,3.3,32,1.67,36,128,622,764,0.7,8.9,113,11,27.6,0.158,0.173,1.672,0.448,0.29,2.7,6,95
11674,1100,"Potatoes, baked, flesh and skin, without salt","POTATOES,BKD,FLESH & SKN,WO/ SALT",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.5,0.13,21.15,93,1.18,2.2,15,1.08,28,70,535,10,0.36,0.4,10,0,9.6,0.064,0.048,1.41,0.311,0,2,0,0
11675,1100,"Potatoes, microwaved, cooked in skin, flesh and skin, without salt","POTATOES,MICROWAVED,CKD IN SKN,FLESH&SKN,WO/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.44,0.1,24.24,105,,2.3,11,1.24,27,105,447,8,0.36,0.4,0,0,15.1,0.12,0.032,1.714,0.344,0,,0,0
11676,1100,"Radish seeds, sprouted, raw","RADISH SEEDS,SPROUTED,RAW",,,,,0,Raphanus sativus,6.25,2.44,8.37,3.84,Vegetables and Vegetable Products,3.81,2.53,3.6,43,,,51,0.86,44,113,86,6,0.56,0.6,391,0,28.9,0.102,0.103,2.853,0.285,0,,0,0
11677,1100,"Shallots, raw","SHALLOTS,RAW",,,,Skins,12,Allium ascalonicum,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,2.5,0.1,16.8,72,7.87,3.2,37,1.2,21,60,334,12,0.4,1.2,4,0,8,0.06,0.02,0.2,0.345,0,0.8,0,0
11683,1100,"Carrot, dehydrated","CARROT,DEHYDRATED",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,8.1,1.49,79.57,341,38.82,23.6,212,3.93,118,346,2540,275,1.57,8.6,68466,0,14.6,0.534,0.417,6.567,1.04,0,108,0,0
11693,1100,"Tomatoes, crushed, canned","TOMATOES,CRUSHED,CANNED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.64,0.28,7.29,32,4.4,1.9,34,1.3,20,32,293,186,0.27,0.6,215,0,9.2,0.075,0.052,1.222,0.15,0,5.3,0,0
11695,1100,"Tomatoes, orange, raw","TOMATOES,ORANGE,RAW",,,,Core and stem ends,9,Solanum lycopersicum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.16,0.19,3.18,16,,0.9,5,0.47,8,29,212,42,0.14,0.4,1496,0,16,0.046,0.034,0.593,0.06,0,,0,0
11696,1100,"Tomatoes, yellow, raw","TOMATOES,YELLOW,RAW",,,,Core and stem ends,9,Solanum lycopersicum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.98,0.26,2.98,15,,0.7,11,0.49,12,36,258,23,0.28,0.4,0,0,9,0.041,0.047,1.179,0.056,0,,0,0
11697,1100,"Arrowroot, raw","ARROWROOT,RAW",,,,Peel,15,Maranta arundinacea,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,4.24,0.2,13.39,65,,1.3,6,2.22,25,98,454,26,0.63,0.7,19,0,1.9,0.143,0.059,1.693,0.266,0,,0,0
11698,1100,"Chrysanthemum leaves, raw","CHRYSANTHEMUM LEAVES,RAW",,,,,0,Chrysanthemum coronarium,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.36,0.56,3.01,24,,3,117,2.3,32,54,567,118,0.71,0.3,1870,0,1.4,0.13,0.144,0.531,0.176,0,,0,0
11700,1100,"Amaranth leaves, cooked, boiled, drained, with salt","AMARANTH LEAVES,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.11,0.18,4.11,21,,,209,2.26,55,72,641,257,0.88,0.9,2770,0,41.1,0.02,0.134,0.559,0.177,0,,0,0
11701,1100,"Arrowhead, cooked, boiled, drained, with salt","ARROWHEAD,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,4.49,0.1,16.14,78,,,7,1.21,49,197,881,254,0.22,0.6,0,0,0.3,0.144,0.06,1.16,0.206,0,,0,0
11702,1100,"Artichokes, (globe or french), cooked, boiled, drained, with salt","ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,W/SALT",,,,Stems and inedible parts of bracts and flower,60,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.89,0.34,11.39,51,0.99,5.7,21,0.61,42,73,286,296,0.4,0.2,13,0,7.4,0.05,0.089,1.11,0.081,0,14.8,0,0
11703,1100,"Artichokes, (globe or french), frozen, cooked, boiled, drained, with salt","ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.11,0.5,9.18,45,0.84,4.6,21,0.56,31,61,264,289,0.36,0.2,11,0,5,0.062,0.158,0.915,0.087,0,12.6,0,0
11705,1100,"Asparagus, cooked, boiled, drained, with salt","ASPARAGUS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.4,0.22,4.11,22,1.3,2,23,0.91,14,54,224,240,0.6,6.1,1006,0,7.7,0.162,0.139,1.084,0.079,0,50.6,0,0
11707,1100,"Asparagus, canned, no salt added, solids and liquids","ASPARAGUS,CND,NO SALT,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.18,2.48,15,1,1,15,0.6,9,38,172,26,0.47,1.6,776,0,16.5,0.054,0.089,0.851,0.098,0,39,0,0
11709,1100,"Asparagus, frozen, cooked, boiled, drained, with salt","ASPARAGUS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.95,0.42,1.92,18,0.32,1.6,18,0.56,10,49,172,240,0.41,3.9,806,0,24.4,0.065,0.103,1.038,0.02,0,80,0,0
11710,1100,"Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, with salt","BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.6,0.2,6.16,32,1.04,1.9,42,1.02,94,77,602,249,0.3,0.9,2416,0,55.6,0.147,0.282,0.995,0.76,0,163.1,0,0
11711,1100,"Balsam-pear (bitter gourd), pods, cooked, boiled, drained, with salt","BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.84,0.18,4.32,19,1.95,2,9,0.38,16,36,319,242,0.77,0.2,113,0,33,0.051,0.053,0.28,0.041,0,4.8,0,0
11712,1100,"Bamboo shoots, cooked, boiled, drained, with salt","BAMBOO SHOOTS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.53,0.22,1.52,11,,1,12,0.24,3,20,533,240,0.47,0.4,0,0,0,0.02,0.05,0.3,0.098,0,,0,0
11713,1100,"Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, with salt","BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.83,0.58,4.72,33,,,19,0.89,23,38,194,243,0.44,0.6,2,0,35.6,0.362,0.273,3.024,0.093,0,,0,0
11714,1100,"Lima beans, immature seeds, cooked, boiled, drained, with salt","LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.81,0.32,23.64,123,1.63,5.3,32,2.45,74,130,570,253,0.79,2,370,0,10.1,0.14,0.096,1.04,0.193,0,6.2,0,0
11715,1100,"Lima beans, immature seeds, canned, no salt added, solids and liquids","LIMA BNS,IMMAT SEEDS,CND,NO SALT,SOL&LIQUIDS",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,4.07,0.29,13.33,71,0.93,3.6,28,1.61,34,71,285,4,0.64,1.1,150,0,8.7,0.029,0.043,0.532,0.062,0,3.6,0,0
11716,1100,"Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, with salt","LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.65,0.3,19.45,105,1.37,4.8,28,1.96,56,112,411,265,0.55,1.7,167,0,5.8,0.07,0.055,0.77,0.115,0,5.2,0,0
11717,1100,"Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, with salt","LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,6.07,0.34,19.32,103,1.34,5.3,30,1.82,42,97,304,289,0.74,0.6,190,0,12.8,0.074,0.061,1.069,0.122,0,,0,0
11718,1100,"Mung beans, mature seeds, sprouted, cooked, boiled, drained, with salt","MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.03,0.09,3.6,19,2.84,0.8,12,0.65,14,28,101,246,0.47,0.6,13,0,11.4,0.05,0.102,0.817,0.054,0,22.7,0,0
11719,1100,"Beans, navy, mature seeds, sprouted, cooked, boiled, drained, with salt","BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,7.07,0.81,15.01,78,,,16,2.11,111,103,317,250,0.97,0.6,4,0,17.3,0.381,0.235,1.263,0.198,0,,0,0
11720,1100,"Beans, pinto, immature seeds, frozen, cooked, boiled, drained, with salt","BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,9.31,0.48,30.87,162,,5.4,52,2.71,54,100,646,319,0.69,1.4,0,0,0.7,0.274,0.108,0.632,0.194,0,,0,0
11721,1100,"Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, with salt","BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.86,0.32,3.5,20,,,15,0.66,18,30,98,287,0.17,0.6,0,0,6.1,0.067,0.059,0.725,0.054,0,,0,0
11722,1100,"Beans, snap, yellow, raw","BEANS,SNAP,YELLOW,RAW",,,,"Ends, strings, trimmings",12,Phaseolus vulgaris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.82,0.12,7.13,31,3.27,3.4,37,1.04,25,38,209,6,0.24,0.6,108,0,16.3,0.084,0.105,0.752,0.074,0,43.2,0,0
11723,1100,"Beans, snap, green, cooked, boiled, drained, with salt","BEANS,SNAP,GRN,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.89,0.28,7.88,35,3.63,3.2,44,0.65,18,29,146,239,0.25,0.2,691,0,9.7,0.074,0.097,0.614,0.056,0,47.9,0,0
11724,1100,"Beans, snap, yellow, cooked, boiled, drained, without salt","BEANS,SNAP,YEL,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.89,0.28,7.88,35,3.63,3.3,46,1.28,25,39,299,3,0.36,0.4,81,0,9.7,0.074,0.097,0.614,0.056,0,47.9,0,0
11725,1100,"Beans, snap, yellow, cooked, boiled, drained, with salt","BEANS,SNAP,YEL,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.89,0.28,7.88,35,3.63,3.3,46,1.28,25,39,299,239,0.36,0.4,81,0,9.7,0.074,0.097,0.614,0.056,0,47.9,0,0
11726,1100,"Beans, snap, green, canned, no salt added, solids and liquids","BEANS,SNAP,GRN,CND,NO SALT,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.8,0.1,3.5,15,,1.5,24,0.9,13,19,92,14,0.2,0.2,321,0,3.4,0.025,0.051,0.2,0.03,0,,0,0
11727,1100,"Beans, snap, yellow, canned, regular pack, solids and liquids","BEANS,SNAP,YEL,CND,REG PK,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.8,0.1,3.5,15,0.62,1.5,24,0.9,13,19,98,259,0.2,0.2,83,0,3.4,0.025,0.051,0.2,0.03,0,31.2,0,0
11728,1100,"Beans, snap, yellow, canned, no salt added, solids and liquids","BEANS,SNAP,YEL,CND,NO SALT,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.8,0.1,3.5,15,0.62,1.5,24,0.9,13,19,98,14,0.2,0.2,83,0,4,0.025,0.051,0.2,0.03,0,31.2,0,0
11729,1100,"Beans, snap, green, canned, no salt added, drained solids","BEANS,SNAP,GRN,CND,NO SALT,DRND SOL",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.12,0.46,4.32,22,0.78,1.9,38,1.06,13,20,96,2,0.2,0.4,353,0,2.8,0.016,0.046,0.206,0.03,0,38.9,0,0
11730,1100,"Beans, snap, yellow, frozen, all styles, unprepared","BEANS,SNAP,YEL,FRZ,ALL STYLES,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.21,7.58,33,2.22,2.8,42,0.86,22,32,186,3,0.26,0.4,132,0,12.9,0.099,0.092,0.499,0.042,0,45,0,0
11731,1100,"Beans, snap, green, frozen, cooked, boiled, drained, with salt","BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.49,0.17,6.45,28,1.88,3,42,0.66,19,29,159,245,0.24,0.4,466,0,4.1,0.035,0.09,0.383,0.06,0,38.1,0,0
11732,1100,"Beans, snap, yellow, frozen, cooked, boiled, drained, without salt","BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.49,0.17,6.45,28,1.88,3,49,0.88,24,31,126,9,0.48,0.4,112,0,4.1,0.035,0.09,0.383,0.06,0,38.1,0,0
11733,1100,"Beans, snap, yellow, frozen, cooked, boiled, drained, with salt","BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.49,0.17,6.45,28,1.88,3,49,0.88,24,31,126,245,0.48,0.4,112,0,4.1,0.035,0.09,0.383,0.06,0,38.1,0,0
11734,1100,"Beets, cooked, boiled. drained, with salt","BEETS,CKD,BOILED. DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.68,0.18,9.96,44,7.96,2,16,0.79,23,38,305,285,0.35,0.7,35,0,3.6,0.027,0.04,0.331,0.067,0,0.2,0,0
11735,1100,"Beets, canned, no salt added, solids and liquids","BEETS,CND,NO SALT,SOL&LIQUIDS",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.8,0.07,6.57,28,5.38,1.2,13,0.63,16,16,142,21,0.23,0.5,22,0,2.8,0.01,0.038,0.151,0.055,0,0.1,0,0
11736,1100,"Beet greens, cooked, boiled, drained, with salt","BEET GRNS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.57,0.2,5.46,27,0.6,2.9,114,1.9,68,41,909,477,0.5,0.9,7654,0,24.9,0.117,0.289,0.499,0.132,0,484,0,0
11737,1100,"Borage, cooked, boiled, drained, with salt","BORAGE,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.09,0.81,3.55,25,,,102,3.64,57,55,491,324,0.22,0.9,4385,0,32.5,0.059,0.165,0.94,0.088,0,,0,0
11738,1100,"Broadbeans, immature seeds, cooked, boiled, drained, with salt","BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT",,,,,0,Vicia faba,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,4.8,0.5,10.1,62,,,18,1.5,31,73,193,277,0.47,1,270,0,19.8,0.128,0.09,1.2,0.029,0,,0,0
11739,1100,"Broccoli, leaves, raw","BROCCOLI,LEAVES,RAW",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.98,0.35,5.06,28,1.48,2.3,48,0.88,25,66,325,27,0.4,3,16000,0,93.2,0.065,0.119,0.638,0.159,0,,0,0
11740,1100,"Broccoli, flower clusters, raw","BROCCOLI,FLOWER CLUSTERS,RAW",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.98,0.35,5.06,28,1.48,2.3,48,0.88,25,66,325,27,0.4,3,3000,0,93.2,0.065,0.119,0.638,0.159,0,,0,0
11741,1100,"Broccoli, stalks, raw","BROCCOLI,STALKS,RAW",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.98,0.35,5.24,28,,,48,0.88,25,66,325,27,0.4,3,400,0,93.2,0.065,0.119,0.638,0.159,0,,0,0
11742,1100,"Broccoli, cooked, boiled, drained, with salt","BROCCOLI,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.38,0.41,7.18,35,1.39,3.3,40,0.67,21,67,293,262,0.45,1.6,1548,0,64.9,0.063,0.123,0.553,0.2,0,141.1,0,0
11743,1100,"Broccoli, frozen, chopped, cooked, boiled, drained, with salt","BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.1,0.12,5.35,28,1.47,3,33,0.61,13,49,142,260,0.28,0.7,1011,0,40.1,0.055,0.081,0.458,0.13,0,88.1,0,0
11744,1100,"Broccoli, frozen, spears, cooked, boiled, drained, with salt","BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.1,0.11,5.35,28,1.44,3,51,0.61,20,55,180,260,0.3,1.9,1118,0,40.1,0.055,0.081,0.458,0.13,0,99.5,0,0
11745,1100,"Brussels sprouts, cooked, boiled, drained, with salt","BRUSSELS SPROUTS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.55,0.5,7.1,36,1.74,2.6,36,1.2,20,56,317,257,0.33,1.5,775,0,62,0.107,0.08,0.607,0.178,0,140.3,0,0
11746,1100,"Brussels sprouts, frozen, cooked, boiled, drained, with salt","BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.64,0.39,8.32,42,2.08,4.1,26,0.48,18,56,290,259,0.24,0.6,926,0,45.7,0.103,0.113,0.537,0.289,0,193.5,0,0
11747,1100,"Burdock root, cooked, boiled, drained, with salt","BURDOCK ROOT,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,2.09,0.14,21.15,88,3.55,1.8,49,0.77,39,93,360,240,0.38,0.9,0,0,2.6,0.039,0.058,0.32,0.279,0,2,0,0
11748,1100,"Butterbur, cooked, boiled, drained, with salt","BUTTERBUR,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.23,0.02,2.16,8,,,59,0.1,8,7,354,240,0.09,0.9,27,0,18.9,0.01,0.01,0.1,0.052,0,,0,0
11749,1100,"Cabbage, common (danish, domestic, and pointed types), freshly harvest, raw","CABBAGE,COMMON,FRESHLY HARVEST,RAW",,,,Outer leaves and core,20,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.21,0.18,5.37,24,,2.3,47,0.56,15,23,246,18,0.18,0.9,126,0,51,0.05,0.03,0.3,0.095,0,,0,0
11750,1100,"Cabbage, common (danish, domestic, and pointed types), stored, raw","CABBAGE,COMMON (DANISH,DOMESTIC,&POINTED TYPES),STORED,RAW",,,,Outer leaves and core,20,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.21,0.18,5.37,24,,2.3,47,0.56,15,23,246,18,0.18,0.9,126,0,42,0.05,0.03,0.3,0.095,0,,0,0
11751,1100,"Cabbage, common, cooked, boiled, drained, with salt","CABBAGE,COMMON,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.27,0.06,5.51,23,2.79,1.9,48,0.17,15,33,196,255,0.2,0.6,80,0,37.5,0.061,0.038,0.248,0.112,0,108.7,0,0
11752,1100,"Cabbage, red, cooked, boiled, drained, with salt","CABBAGE,RED,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.51,0.09,6.94,29,3.32,2.6,42,0.66,17,33,262,244,0.25,2.3,33,0,10.8,0.071,0.06,0.382,0.225,0,47.6,0,0
11753,1100,"Cabbage, savoy, cooked, boiled, drained, with salt","CABBAGE,SAVOY,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.09,5.41,24,,2.8,30,0.38,24,33,184,260,0.23,0.7,889,0,17,0.051,0.02,0.024,0.152,0,,0,0
11754,1100,"Cabbage, chinese (pak-choi), cooked, boiled, drained, with salt","CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,W/SALT","pak choi, bok choy",,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.56,0.16,1.78,12,0.83,1,93,1.04,11,29,371,270,0.17,0.4,4249,0,26,0.032,0.063,0.428,0.166,0,34,0,0
11755,1100,"Cabbage, chinese (pe-tsai), cooked, boiled, drained, with salt","CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.5,0.17,2.41,14,,1.7,32,0.3,10,39,225,245,0.18,0.4,967,0,15.8,0.044,0.044,0.5,0.177,0,,0,0
11756,1100,"Cardoon, cooked, boiled, drained, with salt","CARDOON,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.76,0.11,4.74,20,,1.7,72,0.73,43,23,392,412,0.18,1,0,0,1.7,0.018,0.031,0.294,0.042,0,,0,0
11757,1100,"Carrots, cooked, boiled, drained, with salt","CARROTS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.76,0.18,8.22,35,3.45,3,30,0.34,10,30,235,302,0.2,0.7,17033,0,3.6,0.066,0.044,0.645,0.153,0,13.7,0,0
11758,1100,"Carrots, canned, no salt added, solids and liquids","CARROTS,CND,NO SALT,SOL&LIQUIDS",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.59,0.14,5.36,23,2.46,1.8,31,0.52,9,20,158,34,0.29,0.4,11170,0,2,0.019,0.027,0.421,0.112,0,9.8,0,0
11759,1100,"Carrots, canned, no salt added, drained solids","CARROTS,CND,NO SALT ,DRND SOL",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.64,0.19,5.54,25,2.48,1.5,25,0.64,8,24,179,42,0.26,0.4,11170,0,2.7,0.018,0.03,0.552,0.112,0,9.8,0,0
11760,1100,"Carrots, frozen, cooked, boiled, drained, with salt","CARROTS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.58,0.68,7.73,37,4.08,3.3,35,0.53,11,31,192,295,0.35,0.6,16928,0,2.3,0.03,0.037,0.416,0.084,0,13.6,0,0
11761,1100,"Cauliflower, cooked, boiled, drained, with salt","CAULIFLOWER,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.84,0.45,4.11,23,1.86,2.3,16,0.32,9,32,142,242,0.17,0.6,12,0,44.3,0.042,0.052,0.41,0.173,0,13.8,0,0
11762,1100,"Cauliflower, frozen, cooked, boiled, drained, with salt","CAULIFLOWER,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.61,0.22,3.16,17,0.46,2.7,17,0.41,9,24,139,254,0.13,0.6,10,0,31.3,0.037,0.053,0.31,0.088,0,11.9,0,0
11763,1100,"Celeriac, cooked, boiled, drained, with salt","CELERIAC,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.96,0.19,5.9,27,,,26,0.43,12,66,173,297,0.2,0.4,0,0,3.6,0.027,0.037,0.427,0.101,0,,0,0
11764,1100,"Celery, cooked, boiled, drained, with salt","CELERY,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.83,0.16,4,18,2.37,1.6,42,0.42,12,25,284,327,0.14,1,521,0,6.1,0.043,0.047,0.319,0.086,0,37.8,0,0
11765,1100,"Chard, swiss, cooked, boiled, drained, with salt","CHARD,SWISS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.88,0.08,4.13,20,1.1,2.1,58,2.26,86,33,549,415,0.33,0.9,6124,0,18,0.034,0.086,0.36,0.085,0,327.3,0,0
11766,1100,"Chayote, fruit, cooked, boiled, drained, with salt","CHAYOTE,FRUIT,CKD,BLD,DRND,W/SALT",christophine,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.62,0.48,4.5,22,1.89,2.8,13,0.22,12,29,173,237,0.31,0.3,0,0,8,0.026,0.04,0.42,0.118,0,4.7,0,0
11767,1100,"Chrysanthemum, garland, cooked, boiled, drained, with salt","CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.64,0.09,4.31,20,2.01,2.3,69,3.74,18,43,569,289,0.2,0.3,2572,0,23.9,0.021,0.16,0.72,0.118,0,142.7,0,0
11768,1100,"Collards, cooked, boiled, drained, with salt","COLLARDS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.71,0.72,5.65,33,,4,141,1.13,21,32,117,252,0.23,0.5,7600,0,18.2,0.04,0.106,0.575,0.128,0,406.6,0,0
11769,1100,"Collards, frozen, chopped, cooked, boiled, drained, with salt","COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.97,0.41,7.1,36,0.57,2.8,210,1.12,30,27,251,286,0.27,1.5,11493,0,26.4,0.047,0.115,0.635,0.114,0,623.2,0,0
11770,1100,"Corn, sweet, yellow, cooked, boiled, drained, with salt","CORN,SWT,YEL,CKD,BLD,DRND,W/SALT",,,,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.41,1.5,20.98,96,4.54,2.4,3,0.45,26,77,218,253,0.62,0.2,263,0,5.5,0.093,0.057,1.683,0.139,0,0.4,0,0
11771,1100,"Corn, sweet, yellow, canned, no salt added, solids and liquids","CORN,SWT,YEL,CND,NO SALT,SOL&LIQUIDS",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.95,0.77,13.86,61,4.15,1.7,4,0.36,15,46,136,12,0.39,0.5,34,0,2.6,0.015,0.015,0.884,0.037,0,0,0,0
11772,1100,"Corn, sweet, yellow, canned, cream style, no salt added","CORN,SWT,YEL,CND,CRM STYLE,NO SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.74,0.42,18.13,72,3.23,1.2,3,0.38,17,51,134,3,0.53,0.4,74,0,4.6,0.025,0.053,0.96,0.063,0,0,0,0
11773,1100,"Corn, sweet, yellow, canned, vacuum pack, no salt added","CORN,SWT,YEL,CND,VACUUM PK,NO SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.41,0.5,19.44,79,5.59,2,5,0.42,23,64,186,3,0.46,0.7,81,0,8.1,0.041,0.073,1.167,0.055,0,0,0,0
11774,1100,"Corn, sweet, yellow, frozen, kernels, cut off cob, boiled, drained, with salt","CORN,SWT,YEL,FRZ,KRNLS,CUT OFF COB,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.55,0.67,18.71,79,3.07,2.4,3,0.47,28,79,233,245,0.63,0.7,199,0,3.5,0.03,0.062,1.311,0.099,0,0.3,0,0
11775,1100,"Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, with salt","CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT",,,,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.11,0.74,22.33,94,3.59,2.8,3,0.61,29,75,251,240,0.63,0.7,232,0,4.8,0.174,0.069,1.517,0.224,0,0.4,0,0
11777,1100,"Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, with salt","COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,W/ SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.17,0.38,19.73,94,3.23,5,128,1.12,52,51,418,240,1.03,2.5,791,0,2.2,0.101,0.148,1.403,0.065,0,,0,0
11778,1100,"Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, with salt","COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/ SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,8.49,0.66,23.5,131,4.46,6.4,23,2.12,50,122,375,241,1.42,3.4,75,0,2.6,0.26,0.064,0.728,0.095,0,36.8,0,0
11779,1100,"Cowpeas, young pods with seeds, cooked, boiled, drained, with salt","COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.6,0.3,7,34,,,55,0.7,41,49,196,239,0.24,0.7,1400,0,17,0.09,0.09,0.8,0.123,0,,0,0
11780,1100,"Cowpeas, leafy tips, cooked, boiled, drained, with salt","COWPEAS,LEAFY TIPS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.67,0.1,2.8,22,,,69,1.09,62,42,351,242,0.24,0.9,576,0,18.4,0.256,0.142,1.008,0.135,0,,0,0
11781,1100,"Cress, garden, cooked, boiled, drained, with salt","CRESS,GARDEN,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.9,0.6,3.8,23,3.11,0.7,61,0.8,26,48,353,244,0.15,0.9,4649,0,23,0.06,0.16,0.8,0.157,0,383.4,0,0
11782,1100,"Dandelion greens, cooked, boiled, drained, with salt","DANDELION GRNS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2,0.6,6.4,33,1.62,2.9,140,1.8,24,42,232,280,0.28,0.3,14544,0,18,0.13,0.175,0.514,0.16,0,358.9,0,0
11783,1100,"Eggplant, cooked, boiled, drained, with salt","EGGPLANT,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.83,0.23,8.14,33,3.2,2.5,6,0.25,11,15,123,239,0.12,0.1,37,0,1.3,0.076,0.02,0.6,0.086,0,2.9,0,0
11784,1100,"Gourd, white-flowered (calabash), cooked, boiled, drained, with salt","GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.6,0.02,3.1,13,,1.2,24,0.25,11,13,170,238,0.7,0.2,0,0,8.5,0.029,0.022,0.39,0.038,0,,0,0
11785,1100,"Gourd, dishcloth (towelgourd), cooked, boiled, drained, with salt","GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.66,0.34,13.75,54,5.17,2.9,9,0.36,20,31,453,257,0.17,0.2,260,0,5.7,0.046,0.042,0.26,0.099,0,1.7,0,0
11786,1100,"Drumstick leaves, cooked, boiled, drained, with salt","DRUMSTICK LEAVES,CKD,BLD,DRND,W/ SALT",Horseradish tree,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.27,0.93,11.15,60,1,2,151,2.32,34,67,344,245,0.49,0.9,7013,0,31,0.222,0.509,1.995,0.929,0,108,0,0
11787,1100,"Drumstick pods, cooked, boiled, drained, with salt","DRUMSTICK PODS,CKD,BLD,DRND,W/ SALT",Horseradish-tree pods,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.09,0.19,8.18,36,,4.2,20,0.45,42,49,457,279,0.42,0.7,70,0,97,0.046,0.068,0.59,0.112,0,,0,0
11788,1100,"Hyacinth-beans, immature seeds, cooked, boiled, drained, with salt","HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.95,0.27,9.2,50,,,41,0.76,42,49,262,238,0.38,1.6,142,0,5.1,0.056,0.088,0.48,0.023,0,,0,0
11789,1100,"Jute, potherb, cooked, boiled, drained, with salt","JUTE,POTHERB,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.68,0.2,7.29,37,1,2,211,3.14,62,72,550,247,0.79,0.9,5185,0,33,0.091,0.192,0.89,0.57,0,108,0,0
11790,1100,"Kale, cooked, boiled, drained, with salt","KALE,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.9,0.4,5.63,28,1.25,2,72,0.9,18,28,228,259,0.24,0.9,13621,0,41,0.053,0.07,0.5,0.138,0,,0,0
11791,1100,"Kale, frozen, cooked, boiled, drained, with salt","KALE,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.84,0.49,5.23,30,1.34,2,138,0.94,18,28,321,251,0.18,0.9,14704,0,25.2,0.043,0.114,0.672,0.086,0,882,0,0
11792,1100,"Kale, scotch, cooked, boiled, drained, with salt","KALE,SCOTCH,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.9,0.41,5.62,28,,,132,1.93,57,38,274,281,0.24,0.9,1994,0,52.8,0.04,0.039,0.792,0.139,0,,0,0
11793,1100,"Kohlrabi, cooked, boiled, drained, with salt","KOHLRABI,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.8,0.11,6.69,29,2.8,1.1,25,0.4,19,45,340,257,0.31,0.8,35,0,54,0.04,0.02,0.39,0.154,0,0.1,0,0
11794,1100,"Lambsquarters, cooked, boiled, drained, with salt","LAMBSQUARTERS,CKD,BLD,DRND,W/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.2,0.7,5,32,0.62,2.1,258,0.7,23,45,288,265,0.3,0.9,7816,0,37,0.1,0.26,0.9,0.174,0,494.2,0,0
11795,1100,"Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, with salt","LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.81,0.2,7.62,31,2.11,1,30,1.1,14,17,87,246,0.06,0.5,812,0,4.2,0.026,0.02,0.2,0.113,0,25.4,0,0
11796,1100,"Lotus root, cooked, boiled, drained, with salt","LOTUS ROOT,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.58,0.07,16.02,66,,3.1,26,0.9,22,78,363,281,0.33,0.6,0,0,27.4,0.127,0.01,0.3,0.218,0,,0,0
11797,1100,"Mushrooms, white, cooked, boiled, drained, with salt","MUSHROOMS,WHITE,CKD,BLD,DRND,W/ SALT",,,,,0,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,2.17,0.47,5.29,28,2.34,2.2,6,1.74,12,87,356,238,0.87,13.4,0,8,4,0.073,0.3,4.46,0.095,0,0,0,0
11798,1100,"Mushrooms, shiitake, cooked, with salt","MUSHROOMS,SHIITAKE,CKD,W/SALT",,,,,0,,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,1.56,0.22,14.39,56,3.84,2.1,3,0.44,14,29,117,240,1.33,24.8,0,28,0.3,0.037,0.17,1.5,0.159,0,0,0,0
11799,1100,"Mustard greens, cooked, boiled, drained, with salt","MUSTARD GRNS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.56,0.47,4.51,26,1.41,2,118,0.87,13,42,162,252,0.15,0.6,10537,0,25.3,0.041,0.063,0.433,0.098,0,592.7,0,0
11800,1100,"Mustard greens, frozen, cooked, boiled, drained, with salt","MUSTARD GRNS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.27,0.25,3.11,19,0.32,2.8,101,1.12,13,24,139,261,0.2,0.6,7076,0,13.8,0.04,0.053,0.258,0.108,0,335.1,0,0
11801,1100,"Mustard spinach, (tendergreen), cooked, boiled, drained, with salt","MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.7,0.2,2.8,16,,2,158,0.8,7,18,285,250,0.11,0.6,8200,0,65,0.041,0.062,0.43,0.097,0,,0,0
11802,1100,"New zealand spinach, cooked, boiled, drained, with salt","NEW ZEALAND SPINACH,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.3,0.17,2.13,12,0.25,1.4,48,0.66,32,22,102,343,0.31,0.9,3622,0,16,0.03,0.107,0.39,0.237,0,292,0,0
11803,1100,"Okra, cooked, boiled, drained, with salt","OKRA,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.87,0.21,4.51,22,2.4,2.5,77,0.28,36,32,135,241,0.43,0.4,283,0,16.3,0.132,0.055,0.871,0.187,0,40,0,0
11804,1100,"Okra, frozen, cooked, boiled, drained, with salt","OKRA,FRZ,CKD,BLD,DRND,W/ SALT",,,,,0,,,,,,Vegetables and Vegetable Products,1.63,0.24,6.41,34,2.87,2.1,74,0.52,40,37,184,239,0.49,0.6,305,0,9.6,0.073,0.096,0.616,0.037,0,47.8,0,0
11805,1100,"Onions, cooked, boiled, drained, with salt","ONIONS,CKD,BLD,DRND,W/SALT",,,Y,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.36,0.19,9.56,42,4.73,1.4,22,0.24,11,35,166,239,0.21,0.6,2,0,5.2,0.042,0.023,0.165,0.129,0,0.5,0,0
11806,1100,"Onions, frozen, chopped, cooked, boiled, drained, with salt","ONIONS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.77,0.1,6,26,2.9,1.7,16,0.3,6,19,108,248,0.07,0.4,2,0,2.6,0.023,0.025,0.139,0.069,0,0.3,0,0
11807,1100,"Onions, frozen, whole, cooked, boiled, drained, with salt","ONIONS,FRZ,WHL,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.71,0.05,6.11,26,2.9,1.4,27,0.34,8,2,101,244,0.09,0.4,2,0,5.1,0.016,0.018,0.132,0.07,0,0.3,0,0
11808,1100,"Parsnips, cooked, boiled, drained, with salt","PARSNIPS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.32,0.3,17.01,71,4.8,4,37,0.58,29,69,367,246,0.26,1.7,0,0,13,0.083,0.051,0.724,0.093,0,1,0,0
11809,1100,"Peas, edible-podded, cooked, boiled, drained, with salt","PEAS,EDIBLE-PODDED,CKD,BLD,DRND,W/SALT","Sugar snap peas, Snowpeas",,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.27,0.23,6.46,40,3.99,2.8,42,1.97,26,55,240,240,0.37,0.7,1030,0,47.9,0.128,0.076,0.539,0.144,0,25,0,0
11810,1100,"Peas, edible-podded, frozen, cooked, boiled, drained, with salt","PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,W/SALT","Sugar snap peas, Snowpeas",,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.5,0.38,8.43,50,4.82,3.1,59,2.4,28,58,217,241,0.49,0.8,1311,0,22,0.064,0.119,0.563,0.174,0,30.2,0,0
11811,1100,"Peas, green, cooked, boiled, drained, with salt","PEAS,GRN,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.36,0.22,15.63,84,5.93,5.5,27,1.54,39,117,271,239,1.19,1.9,801,0,14.2,0.259,0.149,2.021,0.216,0,25.9,0,0
11812,1100,"Peas, green, canned, no salt added, solids and liquids","PEAS,GRN,CND,NO SALT,SOL&LIQUIDS",,,Y,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,3.19,0.3,9.75,53,3.2,3.3,18,1.02,17,53,100,9,0.7,1.3,1444,0,9.8,0.111,0.073,0.842,0.065,0,16.5,0,0
11813,1100,"Peas, green, canned, no salt added, drained solids","PEAS,GRN,CND,NO SALT,DRND SOL",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,4.42,0.35,12.58,69,4.16,4.1,20,0.95,17,67,173,2,0.71,1.7,533,0,9.6,0.121,0.078,0.732,0.064,0,21.4,0,0
11814,1100,"Peas, green, frozen, cooked, boiled, drained, with salt","PEAS,GRN,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.15,0.27,14.26,78,4.4,4.5,24,1.52,22,77,110,323,0.67,1,2100,0,9.9,0.283,0.1,1.48,0.113,0,24,0,0
11815,1100,"Peas, mature seeds, sprouted, cooked, boiled, drained, with salt","PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,7.05,0.51,17.08,98,,,26,1.67,41,24,268,239,0.78,0.6,107,0,6.6,0.216,0.285,1.072,0.128,0,,0,0
11816,1100,"Peas and carrots, canned, no salt added, solids and liquids","PEAS&CARROTS,CND,NO SALT,SOL&LIQUIDS",,,Y,,0,,6.25,3.98,8.37,3.16,Vegetables and Vegetable Products,2.17,0.27,8.48,38,2.83,3.3,23,0.75,14,46,100,4,0.58,0.9,6854,0,6.6,0.074,0.053,0.581,0.088,0,13.1,0,0
11817,1100,"Peas and carrots, frozen, cooked, boiled, drained, with salt","PEAS&CARROTS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.98,8.37,3.16,Vegetables and Vegetable Products,3.09,0.42,10.12,48,4.36,3.1,23,0.94,16,49,158,304,0.45,1.1,9514,0,8.1,0.225,0.064,1.154,0.087,0,18.8,0,0
11818,1100,"Peas and onions, frozen, cooked, boiled, drained, with salt","PEAS&ONIONS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.4,8.37,4,Vegetables and Vegetable Products,2.54,0.2,8.63,45,3.77,2.2,14,0.94,13,34,117,273,0.29,0.4,1051,0,6.9,0.15,0.069,1.044,0.087,0,12.1,0,0
11819,1100,"Peppers, hot chili, red, raw","PEPPERS,HOT CHILI,RED,RAW",,,Y,"Stem ends, seeds and core",27,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.87,0.44,8.81,40,5.3,1.5,14,1.03,23,43,322,9,0.26,0.5,952,0,143.7,0.072,0.086,1.244,0.506,0,14,0,0
11820,1100,"Peppers, hot chili, red, canned, excluding seeds, solids and liquids","PEPPERS,HOT CHILI,RED,CND,EXCLUDING SEEDS,SOL&LIQUIDS",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.9,0.1,5.1,21,3.32,1.3,7,0.5,14,17,187,1173,0.17,0.3,11892,0,68,0.02,0.05,0.8,0.153,0,8.7,0,0
11821,1100,"Peppers, sweet, red, raw","PEPPERS,SWT,RED,RAW",,,Y,"Stem ends, seed and core",18,,,,,,Vegetables and Vegetable Products,0.99,0.3,6.03,31,4.2,2.1,7,0.43,12,26,211,4,0.25,0.1,3131,0,127.7,0.054,0.085,0.979,0.291,0,4.9,0,0
11822,1100,"Peppers, sweet, green, cooked, boiled, drained, with salt","PEPPERS,SWT,GRN,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.92,0.2,6.11,26,3.19,1.2,9,0.46,10,18,166,238,0.12,0.3,468,0,74.4,0.059,0.03,0.477,0.233,0,9.8,0,0
11823,1100,"Peppers, sweet, red, cooked, boiled, drained, without salt","PEPPERS,SWT,RED,CKD,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.92,0.2,6.7,28,4.39,1.2,9,0.46,10,18,166,2,0.12,0.3,2941,0,171,0.059,0.03,0.477,0.233,0,5.1,0,0
11824,1100,"Peppers, sweet, red, cooked, boiled, drained, with salt","PEPPERS,SWT,RED,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.92,0.2,6.11,26,4.39,1.2,9,0.46,10,18,166,238,0.12,0.3,2941,0,171,0.059,0.03,0.477,0.233,0,5.1,0,0
11825,1100,"Peppers, sweet, green, frozen, chopped, cooked, boiled, drained, with salt","PEPPERS,SWT,GRN,FRZ,CHOPD,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.95,0.18,3.31,16,,0.9,8,0.52,7,13,72,240,0.05,0.2,290,0,41.2,0.051,0.031,1.082,0.108,0,,0,0
11826,1100,"Pigeonpeas, immature seeds, cooked, boiled, drained, with salt","PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.96,1.36,19.49,111,2.48,4.2,41,1.57,40,118,456,240,0.82,1.2,50,0,28.1,0.35,0.166,2.153,0.053,0,19.8,0,0
11827,1100,"Pokeberry shoots, (poke), cooked, boiled, drained, with salt","POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.3,0.4,3.1,20,1.6,1.5,53,1.2,14,33,184,254,0.19,0.9,8700,0,82,0.07,0.25,1.1,0.111,0,108,0,0
11828,1100,"Potatoes, baked, flesh and skin, with salt","POTATOES,BKD,FLESH & SKN,W/ SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.5,0.13,21.15,93,1.18,2.2,15,1.08,28,70,535,10,0.36,0.4,10,0,9.6,0.064,0.048,1.41,0.311,0,2,0,0
11829,1100,"Potatoes, baked, flesh, with salt","POTATOES,BKD,FLESH,W/SALT",,,,Skin and adhering flesh,23,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.96,0.1,21.55,93,1.7,1.5,5,0.35,25,50,391,241,0.29,0.3,0,0,12.8,0.105,0.021,1.395,0.301,0,0.3,0,0
11830,1100,"Potatoes, baked, skin only, with salt","POTATOES,BKD,SKN ONLY,W/ SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,4.29,0.1,46.06,198,1.4,7.9,34,7.04,43,101,573,257,0.49,0.7,10,0,13.5,0.122,0.106,3.065,0.614,0,1.7,0,0
11831,1100,"Potatoes, boiled, cooked in skin, flesh, with salt","POTATOES,BLD,CKD IN SKN,FLESH,W/SALT",,,Y,Skins and eyes,9,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.87,0.1,20.13,87,0.91,2,5,0.31,22,44,379,240,0.3,0.3,3,0,13,0.106,0.02,1.439,0.299,0,2.2,0,0
11832,1100,"Potatoes, boiled, cooked in skin, skin, with salt","POTATOES,BLD,CKD IN SKN,SKN,W/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.86,0.1,17.2,78,,3.3,45,6.07,30,54,407,250,0.44,0.3,0,0,5.2,0.032,0.036,1.222,0.239,0,,0,0
11833,1100,"Potatoes, boiled, cooked without skin, flesh, with salt","POTATOES,BLD,CKD WO/ SKN,FLESH,W/ SALT",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.71,0.1,20.01,86,0.89,2,8,0.31,20,40,328,241,0.27,0.3,2,0,7.4,0.098,0.019,1.312,0.269,0,2.2,0,0
11834,1100,"Potatoes, microwaved, cooked, in skin, flesh and skin, with salt","POTATOES,MICROWAVED,CKD,IN SKN,FLESH&SKN,W/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.44,0.1,24.24,105,,2.3,11,1.24,27,105,447,244,0.36,0.4,0,0,15.1,0.12,0.032,1.714,0.344,0,,0,0
11835,1100,"Potatoes, microwaved, cooked in skin, flesh, with salt","POTATOES,MICROWAVED,CKD IN SKN,FLESH,W/SALT",,,,Skin and adhering flesh,23,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.1,0.1,23.28,100,,1.6,5,0.41,25,109,411,243,0.33,0.4,0,0,15.1,0.129,0.025,1.625,0.319,0,,0,0
11836,1100,"Potatoes, microwaved, cooked, in skin, skin with salt","POTATOES,MICROWAVED,CKD,IN SKN,SKN W/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,4.39,0.1,29.63,132,,5.5,46,5.94,37,82,650,252,0.51,0.5,0,0,15.3,0.071,0.075,2.22,0.492,0,,0,0
11837,1100,"Potatoes, frozen, whole, cooked, boiled, drained, with salt","POTATOES,FRZ,WHL,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.98,0.13,13.93,63,,1.4,7,0.84,11,26,287,256,0.25,0.2,0,0,9.4,0.102,0.025,1.326,0.202,0,,0,0
11840,1100,"Potatoes, frozen, french fried, par fried, cottage-cut, prepared, heated in oven, with salt","POTATOES,FRZ,FRCH FR,PAR FR,CTTGE-CUT,PREP,HTD OVEN,W/SALT",,,,,0,,6.25,2.8,8.8,4,Vegetables and Vegetable Products,3.44,8.2,34.03,218,,3.2,10,1.49,22,65,480,281,0.41,0.4,0,0,9.5,0.119,0.031,2.413,0.243,0,,0,0
11841,1100,"Potatoes, french fried, all types, salt not added in processing, frozen, oven-heated","POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,OVN-HTD",,,,,0,,,,,,Vegetables and Vegetable Products,2.66,5.22,28.71,172,0.28,2.6,12,0.74,26,97,451,32,0.38,0.2,,0,13.3,0.128,0.031,2.218,0.184,,2.5,,0
11842,1100,"Potatoes, french fried, all types, salt not added in processing, frozen, as purchased","POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,AS PURCH",,,,,0,,,,,,Vegetables and Vegetable Products,2.24,4.66,24.81,150,0.2,1.9,9,0.62,21,83,408,23,0.35,,,0,17.3,0.098,0.048,2.038,0.178,0,2.2,,0
11843,1100,"Potatoes, au gratin, home-prepared from recipe using margarine","POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING MARGARINE",,,,,0,,0,,,,Vegetables and Vegetable Products,5.06,7.59,11.27,132,,1.8,119,0.64,20,113,396,433,0.69,2.7,280,0,9.9,0.064,0.116,0.993,0.174,0,,3,15
11844,1100,"Potatoes, scalloped, home-prepared with margarine","POTATOES,SCALLPD,HOME-PREPARED W/MARGARINE",,,,,0,,0,,,,Vegetables and Vegetable Products,2.87,3.68,10.78,88,,1.9,57,0.57,19,63,378,335,0.4,1.6,150,0,10.6,0.069,0.092,1.053,0.178,0,,2,6
11845,1100,"Pumpkin, cooked, boiled, drained, with salt","PUMPKIN,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.72,0.07,4.31,18,2.08,1.1,15,0.57,9,30,230,237,0.23,0.2,5755,0,4.7,0.031,0.078,0.413,0.044,0,0.8,0,0
11846,1100,"Pumpkin, canned, with salt","PUMPKIN,CANNED,WITH SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.1,0.28,8.09,34,3.3,2.9,26,1.39,23,35,206,241,0.17,0.4,15563,0,4.2,0.024,0.054,0.367,0.056,0,16,0,0
11847,1100,"Pumpkin, flowers, cooked, boiled, drained, with salt","PUMPKIN,FLOWERS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.09,0.08,3.18,15,2.4,0.9,37,0.88,25,34,106,242,0.1,0.9,1734,0,5,0.018,0.032,0.31,0.05,0,0,0,0
11848,1100,"Pumpkin leaves, cooked, boiled, drained, with salt","PUMPKIN LEAVES,CKD,BLD,DRND,W/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.72,0.22,3.39,21,0.69,2.7,43,3.2,38,79,438,244,0.2,0.9,1600,0,1,0.068,0.136,0.85,0.196,0,108,0,0
11849,1100,"Purslane, cooked, boiled, drained, with salt","PURSLANE,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.49,0.19,3.55,18,,,78,0.77,67,37,488,280,0.17,0.9,1852,0,10.5,0.031,0.09,0.46,0.07,0,,0,0
11850,1100,"Radishes, oriental, cooked, boiled, drained, with salt","RADISHES,ORIENTAL,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.67,0.24,3.43,17,1.83,1.6,17,0.15,9,24,285,249,0.13,0.7,0,0,15.1,0,0.023,0.15,0.038,0,0.3,0,0
11851,1100,"Rutabagas, cooked, boiled, drained, with salt","RUTABAGAS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.93,0.18,6.84,30,3.95,1.8,18,0.18,10,41,216,254,0.12,0.7,2,0,18.8,0.082,0.041,0.715,0.102,0,0.2,0,0
11852,1100,"Salsify, cooked, boiled, drained, with salt","SALSIFY,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,2.73,0.17,15.36,68,2.9,3.1,47,0.55,18,56,283,252,0.3,0.6,0,0,4.6,0.056,0.173,0.392,0.218,0,0.3,0,0
11853,1100,"Soybeans, green, cooked, boiled, drained, with salt","SOYBEANS,GRN,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,12.35,6.4,11.05,141,,4.2,145,2.5,60,158,539,250,0.91,1.4,156,0,17,0.26,0.155,1.25,0.06,0,,0,0
11854,1100,"Spinach, cooked, boiled, drained, with salt","SPINACH,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.97,0.26,3.75,23,0.43,2.4,136,3.57,87,56,466,306,0.76,1.5,10481,0,9.8,0.095,0.236,0.49,0.242,0,493.6,0,0
11855,1100,"Spinach, canned, no salt added, solids and liquids","SPINACH,CND,NO SALT,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.11,0.37,2.92,19,0.33,2.2,83,1.58,56,32,230,75,0.42,1.2,8084,0,13.5,0.018,0.106,0.271,0.08,0,380.8,0,0
11856,1100,"Spinach, frozen, chopped or leaf, cooked, boiled, drained, with salt","SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.01,0.87,4.8,34,0.51,3.7,153,1.96,82,50,302,322,0.49,5.5,12061,0,2.2,0.078,0.176,0.439,0.136,0,540.7,0,0
11857,1100,"Squash, summer, all varieties, cooked, boiled, drained, with salt","SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.91,0.31,4.31,20,2.59,1.4,27,0.36,24,39,192,237,0.39,0.2,212,0,5.5,0.044,0.041,0.513,0.065,0,3.5,0,0
11858,1100,"Squash, summer, crookneck and straightneck, cooked, boiled, drained, with salt","SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.04,0.39,3.79,19,2.48,1.1,22,0.37,16,29,177,237,0.22,0.2,1117,0,11.6,0.043,0.025,0.507,0.078,0,4.4,0,0
11859,1100,"Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, with salt","SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.28,0.2,5.54,25,2.33,1.4,20,0.52,27,41,253,242,0.34,0.3,201,0,6.8,0.036,0.047,0.44,0.099,0,5.4,0,0
11860,1100,"Squash, summer, scallop, cooked, boiled, drained, with salt","SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.03,0.17,3.3,16,1.5,1.9,15,0.33,19,28,140,237,0.24,0.2,85,0,10.8,0.051,0.025,0.464,0.085,0,3.5,0,0
11861,1100,"Squash, summer, zucchini, includes skin, cooked, boiled, drained, with salt","SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.14,0.36,2.69,15,1.71,1,18,0.37,19,37,264,239,0.33,0.2,1117,0,12.9,0.035,0.024,0.51,0.08,0,4.2,0,0
11862,1100,"Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, with salt","SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.15,0.13,2.97,14,1.69,1.3,17,0.48,13,25,194,238,0.2,0.2,177,0,3.7,0.041,0.04,0.386,0.045,0,4.2,0,0
11863,1100,"Squash, winter, all varieties, cooked, baked, with salt","SQUASH,WNTR,ALL VAR,CKD,BKD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.89,0.35,8.85,37,3.3,2.8,22,0.44,13,19,241,237,0.22,0.4,5223,0,1.8,0.016,0.067,0.495,0.161,0,4.4,0,0
11864,1100,"Squash, winter, acorn, cooked, baked, with salt","SQUASH,WNTR,ACORN,CKD,BKD,W/SALT",,,,Rind,20,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.12,0.14,14.58,56,,4.4,44,0.93,43,45,437,240,0.17,0.7,428,0,10.8,0.167,0.013,0.881,0.194,0,,0,0
11865,1100,"Squash, winter, acorn, cooked, boiled, mashed, with salt","SQUASH,WNTR,ACORN,CKD,BLD,MSHD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.67,0.08,8.79,34,,2.6,26,0.56,26,27,263,239,0.11,0.4,258,0,6.5,0.1,0.008,0.531,0.117,0,,0,0
11866,1100,"Squash, winter, butternut, cooked, baked, with salt","SQUASH,WNTR,BUTTERNUT,CKD,BKD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.9,0.09,10.49,40,1.97,3.2,41,0.6,29,27,284,240,0.13,0.5,11155,0,15.1,0.072,0.017,0.969,0.124,0,1,0,0
11867,1100,"Squash, winter, butternut, frozen, cooked, boiled, with salt","SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.23,0.07,10.04,39,,,19,0.58,9,14,133,238,0.12,0.5,3339,0,3.5,0.05,0.039,0.464,0.069,0,,0,0
11868,1100,"Squash, winter, hubbard, baked, with salt","SQUASH,WNTR,HUBBARD,BKD,W/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.48,0.62,10.81,50,4.9,4.9,17,0.47,22,23,358,244,0.15,0.6,6705,0,9.5,0.074,0.047,0.558,0.172,0,1.6,0,0
11869,1100,"Squash, winter, hubbard, cooked, boiled, mashed, with salt","SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.48,0.37,6.46,30,2.93,2.9,10,0.28,13,14,214,241,0.1,0.3,4005,0,6.5,0.042,0.028,0.334,0.103,0,1,0,0
11870,1100,"Squash, winter, spaghetti, cooked, boiled, drained, or baked, with salt","SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.66,0.26,6.46,27,2.53,1.4,21,0.34,11,,117,254,0.2,0.3,110,0,3.5,0.038,0.022,0.81,0.099,0,0.8,0,0
11871,1100,"Succotash, (corn and limas), cooked, boiled, drained, with salt","SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.72,8.37,3.71,Vegetables and Vegetable Products,5.07,0.8,24.37,111,,,17,1.52,53,117,410,253,0.63,0.6,294,0,8.2,0.168,0.096,1.327,0.116,0,,0,0
11872,1100,"Succotash, (corn and limas), frozen, cooked, boiled, drained, with salt","SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.72,8.37,3.71,Vegetables and Vegetable Products,4.31,0.89,19.95,93,2.21,4.1,15,0.89,23,70,265,281,0.45,0.6,194,0,5.9,0.074,0.068,1.306,0.095,0,2.7,0,0
11873,1100,"Swamp cabbage (skunk cabbage), cooked, boiled, drained, with salt","SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,W/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.08,0.24,3.7,20,,1.9,54,1.32,30,42,284,358,0.16,0.9,5200,0,16,0.05,0.08,0.5,0.081,0,,0,0
11874,1100,"Sweet potato leaves, cooked, steamed, with salt","SWEET POTATO LEAVES,CKD,STMD,W/ SALT",Sweetpotato leaves,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.18,0.34,7.38,35,5.48,1.9,33,0.63,48,40,312,249,0.26,0.9,2939,0,1.5,0.112,0.267,1.003,0.16,0,108.6,0,0
11875,1100,"Sweet potato, cooked, baked in skin, flesh, with salt","SWEET POTATO,CKD,BKD IN SKN,FLESH,W/ SALT",Sweetpotato,,,Skin,22,,,,,,Vegetables and Vegetable Products,2.01,0.15,20.71,92,6.48,3.3,38,0.69,27,54,475,246,0.32,0.2,,0,19.6,0.107,0.106,1.487,0.286,0,2.3,0,0
11876,1100,"Sweet potato, cooked, boiled, without skin, with salt","SWEET POTATO,CKD,BLD,WO/ SKN,W/ SALT",Sweetpotato,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.37,0.14,17.72,76,5.74,2.5,27,0.72,18,32,230,263,0.2,0.2,15740,0,12.8,0.056,0.047,0.538,0.165,0,2.1,0,0
11877,1100,"Sweet potato, frozen, cooked, baked, with salt","SWEET POTATO,FRZ,CKD,BKD,W/ SALT",Sweetpotato,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.71,0.12,23.4,100,,1.8,35,0.54,21,44,377,244,0.3,0.6,16410,0,9.1,0.066,0.056,0.555,0.186,0,,0,0
11878,1100,"Taro, cooked, with salt","TARO,COOKED,WITH SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,0.52,0.11,34.6,142,0.49,5.1,18,0.72,30,76,484,251,0.27,0.9,84,0,5,0.107,0.028,0.51,0.331,0,1.2,0,0
11879,1100,"Taro, leaves, cooked, steamed, with salt","TARO,LEAVES,CKD,STMD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.72,0.41,3.89,24,,2,86,1.18,20,27,460,238,0.21,0.9,4238,0,35.5,0.139,0.38,1.267,0.072,0,,0,0
11880,1100,"Taro, shoots, cooked, with salt","TARO,SHOOTS,CKD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.73,0.08,3.19,14,,,14,0.41,8,26,344,238,0.54,1,51,0,18.9,0.038,0.053,0.81,0.112,0,,0,0
11881,1100,"Taro, tahitian, cooked, with salt","TARO,TAHITIAN,CKD,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,4.16,0.68,6.85,44,,,149,1.56,51,67,623,290,0.1,0.8,1764,0,38,0.044,0.198,0.48,0.117,0,,0,0
11884,1100,"Tomatoes, red, ripe, cooked, with salt","TOMATOES,RED,RIPE,CKD,W/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.95,0.11,4.01,18,2.49,0.7,11,0.68,9,28,218,247,0.14,,489,0,22.8,0.036,0.022,0.532,0.079,0,2.8,0,0
11885,1100,"Tomatoes, red, ripe, canned, packed in tomato juice, no salt added","TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC,NO SALT ADDED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.79,0.25,3.47,16,2.55,1.9,33,0.57,10,17,191,10,0.12,0.7,441,0,12.6,0.575,0.055,0.712,0.111,0,2.9,0,0
11886,1100,"Tomato juice, canned, without salt added","TOMATO JUC,CND,WO/ SALT ADDED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.85,0.29,3.53,17,2.58,0.4,10,0.39,11,19,217,10,0.11,0.5,450,0,70.1,0.1,0.078,0.673,0.07,0,2.3,0,0
11888,1100,"Tomato products, canned, puree, with salt added","TOMATO PRODUCTS,CND,PUREE,W/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.65,0.21,8.98,38,4.83,1.9,18,1.78,23,40,439,202,0.36,0.7,510,0,10.6,0.025,0.08,1.466,0.126,0,3.4,0,0
11889,1100,"Turnips, cooked, boiled, drained, with salt","TURNIPS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.71,0.08,5.06,22,2.99,2,22,0.22,8,19,135,286,0.2,0.6,0,0,11.6,0.027,0.023,0.299,0.067,0,0.1,0,0
11890,1100,"Turnips, frozen, cooked, boiled, drained, with salt","TURNIPS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.53,0.24,3.73,21,1.73,2,32,0.98,14,26,182,272,0.2,0.6,0,0,3.9,0.035,0.028,0.56,0.067,0,0.1,0,0
11891,1100,"Turnip greens, cooked, boiled, drained, with salt","TURNIP GRNS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.14,0.23,4.36,20,0.53,3.5,137,0.8,22,29,203,265,0.14,0.9,7625,0,27.4,0.045,0.072,0.411,0.18,0,367.6,0,0
11892,1100,"Turnip greens, frozen, cooked, boiled, drained, with salt","TURNIP GRNS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.35,0.42,4.98,29,0.75,3.4,152,1.94,26,34,224,251,0.41,1.2,10765,0,21.8,0.054,0.074,0.468,0.067,0,518.9,0,0
11893,1100,"Turnip greens and turnips, frozen, cooked, boiled, drained, with salt","TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,,,,Vegetables and Vegetable Products,2.99,0.38,4.74,34,0.95,3.1,128,1.75,24,32,216,255,0.37,1.1,8612,0,18.2,0.05,0.065,0.486,0.067,0,415.1,0,0
11894,1100,"Vegetables, mixed, frozen, cooked, boiled, drained, with salt","VEGETABLES,MXD,FRZ,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.97,Vegetables and Vegetable Products,2.86,0.15,13.09,60,3.12,4.4,25,0.82,22,51,169,271,0.49,0.3,4277,0,3.2,0.071,0.12,0.851,0.074,0,23.5,0,0
11895,1100,"Waxgourd, (chinese preserving melon), cooked, boiled, drained, with salt","WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.4,0.2,2.45,11,1.18,1,18,0.38,10,17,5,343,0.59,0.2,0,0,10.5,0.034,0.001,0.384,0.032,0,2.8,0,0
11896,1100,"Winged bean, immature seeds, cooked, boiled, drained, with salt","WINGED BEAN,IMMAT SEEDS,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,5.31,0.66,3.21,37,,,61,1.09,30,25,274,240,0.28,1.1,88,0,9.8,0.086,0.072,0.652,0.082,0,,0,0
11897,1100,"Yam, cooked, boiled, drained, or baked, with salt","YAM,CKD,BLD,DRND,OR BKD,W/SALT",,,Y,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,1.49,0.14,26.99,114,0.49,3.9,14,0.52,18,49,670,244,0.2,0.7,122,0,12.1,0.095,0.028,0.552,0.228,0,2.3,0,0
11898,1100,"Yambean (jicama), cooked, boiled, drained, with salt","YAMBEAN (JICAMA),CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,0.72,0.09,8.23,36,,,11,0.57,11,16,135,242,0.15,0.7,19,0,14.1,0.017,0.028,0.19,0.04,0,,0,0
11899,1100,"Yardlong bean, cooked, boiled, drained, with salt","YARDLONG BEAN,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,3.47,8.37,4.07,Vegetables and Vegetable Products,2.53,0.1,9.17,47,,,44,0.98,42,57,290,240,0.36,1.5,450,0,16.2,0.085,0.099,0.63,0.024,0,,0,0
11900,1100,"Corn, sweet, white, raw","CORN,SWEET,WHITE,RAW",,,,"35% husk, silk, trimmings; 29% cob",64,Zea mays,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.22,1.18,19.02,86,3.22,2.7,2,0.52,37,89,270,15,0.45,0.6,1,0,6.8,0.2,0.06,1.7,0.055,0,0.3,0,0
11901,1100,"Corn, sweet, white, cooked, boiled, drained, without salt","CORN,SWT,WHITE,CKD,BLD,DRND,WO/SALT",,,Y,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.34,1.41,21.71,97,7.73,2.7,2,0.55,31,92,252,3,0.54,0.8,2,0,6.2,0.09,0.053,1.666,0.127,0,0.4,0,0
11902,1100,"Corn, sweet, white, cooked, boiled, drained, with salt","CORN,SWT,WHITE,CKD,BLD,DRND,W/SALT",,,,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.34,1.41,21.71,97,7.73,2.7,2,0.55,31,92,252,253,0.54,0.8,2,0,6.2,0.09,0.053,1.666,0.127,0,0.4,0,0
11903,1100,"Corn, sweet, white, canned, whole kernel, regular pack, solids and liquids","CORN,SWT,WHITE,CND,WHL KERNEL,REG PK,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.95,0.5,15.41,64,,1.7,4,0.41,16,51,164,213,0.36,0.6,0,0,5.5,0.026,0.061,0.939,0.037,0,,0,0
11904,1100,"Corn, sweet, white, canned, whole kernel, no salt added, solids and liquids","CORN,SWT,WHITE,CND,WHL KERNEL,NO SALT,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.95,0.5,15.41,64,,0.7,4,0.41,16,51,164,12,0.36,0.6,1,0,5.5,0.026,0.061,0.939,0.037,0,,0,0
11905,1100,"Corn, sweet, white, canned, whole kernel, drained solids","CORN,SWT,WHITE,CND,WHL KERNEL,DRND SOL",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.32,1.37,15.06,71,2.42,2.3,3,0.28,13,46,142,185,0.31,0.7,1,0,2.1,0.015,0.016,0.883,0.065,0,0,0,0
11906,1100,"Corn, sweet, white, canned, cream style, regular pack","CORN,SWT,WHITE,CND,CRM STYLE,REG PK",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.74,0.42,18.62,74,6.09,1.2,4,0.31,15,40,119,261,0.56,0.4,2,0,4.6,0.025,0.053,0.96,0.063,0,0,0,0
11907,1100,"Corn, sweet, white, canned, cream style, no salt added","CORN,SWT,WHITE,CND,CRM STYLE,NO SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.74,0.42,18.13,72,2.21,1.2,3,0.38,17,51,134,3,0.53,0.6,1,0,4.6,0.025,0.053,0.96,0.063,0,0.3,0,0
11908,1100,"Corn, sweet, white, canned, vacuum pack, regular pack","CORN,SWT,WHITE,CND,VACUUM PK,REG PK",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.41,0.5,19.44,79,,2,5,0.42,23,64,186,272,0.46,0.7,1,0,8.1,0.041,0.073,1.167,0.055,0,,0,0
11909,1100,"Corn, sweet, white, canned, vacuum pack, no salt added","CORN,SWT,WHITE,CND,VACUUM PK,NO SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.41,0.5,19.44,79,,2,5,0.42,23,64,186,3,0.46,0.7,1,0,8.1,0.041,0.073,1.167,0.055,0,,0,0
11910,1100,"Corn, sweet, white, frozen, kernels cut off cob, unprepared","CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.02,0.77,20.73,88,9.09,2.9,4,0.41,18,70,213,3,0.37,0.7,3,0,6.3,0.083,0.07,1.726,0.178,0,0.3,0,0
11911,1100,"Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, without salt","CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.75,0.43,19.56,80,3.12,2.4,4,0.35,19,57,147,5,0.4,0.7,3,0,3.1,0.083,0.071,1.299,0.129,0,0.3,0,0
11912,1100,"Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, with salt","CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.75,0.43,19.56,80,3.12,2.4,4,0.35,19,57,147,245,0.4,0.7,3,0,3.1,0.083,0.071,1.299,0.129,0,0.3,0,0
11913,1100,"Corn, sweet, white, frozen, kernels on cob, unprepared","CORN,SWT,WHITE,FRZ,KRNLS ON COB,UNPREP",,,,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.28,0.78,23.5,98,,2.8,4,0.68,32,87,294,5,0.7,0.8,4,0,7.2,0.103,0.088,1.681,0.179,0,,0,0
11914,1100,"Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, without salt","CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT",,,,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.11,0.74,22.33,94,,2.1,3,0.61,29,75,251,4,0.63,0.7,4,0,4.8,0.174,0.069,1.517,0.224,0,,0,0
11915,1100,"Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, with salt","CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT",,,,Cob,45,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.11,0.74,22.33,94,,2.8,3,0.61,29,75,251,240,0.63,0.7,4,0,4.8,0.174,0.069,1.517,0.224,0,,0,0
11916,1100,"Peppers, sweet, red, canned, solids and liquids","PEPPERS,SWT,RED,CND,SOL&LIQUIDS",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.8,0.3,3.9,18,,1.2,41,0.8,11,20,146,1369,0.18,0.3,520,0,46.5,0.025,0.03,0.55,0.178,0,,0,0
11917,1100,"Peppers, sweet, red, frozen, chopped, unprepared","PEPPERS,SWT,RED,FRZ,CHOPD,UNPREP",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.08,0.21,4.45,20,3.26,1.6,9,0.62,8,17,91,5,0.06,0.2,2428,0,58.7,0.069,0.038,1.37,0.137,0,3.8,0,0
11918,1100,"Peppers, sweet, red, frozen, chopped, boiled, drained, without salt","PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,WO/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.95,0.18,3.31,16,2.86,0.8,8,0.52,7,13,72,4,0.05,0.2,1917,0,41.2,0.051,0.031,1.082,0.108,0,3.4,0,0
11919,1100,"Peppers, sweet, red, frozen, chopped, boiled, drained, with salt","PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,W/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.95,0.18,3.31,16,2.86,0.8,8,0.52,7,13,72,240,0.05,0.2,1917,0,41.2,0.051,0.031,1.082,0.108,0,3.4,0,0
11921,1100,"Peppers, sweet, red, sauteed","PEPPERS,SWT,RED,SAUTEED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.04,12.75,6.57,133,4.28,1.8,7,0.47,12,23,193,21,0.15,,2760,0,162.8,0.056,0.109,0.954,0.364,0,16.4,0,0
11922,1100,"Sesbania flower, cooked, steamed, with salt","SESBANIA FLOWER,CKD,STMD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.14,0.05,5.1,21,,,22,0.56,12,21,107,247,,0.7,0,0,37,0.048,0.043,0.25,,0,,0,0
11923,1100,"Soybeans, mature seeds, sprouted, cooked, steamed, with salt","SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,8.47,4.45,6.53,81,0.43,0.8,59,1.31,60,135,355,246,1.04,0.6,40,0,8.3,0.205,0.053,1.092,0.105,0,33,0,0
11924,1100,"Soybeans, mature seeds, sprouted, cooked, stir-fried, with salt","SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,13.1,7.1,9.4,125,,0.8,82,0.4,96,216,567,250,2.1,0.6,17,0,12,0.42,0.19,1.1,0.168,0,,0,0
11925,1100,"Dock, cooked, boiled, drained, with salt","DOCK,CKD,BLD,DRND,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.83,0.64,2.93,20,,,38,2.08,89,52,321,239,0.17,0.9,3474,0,26.3,0.034,0.086,0.411,0.1,0,,0,0
11926,1100,"Lentils, sprouted, cooked, stir-fried, with salt","LENTILS,SPROUTED,CKD,STIR-FRIED,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,8.8,0.45,21.25,101,,,14,3.1,35,153,284,246,1.6,0.6,41,0,12.6,0.22,0.09,1.2,0.164,0,,0,0
11927,1100,"Mountain yam, hawaii, cooked, steamed, with salt","MOUNTAIN YAM,HAWAII,CKD,STMD,W/ SALT",,,,,0,,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.73,0.08,19.99,82,,,8,0.43,10,40,495,248,0.32,0.9,0,0,0,0.086,0.014,0.13,0.209,0,,0,0
11928,1100,"Tree fern, cooked, with salt","TREE FERN,CKD,W/SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.29,0.07,10.78,40,,3.7,8,0.16,5,4,5,241,0.31,0.9,200,0,30,0,0.3,3.5,0.179,0,,0,0
11929,1100,"Potatoes, mashed, prepared from granules, without milk, whole milk and margarine","POTATOES,MSHD,PREP FROM GRANULES,WO/MILK,WHL MILK&MARGARINE",,,,,0,,6.25,2.78,8.37,4.03,Vegetables and Vegetable Products,2.05,4.93,14.4,108,,2.2,35,0.19,19,60,145,263,0.24,0.5,213,0,6,0.079,0.077,0.763,0.01,0,,0,3
11930,1100,"Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and margarine added","POTATOES,MSHD,DEHYD,PREP FRM FLKS WO/ MILK,WHL MILK&MARG ADD",,,,,0,,6.29,3.21,8.82,4.02,Vegetables and Vegetable Products,1.9,5.6,15.02,113,,2.3,49,0.22,18,56,233,332,0.18,0.5,220,0,9.7,0.111,0.05,0.67,0.009,0,,0,4
11931,1100,"Peppers, sweet, red, freeze-dried","PEPPERS,SWT,RED,FREEZE-DRIED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,17.9,3,68.7,314,40.77,21.3,134,10.4,188,327,3170,193,2.41,3.7,77261,0,1900,1.2,1.2,7.4,2.223,0,114.2,0,0
11932,1100,"Beans, snap, yellow, canned, regular pack, drained solids","BEANS,SNAP,YEL,CND,REG PK,DRND SOL",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.15,0.1,4.5,20,0.78,1.3,26,0.9,13,19,109,251,0.29,0.4,105,0,4.8,0.015,0.056,0.201,0.037,0,39.3,0,0
11933,1100,"Beans, snap, yellow, canned, no salt added, drained solids","BEANS,SNAP,YEL,CND,NO SALT,DRND SOL",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.15,0.1,4.5,20,0.78,1.3,26,0.9,13,19,109,2,0.29,0.4,353,0,4.8,0.015,0.056,0.201,0.037,0,38.9,0,0
11934,1100,"Potatoes, mashed, home-prepared, whole milk and butter added","POTATOES,MSHD,HOME-PREPARED,WHL MILK & BUTTER ADDED",,,,,0,,,,,,Vegetables and Vegetable Products,1.86,4.22,16.81,113,1.43,1.5,24,0.26,18,45,284,317,0.27,0.8,138,10,6,0.086,0.041,1.072,0.222,0.07,2,0,11
11935,1100,Catsup,Catsup,Ketchup,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.04,0.1,27.4,101,21.27,0.3,15,0.35,13,26,281,907,0.17,0.7,527,0,4.1,0.011,0.166,1.434,0.158,0,3,0,0
11936,1100,"Mushrooms, brown, italian, or crimini, exposed to ultraviolet light, raw","MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,EXPOSED TO UV LT,RAW",,,,,0,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,2.5,0.1,4.3,22,1.72,0.6,18,0.4,9,120,448,6,1.1,26,0,1276,0,0.095,0.49,3.8,0.11,0.1,0,0,0
11937,1100,"Pickles, cucumber, dill or kosher dill","PICKLES,CUCUMBER,DILL OR KOSHER DILL",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.5,0.3,2.41,12,1.07,1,57,0.26,7,16,117,809,0.1,0,125,0,2.3,0.045,0.057,0.109,0.035,0,17.3,0,0
11938,1100,"Mushroom, white, exposed to ultraviolet light, raw","MUSHROOM,WHITE,EXPOSED TO UV LT,RAW",,,,,0,,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.09,0.34,3.26,22,1.98,1,3,0.5,9,86,318,5,0.52,9.3,0,1046,2.1,0.081,0.402,3.607,0.104,0,0,0,0
11939,1100,"Mushrooms, portabella, exposed to ultraviolet light, grilled","MUSHROOMS,PORTABELLA,EXPOSED TO UV LT,GRILLED",portobella,,,,0,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.28,0.58,4.44,29,2.26,2.2,3,0.4,13,135,437,11,0.65,21.9,,524,0,0.072,0.403,6.255,0.122,,0,,
11940,1100,"Pickles, cucumber, sweet (includes bread and butter pickles)","PICKLES,CUCUMBER,SWT (INCLUDES BREAD & BUTTER PICKLES)",,,Y,,0,,,,,,Vegetables and Vegetable Products,0.58,0.41,21.15,91,18.27,1,61,0.25,7,18,100,457,0.12,0,764,0,0.7,0.025,0.03,0.115,0.024,0,47.1,0,0
11941,1100,"Pickles, cucumber, sour","PICKLES,CUCUMBER,SOUR",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.33,0.2,2.26,11,1.06,1.2,0,0.4,4,14,23,1208,0.02,0,191,0,1,0,0.01,0,0.009,0,47,0,0
11943,1100,"Pimento, canned","PIMENTO,CANNED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.1,0.3,5.1,23,2.71,1.9,6,1.68,6,17,158,14,0.19,0.2,2655,0,84.9,0.017,0.06,0.615,0.215,0,8.3,0,0
11944,1100,"Pickle relish, hot dog","PICKLE RELISH,HOT DOG",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.5,0.46,23.35,91,,1.5,5,1.25,19,40,78,1091,0.21,0,167,0,1,0.04,0.04,0.5,0.015,0,,0,0
11945,1100,"Pickle relish, sweet","PICKLE RELISH,SWEET",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.37,0.47,35.06,130,29.13,1.1,3,0.87,5,14,25,811,0.14,0,1218,0,1,0,0.033,0.233,0.015,0,83.8,0,0
11946,1100,"Pickles, cucumber, sour, low sodium","PICKLES,CUCUMBER,SOUR,LO NA",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.33,0.2,2.26,11,1.06,1.2,0,0.4,4,14,23,18,0.02,0,191,0,1,0,0.01,0,0.009,0,47,0,0
11947,1100,"Pickles, cucumber, dill, reduced sodium","PICKLES,CUCUMBER,DILL,RED NA",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.5,0.3,2.41,12,1.07,1,57,0.26,7,16,117,18,0.1,0,125,0,2.3,0.045,0.057,0.109,0.035,0,17.3,0,0
11948,1100,"Pickles, cucumber, sweet, low sodium (includes bread and butter pickles)","PICKLES,CUCUMBER,SWT,LO NA (INCLUDES BREAD & BUTTER PICKLES)",,,Y,,0,,6.25,2.44,3.37,3.57,Vegetables and Vegetable Products,0.37,0.26,33.73,122,26.68,1.1,4,0.59,4,12,32,18,0.08,0,1116,0,1.2,0.009,0.032,0.174,0.015,0,76.7,0,0
11949,1100,"Catsup, low sodium","CATSUP,LOW SODIUM","Ketchup, low sodium",,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.04,0.1,27.4,101,21.27,0.3,15,0.35,13,26,281,20,0.17,0.7,527,0,4.1,0.011,0.166,1.434,0.158,0,3,0,0
11950,1100,"Mushrooms, enoki, raw","MUSHROOMS,ENOKI,RAW",,,,Stems and trimmings,16,Flammulina veluptipes,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,2.66,0.29,7.81,37,0.22,2.7,0,1.15,16,105,359,3,0.65,2.2,,5,0,0.225,0.2,7.032,0.1,0,0,0,0
11951,1100,"Peppers, sweet, yellow, raw","PEPPERS,SWEET,YELLOW,RAW",,,,"Stem ends, seeds and core",18,Capsicum annuum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1,0.21,6.32,27,,0.9,11,0.46,12,24,212,2,0.17,0.3,200,0,183.5,0.028,0.025,0.89,0.168,0,,0,0
11952,1100,"Radicchio, raw","RADICCHIO,RAW",,,Y,Core and leaf ends,9,Cichorium intybus,6.25,2.44,8.37,3.84,Vegetables and Vegetable Products,1.43,0.25,4.48,23,0.6,0.9,19,0.57,13,40,302,22,0.62,0.9,27,0,8,0.016,0.028,0.255,0.057,0,255.2,0,0
11953,1100,"Squash, zucchini, baby, raw","SQUASH,ZUCCHINI,BABY,RAW",,,,Ends,13,Cucurbita spp.,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.71,0.4,3.11,21,,1.1,21,0.79,33,93,459,3,0.83,0.3,490,0,34.1,0.042,0.036,0.705,0.142,0,,0,0
11954,1100,"Tomatillos, raw","TOMATILLOS,RAW",,,Y,,,Physalis philadelphica,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.96,1.02,5.84,32,3.93,1.9,7,0.62,20,39,268,1,0.22,0.5,114,0,11.7,0.044,0.035,1.85,0.056,0,10.1,0,0
11955,1100,"Tomatoes, sun-dried","TOMATOES,SUN-DRIED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,14.11,2.97,55.76,258,37.59,12.3,110,9.09,194,356,3427,107,1.99,5.5,874,0,39.2,0.528,0.489,9.05,0.332,0,43,0,0
11956,1100,"Tomatoes, sun-dried, packed in oil, drained","TOMATOES,SUN-DRIED,PACKED IN OIL,DRND",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.06,14.08,23.33,213,,5.8,47,2.68,81,139,1565,266,0.78,3,1286,0,101.8,0.193,0.383,3.63,0.319,0,,0,0
11957,1100,"Fennel, bulb, raw","FENNEL,BULB,RAW",,,Y,"Stalk, leaves and core",28,Foeniculum vulgare,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.24,0.2,7.3,31,3.93,3.1,49,0.73,17,50,414,52,0.2,0.7,963,0,12,0.01,0.032,0.64,0.047,0,62.8,0,0
11958,1100,"Pickle relish, hamburger","PICKLE RELISH,HAMBURGER",,,,,0,,6.25,2.44,3.37,3.57,Vegetables and Vegetable Products,0.63,0.54,34.48,129,,3.2,4,1.14,7,17,76,1096,0.11,0,267,0,2.3,0.02,0.042,0.617,0.015,0,,0,0
11959,1100,"Arugula, raw","ARUGULA,RAW",,,Y,"Roots, stems and yellowed leaves",40,Eruca sativa,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.58,0.66,3.65,25,2.05,1.6,160,1.46,47,52,369,27,0.47,0.3,2373,0,15,0.044,0.086,0.305,0.073,0,108.6,0,0
11960,1100,"Carrots, baby, raw","CARROTS,BABY,RAW",,,,,0,Daucus carota,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,0.64,0.13,8.24,35,4.76,2.9,32,0.89,10,28,237,78,0.17,0.9,13790,0,2.6,0.03,0.036,0.556,0.105,0,9.4,0,0
11961,1100,"Hearts of palm, canned","HEARTS OF PALM,CANNED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.52,0.62,4.62,28,,2.4,58,3.13,38,65,177,426,1.15,0.7,0,0,7.9,0.011,0.057,0.437,0.022,0,,0,0
11962,1100,"Peppers, hot chile, sun-dried","PEPPERS,HOT CHILE,SUN-DRIED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,10.58,5.81,69.86,324,41.06,28.7,45,6.04,88,159,1870,91,1.02,3.5,26488,0,31.4,0.081,1.205,8.669,0.81,0,108.2,0,0
11963,1100,"Nopales, raw","NOPALES,RAW",,,Y,Spines and dark spots,4,Nopalea cochenillifera,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.32,0.09,3.33,16,1.15,2.2,164,0.59,52,16,257,21,0.25,0.7,457,0,9.3,0.012,0.041,0.41,0.07,0,5.3,0,0
11964,1100,"Nopales, cooked, without salt","NOPALES,CKD,WO/SALT",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.35,0.05,3.28,15,1.12,2,164,0.5,47,16,195,20,0.21,0.7,443,0,5.3,0.011,0.04,0.296,0.067,0,5.1,0,0
11965,1100,"Cauliflower, green, raw","CAULIFLOWER,GREEN,RAW",,,Y,"Leaf stalks, core and trimmings",39,Brassica oleracea (Botrytis group),6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.95,0.3,6.09,31,3.03,3.2,33,0.73,20,62,300,23,0.64,0.6,155,0,88.1,0.08,0.102,0.734,0.222,0,20.2,0,0
11967,1100,"Cauliflower, green, cooked, no salt added","CAULIFLOWER,GRN,CKD,NO SALT ADDED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.04,0.31,6.28,32,3.12,3.3,32,0.72,19,57,278,23,0.63,0.8,144,0,72.6,0.07,0.1,0.681,0.206,0,20.8,0,0
11968,1100,"Cauliflower, green, cooked, with salt","CAULIFLOWER,GRN,CKD,W/ SALT",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,3.04,0.31,6.28,32,,3.3,32,0.72,19,57,278,259,0.63,0.8,141,0,72.6,0.07,0.1,0.681,0.206,0,,0,0
11969,1100,"Broccoli, chinese, cooked","BROCCOLI,CHINESE,COOKED",,,Y,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.14,0.72,3.81,22,0.84,2.5,100,0.56,18,41,261,7,0.39,1.3,1638,0,28.2,0.095,0.146,0.437,0.07,0,84.8,0,0
11970,1100,"Cabbage, napa, cooked","CABBAGE,NAPA,COOKED",,,,,0,Brassica oleracea,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.1,0.17,2.23,12,,,29,0.74,8,19,87,11,0.14,0.4,263,0,3.2,0.005,0.025,0.466,0.037,0,,0,0
11972,1100,"Lemon grass (citronella), raw","LEMON GRASS (CITRONELLA),RAW",,,,Tough stem,35,Collinsonia canadensis,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.82,0.49,25.31,99,,,65,8.17,60,101,723,6,2.23,0.7,6,0,2.6,0.065,0.135,1.101,0.08,0,,0,0
11973,1100,"Beans, fava, in pod, raw","BEANS,FAVA,IN POD,RAW",,,,Ends,3,Vicia faba,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,7.92,0.73,17.63,88,9.21,7.5,37,1.55,33,129,332,25,1,0.8,333,0,3.7,0.133,0.29,2.249,0.104,0,40.9,0,0
11974,1100,"Grape leaves, raw","GRAPE LEAVES,RAW",,,Y,Tough stems,5,Vitis vinifera,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,5.6,2.12,17.31,93,6.3,11,363,2.63,95,91,272,9,0.67,0.9,27521,0,11.1,0.04,0.354,2.362,0.4,0,108.6,0,0
11975,1100,"Grape leaves, canned","GRAPE LEAVES,CND",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.27,1.97,11.71,69,,9.9,289,2.98,14,34,29,2853,0.4,0.9,5253,0,11.3,0.064,0.364,4.505,0.136,0,97.3,0,0
11976,1100,"Pepper, banana, raw","PEPPER,BANANA,RAW",,,Y,"Stem ends, seeds and core",18,Capsicum anuum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.66,0.45,5.35,27,1.95,3.4,14,0.46,17,32,256,13,0.25,0.3,340,0,82.7,0.081,0.054,1.242,0.357,0,9.5,0,0
11977,1100,"Peppers, serrano, raw","PEPPERS,SERRANO,RAW",,,Y,Stems,3,Capsicum anuum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,1.74,0.44,6.7,32,3.83,3.7,11,0.86,22,40,305,10,0.26,0.4,937,0,44.9,0.054,0.081,1.537,0.505,0,11.8,0,0
11978,1100,"Peppers, ancho, dried","PEPPERS,ANCHO,DRIED",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,11.86,8.2,51.42,281,,21.6,61,10.93,113,201,2411,43,1.42,2.9,20438,0,2,0.179,2.255,6.403,3.535,0,,0,0
11979,1100,"Peppers, jalapeno, raw","PEPPERS,JALAPENO,RAW",,,Y,Stems and seeds,8,Capsicum anuum,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.91,0.37,6.5,29,4.12,2.8,12,0.25,15,26,248,3,0.14,0.4,1078,0,118.6,0.04,0.07,1.28,0.419,0,18.5,0,0
11980,1100,"Peppers, chili, green, canned","PEPPERS,CHILI,GRN,CND",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.72,0.27,4.6,21,,1.7,36,1.33,4,11,113,397,0.09,0.3,126,0,34.2,0.01,0.03,0.627,0.12,0,,0,0
11981,1100,"Peppers, hungarian, raw","PEPPERS,HUNGARIAN,RAW",,,,Stems,12,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.8,0.41,6.7,29,3.53,1,12,0.46,16,29,202,1,0.3,0.3,816,0,92.9,0.079,0.055,1.092,0.517,0,9.9,0,0
11982,1100,"Peppers, pasilla, dried","PEPPERS,PASILLA,DRIED",,,,Stems,6,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,12.35,15.85,51.13,345,,26.8,97,9.83,130,267,2222,89,1.4,3.2,35760,0,6.4,0.172,3.197,7.175,4.228,0,,0,0
11983,1100,"Pickles, chowchow, with cauliflower onion mustard, sweet","PICKLES,CHOWCHOW,W/CAULIFLOWER ONION MUSTARD,SWT",,,Y,,0,,,,,,Vegetables and Vegetable Products,1.5,0.9,26.64,121,23.88,1.5,23,1.4,21,22,200,527,0.23,2,90,0,6,0,0.02,0,0.01,0,61.6,0,0
11984,1100,"Epazote, raw","EPAZOTE,RAW",,,,,0,Chenopodium ambrosiodes,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,0.33,0.52,7.44,32,,3.8,275,1.88,121,86,633,43,1.1,0.9,57,0,3.6,0.028,0.348,0.639,0.152,0,,0,0
11985,1100,"Fireweed, leaves, raw","FIREWEED,LEAVES,RAW",,,,Stems and flowers,65,Epilobium angustifolium,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.71,2.75,19.22,103,,10.6,429,2.4,156,108,494,34,2.66,0.9,3598,0,2.2,0.033,0.137,4.674,0.632,0,,0,0
11986,1100,"Malabar spinach, cooked","MALABAR SPINACH,COOKED",,,,Stems,30,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,2.98,0.78,2.71,23,,2.1,124,1.48,48,36,256,55,0.3,0.9,1158,0,5.9,0.106,0.129,0.787,0.086,0,,0,0
11987,1100,"Mushrooms, oyster, raw","MUSHROOMS,OYSTER,RAW",,,,Stems,11,Pleurotus ostreatus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.31,0.41,6.09,33,1.11,2.3,3,1.33,18,120,420,18,0.77,2.6,48,29,0,0.125,0.349,4.956,0.11,0,0,0,0
11988,1100,"Fungi, Cloud ears, dried","FUNGI,CLOUD EARS,DRIED",,,,,0,,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,9.25,0.73,73.01,284,,70.1,159,5.88,83,184,754,35,1.32,43.4,0,0,0,0.015,0.844,6.267,0.112,0,,0,0
11989,1100,"Mushrooms, straw, canned, drained solids","MUSHROOMS,STRAW,CND,DRND SOL",,,,,0,,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.83,0.68,4.64,32,,2.5,10,1.43,7,61,78,384,0.67,15.2,0,,0,0.013,0.07,0.224,0.014,0,,0,0
11990,1100,"Wasabi, root, raw","WASABI,ROOT,RAW",,,,Peel,23,Wasabia japonica,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,4.8,0.63,23.54,109,,7.8,128,1.03,69,80,568,17,1.62,,35,0,41.9,0.131,0.114,0.743,0.274,0,,0,0
11991,1100,"Yautia (tannier), raw","YAUTIA (TANNIER),RAW",,,,Peel,14,Xanthosoma sagittifolium,6.25,2.78,8.37,3.84,Vegetables and Vegetable Products,1.46,0.4,23.63,98,,1.5,9,0.98,24,51,598,21,0.5,0.7,8,0,5.2,0.097,0.04,0.667,0.237,0,,0,0
11992,1100,"Mushrooms, white, microwaved","MUSHROOMS,WHITE,MICROWAVED",,,,,0,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,3.91,0.46,6.04,35,0,2.5,6,0.33,14,127,488,17,0.73,18,0,11,0,0.06,0.431,5.35,0.049,0,0,0,0
11993,1100,"Mushrooms, maitake, raw","MUSHROOMS,MAITAKE,RAW",,,,,0,Grifola frondosa,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,1.94,0.19,6.97,31,2.07,2.7,1,0.3,10,74,204,1,0.75,2.2,0,1123,0,0.146,0.242,6.585,0.056,0,0,0,0
11994,1100,"Broccoli, chinese, raw","BROCCOLI,CHINESE,RAW","gai-lan, kai-lan",,Y,Base and damaged leaves,12, Brassica oleracea var. alboglabra,,,,,Vegetables and Vegetable Products,1.2,0.76,4.67,30,0.88,2.6,105,0.59,19,43,274,7,0.41,1.4,1720,0,29.6,0.1,0.153,0.459,0.074,0,89.1,0,0
11995,1100,"Fiddlehead ferns, raw","FIDDLEHEAD FERNS,RAW",,,,,,Matteuccia struthioreris,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.55,0.4,5.54,34,,,32,1.31,34,101,370,1,0.83,,3617,0,26.6,0.02,0.21,4.98,,0,,,0
11996,1100,"Fiddlehead ferns, frozen, unprepared","FIDDLEHEAD FERNS,FRZ,UNPREP",,,,,0,,6.25,2.44,8.37,3.57,Vegetables and Vegetable Products,4.31,0.35,5.74,34,,,24,0.73,19,58,129,0,0.71,,3350,0,17.8,0.014,0.13,3.26,,0,,,0
11998,1100,"Mushrooms, portabella, exposed to ultraviolet light, raw","MUSHROOMS,PORTABELLA,EXPOSED TO UV LT,RAW",portobella,,,Trimmings,3,Agaricus bisporus,6.25,2.62,8.37,3.48,Vegetables and Vegetable Products,2.11,0.35,3.87,22,2.5,1.3,3,0.31,10,108,364,9,0.53,18.6,0,1135,0,0.059,0.13,4.494,0.148,0.05,0,0,0
12001,1200,"Seeds, breadfruit seeds, raw","BREADFRUIT SEEDS,RAW",,,,Shells,32,Artocarpus altilis,5.3,3.47,8.37,4.07,Nut and Seed Products,7.4,5.59,29.24,191,,5.2,36,3.67,54,175,941,25,0.9,,256,0,6.6,0.482,0.301,0.438,0.32,0,,0,0
12003,1200,"Seeds, breadfruit seeds, boiled","BREADFRUIT SEEDS,BOILED",,,,Soft shells,64,,5.3,3.47,8.37,4.07,Nut and Seed Products,5.3,2.3,32,168,,4.8,61,0.6,50,124,875,23,0.83,,238,0,6.1,0.29,0.17,5.3,0.298,0,,0,0
12004,1200,"Seeds, breadnut tree seeds, raw","SEEDS,BREADNUT TREE SEEDS,RAW",,,,,0,Brosimum alicastrum,5.3,3.47,8.37,4.07,Nut and Seed Products,5.97,0.99,46.28,217,,,98,2.09,68,67,1183,31,1.13,,248,0,27.4,0.055,0.055,0.88,0.403,0,,0,0
12005,1200,"Seeds, breadnut tree seeds, dried","SEEDS,BREADNUT TREE SEEDS,DRIED",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,8.62,1.68,79.39,367,,14.9,94,4.6,115,178,2011,53,1.91,1.9,216,0,46.6,0.03,0.14,2.1,0.685,0,,0,0
12006,1200,"Seeds, chia seeds, dried","CHIA SEEDS,DRIED",,,,,0,Salvia hispanica,5.3,3.47,8.37,4.07,Nut and Seed Products,16.54,30.74,42.12,486,,34.4,631,7.72,335,860,407,16,4.58,55.2,54,,1.6,0.62,0.17,8.83,,0,,,0
12007,1200,"Seeds, cottonseed flour, partially defatted (glandless)","COTTONSEED FLR,PART DEFATTED (GLANDLESS)",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,40.96,6.2,40.54,359,,3,478,12.66,721,1597,1772,35,11.69,5.6,434,0,2.4,2.102,0.399,4.065,0.769,0,,0,0
12008,1200,"Seeds, cottonseed flour, low fat (glandless)","COTTONSEED FLR,LOFAT (GLANDLESS)",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,49.83,1.41,36.1,332,,,474,12.58,716,1587,1761,35,11.61,,432,0,2.4,2.089,0.396,4.039,0.764,0,,0,0
12011,1200,"Seeds, cottonseed meal, partially defatted (glandless)","COTTONSEED MEAL,PART DEFATTED (GLANDLESS)",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,49.1,4.77,38.43,367,,,504,13.35,760,1684,1869,37,12.32,,458,0,2.5,2.217,0.42,4.286,0.811,0,,0,0
12012,1200,"Seeds, hemp seed, hulled","SEEDS,HEMP SD,HULLED",,,,,0,Cannabis sativa L.,5.3,3.47,8.37,4.07,Nut and Seed Products,31.56,48.75,8.67,553,1.5,4,70,7.95,700,1650,1200,5,9.9,,11,,0.5,1.275,0.285,9.2,0.6,,,0,0
12013,1200,"Seeds, lotus seeds, dried","LOTUS SEEDS,DRIED",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,15.41,1.97,64.47,332,,,163,3.53,210,626,1368,5,1.05,,50,0,0,0.64,0.15,1.6,0.629,0,,0,0
12014,1200,"Seeds, pumpkin and squash seed kernels, dried","PUMPKIN&SQUASH SD KRNLS,DRIED",pepitas,,Y,Hulls,26,,5.3,3.47,8.37,4.07,Nut and Seed Products,30.23,49.05,10.71,559,1.4,6,46,8.82,592,1233,809,7,7.81,9.4,16,0,1.9,0.273,0.153,4.987,0.143,0,7.3,0,0
12016,1200,"Seeds, pumpkin and squash seed kernels, roasted, without salt","PUMPKIN&SQUASH SD KRNLS,RSTD,WO/SALT",pepitas,,Y,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,29.84,49.05,14.71,574,1.29,6.5,52,8.07,550,1174,788,18,7.64,9.4,8,0,1.8,0.07,0.15,4.43,0.1,0,4.5,0,0
12021,1200,"Seeds, safflower seed kernels, dried","SAFFLOWER SD KRNLS,DRIED",,,,Hulls,49,Carthamus tinctorius,5.3,3.47,8.37,4.07,Nut and Seed Products,16.18,38.45,34.29,517,,,78,4.9,353,644,687,3,5.05,,50,0,0,1.163,0.415,2.284,1.17,0,,0,0
12022,1200,"Seeds, safflower seed meal, partially defatted","SAFFLOWER SD MEAL,PART DEFATTED",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,35.62,2.39,48.73,342,,,77,4.86,350,638,68,3,5.01,,49,0,0,1.153,0.412,2.265,1.161,0,,0,0
12023,1200,"Seeds, sesame seeds, whole, dried","SESAME SEEDS,WHOLE,DRIED",,,Y,,0,Sesamum indicum,5.3,3.47,8.37,4.07,Nut and Seed Products,17.73,49.67,23.45,573,0.3,11.8,975,14.55,351,629,468,11,7.75,34.4,9,0,0,0.791,0.247,4.515,0.79,0,0,0,0
12024,1200,"Seeds, sesame seeds, whole, roasted and toasted","SESAME SEEDS,WHL,RSTD&TSTD",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,16.96,48,25.74,565,,14,989,14.76,356,638,475,11,7.16,34.4,9,0,0,0.803,0.251,4.581,0.802,0,,0,0
12029,1200,"Seeds, sesame seed kernels, toasted, without salt added (decorticated)","SESAME SD KRNLS,TSTD,WO/SALT (DECORT)",,,Y,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,16.96,48,26.04,567,0.48,16.9,131,7.78,346,774,406,39,10.23,34.4,66,0,0,1.205,0.466,5.438,0.146,0,0,0,0
12032,1200,"Seeds, sesame flour, partially defatted","SESAME FLR,PART DEFATTED",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,40.32,11.89,35.14,382,,,150,14.3,362,810,425,41,10.7,,69,0,0,2.53,0.27,12.6,0.152,0,,0,0
12033,1200,"Seeds, sesame flour, low-fat","SESAME FLOUR,LOW-FAT",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,50.14,1.75,35.51,333,,,149,14.22,338,757,397,39,10,,64,0,0,2.516,0.269,12.533,0.142,0,,0,0
12034,1200,"Seeds, sesame meal, partially defatted","SESAME MEAL,PART DEFATTED",,,,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,16.96,48,26.04,567,,,153,14.55,346,774,406,39,10.23,,66,0,0,2.573,0.275,12.816,0.146,0,,0,0
12036,1200,"Seeds, sunflower seed kernels, dried","SUNFLOWER SD KRNLS,DRIED",,,Y,Hulls,46,Helianthus annuus,5.3,3.47,8.37,4.07,Nut and Seed Products,20.78,51.46,20,584,2.62,8.6,78,5.25,325,660,645,9,5,53,50,0,1.4,1.48,0.355,8.335,1.345,0,0,0,0
12037,1200,"Seeds, sunflower seed kernels, dry roasted, without salt","SUNFLOWER SD KRNLS,DRY RSTD,WO/SALT",,,Y,,0,,5.3,3.47,8.37,4.07,Nut and Seed Products,19.33,49.8,24.07,582,2.73,11.1,70,3.8,129,1155,850,3,5.29,79.3,9,0,1.4,0.106,0.246,7.042,0.804,0,2.7,0,0
12038,1200,"Seeds, sunflower seed kernels, oil roasted, without salt","SUNFLOWER SD KRNLS,OIL RSTD,WO/SALT",,,Y,,0,,5.3,3.47,8.37,4.07,Nut and Seed P
View raw

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

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