Started to put in a dropdown menu system and table column header menus.

Stole some test files from mandala.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@5 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-01-26 07:57:11 +00:00
parent 9f436ad717
commit 083d06830d
12 changed files with 345268 additions and 5 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1 +1 @@
<html> <head> <title>Gridlock</title> <link rel="stylesheet" href="/styles/common.css" /> <link rel="stylesheet" href="/styles/project.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> <script type="text/javascript" src="scripts/util/url.js"></script> <script type="text/javascript" src="scripts/util/string.js"></script> <script type="text/javascript" src="scripts/util/ajax.js"></script> <script type="text/javascript" src="scripts/project.js"></script> </head> <body> <div id="header"> <h1 id="title">Gridlock</h1> </div> <div id="body"> Loading ... </div> </body> </html>
<html> <head> <title>Gridlock</title> <link rel="stylesheet" href="/styles/common.css" /> <link rel="stylesheet" href="/styles/project.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> <script type="text/javascript" src="scripts/util/url.js"></script> <script type="text/javascript" src="scripts/util/string.js"></script> <script type="text/javascript" src="scripts/util/ajax.js"></script> <script type="text/javascript" src="scripts/util/menu.js"></script> <script type="text/javascript" src="scripts/project.js"></script> </head> <body> <div id="header"> <h1 id="title">Gridlock</h1> </div> <div id="body"> Loading ... </div> </body> </html>

View File

@ -93,12 +93,27 @@ function renderView() {
var trHead = table.insertRow(0);
var td = trHead.insertCell(trHead.cells.length);
var createColumnHeader = function(column, index) {
var td = trHead.insertCell(trHead.cells.length);
$(td).addClass("column-header");
var headerTable = document.createElement("table");
$(headerTable).attr("cellspacing", "0").attr("cellpadding", "0").attr("width", "100%").appendTo(td);
var headerTableRow = headerTable.insertRow(0);
var headerLeft = headerTableRow.insertCell(0);
var headerRight = headerTableRow.insertCell(1);
$(headerRight).attr("width", "1%");
$('<span></span>').html(column.headerLabel).appendTo(headerLeft);
$('<img src="/images/menu-dropdown.png" />').addClass("column-header-menu").appendTo(headerRight).click(function() {
createMenuForColumnHeader(column, index, this);
});
};
var columns = theProject.columnModel.columns;
for (var i = 0; i < columns.length; i++) {
var column = columns[i];
var td = trHead.insertCell(trHead.cells.length);
$(td).html(column.headerLabel);
createColumnHeader(columns[i], i);
}
var rows = theProject.rowModel.rows;
@ -151,3 +166,12 @@ function onClickFirstPage() {
function onClickLastPage() {
showRows(Math.floor(theProject.rowModel.total / theProject.view.pageSize) * theProject.view.pageSize);
}
function createMenuForColumnHeader(column, index, elmt) {
var menu = MenuSystem.createMenu();
MenuSystem.createMenuItem().html("Reconcile").appendTo(menu);
MenuSystem.showMenu(menu);
MenuSystem.positionMenuAboveBelow(menu, $(elmt));
}

View File

@ -0,0 +1,61 @@
MenuSystem = {
_layers: [],
_overlay: null
};
MenuSystem.showMenu = function(elmt) {
if (MenuSystem._overlay == null) {
MenuSystem._overlay = $('<div>&nbsp;</div>')
.addClass("menu-overlay")
.css("z-index", 1000)
.appendTo(document.body)
.click(MenuSystem.dismissAll);
}
elmt.css("z-index", 1001 + MenuSystem._layers.length).appendTo(document.body);
var layer = {
elmt: elmt
};
MenuSystem._layers.push(layer);
var level = MenuSystem._layers.length;
elmt.mouseout(function() { MenuSystem._dismissUtil(level); });
elmt.click(MenuSystem.dismissAll);
};
MenuSystem.dismissAll = function() {
MenuSystem._dismissUtil(0);
if (MenuSystem._overlay != null) {
MenuSystem._overlay.remove();
MenuSystem._overlay = null;
}
};
MenuSystem._dismissUtil = function(level) {
for (var i = MenuSystem._layers.length - 1; i >= level; i--) {
MenuSystem._layers[i].elmt.remove();
}
MenuSystem._layers = MenuSystem._layers.slice(0, level);
};
MenuSystem.createMenu = function() {
return $('<div></div>').addClass("menu-container");
};
MenuSystem.createMenuItem = function() {
return $('<a href="javascript:{}"></a>').addClass("menu-item");
};
MenuSystem.positionMenuAboveBelow = function(menu, elmt) {
var offset = elmt.offset();
menu.css("left", offset.left + "px")
.css("top", (offset.top + elmt.height()) + "px");
};
MenuSystem.positionMenuLeftRight = function(menu, elmt) {
var offset = elmt.offset();
menu.css("top", offset.top + "px")
.css("left", (offset.left + elmt.width()) + "px");
};

View File

@ -44,3 +44,33 @@ a.inaction {
text-decoration: none;
color: #ccc;
}
.menu-overlay {
background: black;
opacity: 0.3;
position: fixed;
padding: 0px;
margin: 0px;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
.menu-container {
position: absolute;
width: 200px;
background: white;
padding: 1px;
border: 1px solid #ddd;
}
a.menu-item {
display: block;
padding: 2px 5px;
text-decoration: none;
}
a.menu-item:hover {
background: #dddddd;
}

View File

@ -9,9 +9,23 @@ table.data-table tr.even {
background: #eee;
}
table.data-table td.column-header {
background: #ddd;
cursor: pointer;
padding: 5px 5px;
border-bottom: 2px solid #aaa;
}
img.column-header-menu {
position: relative;
top: -7px;
right: -7px;
}
.viewPanel-summary {
}
.viewPanel-pagingControls {
text-align: center;
margin: 1em 0;
}
}

19724
tests/birds.csv Normal file

File diff suppressed because it is too large Load Diff

7520
tests/food.csv Normal file

File diff suppressed because it is too large Load Diff

200
tests/food.small.csv Normal file
View File

@ -0,0 +1,200 @@
NDB_No,Shrt_Desc,Water,Energ_Kcal,Protein,Lipid_Tot,Ash,Carbohydrt,Fiber_TD,Sugar_Tot,Calcium,Iron,Magnesium,Phosphorus,Potassium,Sodium,ZInc,Copper,Manganese,Selenium,Vit_C,Thiamin,Ribolfavin,Niacin,Panto_Acid,Vit_B6,Folate_Tot,Folic_Acid,Food_Folate,Folate_DFE,Choline_Tot,Vit_B12,Vit_A_IU,Vit_A_RAE,Retinol,Alpha_Carot,Beta_Carot,Beta_Crypt,Lycopene,Lut+Zea,Vit_E,Vit_K,FA_SAt,FA_Mono,FA_Poly,Cholestrl,GmWt_1,GmWt_Desc1,GmWt_2,GmWt_Desc2,Refuse_Pct
01001,"BUTTER,WITH SALT",15.87,717,0.85,81.11,2.11,0.06,0,0.059999999,24,0.02,2,24,24,576,0.09,0,0,1,0,0.005,0.034,0.042,0.11,0.003,3,0,3,3,19,0.17,2499,684,671,0,158,0,0,0,2.32,7,51.368,21.021,3.043,215,227,1 cup,14,1 tbsp,0
01002,"BUTTER,WHIPPED,WITH SALT",15.87,717,0.85,81.11,2.11,0.06,0,0.059999999,24,0.16,2,23,26,827,0.05,0.016,0.004,1,0,0.005,0.034,0.042,0.11,0.003,3,0,3,3,19,0.13,2499,684,671,0,158,0,0,0,2.32,7,50.489,23.426,3.012,219,151,1 cup,9,1 tbsp,0
01003,"BUTTER OIL,ANHYDROUS",0.24,876,0.28,99.48,0,0,0,0,4,0,0,3,5,2,0.01,0.001,0,0,0,0.001,0.005,0.003,0.01,0.001,0,0,0,0,22,0.01,3069,840,824,0,193,0,0,0,2.8,8.6,61.924,28.732,3.694,256,205,1 cup,13,1 tbsp,0
01004,"CHEESE,BLUE",42.41,353,21.4,28.74,5.11,2.34,0,0.5,528,0.31,23,387,256,1395,2.66,0.04,0.009,14.5,0,0.029,0.382,1.016,1.729,0.166,36,0,36,36,15,1.22,763,198,192,0,74,0,0,0,0.25,2.4,18.669,7.778,0.8,75,28.35,1 oz,17,1 cubic inch,0
01005,"CHEESE,BRICK",41.11,371,23.24,29.68,3.18,2.79,0,0.50999999,674,0.43,24,451,136,560,2.6,0.024,0.012,14.5,0,0.014,0.351,0.118,0.288,0.065,20,0,20,20,15,1.26,1080,292,286,0,76,0,0,0,0.26,2.5,18.764,8.598,0.784,94,132,"1 cup, diced",113,"1 cup, shredded",0
01006,"CHEESE,BRIE",48.42,334,20.75,27.68,2.7,0.45,0,0.449999988,184,0.5,20,188,152,629,2.38,0.019,0.034,14.5,0,0.07,0.52,0.38,0.69,0.235,65,0,65,65,15,1.65,592,174,173,0,9,0,0,0,0.24,2.3,17.41,8.013,0.826,100,240,"1 cup, melted",144,"1 cup, sliced",0
01007,"CHEESE,CAMEMBERT",51.8,300,19.8,24.26,3.68,0.46,0,0.460000008,388,0.33,20,347,187,842,2.38,0.021,0.038,14.5,0,0.028,0.488,0.63,1.364,0.227,62,0,62,62,15,1.3,820,241,240,0,12,0,0,0,0.21,2,15.259,7.023,0.724,72,246,1 cup,28,1 oz,0
01008,"CHEESE,CARAWAY",39.28,376,25.18,29.2,3.28,3.06,0,,673,0.64,22,490,93,690,2.94,0.024,0.021,14.5,0,0.031,0.45,0.18,0.19,0.074,18,0,18,18,,0.27,1054,271,262,,,,,,,,18.584,8.275,0.83,93,28.35,1 oz,,,0
01009,"CHEESE,CHEDDAR",36.75,403,24.9,33.14,3.93,1.28,0,0.519999981,721,0.68,28,512,98,621,3.11,0.031,0.01,13.9,0,0.027,0.375,0.08,0.413,0.074,18,0,18,18,16,0.83,1002,265,258,0,85,0,0,0,0.29,2.8,21.092,9.391,0.942,105,132,"1 cup, diced",244,"1 cup, melted",0
01010,"CHEESE,CHESHIRE",37.65,387,23.37,30.6,3.6,4.78,0,,643,0.21,21,464,95,700,2.79,0.042,0.012,14.5,0,0.046,0.293,0.08,0.413,0.074,18,0,18,18,,0.83,985,233,220,,,,,,,,19.475,8.671,0.87,103,28.35,1 oz,,,0
01011,"CHEESE,COLBY",38.2,394,23.76,32.11,3.36,2.57,0,0.519999981,685,0.76,26,457,127,604,3.07,0.042,0.012,14.5,0,0.015,0.375,0.093,0.21,0.079,18,0,18,18,15,0.83,994,264,257,0,82,0,0,0,0.28,2.7,20.218,9.28,0.953,95,132,"1 cup, diced",113,"1 cup, shredded",0
01012,"CHEESE,COTTAGE,CRMD,LRG OR SML CURD",79.79,98,11.12,4.3,1.41,3.38,0,2.670000076,83,0.07,8,159,104,364,0.4,0.029,0.002,9.7,0,0.027,0.163,0.099,0.557,0.046,12,0,12,12,18,0.43,140,37,36,0,12,0,0,0,0.08,0,1.718,0.778,0.123,17,113,4 oz,210,"1 cup, large curd (not packed)",0
01013,"CHEESE,COTTAGE,CRMD,W/FRUIT",79.64,97,10.69,3.85,1.2,4.61,0.200000003,2.380000114,53,0.16,7,113,90,344,0.33,0.04,0.003,7.7,1.4,0.033,0.142,0.15,0.181,0.068,11,0,11,11,18,0.53,146,38,37,0,14,0,0,0,0.04,0.4,2.311,1.036,0.124,13,226,"1 cup, (not packed)",113,4 oz,0
01014,"CHEESE,COTTAGE,NONFAT,UNCRMD,DRY,LRG OR SML CURD",81.01,72,10.34,0.29,1.71,6.66,0,1.850000024,86,0.15,11,190,137,330,0.47,0.03,0.022,9.4,0,0.023,0.226,0.144,0.446,0.016,9,0,9,9,18,0.46,8,2,2,0,0,0,0,0,0.01,0,0.169,0.079,0.003,7,145,"1 cup, (not packed)",113,4 oz,0
01015,"CHEESE,COTTAGE,LOWFAT,2% MILKFAT",80.69,86,11.83,2.45,1.36,3.66,0,3.670000076,91,0.15,7,163,84,330,0.41,0.03,0.007,9.9,0,0.041,0.198,0.108,0.253,0.022,10,0,10,10,16,0.45,74,20,19,0,6,0,0,0,0.04,0,0.979,0.443,0.07,10,226,"1 cup, (not packed)",113,4 oz,0
01016,"CHEESE,COTTAGE,LOWFAT,1% MILKFAT",82.48,72,12.39,1.02,1.39,2.72,0,2.720000029,61,0.14,5,134,86,406,0.38,0.028,0.003,9,0,0.021,0.165,0.128,0.215,0.068,12,0,12,12,18,0.63,41,11,11,0,3,0,0,0,0.01,0.1,0.645,0.291,0.031,4,226,"1 cup, (not packed)",113,4 oz,0
01017,"CHEESE,CREAM",54.44,342,5.93,34.24,1.32,4.07,0,3.210000038,98,0.38,9,106,138,321,0.51,0.019,0.011,2.4,0,0.02,0.125,0.145,0.57,0.035,11,0,11,11,27,0.25,1265,362,359,0,41,0,0,0,0.65,3.4,19.292,8.62,1.437,110,232,1 cup,14,1 tbsp,0
01018,"CHEESE,EDAM",41.56,357,24.99,27.8,4.22,1.43,0,1.429999948,731,0.44,30,536,188,965,3.75,0.036,0.011,14.5,0,0.037,0.389,0.082,0.281,0.076,16,0,16,16,15,1.54,825,243,242,0,11,0,0,0,0.24,2.3,17.572,8.125,0.665,89,28.35,1 oz,198,"1 package, (7 oz)",0
01019,"CHEESE,FETA",55.22,264,14.21,21.28,5.2,4.09,0,4.090000153,493,0.65,19,337,62,1116,2.88,0.032,0.028,15,0,0.154,0.844,0.991,0.967,0.424,32,0,32,32,15,1.69,422,125,125,0,3,0,0,0,0.18,1.8,14.946,4.623,0.591,89,150,"1 cup, crumbled",28,1 oz,0
01020,"CHEESE,FONTINA",37.92,389,25.6,31.14,3.79,1.55,0,1.549999952,550,0.23,14,346,64,800,3.5,0.025,0.014,14.5,0,0.021,0.204,0.15,0.429,0.083,6,0,6,6,15,1.68,913,261,258,0,32,0,0,0,0.27,2.6,19.196,8.687,1.654,116,132,"1 cup, diced",108,"1 cup, shredded",0
01021,"CHEESE,GJETOST",13.44,466,9.65,29.51,4.75,42.65,0,,400,0.52,70,444,1409,600,1.14,0.08,0.04,14.5,0,0.315,1.382,0.813,3.351,0.271,5,0,5,5,,2.42,1113,334,334,,,,,,,,19.16,7.879,0.938,94,28.35,1 oz,227,"1 package, (8 oz)",0
01022,"CHEESE,GOUDA",41.46,356,24.94,27.44,3.94,2.22,0,2.220000029,700,0.24,29,546,121,819,3.9,0.036,0.011,14.5,0,0.03,0.334,0.063,0.34,0.08,21,0,21,21,15,1.54,563,165,164,0,10,0,0,0,0.24,2.3,17.614,7.747,0.657,114,28.35,1 oz,198,"1 package, (7 oz)",0
01023,"CHEESE,GRUYERE",33.19,413,29.81,32.34,4.3,0.36,0,0.360000014,1011,0.17,36,605,81,336,3.9,0.032,0.017,14.5,0,0.06,0.279,0.106,0.562,0.081,10,0,10,10,15,1.6,948,271,268,0,33,0,0,0,0.28,2.7,18.913,10.043,1.733,110,132,"1 cup, diced",108,"1 cup, shredded",0
01024,"CHEESE,LIMBURGER",48.42,327,20.05,27.25,3.79,0.49,0,0.49000001,497,0.13,21,393,128,800,2.1,0.021,0.038,14.5,0,0.08,0.503,0.158,1.177,0.086,58,0,58,58,15,1.04,1155,340,339,0,15,0,0,0,0.23,2.3,16.746,8.606,0.495,90,134,1 cup,28,1 oz,0
01025,"CHEESE,MONTEREY",41.01,373,24.48,30.28,3.55,0.68,0,0.5,746,0.72,27,444,81,536,3,0.032,0.011,14.5,0,0.015,0.39,0.093,0.21,0.079,18,0,18,18,15,0.83,769,198,192,0,78,0,0,0,0.26,2.5,19.066,8.751,0.899,89,132,"1 cup, diced",113,"1 cup, shredded",0
01026,"CHEESE,MOZZARELLA,WHL MILK",50.01,300,22.17,22.35,3.28,2.19,0,1.029999971,505,0.44,20,354,76,627,2.92,0.011,0.03,17,0,0.03,0.283,0.104,0.141,0.037,7,0,7,7,15,2.28,676,179,174,0,57,0,0,0,0.19,2.3,13.152,6.573,0.765,79,112,"1 cup, shredded",28,1 oz,0
01027,"CHEESE,MOZZARELLA,WHL MILK,LO MOIST",48.38,318,21.6,24.64,2.91,2.47,0,1.00999999,575,0.2,21,412,75,415,2.46,0.022,0.009,16.1,0,0.016,0.27,0.094,0.071,0.062,8,0,8,8,15,0.73,745,197,192,0,63,0,0,0,0.21,2.5,15.561,7.027,0.778,89,28.35,1 oz,18,1 cubic inch,0
01028,"CHEESE,MOZZARELLA,PART SKIM MILK",53.78,254,24.26,15.92,3.27,2.77,0,1.129999995,782,0.22,23,463,84,619,2.76,0.025,0.01,14.4,0,0.018,0.303,0.105,0.079,0.07,9,0,9,9,15,0.82,481,127,124,0,41,0,0,0,0.14,1.6,10.114,4.51,0.472,64,28.35,1 oz,,,0
01029,"CHEESE,MOZZARELLA,PART SKIM MILK,LO MOIST",46.46,302,25.96,20.03,3.72,3.83,0,0.600000024,731,0.25,26,524,95,528,3.13,0.027,0.011,16.3,0,0.101,0.329,0.119,0.09,0.079,10,0,10,10,14,2.31,517,137,133,0,44,0,0,0,0.37,1.3,12.67,5.73,0.626,54,132,"1 cup, diced",113,"1 cup, shredded",0
01030,"CHEESE,MUENSTER",41.77,368,23.41,30.04,3.66,1.12,0,1.120000005,717,0.41,27,468,134,628,2.81,0.031,0.008,14.5,0,0.013,0.32,0.103,0.19,0.056,12,0,12,12,15,1.47,1012,298,297,0,13,0,0,0,0.26,2.5,19.113,8.711,0.661,96,132,"1 cup, diced",113,"1 cup, shredded",0
01031,"CHEESE,NEUFCHATEL",63.11,253,9.15,22.78,1.37,3.59,0,3.190000057,117,0.13,10,138,152,334,0.82,0.027,0.011,3,0,0.022,0.155,0.21,0.575,0.041,14,0,14,14,,0.3,841,241,239,0,27,0,0,,0.4,1.7,12.79,5.784,0.97,74,28.35,1 oz,85,"1 package, (3 oz)",0
01032,"CHEESE,PARMESAN,GRATED",20.84,431,38.46,28.61,8.03,4.06,0,0.899999976,1109,0.9,38,729,125,1529,3.87,0.238,0.085,17.7,0,0.029,0.486,0.114,0.325,0.049,10,0,10,10,15,2.26,442,120,117,0,31,0,0,0,0.26,1.9,17.301,8.375,1.173,88,100,1 cup,5,1 tbsp,0
01033,"CHEESE,PARMESAN,HARD",29.16,392,35.75,25.83,6.04,3.22,0,0.800000012,1184,0.82,44,694,92,1602,2.75,0.032,0.02,22.5,0,0.039,0.332,0.271,0.453,0.091,7,0,7,7,15,1.2,399,108,106,0,28,0,0,0,0.23,1.7,16.41,7.515,0.569,68,28.35,1 oz,10,1 cubic inch,0
01034,"CHEESE,PORT DE SALUT",45.45,352,23.78,28.2,2,0.57,0,0.569999993,650,0.43,24,360,136,534,2.6,0.022,0.011,14.5,0,0.014,0.24,0.06,0.21,0.053,18,0,18,18,15,1.5,1092,315,313,0,29,0,0,0,0.24,2.4,16.691,9.338,0.729,123,132,"1 cup, diced",113,"1 cup, shredded",0
01035,"CHEESE,PROVOLONE",40.95,351,25.58,26.62,4.71,2.14,0,0.560000002,756,0.52,28,496,138,876,3.23,0.026,0.01,14.5,0,0.019,0.321,0.156,0.476,0.073,10,0,10,10,15,1.46,880,236,230,0,68,0,0,0,0.23,2.2,17.078,7.393,0.769,69,132,"1 cup, diced",28,1 oz,0
01036,"CHEESE,RICOTTA,WHOLE MILK",71.7,174,11.26,12.98,1.02,3.04,0,0.270000011,207,0.38,11,158,105,84,1.16,0.021,0.006,14.5,0,0.013,0.195,0.104,0.213,0.043,12,0,12,12,18,0.34,445,120,117,0,33,0,0,0,0.11,1.1,8.295,3.627,0.385,51,246,1 cup,124,.5 cup,0
01037,"CHEESE,RICOTTA,PART SKIM MILK",74.41,138,11.39,7.91,1.15,5.14,0,0.310000002,272,0.44,15,183,125,125,1.34,0.034,0.01,16.7,0,0.021,0.185,0.078,0.242,0.02,13,0,13,13,18,0.29,384,107,105,0,20,0,0,0,0.07,0.7,4.927,2.314,0.26,31,246,1 cup,28,1 oz,0
01038,"CHEESE,ROMANO",30.91,387,31.8,26.94,6.72,3.63,0,0.730000019,1064,0.77,41,760,86,1200,2.58,0.03,0.02,14.5,0,0.037,0.37,0.077,0.424,0.085,7,0,7,7,15,1.12,415,96,90,0,69,0,0,0,0.23,2.2,17.115,7.838,0.593,104,28.35,1 oz,142,"5 package, (5 oz)",0
01039,"CHEESE,ROQUEFORT",39.38,369,21.54,30.64,6.44,2,0,,662,0.56,30,392,91,1809,2.08,0.034,0.03,14.5,0,0.04,0.586,0.734,1.731,0.124,49,0,49,49,,0.64,1047,294,290,,,,,,,,19.263,8.474,1.32,90,28.35,1 oz,85,"1 package, (3 oz)",0
01040,"CHEESE,SWISS",37.12,380,26.93,27.8,2.77,5.38,0,1.320000052,791,0.2,38,567,77,192,4.36,0.043,0.005,18.2,0,0.063,0.296,0.092,0.429,0.083,6,0,6,6,16,3.34,830,220,214,0,70,0,0,0,0.38,2.5,17.779,7.274,0.972,92,132,"1 cup, diced",244,"1 cup, melted",0
01041,"CHEESE,TILSIT",42.86,340,24.41,25.98,4.87,1.88,0,,700,0.23,13,500,65,753,3.5,0.026,0.013,14.5,0,0.061,0.359,0.205,0.346,0.065,20,0,20,20,,2.1,1045,249,236,,,,,,,,16.775,7.136,0.721,102,28.35,1 oz,170,"1 package, (6 oz)",0
01042,"CHEESE,PAST PROCESS,AMERICAN,W/DI NA PO4",39.16,375,22.15,31.25,5.84,1.6,0,0.50999999,552,0.19,27,513,169,1489,2.84,0.016,0.008,14.4,0,0.027,0.353,0.069,0.482,0.071,8,0,8,8,36,0.7,961,254,247,0,82,0,0,0,0.27,2.7,19.694,8.951,0.99,94,140,"1 cup, diced",244,"1 cup, melted",0
01043,"CHEESE,PAST PROCESS,PIMENTO",39.08,375,22.13,31.2,5.84,1.73,0.100000001,0.629999995,614,0.42,22,744,162,1428,2.98,0.033,0.016,14.5,2.3,0.027,0.354,0.078,0.485,0.071,8,0,8,8,36,0.7,1045,248,235,12,151,0,0,20,0.29,2.9,19.663,8.937,0.988,94,140,"1 cup, diced",244,"1 cup, melted",0
01044,"CHEESE,PAST PROCESS,SWISS,W/DI NA PO4",42.31,334,24.73,25.01,5.85,2.1,0,1.230000019,772,0.61,29,762,216,1370,3.61,0.027,0.014,15.9,0,0.014,0.276,0.038,0.26,0.036,6,0,6,6,36,1.23,746,198,192,0,63,0,0,0,0.34,2.2,16.045,7.046,0.622,85,140,"1 cup, diced",113,"1 cup, shredded",0
01045,"CHEESE FD,COLD PK,AMERICAN",43.12,331,19.66,24.46,4.44,8.32,0,,497,0.84,30,400,363,966,3.01,0.03,0.01,16.2,0,0.03,0.446,0.074,0.977,0.141,5,0,5,5,,1.28,705,159,148,,,,,,,,15.355,7.165,0.719,64,28.35,1 oz,227,"1 package, (8 oz)",0
01046,"CHEESE FD,PAST PROCESS,AMERICAN,WO/DI NA PO4",43.21,330,18.4,25.18,5.38,7.83,0,7.429999828,570,0.57,31,439,291,1265,3.19,0.085,0.073,16.1,0,0.068,0.517,0.17,0.974,0.073,7,0,7,7,36,1.26,761,201,196,0,65,0,0,0,0.22,3.4,14.895,7.214,1.108,80,113,1 cup,28,1 oz,0
01047,"CHEESE FD,PAST PROCESS,SWISS",43.67,323,21.92,24.14,5.77,4.5,0,,723,0.6,28,526,284,1552,3.55,0.03,0.01,16.1,0,0.014,0.4,0.104,0.5,0.035,6,0,6,6,,2.3,856,237,233,,,,,,,,15.487,6.801,0.6,82,28.35,1 oz,227,"1 package, (8 oz)",0
01048,"CHEESE SPRD,PAST PROCESS,AMERICAN,WO/DI NA PO4",47.65,290,16.41,21.23,5.98,8.73,0,7.320000172,562,0.33,29,712,242,1345,2.59,0.033,0.02,11.3,0,0.048,0.431,0.131,0.686,0.117,7,0,7,7,36,0.4,653,173,168,0,55,0,0,0,0.19,1.8,13.327,6.219,0.624,55,140,"1 cup, diced",244,1 cup,0
01049,"CREAM,FLUID,HALF AND HALF",80.57,130,2.96,11.5,0.67,4.3,0,0.159999996,105,0.07,10,95,130,41,0.51,0.01,0.001,1.8,0.9,0.035,0.149,0.078,0.289,0.039,3,0,3,3,19,0.33,354,97,95,0,22,0,0,0,0.33,1.3,7.158,3.321,0.427,37,242,1 cup,15,1 tbsp,0
01050,"CREAM,FLUID,LT (COFFEE CRM OR TABLE CRM)",73.75,195,2.7,19.31,0.58,3.66,0,0.140000001,96,0.04,9,80,122,40,0.27,0.008,0.001,0.6,0.8,0.032,0.148,0.057,0.276,0.032,2,0,2,2,17,0.22,656,181,178,0,37,0,0,0,0.55,1.7,12.02,5.577,0.717,66,240,1 cup,15,1 tbsp,0
01052,"CREAM,FLUID,LT WHIPPING",63.5,292,2.17,30.91,0.46,2.96,0,0.109999999,69,0.03,7,61,97,34,0.25,0.007,0.001,0.5,0.6,0.024,0.125,0.042,0.259,0.028,4,0,4,4,17,0.2,1013,279,274,0,60,0,0,0,0.88,2.7,19.337,9.093,0.884,111,120,"1 cup, whipped",239,"1 cup, fluid (yields 2 cups whipped)",0
01053,"CREAM,FLUID,HVY WHIPPING",57.71,345,2.05,37,0.45,2.79,0,0.109999999,65,0.03,7,62,75,38,0.23,0.006,0.001,0.5,0.6,0.022,0.11,0.039,0.255,0.026,4,0,4,4,17,0.18,1470,411,405,0,72,0,0,0,1.06,3.2,23.032,10.686,1.374,137,119.5,"1 cup, whipped",238,"1 cup, fluid (yields 2 cups whipped)",0
01054,"CREAM,WHIPPED,CRM TOPPING,PRESSURIZED",61.33,257,3.2,22.22,0.76,12.49,0,8,101,0.05,11,89,147,130,0.37,0.01,0.001,1.4,0,0.037,0.065,0.07,0.305,0.041,3,0,3,3,17,0.29,685,188,184,0,43,0,0,0,0.64,1.9,13.831,6.418,0.825,76,60,1 cup,3,1 tbsp,0
01055,"CREAM,SOUR,RED FAT,CULTURED",80.14,135,2.94,12,0.66,4.26,0,0.159999996,104,0.07,10,95,129,41,0.5,0.016,0.003,2.1,0.9,0.035,0.149,0.067,0.363,0.016,11,0,11,11,19,0.3,372,102,100,0,23,0,0,0,0.34,0.6,7.47,3.466,0.446,39,242,1 cup,15,1 tbsp,0
01056,"CREAM,SOUR,CULTURED",74.46,193,2.07,19.73,0.85,2.88,0,3.5,110,0.17,10,115,141,80,0.38,0.019,0.011,2.6,0.9,0.036,0.172,0.109,0.336,0.057,7,0,7,7,19,0.28,576,162,160,0,26,0,0,0,0.44,1.8,11.507,5.068,0.84,52,230,1 cup,12,1 tbsp,0
01057,EGGNOG,74.37,135,3.81,7.48,0.8,13.54,0,8.409999847,130,0.2,19,109,165,54,0.46,0.013,0.005,4.2,1.5,0.034,0.19,0.105,0.417,0.05,1,0,1,1,52,0.45,161,46,45,0,6,1,0,54,0.2,0.2,4.443,2.233,0.339,59,254,1 cup,32,1 fl oz,0
01058,"SOUR DRSNG,NON-BUTTERFAT,CULTURED,FILLED CREAM-TYPE",74.79,178,3.25,16.57,0.71,4.68,0,4.679999828,113,0.03,10,87,162,48,0.37,0.01,0.002,2.3,0.9,0.038,0.163,0.074,0.398,0.017,12,0,12,12,15,0.33,10,3,3,0,0,0,0,0,1.34,4.1,13.272,1.958,0.468,5,235,1 cup,12,1 tbsp,0
01059,"MILK,FILLED,FLUID,W/BLEND OF HYDR VEG OILS",87.67,63,3.33,3.46,0.8,4.74,0,,128,0.05,13,97,139,57,0.36,0.01,0.002,2,0.9,0.03,0.123,0.087,0.301,0.04,5,0,5,5,,0.34,7,2,2,,,,,,,,0.768,1.783,0.75,2,244,1 cup,976,1 quart,0
01060,"MILK,FILLED,FLUID,W/LAURIC ACID OIL",87.73,63,3.33,3.4,0.8,4.74,0,4.739999771,128,0.05,13,97,139,57,0.36,0.01,0.002,2,0.9,0.03,0.123,0.087,0.301,0.04,5,0,5,5,15,0.34,7,2,2,0,0,0,0,0,0.13,0.8,3.101,0.1,0.01,2,244,1 cup,30,1 fl oz,0
01067,"CREAM SUB,LIQ,W/HYDR VEG OIL&SOY PROT",77.27,136,1,9.97,0.38,11.38,0,11.38000011,9,0.03,0,64,191,79,0.02,0,0,1.1,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,9,0,0,0,0.81,2.5,1.937,7.551,0.027,0,240,1 cup,30,1 fl oz,0
01068,"CREAM SUB,LIQ,W/LAURIC ACID OIL&NA CASEINATE",77.27,136,1,9.97,0.38,11.38,0,,9,0.03,0,64,191,79,0.02,0.025,0.04,1.1,0,0,0,0,0,0,0,0,0,0,,0,89,4,0,,,,,,,,9.304,0.106,0.003,0,15,"1 container, individual",120,.5 cup,0
01069,"CREAM SUBSTITUTE,POWDERED",2.21,545,4.79,35.48,2.64,54.88,0,54.88000107,22,1.15,4,422,812,181,0.51,0.115,0.22,0.6,0,0,0.165,0,0,0,0,0,0,0,2,0,33,2,0,0,20,0,0,0,0.59,8.8,32.525,0.968,0.014,0,94,1 cup,2,1 tsp,0
01070,"DESSERT TOPPING,POWDERED",1.47,577,4.9,39.92,1.17,52.54,0,52.54000092,17,0.03,7,74,166,122,0.08,0.118,0.225,0.6,0,0,0,0,0,0,0,0,0,0,0,0,180,9,0,0,108,0,0,0,1.52,9.9,36.723,0.6,0.447,0,42.5,1.5 oz,1,"1 portion, amount to make 1 tbsp",0
01071,"DESSERT TOPPING,PDR,1.5 OZ PREP W/1/2 CUP MILK",66.65,188,3.6,12.41,0.81,16.53,0,16.53000069,90,0.04,10,86,151,66,0.27,0.012,0.005,4.8,0.7,0.027,0.117,0.06,0.226,0.03,4,0,4,4,11,0.26,122,23,21,0,32,0,0,0,0.44,2.7,10.684,0.843,0.201,10,80,1 cup,4,1 tbsp,0
01072,"DESSERT TOPPING,PRESSURIZED",60.37,264,0.98,22.3,0.28,16.07,0,16.06999969,5,0.02,1,18,19,62,0.01,0.024,0.045,1.5,0,0,0,0,0,0,0,0,0,0,0,0,78,4,0,0,47,0,0,0,0.85,5.5,18.912,1.927,0.241,0,70,1 cup,4,1 tbsp,0
01073,"DESSERT TOPPING,SEMI SOLID,FRZ",50.21,318,1.25,25.31,0.18,23.05,0,23.04999924,6,0.12,2,8,18,25,0.03,0.03,0.058,2.1,0,0,0,0,0,0,0,0,0,0,0,0,143,7,0,0,86,0,0,0,0.96,6.3,21.783,1.616,0.523,0,75,1 cup,4,1 tbsp,0
01074,"SOUR CRM,IMITN,CULTURED",71.15,208,2.4,19.52,0.3,6.63,0,6.630000114,3,0.39,6,45,161,102,1.18,0.058,0.11,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,4.8,17.791,0.588,0.056,0,230,1 cup,28,1 oz,0
01075,"MILK SUBSTITUTES,FLUID W/HYDR VEG OILS",88.18,61,1.75,3.41,0.5,6.16,0,6.159999847,33,0.39,6,74,114,78,1.18,0.051,0.097,1.9,0,0.012,0.088,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0.28,0.8,0.767,1.998,0.488,0,244,1 cup,30,1 fl oz,0
01076,"MILK SUBSTITUTES,FLUID,W/LAURIC ACID OIL",88.18,61,1.75,3.41,0.5,6.16,0,,33,0.39,6,74,114,78,1.18,0.051,0.097,1.9,0,0.012,0.088,0,0,0,0,0,0,0,,0,0,0,0,,,,,,,,3.037,0.176,0.008,0,244,1 cup,976,1 quart,0
01077,"MILK,WHL,3.25% MILKFAT",88.32,60,3.22,3.25,0.69,4.52,0,5.260000229,113,0.03,10,91,143,40,0.4,0.011,0.003,3.7,0,0.044,0.183,0.107,0.362,0.036,5,0,5,5,14,0.44,102,28,28,0,5,0,0,0,0.06,0.2,1.865,0.812,0.195,10,244,1 cup,15,1 tbsp,0
01078,"MILK,PRODUCER,FLUID,3.7% MILKFAT",87.69,64,3.28,3.66,0.72,4.65,0,,119,0.05,13,93,151,49,0.38,0.01,0.004,2,1.5,0.038,0.161,0.084,0.313,0.042,5,0,5,5,,0.36,138,33,31,,,,,,,,2.278,1.057,0.136,14,244,1 cup,976,1 quart,0
01079,"MILK,RED FAT,FLUID,2%MILKFAT,W/ADDED VIT A",89.33,50,3.3,1.97,0.71,4.68,0,5.059999943,117,0.03,11,94,150,41,0.43,0.012,0.003,2.5,0.2,0.039,0.185,0.092,0.356,0.038,5,0,5,5,16,0.46,189,55,55,0,3,0,0,0,0.03,0.2,1.257,0.56,0.073,8,244,1 cup,30,1 fl oz,0
01080,"MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL&VIT A",88.86,51,3.48,1.92,0.77,4.97,0,,128,0.05,14,100,162,52,0.4,0.008,0.002,2.3,1,0.04,0.173,0.09,0.336,0.045,5,0,5,5,,0.38,204,56,55,,,,,,,,1.195,0.555,0.071,8,245,1 cup,980,1 quart,0
01081,"MILK,RED FAT,FLUID,2% MILKFAT,PROT FORT,W/ VIT A",87.71,56,3.95,1.98,0.87,5.49,0,5.260000229,143,0.06,16,112,182,59,0.45,0.008,0.002,2.6,1.1,0.045,0.194,0.101,0.376,0.051,6,0,6,6,,0.43,5,0,,0,3,0,0,0,0.04,0.1,1.232,0.572,0.074,8,246,1 cup,984,1 quart,0
01082,"MILK,LOWFAT,FLUID,1% MILKFAT,W/ VIT A",89.92,42,3.37,0.97,0.75,4.99,0,5.199999809,119,0.03,11,95,150,44,0.42,0.01,0.003,3.3,0,0.02,0.185,0.093,0.361,0.037,5,0,5,5,18,0.44,196,58,58,0,2,0,0,0,0.01,0.1,0.633,0.277,0.035,5,244,1 cup,30,1 fl oz,0
01083,"MILK,LOWFAT,FLUID,1% MILKFAT,W/ NONFAT MILK SOL&VIT A",89.81,43,3.48,0.97,0.77,4.97,0,,128,0.05,14,100,162,52,0.4,0.01,0.002,2.3,1,0.04,0.173,0.09,0.336,0.045,5,0,5,5,,0.38,204,59,58,,,,,,,,0.604,0.28,0.036,4,245,1 cup,980,1 quart,0
01084,"MILK,LOWFAT,FLUID,1% MILKFAT,PROT FORT,W/ VIT A",88.74,48,3.93,1.17,0.86,5.52,0,,142,0.06,16,111,180,58,0.45,0.01,0.002,2.5,1.2,0.045,0.192,0.1,0.373,0.05,6,0,6,6,,0.43,203,61,61,,,,,,,,0.728,0.338,0.043,4,246,1 cup,984,1 quart,0
01085,"MILK,NONFAT,FLUID,W/ VIT A (FAT FREE OR SKIM)",90.84,34,3.37,0.08,0.75,4.96,0,5.090000153,125,0.03,11,101,156,42,0.42,0.013,0.003,3.1,0,0.045,0.182,0.094,0.357,0.037,5,0,5,5,16,0.53,204,61,61,0,0,0,0,0,0.01,0,0.051,0.021,0.003,2,245,1 cup,31,1 fl oz,0
01086,"MILK,NONFAT,FLUID,W/ NONFAT MILK SOL&VIT A (FAT FREE/SKIM)",90.38,37,3.57,0.25,0.78,5.02,0,5.019999981,129,0.05,15,104,171,53,0.41,0.011,0.002,2.2,1,0.041,0.175,0.091,0.339,0.046,5,0,5,5,16,0.39,203,61,61,0,0,0,0,0,0,0,0.162,0.065,0.009,2,245,1 cup,31,1 fl oz,0
01087,"MILK,NONFAT,FLUID,PROT FORT,W/ VIT A (FAT FREE/SKIM)",89.36,41,3.96,0.25,0.87,5.56,0,,143,0.06,16,112,182,59,0.45,0.011,0.002,2.4,1.1,0.045,0.194,0.101,0.376,0.05,6,0,6,6,,0.43,203,61,61,,,,,,,,0.162,0.065,0.009,2,246,1 cup,984,1 quart,0
01088,"MILK,BTTRMLK,FLUID,CULTURED,LOWFAT",90.13,40,3.31,0.88,0.89,4.79,0,4.789999962,116,0.05,11,89,151,105,0.42,0.011,0.002,2,1,0.034,0.154,0.058,0.275,0.034,5,0,5,5,16,0.22,26,7,7,0,1,0,0,0,0.05,0.1,0.548,0.254,0.033,4,245,1 cup,31,1 fl oz,0
01089,"MILK,LOW SODIUM,FLUID",88.2,61,3.1,3.46,0.78,4.46,0,4.460000038,101,0.05,5,86,253,3,0.38,0.01,0.004,2,0.9,0.02,0.105,0.043,0.304,0.034,5,0,5,5,16,0.36,103,28,28,0,6,0,0,0,0.06,0.2,2.154,0.999,0.128,14,244,1 cup,30,1 fl oz,0
01090,"MILK,DRY,WHOLE",2.47,496,26.32,26.71,6.08,38.42,0,38.41999817,912,0.47,85,776,1330,371,3.34,0.08,0.04,16.3,8.6,0.283,1.205,0.646,2.271,0.302,37,0,37,37,119,3.25,915,257,253,0,43,0,0,0,0.48,1.8,16.742,7.924,0.665,97,128,1 cup,32,.25 cup,0
01091,"MILK,DRY,NONFAT,REG,WO/ VIT A",3.16,362,36.16,0.77,7.93,51.98,0,51.97999954,1257,0.32,110,968,1794,535,4.08,0.041,0.02,27.3,6.8,0.415,1.55,0.951,3.568,0.361,50,0,50,50,169,4.03,22,6,6,0,1,0,0,0,0,0.1,0.499,0.201,0.03,20,120,1 cup,30,.25 cup,0
01092,"MILK,DRY,NONFAT,INST,W/ VIT A",3.96,358,35.1,0.72,8.03,52.19,0,52.18999863,1231,0.31,117,985,1705,549,4.41,0.041,0.02,27.3,5.6,0.413,1.744,0.891,3.235,0.345,50,0,50,50,168,3.99,2365,709,709,0,1,0,0,0,0.01,0,0.467,0.187,0.028,18,68,1 cup,91,"1 envelope, (1-1/3 cup)",0
01093,"MILK,DRY,NONFAT,CA RED",4.9,354,35.5,0.2,7.6,51.8,0,,280,0.32,60,1011,680,2280,4.03,0.016,0.008,27.3,6.7,0.163,1.642,0.665,3.312,0.298,50,0,50,50,,3.98,8,2,1,,,,,,,,0.124,0.058,0.007,2,28.35,1 oz,113,.25 lb,0
01094,"MILK,BUTTERMILK,DRIED",2.97,387,34.3,5.78,7.95,49,0,49,1184,0.3,110,933,1592,517,4.02,0.111,0.023,20.3,5.7,0.392,1.579,0.876,3.17,0.338,47,0,47,47,119,3.82,175,49,48,0,9,0,0,0,0.1,0.4,3.598,1.669,0.215,69,120,1 cup,6,1 tbsp,0
01095,"MILK,CND,COND,SWTND",27.16,321,7.91,8.7,1.83,54.4,0,54.40000153,284,0.19,26,253,371,127,0.94,0.015,0.006,14.8,2.6,0.09,0.416,0.21,0.75,0.051,11,0,11,11,89,0.44,267,74,73,0,14,0,0,0,0.16,0.6,5.486,2.427,0.337,34,306,1 cup,38,1 fl oz,0
01096,"MILK,CND,EVAP,WO/ VIT A",74.04,134,6.81,7.56,1.55,10.04,0,10.03999996,261,0.19,24,203,303,106,0.77,0.016,0.006,2.3,1.9,0.047,0.316,0.194,0.638,0.05,8,0,8,8,32,0.16,233,65,64,0,12,0,0,0,0.14,0.5,4.591,2.335,0.245,29,252,1 cup,32,1 fl oz,0
01097,"MILK,CND,EVAP,NONFAT",79.4,78,7.55,0.2,1.5,11.35,0,11.35000038,290,0.29,27,195,332,115,0.9,0.016,0.006,2.5,1.2,0.045,0.309,0.174,0.738,0.055,9,0,9,9,25,0.24,394,118,118,0,0,0,0,0,0,0,0.121,0.062,0.006,4,256,1 cup,32,1 fl oz,0
01102,"MILK,CHOC,FLUID,COMM,",82.3,83,3.17,3.39,0.8,10.34,0.800000012,9.539999962,112,0.24,13,101,167,60,0.41,0.065,0.077,1.9,0.9,0.037,0.162,0.125,0.295,0.04,5,0,5,5,17,0.33,95,26,26,0,5,0,0,0,0.06,0.2,2.104,0.99,0.124,12,250,1 cup,31,1 fl oz,0
01103,"MILK,CHOC,FLUID,COMM,RED FAT",82.17,76,2.99,1.9,0.81,12.13,0.699999988,9.550000191,109,0.24,14,102,169,66,0.39,0.075,0.062,3.4,0,0.045,0.183,0.164,0.539,0.024,2,0,2,2,17,0.33,227,64,63,0,11,0,0,0,0.04,0.2,1.177,0.455,0.089,8,250,1 cup,31,1 fl oz,0
01104,"MILK,CHOC,FLUID,COMM,LOWFAT",84.5,63,3.24,1,0.82,10.44,0.5,9.93999958,115,0.24,13,103,170,61,0.41,0.065,0.077,1.9,0.9,0.038,0.166,0.127,0.302,0.041,5,0,5,5,17,0.34,196,58,58,0,2,0,0,0,0.02,0.1,0.616,0.3,0.035,3,250,1 cup,1000,1 quart,0
01105,"MILK,CHOC BEV,HOT COCOA,HOMEMADE",82.57,77,3.52,2.33,0.65,10.63,1,9.670000076,105,0.48,23,105,197,44,0.63,0.103,0.013,2.7,0.2,0.039,0.182,0.133,0.328,0.04,5,0,5,5,,0.42,175,51,51,0,3,0,0,0,0.03,0.2,1.431,0.677,0.034,8,250,1 cup,31,1 fl oz,0
01106,"MILK,GOAT,FLUID",87.03,69,3.56,4.14,0.82,4.45,0,4.449999809,134,0.05,14,111,204,50,0.3,0.046,0.018,1.4,1.3,0.048,0.138,0.277,0.31,0.046,1,0,1,1,16,0.07,198,57,56,0,7,0,0,0,0.07,0.3,2.667,1.109,0.149,11,244,1 cup,30,1 fl oz,0
01107,"MILK,HUMAN,MATURE,FLUID",87.5,70,1.03,4.38,0.2,6.89,0,6.889999866,32,0.03,3,14,51,17,0.17,0.052,0.026,1.8,5,0.014,0.036,0.177,0.223,0.011,5,0,5,5,16,0.05,212,61,60,0,7,0,0,0,0.08,0.3,2.009,1.658,0.497,14,246,1 cup,31,1 fl oz,0
01108,"MILK,INDIAN BUFFALO,FLUID",83.39,97,3.75,6.89,0.79,5.18,0,,169,0.12,31,117,178,52,0.22,0.046,0.018,,2.3,0.052,0.135,0.091,0.192,0.023,6,0,6,6,,0.36,178,53,53,,,,,,,,4.597,1.787,0.146,19,244,1 cup,976,1 quart,0
01109,"MILK,SHEEP,FLUID",80.7,108,5.98,7,0.96,5.36,0,,193,0.1,18,158,137,44,0.54,0.046,0.018,1.7,4.2,0.065,0.355,0.417,0.407,0.06,7,0,7,7,,0.71,147,44,44,,,,,,,,4.603,1.724,0.308,27,245,1 cup,980,1 quart,0
01110,"MILK SHAKES,THICK CHOC",72.2,119,3.05,2.7,0.9,21.15,0.300000012,20.85000038,132,0.31,16,126,224,111,0.48,0.065,0.039,1.9,0,0.047,0.222,0.124,0.363,0.025,5,0,5,5,,0.32,67,18,18,0,4,0,0,0,0.05,0.2,1.681,0.78,0.1,11,28.35,1 fl oz,300,"1 container, (10.6 oz)",0
01111,"MILK SHAKES,THICK VANILLA",74.45,112,3.86,3.03,0.91,17.75,0,17.75,146,0.1,12,115,183,95,0.39,0.051,0.014,2.3,0,0.03,0.195,0.146,0.368,0.042,7,0,7,7,,0.52,91,25,25,0,5,0,0,0,0.05,0.2,1.886,0.875,0.113,12,28.35,1 fl oz,313,"1 container, (11 oz)",0
01112,"WHEY,ACID,FLUID",93.42,24,0.76,0.09,0.61,5.12,0,5.119999886,103,0.08,10,78,143,48,0.43,0.003,0.002,1.8,0.1,0.042,0.14,0.079,0.381,0.042,2,0,2,2,16,0.18,7,2,2,0,0,0,0,0,0,0,0.057,0.025,0.004,1,246,1 cup,984,1 quart,0
01113,"WHEY,ACID,DRIED",3.51,339,11.73,0.54,10.77,73.45,0,73.44999695,2054,1.24,199,1349,2289,968,6.31,0.05,0.015,27.3,0.9,0.622,2.06,1.16,5.632,0.62,33,0,33,33,225,2.5,59,17,17,0,1,0,0,0,0,0,0.342,0.149,0.021,3,57,1 cup,3,1 tbsp,0
01114,"WHEY,SWEET,FLUID",93.12,27,0.85,0.36,0.53,5.14,0,5.139999866,47,0.06,8,46,161,54,0.13,0.004,0.001,1.9,0.1,0.036,0.158,0.074,0.383,0.031,1,0,1,1,16,0.28,12,3,3,0,1,0,0,0,0,0,0.23,0.1,0.011,2,246,1 cup,984,1 quart,0
01115,"WHEY,SWEET,DRIED",3.19,353,12.93,1.07,8.35,74.46,0,74.45999908,796,0.88,176,932,2080,1079,1.97,0.07,0.009,27.2,1.5,0.519,2.208,1.258,5.62,0.584,12,0,12,12,225,2.37,30,8,8,0,2,0,0,0,0.02,0.1,0.684,0.297,0.034,6,145,1 cup,8,1 tbsp,0
01116,"YOGURT,PLN,WHL MILK,8 GRAMS PROT PER 8 OZ",87.9,61,3.47,3.25,0.72,4.66,0,4.659999847,121,0.05,12,95,155,46,0.59,0.009,0.004,2.2,0.5,0.029,0.142,0.075,0.389,0.032,7,0,7,7,15,0.37,99,27,27,0,5,0,0,0,0.06,0.2,2.096,0.893,0.092,13,245,"1 cup, (8 fl oz)",227,"1 container, (8 oz)",0
01117,"YOGURT,PLN,LOFAT,12 GRAMS PROT PER 8 OZ",85.07,63,5.25,1.55,1.09,7.04,0,7.039999962,183,0.08,17,144,234,70,0.89,0.013,0.004,3.3,0.8,0.044,0.214,0.114,0.591,0.049,11,0,11,11,15,0.56,51,14,14,0,2,0,0,0,0.03,0.2,1,0.426,0.044,6,245,"1 cup, (8 fl oz)",227,"1 container, (8 oz)",0
01118,"YOGURT,PLN,SKIM MILK,13 GRAMS PROT PER 8 OZ",85.23,56,5.73,0.18,1.18,7.68,0,7.679999828,199,0.09,19,157,255,77,0.97,0.015,0.005,3.6,0.9,0.048,0.234,0.124,0.641,0.053,12,0,12,12,15,0.61,7,2,2,0,0,0,0,0,0,0.2,0.116,0.049,0.005,2,245,"1 cup, (8 fl oz)",227,"1 container, (8 oz)",0
01119,"YOGURT,VANILLA,LOFAT,11 GRAMS PROT PER 8 OZ",79,85,4.93,1.25,1.02,13.8,0,13.80000019,171,0.07,16,135,219,66,0.83,0.013,0.004,4.9,0.8,0.042,0.201,0.107,0.552,0.045,11,0,11,11,15,0.53,43,12,12,0,2,0,0,0,0.02,0.1,0.806,0.343,0.036,5,245,"1 cup, (8 fl oz)",227,"1 container, (8 oz)",0
01120,"YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ",75.3,99,3.98,1.15,0.93,18.64,0,18.63999939,138,0.06,13,109,177,53,0.67,0.079,0.064,2.8,0.6,0.034,0.162,0.086,0.446,0.037,9,0,9,9,15,0.43,40,11,11,0,2,0,0,0,0.02,0.1,0.742,0.316,0.033,5,245,"1 cup, (8 fl oz)",125,"1 container, (4.4 oz)",0
01121,"YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ",74.48,102,4.37,1.08,1.02,19.05,0,19.04999924,152,0.07,15,119,195,58,0.74,0.08,0.065,3.1,0.7,0.037,0.178,0.095,0.489,0.04,9,0,9,9,14,0.47,36,10,10,0,2,0,0,0,0.02,0.1,0.697,0.297,0.031,4,245,"1 cup, (8 fl oz)",170,"1 container, (6 oz)",0
01122,"YOGURT,FRUIT,LOFAT,11 GRAMS PROT PER 8 OZ",74.1,105,4.86,1.41,1.03,18.6,0,,169,0.07,16,133,216,65,0.82,0.08,0.065,3.1,0.7,0.041,0.198,0.105,0.544,0.045,10,0,10,10,,0.52,60,,,,,,,,,,0.909,0.387,0.04,6,227,"1 container, (8 oz)",113,".5 container, (4 oz)",0
01123,"EGG,WHOLE,RAW,FRESH",75.84,143,12.58,9.94,0.86,0.77,0,0.769999981,53,1.83,12,191,134,140,1.11,0.102,0.038,31.7,0,0.069,0.478,0.07,1.438,0.143,47,0,47,47,251,1.29,487,140,139,0,10,9,0,331,0.97,0.3,3.099,3.81,1.364,423,243,"1 cup, (4.86 large eggs)",56,1 extra large,12
01124,"EGG,WHITE,RAW,FRESH",87.57,48,10.9,0.17,0.63,0.73,0,0.709999979,7,0.08,11,15,163,166,0.03,0.023,0.011,20,0,0.004,0.439,0.105,0.19,0.005,4,0,4,4,1,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,1 cup,33,1 large,0
01125,"EGG,YOLK,RAW,FRSH",52.31,317,15.86,26.54,1.71,3.59,0,0.560000002,129,2.73,5,390,109,48,2.3,0.077,0.055,56,0,0.176,0.528,0.024,2.99,0.35,146,0,146,146,682,1.95,1442,381,371,38,88,33,0,1094,2.58,0.7,9.551,11.738,4.204,1234,243,1 cup,17,1 large,0
01126,"EGG,YOLK,RAW,FROZEN",56.2,303,15.5,25.6,1.55,1.15,0,0.50999999,138,3.34,9,417,118,67,2.88,0.024,0.062,41.8,0,0.155,0.52,0.045,3.53,0.345,116,0,116,116,682,1.82,1609,433,423,36,85,32,0,1055,2.49,0.7,7.82,9.747,3.628,1075,227,.5 lb,,,0
01127,"EGG,YOLK,RAW,FRZ,SUGARED",51.25,307,13.8,22.75,1.4,10.8,0,,123,3.14,10,384,103,67,2.81,0.012,0.059,37.7,0,0.135,0.53,0.023,3.2,0.284,139,0,139,139,,1.77,1315,395,395,,,,,,,,6.97,8.614,3.244,959,227,.5 lb,,,0
01128,"EGG,WHL,CKD,FRIED",69.13,196,13.63,15.31,1.05,0.88,0,0.829999983,59,1.98,13,208,147,204,1.2,0.111,0.041,34.2,0,0.075,0.518,0.077,1.558,0.155,51,0,51,51,273,1.39,729,198,193,0,46,10,0,358,1.22,5.6,4.294,6.346,2.66,457,46,1 large,,,0
01129,"EGG,WHL,CKD,HARD-BOILED",74.62,155,12.58,10.61,1.08,1.12,0,1.120000005,50,1.19,10,172,126,124,1.05,0.013,0.026,30.8,0,0.066,0.513,0.064,1.398,0.121,44,0,44,44,225,1.11,586,169,168,0,11,10,0,353,1.03,0.3,3.267,4.077,1.414,424,136,"1 cup, chopped",8,1 tbsp,12
01130,"EGG,WHOLE,COOKED,OMELET",75.87,157,10.59,12.03,0.84,0.68,0,0.649999976,47,1.55,10,162,114,161,0.93,0.088,0.032,26.7,0,0.058,0.404,0.06,1.21,0.121,39,0,39,39,212,1.09,572,155,152,0,36,8,0,279,1.22,4.5,3.296,4.971,2.252,356,15.2,1 tbsp,61,1 large,0
01131,"EGG,WHL,CKD,POACHED",75.54,142,12.53,9.9,1.26,0.76,0,0.769999981,53,1.83,12,190,133,294,1.1,0.102,0.039,31.6,0,0.055,0.405,0.059,1.433,0.121,35,0,35,35,200,1.28,485,139,138,0,10,9,0,330,0.96,0.3,3.087,3.795,1.359,422,50,1 large,,,0
01132,"EGG,WHL,CKD,SCRMBLD",73.15,167,11.09,12.21,1.36,2.2,0,1.730000019,71,1.2,12,170,138,280,1,0.014,0.022,22.5,0.2,0.052,0.437,0.079,1.007,0.118,30,0,30,30,190,0.77,526,143,140,0,33,7,0,245,1.09,4,3.679,4.768,2.148,352,220,1 cup,14,1 tbsp,0
01133,"EGG,WHOLE,DRIED",3.1,594,47.35,40.95,3.65,4.95,0,3.079999924,231,6.79,42,831,493,523,5.28,0.196,0.125,119.6,0,0.195,1.54,0.305,5.905,0.388,171,0,171,171,1007,3.95,997,275,270,0,41,36,0,1329,3.88,1.2,12.727,15.337,5.804,1715,85,"1 cup, sifted",5,1 tbsp,0
01134,"EGG,WHL,DRIED,STABILIZED,GLUCOSE RED",1.87,615,48.17,43.95,3.63,2.38,0,,222,8.28,49,715,515,548,5.71,0.27,0.15,121.1,0,0.325,1.232,0.259,6.71,0.42,193,0,193,193,,10.51,2050,616,616,,,,,,,,13.198,17.564,5.713,2017,85,"1 cup, sifted",5,1 tbsp,0
01135,"EGG,WHITE,DRIED,FLAKES,GLUCOSE RED",14.62,351,76.92,0.04,4.25,4.17,0,4.170000076,83,0.23,67,83,1042,1156,0.15,0.23,0.07,116.8,0,0.035,2.162,0.675,1.829,0.023,89,0,89,89,,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,.5 lb,,,0
01136,"EGG,WHITE,DRIED,PDR,GLUCOSE RED",8.54,376,82.4,0.04,4.55,4.47,0,4.46999979,89,0.24,72,89,1116,1238,0.16,0.17,0.05,125.1,0,0.037,2.316,0.723,1.958,0.024,96,0,96,96,8,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,"1 cup, sifted",7,1 tbsp,0
01137,"EGG,YOLK,DRIED",2.95,666,34.25,55.8,3.4,3.6,0,3.599999905,284,5.42,13,920,244,135,4.93,0.012,0.119,86.8,0,0.29,1.88,0.095,7.765,0.66,244,0,244,244,1388,5.33,1751,417,395,79,186,70,0,2299,5.42,1.5,17.154,21.129,7.895,2335,67,"1 cup, sifted",4,1 tbsp,0
01138,"EGG,DUCK,WHOLE,FRESH,RAW",70.83,185,12.81,13.77,1.14,1.45,0,0.930000007,64,3.85,17,220,222,146,1.41,0.062,0.038,36.4,0,0.156,0.404,0.2,1.862,0.25,80,0,80,80,263,5.4,674,194,192,0,14,12,0,459,1.34,0.4,3.681,6.525,1.223,884,70,1 egg,,,12
01139,"EGG,GOOSE,WHOLE,FRESH,RAW",70.43,185,13.87,13.27,1.08,1.35,0,0.939999998,60,3.64,16,208,210,138,1.33,0.062,0.038,36.9,0,0.147,0.382,0.189,1.759,0.236,76,0,76,76,263,5.1,650,187,185,0,13,12,0,442,1.29,0.4,3.595,5.747,1.672,852,144,1 egg,,,13
01140,"EGG,QUAIL,WHOLE,FRESH,RAW",74.35,158,13.05,11.09,1.1,0.41,0,0.409999996,64,3.65,13,226,132,141,1.47,0.062,0.038,32,0,0.13,0.79,0.15,1.761,0.15,66,0,66,66,263,1.58,543,156,155,0,11,10,0,369,1.08,0.3,3.557,4.324,1.324,844,9,1 egg,,,8
01141,"EGG,TURKEY,WHL,FRSH,RAW",72.5,171,13.68,11.88,0.79,1.15,0,,99,4.1,13,170,142,151,1.58,0.062,0.038,34.3,0,0.11,0.47,0.024,1.889,0.131,71,0,71,71,,1.69,554,166,166,,,,,,,,3.632,4.571,1.658,933,79,1 egg,,,12
01142,"EGG SUBSTITUTE,FROZEN",73.1,160,11.29,11.11,1.3,3.2,0,3.200000048,73,1.98,15,72,213,199,0.98,0.022,0.006,41.3,0.5,0.12,0.386,0.14,1.66,0.133,16,0,16,16,2,0.34,225,11,0,0,135,0,0,0,1.59,0.2,1.93,2.435,6.241,2,240,1 cup,60,.25 cup,0
01143,"EGG SUBSTITUTE,LIQUID",82.75,84,12,3.31,1.3,0.64,0,0.639999986,53,2.1,9,121,330,177,1.3,0.023,0.007,24.9,0,0.11,0.3,0.11,2.7,0.003,15,0,15,15,2,0.3,360,18,0,0,216,0,0,0,0.27,0.8,0.659,0.896,1.603,1,251,1 cup,16,1 tbsp,0
01144,"EGG SUBSTITUTE,POWDER",3.86,444,55.5,13,5.84,21.8,0,21.79999924,326,3.16,65,478,744,800,1.82,0.207,0.08,127.7,0.8,0.226,1.76,0.577,3.384,0.143,125,0,125,125,118,3.52,1230,369,369,0,0,0,0,0,1.26,0.4,3.766,5.341,1.683,572,9.9,.35 oz,20,.7 oz,0
01145,"BUTTER,WITHOUT SALT",17.94,717,0.85,81.11,0.04,0.06,0,0.059999999,24,0.02,2,24,24,11,0.09,0.016,0.004,1,0,0.005,0.034,0.042,0.11,0.003,3,0,3,3,19,0.17,2499,684,671,0,158,0,0,0,2.32,7,51.368,21.021,3.043,215,227,1 cup,14,1 tbsp,0
01146,"CHEESE,PARMESAN,SHREDDED",25,415,37.86,27.34,6.39,3.41,0,,1253,0.87,51,735,97,1696,3.19,0.037,0.023,23.9,0,0.041,0.352,0.287,0.527,0.105,8,0,8,8,,1.4,639,122,108,,,,,,,,17.37,8.734,0.661,72,5,1 tbsp,,,0
01147,"CHEESE,PAST PROCESS,AMERICAN,WO/DI NA PO4",39.16,375,22.15,31.25,5.84,1.6,0,0.50999999,616,0.39,22,444,162,650,2.99,0.03,0.015,14.4,0,0.027,0.353,0.069,0.482,0.071,8,0,8,8,,0.7,961,254,247,0,82,0,0,0,0.27,2.7,19.694,8.951,0.99,94,28.35,1 oz,18,1 cubic inch,0
01148,"CHEESE,PAST PROCESS,SWISS,WO/DI NA PO4",42.31,334,24.73,25.01,5.85,2.1,0,,772,0.61,29,540,216,681,3.61,0.027,0.014,15.9,0,0.014,0.276,0.038,0.26,0.036,6,0,6,6,,1.23,808,225,221,,,,,,,,16.045,7.046,0.622,85,28.35,1 oz,18,1 cubic inch,0
01149,"CHEESE FD,PAST PROCESS,AMERICAN,W/DI NA PO4",43.15,328,19.61,24.6,5.35,7.29,0,7.429999828,574,0.84,31,754,279,1596,2.99,0.03,0.01,16,0,0.029,0.442,0.14,0.558,0.141,7,0,7,7,,1.12,762,201,196,,65,,,,0.22,,15.443,7.206,0.723,64,28.35,1 oz,227,"1 package, (8 oz)",0
01150,"CHEESE SPRD,PAST PROCESS,AMERICAN,W/DI NA PO4",47.65,290,16.41,21.23,5.98,8.73,0,,562,0.33,29,875,242,1625,2.59,0.033,0.02,11.3,0,0.048,0.431,0.131,0.686,0.117,7,0,7,7,,0.4,788,,,,,,,,,,13.327,6.219,0.624,55,28.35,1 oz,142,"1 jar, (5 oz)",0
01151,"MILK,NONFAT,FLUID,WO/ VIT A (FAT FREE OR SKIM)",90.8,35,3.41,0.18,0.76,4.85,0,5.090000153,123,0.04,11,101,166,52,0.4,0.011,0.002,2.1,1,0.036,0.14,0.088,0.329,0.04,5,0,5,5,,0.38,7,2,2,,,,,,0.04,,0.117,0.047,0.007,2,245,1 cup,980,1 quart,0
01152,"MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL,WO/ VIT A",87.71,56,3.95,1.98,0.87,5.49,0,,143,0.06,15,112,182,59,0.41,0.011,0.002,2.6,1.1,0.045,0.194,0.101,0.339,0.046,5,0,5,5,,0.39,75,17,16,,,,,,,,1.232,0.065,0.009,8,245,1 cup,980,1 quart,0
01153,"MILK,CND,EVAP,W/ VIT A",74.04,134,6.81,7.56,1.55,10.04,0,,261,0.19,24,203,303,106,0.77,0.016,0.006,2.3,1.9,0.047,0.316,0.194,0.638,0.05,8,0,8,8,,0.16,397,,,,,,,,,,4.591,2.335,0.245,29,31.5,1 fl oz,126,.5 cup,0
01154,"MILK,DRY,NONFAT,REG,W/ VIT A",3.16,362,36.16,0.77,7.93,51.98,0,51.97999954,1257,0.32,110,968,1794,535,4.08,0.041,0.02,27.3,6.8,0.415,1.55,0.951,3.568,0.361,50,0,50,50,169,4.03,2179,653,653,0,1,0,0,0,0,0.1,0.499,0.2,0.03,20,120,1 cup,30,.25 cup,0
01155,"MILK,DRY,NONFAT,INST,WO/ VIT A",3.96,358,35.1,0.72,8.03,52.19,0,52.18999863,1231,0.31,117,985,1705,549,4.41,0.041,0.02,27.3,5.6,0.413,1.744,0.891,3.23,0.345,50,0,50,50,,3.99,15,4,4,0,1,0,0,0,0.01,0,0.47,0.19,0.03,18,68,1 cup,91,"1 envelope, (1-1/3 cup)",0
01156,"CHEESE,GOAT,HARD TYPE",29.01,452,30.52,35.59,3.72,2.17,0,2.170000076,895,1.88,54,729,48,346,1.59,0.627,0.252,5.5,0,0.14,1.19,2.4,0.41,0.08,4,0,4,4,15,0.12,1745,486,478,0,91,0,0,0,0.31,3,24.609,8.117,0.845,105,28.35,1 oz,,,0
01157,"CHEESE,GOAT,SEMISOFT TYPE",45.52,364,21.58,29.84,2.94,2.54,0,2.539999962,298,1.62,29,375,158,515,0.66,0.564,0.093,3.8,0,0.072,0.676,1.148,0.19,0.06,2,0,2,2,15,0.22,1464,407,401,0,77,0,0,0,0.26,2.5,20.639,6.808,0.709,79,28.35,1 oz,,,0
01159,"CHEESE,GOAT,SOFT TYPE",60.75,268,18.52,21.08,1.58,0.89,0,0.889999986,140,1.9,16,256,26,368,0.92,0.732,0.1,2.8,0,0.07,0.38,0.43,0.68,0.25,12,0,12,12,15,0.19,1033,288,283,0,54,0,0,0,0.18,1.8,14.575,4.807,0.501,46,28.35,1 oz,,,0
01160,"EGG,YOLK,RAW,FRZ,SALTED",50.8,274,14,23,10.6,1.6,0,,114,3.75,10,431,117,3780,2.84,0.109,0.062,37.7,0,0.13,0.43,0.04,3.23,0.261,107,0,107,107,,2.52,1190,357,357,,,,,,,,7.028,8.849,3.15,955,227,.5 lb,,,0
01161,"CHEESE SUB,MOZZARELLA",47.36,248,11.47,12.22,5.27,23.67,0,23.67000008,610,0.4,41,583,455,685,1.92,0.11,0.028,19.2,0.1,0.026,0.444,0.317,0.083,0.051,11,0,11,11,14,0.81,1457,437,437,0,0,0,0,0,0.11,1,3.711,6.243,1.738,0,113,"1 cup, shredded",28,1 oz,0
01163,CHEESE FONDUE,61.61,229,14.23,13.47,1.85,3.77,0,,476,0.39,23,306,105,132,1.96,0.026,0.099,9,0,0.027,0.196,0.19,0.233,0.055,8,4,4,11,,0.83,414,109,107,,,,,,,,8.721,3.563,0.484,45,215,1 cup,108,.5 cup,0
01164,"CHEESE SAU,PREP FROM RECIPE",66.86,197,10.33,14.92,2.41,5.48,0.100000001,,311,0.35,19,229,142,493,1.26,0.019,0.04,6.6,0.6,0.044,0.243,0.204,0.233,0.045,10,2,8,11,,0.35,606,166,163,,,,,,,,8.034,4.735,1.397,38,243,1 cup,30,2 tbsp,0
01165,"CHEESE,MEXICAN,QUESO ANEJO",38.06,373,21.44,29.98,5.89,4.63,0,4.630000114,680,0.47,28,444,87,1131,2.94,0.008,0.037,14.5,0,0.02,0.209,0.032,0.252,0.047,1,0,1,1,15,1.38,187,54,54,0,4,0,0,0,0.26,2.5,19.033,8.528,0.901,105,132,"1 cup, crumbled",28,1 oz,0
01166,"CHEESE,MEXICAN,QUESO ASADERO",42.16,356,22.6,28.26,4.11,2.87,0,2.869999886,661,0.51,26,443,86,655,3.02,0.026,0.036,14.5,0,0.021,0.223,0.181,0.231,0.053,8,0,8,8,15,1,190,55,55,0,4,0,0,0,0.24,2.4,17.939,8.038,0.85,105,132,"1 cup, diced",113,"1 cup, shredded",0
01167,"CHEESE,MEXICAN,QUESO CHIHUAHUA",39.13,374,21.56,29.68,4.06,5.56,0,5.559999943,651,0.47,23,442,52,617,3.5,0.024,0.071,14.5,0,0.018,0.225,0.15,0.279,0.055,2,0,2,2,15,1.03,193,56,56,0,4,0,0,0,0.26,2.5,18.843,8.443,0.892,105,132,"1 cup, diced",113,"1 cup, shredded",0
01168,"CHEESE,LOFAT,CHEDDAR OR COLBY",63.1,173,24.35,7,3.64,1.91,0,0.519999981,415,0.42,16,484,66,612,1.82,0.021,0.006,14.5,0,0.012,0.221,0.051,0.183,0.045,11,0,11,11,15,0.49,207,60,60,0,4,0,0,0,0.06,0.6,4.342,2.082,0.222,21,132,"1 cup, diced",113,"1 cup, shredded",0
01169,"CHEESE,LOW-SODIUM,CHEDDAR OR COLBY",38.98,398,24.35,32.62,2.13,1.91,0,0.49000001,703,0.72,27,484,112,21,3.09,0.036,0.011,14.5,0,0.021,0.375,0.086,0.311,0.076,18,0,18,18,15,0.83,996,264,257,0,84,0,0,0,0.28,2.7,20.768,9.189,0.972,100,132,"1 cup, diced",113,"1 cup, shredded",0
01171,"EGG,WHOLE,RAW,FROZEN",75.85,148,11.95,10.2,0.95,1.05,0,,59,1.85,11,202,130,133,1.38,0.053,0.034,30.8,0,0.06,0.46,0.075,1.48,0.162,73,0,73,73,,1.07,525,158,158,,,,,,,,3.147,3.886,1.412,432,,,,,0
01172,"EGG,WHITE,RAW,FROZEN",88.55,47,9.8,0,0.6,1.05,0,,7,0.05,10,13,136,158,0.02,0.012,0.007,17.6,0,0.005,0.4,0.1,0.155,0.004,3,0,3,3,,0.06,0,0,0,,,,,,,,0,0,0,0,,,,,0
01173,"EGG,WHITE,DRIED",5.8,382,81.1,0,5.3,7.8,0,5.400000095,62,0.15,88,111,1125,1280,0.1,0.114,0.007,125.1,0,0.005,2.53,0.865,0.775,0.036,18,0,18,18,,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,0
01178,"SOUR CREAM,REDUCED FAT",71,181,7,14.1,0.9,7,0,0.300000012,141,0.06,11,85,211,70,0.27,0.01,,4.1,0.9,0.04,0.24,0.07,,0.02,11,0,11,11,19,0.3,436,119,117,0,27,0,0,0,0.4,0.7,8.7,4.1,0.5,35,,,,,0
01179,"SOUR CREAM,LIGHT",78.1,136,3.5,10.6,0.7,7.1,0,0.219999999,141,0.07,10,71,212,71,0.5,0.016,,3.1,0.9,0.04,0.12,0.07,,0.02,11,0,11,11,19,0.42,328,90,88,0,21,0,0,0,0.3,0.5,6.6,3.1,0.4,35,,,,,0
01180,"SOUR CREAM,FAT FREE",80.6,74,3.1,0,0.7,15.6,0,0.389999986,125,0,10,95,129,141,0.5,0.016,,5.3,0,0.04,0.15,0.07,,0.02,11,0,11,11,19,0.3,255,73,72,0,9,0,0,0,0,0,0,0,0,9,,,,,0
01182,"USDA COMMODITY,CHS,CHEDDAR,RED FAT",48.2,282,27.2,18.3,4.3,2,0,0.579999983,905,0.13,35,583,93,725,4.3,0.021,,15.5,0,0.03,0.3,0.06,,0.084,20,0,20,20,15,1.66,633,150,142,0,95,0,0,0,0.16,1.5,11.6,5.02,0.75,56,,,,,0
01184,"YOGURT,VAN OR LEM FLAV,NONFAT MILK,SWTND W/LOW-CALORIE SWTNR",87.43,47,3.86,0.18,1,7.5,0,7.5,143,0.12,13,109,177,59,0.67,0.079,,3.1,1.1,0.034,0.162,0.086,,0.037,8,0,8,8,15,0.43,0,0,0,0,0,0,0,0,0,0,0.116,0.049,0.005,2,,,,,0
01185,"PARMESAN CHS TOPPING,FAT FREE",8.6,370,40,5,6.4,40,0,1.5,800,5,40,700,600,1150,3,0.02,,43.3,0,0.05,0.05,0.2,,0.1,25,0,25,25,15,1.1,151,40,39,0,13,0,0,0,0.04,0.4,3.11,1.446,0.186,20,,,,,0
01186,"CHEESE,CREAM,FAT FREE",71.87,105,15.69,1,3.77,7.66,0,5.480000019,351,0.19,22,523,278,702,1.5,0.036,0.017,4.9,0,0.04,0.265,0.23,0.84,0.05,35,0,35,35,65,0.95,53,11,10,0,11,0,0,0,0.02,0.2,0.644,0.25,0.057,12,,,,,0
01187,"YOGURT,CHOC,NONFAT MILK",71.57,108,3.53,0,1.37,23.53,1.200000048,14.97000027,88,0.42,40,166,339,135,1.13,0.209,,7,0,0.047,0.215,0.223,,0.047,12,0,12,12,15,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,,,,,0
01188,KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU,51.5,276,12,21,5.8,9.2,0.300000012,6.699999809,359,0.19,,806,240,1638,1.64,,,,0.4,,0.24,,,,,,,,,,649,,,,,,,,,,13.1,,,75,33,2 tbsp,,,0
01189,KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT,51.5,215,16.3,9.5,6.4,16.2,0.200000003,8.199999809,418,0.16,,943,297,1705,2.36,,,,0.4,,0.33,,,,,,,,,,628,,,,,,,,,,6.4,,,35,35,2 tbsp,,,0
01190,KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT,58,148,22.7,1,6.1,11.7,0.200000003,6.699999809,712,0.05,,923,236,1298,2.5,,,,0.2,,0.28,,,,,,,,,,2166,,,,,,,,,,0.7,,,16,21,1 slice,,,0
01191,KRAFT VELVEETA PAST PROCESS CHS SPRD,45.8,303,16.3,22,6,9.8,0,8.100000381,466,0.18,,863,335,1499,1.84,,,,0.2,,0.35,,,,,,,,,,1107,,,,,,,,,,14.4,,,80,28,1 oz,,,0
01192,KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT,51.3,222,19.6,10.6,6.6,11.8,0,8.5,574,0.14,,1024,345,1586,2.49,,,,0.1,,0.65,,,,,,,,,,982,,,,,,,,,,7.1,,,42,28,1 oz,,,0
01193,KRAFT BREAKSTONE'S RED FAT SOUR CRM,76.2,152,4.5,12,0.8,6.5,0.100000001,6.400000095,161,0.06,,110,210,59,,,,,1.1,,,,,,,,,,,,1053,,,,,,,,,,7.6,,,50,31,2 tbsp,,,0
01194,KRAFT BREAKSTONE'S FREE FAT FREE SOUR CRM,77.7,91,4.7,1.3,1.2,15.1,0,7.199999809,141,0.05,,116,219,72,,,,,1.2,,,,,,,,,,,,679,,,,,,,,,,0.8,,,9,32,2 tbsp,,,0
01195,KRAFT BREYERS LOWFAT STRAWBERRY YOGURT (1% MILKFAT),76.5,96,3.8,0.8,0.7,18.2,0.200000003,17.39999962,125,0.1,,89,192,52,,,,,0,,0.19,,,,,,,,,0.53,34,,,,,,,,,,0.5,,,9,227,"1 container, (8 oz)",,,0
01196,KRAFT BREYERS LT N' LVLY LOWFAT STR'BERY YOGURT (1% MILKFAT),73.3,108,3.2,0.8,0.6,21.9,0.200000003,19.60000038,91,0.11,,67,151,45,,,,,0,,0.14,,,,,,,,,0.46,30,,,,,,,,,,0.5,,,9,125,"1 container, (4.4 oz)",,,0
01197,KRAFT BREYERS SMOTH&CRMY LOWFAT STR'BERY YOGURT (1% MILKFAT),74.8,102,3.8,0.9,0.7,19.9,0.300000012,17.20000076,108,0.13,,78,177,55,,,,,0,,0.18,,,,,,,,,0.52,31,,,,,,,,,,0.5,,,9,227,"1 container, (8 oz)",,,0
01198,KRAFT BREYERS LT NONFAT STR'BERY YOGURT (W/ASPRT&FRUCT SW'T),86,55,3.4,0.2,0.6,9.9,0,7.699999809,95,0.11,,68,146,45,,,,,0.6,,0.14,,,,,,,,,0.41,4,,,,,,,,,,0.1,,,5,227,"1 container, (8 oz)",,,0
01199,"CREAM,HALF & HALF,FAT FREE",86,59,2.6,1.4,1,9,0,5,96,0,16,151,206,144,0.81,0.016,0.002,2.9,0.7,0.056,0.237,0.124,0.459,0.062,4,0,4,4,15,0.52,43,12,12,0,3,0,0,0,0.04,0.2,0.841,0.384,0.052,5,,,,,0
01200,REDDI WIP FAT FREE WHIPPED TOPPING,66.44,149,3,5,0.56,25,0.400000006,16,108,0.03,8,68,108,72,0.31,0.019,,3,0,0.148,0.619,0.364,,0.123,17,0,17,17,0,1.48,175,49,48,0,9,0,0,0,0.09,0.3,2.869,1.25,0.299,16,,,,,0
01202,"MILK,CHOC,FLUID,COMM,RED FAT,W/ ADDED CA",82.17,78,2.99,1.9,0.81,12.13,0.699999988,9.550000191,194,0.24,14,76,123,66,0.39,0.075,0.062,3.4,0,0.045,0.565,0.164,0.539,0.024,2,0,2,2,,0.33,227,64,63,0,11,0,0,0,0.04,0.2,1.177,0.455,0.089,8,250,1 cup,31,1 fl oz,0
01203,"YOGURT,FRUIT,LOFAT,W/LO CAL SWEETENER",74.1,105,4.86,1.41,1.03,18.6,0,2.900000095,152,0.07,16,133,194,58,0.82,0.08,0.065,3.1,0.7,0.041,0.18,0.105,0.544,0.045,10,0,10,10,15,0.52,441,131,131,0,4,0,0,0,0.06,1.2,0.909,0.387,0.04,6,227,"1 8 oz container, (8 oz)",245,"1 cup, (8 fl oz)",0
01204,"CHEESE,PARMESAN,DRY GRATED,RED FAT",50.6,265,20,20,8.03,1.37,0,0,1109,0.9,38,729,125,1529,3.87,0.238,0.085,17.7,0,0.029,0.486,0.114,0.325,0.049,10,0,10,10,21,2.26,605,160,156,0,51,0,0,0,0.17,1.7,13.317,6.098,0.462,88,100,1 cup,5,1 tbsp,0
01205,"CREAM SUB,FLAV,LIQ",50.06,251,0.69,13.5,0.55,35.07,1.100000024,33.04000092,6,0.59,19,28,96,80,0.25,0.142,0.142,0.7,0,0.004,0.024,0.091,0.01,0.004,1,0,1,1,0,0,0,0,0,0,0,0,0,1,1.58,3.3,2.635,4.002,6.269,0,,,,,0
01206,"CREAM SUB,FLAV,POWDERED",1.52,495,0,21.47,0.79,75.42,1.200000048,58.00999832,5,0.63,17,28,90,196,0.23,0.135,0.14,1.3,0,0.004,0.027,0.084,0.009,0.004,1,0,1,1,0,0,0,0,0,0,0,0,0,1,0.41,9.1,19.446,0.618,0.229,0,,,,,0
01208,"CHEESE,PROVOLONE,RED FAT",50.6,274,24.7,17.6,3.6,3.5,0,0.550000012,756,0.52,28,496,138,876,3.23,0.026,0.01,14.5,0,0.019,0.321,0.156,0.476,0.073,10,0,10,10,13,1.46,532,141,137,0,45,0,0,0,0.15,1.5,11.3,4.89,0.51,55,132,"1 cup, diced",113,"1 cup, shredded",0
01209,"CHEESE,MEXICAN,BLEND,RED FAT",48.2,282,24.69,19.4,4.3,3.41,0,0.560000002,1146,0.13,35,583,93,776,4.3,0.021,,15.5,0,0.03,0.3,0.06,,0.084,20,0,20,20,14,1.66,586,155,151,0,50,0,0,0,0.17,1.6,11.58,5.02,0.75,62,,,,,0
01210,"EGG MIX,USDA CMDTY",2.78,549,35.6,34.5,3.15,23.97,,2.460000038,171,3.23,11,451,373,576,2.76,0.149,0.056,118,,0.19,1.277,0.267,6.5,0.207,138,0,138,138,602,2.9,398,117,116,0,0,13,0,,2.04,0.7,10.305,13.745,7.555,1110,,,,,0
02001,"ALLSPICE,GROUND",8.46,263,6.09,8.69,4.65,72.12,21.60000038,,661,7.06,135,113,1044,77,1.01,0.553,2.943,2.7,39.2,0.101,0.063,2.86,,0.21,36,0,36,36,,0,540,27,0,,,,,,,,2.55,0.66,2.36,0,6,1 tbsp,2,1 tsp,0
02002,ANISE SEED,9.54,337,17.6,15.9,6.95,50.02,14.60000038,,646,36.96,170,440,1441,16,5.3,0.91,2.3,5,21,0.34,0.29,3.06,0.797,0.65,10,0,10,10,,0,311,16,0,,,,,,,,0.586,9.78,3.15,0,6.7,"1 tbsp, whole",2,"1 tsp, whole",0
02003,"SPICES,BASIL,DRIED",6.43,251,14.37,3.98,14.27,60.96,40.5,1.710000038,2113,42,422,490,3433,34,5.82,1.367,3.167,2.8,61.2,0.148,0.316,6.948,,2.32,274,0,274,274,55,0,9375,469,0,0,5584,81,393,1150,7.48,1714.5,0.24,0.453,2.168,0,0.7,"1 tsp, leaves",2,"1 tbsp, leaves",0
02004,"SPICES,BAY LEAF",5.44,313,7.61,8.36,3.62,74.97,26.29999924,,834,43,120,113,529,23,3.7,0.416,8.167,2.8,46.5,0.009,0.421,2.005,,1.74,180,0,180,180,,0,6185,309,0,,,,,,,,2.28,1.64,2.29,0,1.8,"1 tbsp, crumbled",1,"1 tsp, crumbled",0
02005,CARAWAY SEED,9.87,333,19.77,14.59,5.87,49.9,38,0.639999986,689,16.23,258,568,1351,17,5.5,0.91,1.3,12.1,21,0.383,0.379,3.606,,0.36,10,0,10,10,25,0,363,18,0,0,189,58,6,205,2.5,0,0.62,7.125,3.272,0,6.7,1 tbsp,2,1 tsp,0
02006,"SPICES,CARDAMOM",8.28,311,10.76,6.7,5.78,68.47,28,,383,13.97,229,178,1119,18,7.47,0.383,28,,21,0.198,0.182,1.102,,0.23,,,,,,0,0,0,0,,,,,,,,0.68,0.87,0.43,0,5.8,"1 tbsp, ground",2,"1 tsp, ground",0
02007,CELERY SEED,6.04,392,18.07,25.27,9.27,41.35,11.80000019,0.670000017,1767,44.9,440,547,1400,160,6.93,1.37,7.567,12.1,17.1,0.34,0.29,3.06,,0.89,10,0,10,10,25,0,52,3,0,0,31,0,0,0,1.07,0,2.19,15.93,3.72,0,6.5,1 tbsp,2,1 tsp,0
02008,"CHERVIL,DRIED",7.2,237,23.2,3.9,16.6,49.1,11.30000019,,1346,31.95,130,450,4740,83,8.8,0.44,2.1,29.3,50,0.38,0.68,5.4,,0.93,274,0,274,274,,0,5850,293,0,,,,,,,,0.169,1.399,1.8,0,1.9,1 tbsp,1,1 tsp,0
02009,CHILI POWDER,7.79,314,12.26,16.76,8.53,54.66,34.20000076,7.190000057,278,14.25,170,303,1916,1010,2.7,0.429,2.165,6,64.1,0.349,0.794,7.893,,3.67,100,0,100,100,66,0,29650,1483,0,2090,15000,3490,21,310,29.05,105.7,2.953,3.574,7.458,0,7.5,1 tbsp,3,1 tsp,0
02010,"CINNAMON,GROUND",10.58,247,3.99,1.24,3.6,80.59,53.09999847,2.170000076,1002,8.32,60,64,431,10,1.83,0.339,17.466,3.1,3.8,0.022,0.041,1.332,0.358,0.158,6,0,6,6,11,0,295,15,0,1,112,129,15,222,2.32,31.2,0.345,0.246,0.068,0,7.85,1 tbsp,3,1 tsp,0
02011,"CLOVES,GROUND",6.86,323,5.98,20.07,5.88,61.21,34.20000076,2.380000114,646,8.68,264,105,1102,243,1.09,0.347,30.033,5.9,80.8,0.115,0.267,1.458,,0.59,93,0,93,93,37,0,530,27,0,0,84,468,0,0,8.52,141.8,5.438,1.471,7.088,0,6.6,1 tbsp,2,1 tsp,0
1 NDB_No Shrt_Desc Water Energ_Kcal Protein Lipid_Tot Ash Carbohydrt Fiber_TD Sugar_Tot Calcium Iron Magnesium Phosphorus Potassium Sodium ZInc Copper Manganese Selenium Vit_C Thiamin Ribolfavin Niacin Panto_Acid Vit_B6 Folate_Tot Folic_Acid Food_Folate Folate_DFE Choline_Tot Vit_B12 Vit_A_IU Vit_A_RAE Retinol Alpha_Carot Beta_Carot Beta_Crypt Lycopene Lut+Zea Vit_E Vit_K FA_SAt FA_Mono FA_Poly Cholestrl GmWt_1 GmWt_Desc1 GmWt_2 GmWt_Desc2 Refuse_Pct
2 01001 BUTTER,WITH SALT 15.87 717 0.85 81.11 2.11 0.06 0 0.059999999 24 0.02 2 24 24 576 0.09 0 0 1 0 0.005 0.034 0.042 0.11 0.003 3 0 3 3 19 0.17 2499 684 671 0 158 0 0 0 2.32 7 51.368 21.021 3.043 215 227 1 cup 14 1 tbsp 0
3 01002 BUTTER,WHIPPED,WITH SALT 15.87 717 0.85 81.11 2.11 0.06 0 0.059999999 24 0.16 2 23 26 827 0.05 0.016 0.004 1 0 0.005 0.034 0.042 0.11 0.003 3 0 3 3 19 0.13 2499 684 671 0 158 0 0 0 2.32 7 50.489 23.426 3.012 219 151 1 cup 9 1 tbsp 0
4 01003 BUTTER OIL,ANHYDROUS 0.24 876 0.28 99.48 0 0 0 0 4 0 0 3 5 2 0.01 0.001 0 0 0 0.001 0.005 0.003 0.01 0.001 0 0 0 0 22 0.01 3069 840 824 0 193 0 0 0 2.8 8.6 61.924 28.732 3.694 256 205 1 cup 13 1 tbsp 0
5 01004 CHEESE,BLUE 42.41 353 21.4 28.74 5.11 2.34 0 0.5 528 0.31 23 387 256 1395 2.66 0.04 0.009 14.5 0 0.029 0.382 1.016 1.729 0.166 36 0 36 36 15 1.22 763 198 192 0 74 0 0 0 0.25 2.4 18.669 7.778 0.8 75 28.35 1 oz 17 1 cubic inch 0
6 01005 CHEESE,BRICK 41.11 371 23.24 29.68 3.18 2.79 0 0.50999999 674 0.43 24 451 136 560 2.6 0.024 0.012 14.5 0 0.014 0.351 0.118 0.288 0.065 20 0 20 20 15 1.26 1080 292 286 0 76 0 0 0 0.26 2.5 18.764 8.598 0.784 94 132 1 cup, diced 113 1 cup, shredded 0
7 01006 CHEESE,BRIE 48.42 334 20.75 27.68 2.7 0.45 0 0.449999988 184 0.5 20 188 152 629 2.38 0.019 0.034 14.5 0 0.07 0.52 0.38 0.69 0.235 65 0 65 65 15 1.65 592 174 173 0 9 0 0 0 0.24 2.3 17.41 8.013 0.826 100 240 1 cup, melted 144 1 cup, sliced 0
8 01007 CHEESE,CAMEMBERT 51.8 300 19.8 24.26 3.68 0.46 0 0.460000008 388 0.33 20 347 187 842 2.38 0.021 0.038 14.5 0 0.028 0.488 0.63 1.364 0.227 62 0 62 62 15 1.3 820 241 240 0 12 0 0 0 0.21 2 15.259 7.023 0.724 72 246 1 cup 28 1 oz 0
9 01008 CHEESE,CARAWAY 39.28 376 25.18 29.2 3.28 3.06 0 673 0.64 22 490 93 690 2.94 0.024 0.021 14.5 0 0.031 0.45 0.18 0.19 0.074 18 0 18 18 0.27 1054 271 262 18.584 8.275 0.83 93 28.35 1 oz 0
10 01009 CHEESE,CHEDDAR 36.75 403 24.9 33.14 3.93 1.28 0 0.519999981 721 0.68 28 512 98 621 3.11 0.031 0.01 13.9 0 0.027 0.375 0.08 0.413 0.074 18 0 18 18 16 0.83 1002 265 258 0 85 0 0 0 0.29 2.8 21.092 9.391 0.942 105 132 1 cup, diced 244 1 cup, melted 0
11 01010 CHEESE,CHESHIRE 37.65 387 23.37 30.6 3.6 4.78 0 643 0.21 21 464 95 700 2.79 0.042 0.012 14.5 0 0.046 0.293 0.08 0.413 0.074 18 0 18 18 0.83 985 233 220 19.475 8.671 0.87 103 28.35 1 oz 0
12 01011 CHEESE,COLBY 38.2 394 23.76 32.11 3.36 2.57 0 0.519999981 685 0.76 26 457 127 604 3.07 0.042 0.012 14.5 0 0.015 0.375 0.093 0.21 0.079 18 0 18 18 15 0.83 994 264 257 0 82 0 0 0 0.28 2.7 20.218 9.28 0.953 95 132 1 cup, diced 113 1 cup, shredded 0
13 01012 CHEESE,COTTAGE,CRMD,LRG OR SML CURD 79.79 98 11.12 4.3 1.41 3.38 0 2.670000076 83 0.07 8 159 104 364 0.4 0.029 0.002 9.7 0 0.027 0.163 0.099 0.557 0.046 12 0 12 12 18 0.43 140 37 36 0 12 0 0 0 0.08 0 1.718 0.778 0.123 17 113 4 oz 210 1 cup, large curd (not packed) 0
14 01013 CHEESE,COTTAGE,CRMD,W/FRUIT 79.64 97 10.69 3.85 1.2 4.61 0.200000003 2.380000114 53 0.16 7 113 90 344 0.33 0.04 0.003 7.7 1.4 0.033 0.142 0.15 0.181 0.068 11 0 11 11 18 0.53 146 38 37 0 14 0 0 0 0.04 0.4 2.311 1.036 0.124 13 226 1 cup, (not packed) 113 4 oz 0
15 01014 CHEESE,COTTAGE,NONFAT,UNCRMD,DRY,LRG OR SML CURD 81.01 72 10.34 0.29 1.71 6.66 0 1.850000024 86 0.15 11 190 137 330 0.47 0.03 0.022 9.4 0 0.023 0.226 0.144 0.446 0.016 9 0 9 9 18 0.46 8 2 2 0 0 0 0 0 0.01 0 0.169 0.079 0.003 7 145 1 cup, (not packed) 113 4 oz 0
16 01015 CHEESE,COTTAGE,LOWFAT,2% MILKFAT 80.69 86 11.83 2.45 1.36 3.66 0 3.670000076 91 0.15 7 163 84 330 0.41 0.03 0.007 9.9 0 0.041 0.198 0.108 0.253 0.022 10 0 10 10 16 0.45 74 20 19 0 6 0 0 0 0.04 0 0.979 0.443 0.07 10 226 1 cup, (not packed) 113 4 oz 0
17 01016 CHEESE,COTTAGE,LOWFAT,1% MILKFAT 82.48 72 12.39 1.02 1.39 2.72 0 2.720000029 61 0.14 5 134 86 406 0.38 0.028 0.003 9 0 0.021 0.165 0.128 0.215 0.068 12 0 12 12 18 0.63 41 11 11 0 3 0 0 0 0.01 0.1 0.645 0.291 0.031 4 226 1 cup, (not packed) 113 4 oz 0
18 01017 CHEESE,CREAM 54.44 342 5.93 34.24 1.32 4.07 0 3.210000038 98 0.38 9 106 138 321 0.51 0.019 0.011 2.4 0 0.02 0.125 0.145 0.57 0.035 11 0 11 11 27 0.25 1265 362 359 0 41 0 0 0 0.65 3.4 19.292 8.62 1.437 110 232 1 cup 14 1 tbsp 0
19 01018 CHEESE,EDAM 41.56 357 24.99 27.8 4.22 1.43 0 1.429999948 731 0.44 30 536 188 965 3.75 0.036 0.011 14.5 0 0.037 0.389 0.082 0.281 0.076 16 0 16 16 15 1.54 825 243 242 0 11 0 0 0 0.24 2.3 17.572 8.125 0.665 89 28.35 1 oz 198 1 package, (7 oz) 0
20 01019 CHEESE,FETA 55.22 264 14.21 21.28 5.2 4.09 0 4.090000153 493 0.65 19 337 62 1116 2.88 0.032 0.028 15 0 0.154 0.844 0.991 0.967 0.424 32 0 32 32 15 1.69 422 125 125 0 3 0 0 0 0.18 1.8 14.946 4.623 0.591 89 150 1 cup, crumbled 28 1 oz 0
21 01020 CHEESE,FONTINA 37.92 389 25.6 31.14 3.79 1.55 0 1.549999952 550 0.23 14 346 64 800 3.5 0.025 0.014 14.5 0 0.021 0.204 0.15 0.429 0.083 6 0 6 6 15 1.68 913 261 258 0 32 0 0 0 0.27 2.6 19.196 8.687 1.654 116 132 1 cup, diced 108 1 cup, shredded 0
22 01021 CHEESE,GJETOST 13.44 466 9.65 29.51 4.75 42.65 0 400 0.52 70 444 1409 600 1.14 0.08 0.04 14.5 0 0.315 1.382 0.813 3.351 0.271 5 0 5 5 2.42 1113 334 334 19.16 7.879 0.938 94 28.35 1 oz 227 1 package, (8 oz) 0
23 01022 CHEESE,GOUDA 41.46 356 24.94 27.44 3.94 2.22 0 2.220000029 700 0.24 29 546 121 819 3.9 0.036 0.011 14.5 0 0.03 0.334 0.063 0.34 0.08 21 0 21 21 15 1.54 563 165 164 0 10 0 0 0 0.24 2.3 17.614 7.747 0.657 114 28.35 1 oz 198 1 package, (7 oz) 0
24 01023 CHEESE,GRUYERE 33.19 413 29.81 32.34 4.3 0.36 0 0.360000014 1011 0.17 36 605 81 336 3.9 0.032 0.017 14.5 0 0.06 0.279 0.106 0.562 0.081 10 0 10 10 15 1.6 948 271 268 0 33 0 0 0 0.28 2.7 18.913 10.043 1.733 110 132 1 cup, diced 108 1 cup, shredded 0
25 01024 CHEESE,LIMBURGER 48.42 327 20.05 27.25 3.79 0.49 0 0.49000001 497 0.13 21 393 128 800 2.1 0.021 0.038 14.5 0 0.08 0.503 0.158 1.177 0.086 58 0 58 58 15 1.04 1155 340 339 0 15 0 0 0 0.23 2.3 16.746 8.606 0.495 90 134 1 cup 28 1 oz 0
26 01025 CHEESE,MONTEREY 41.01 373 24.48 30.28 3.55 0.68 0 0.5 746 0.72 27 444 81 536 3 0.032 0.011 14.5 0 0.015 0.39 0.093 0.21 0.079 18 0 18 18 15 0.83 769 198 192 0 78 0 0 0 0.26 2.5 19.066 8.751 0.899 89 132 1 cup, diced 113 1 cup, shredded 0
27 01026 CHEESE,MOZZARELLA,WHL MILK 50.01 300 22.17 22.35 3.28 2.19 0 1.029999971 505 0.44 20 354 76 627 2.92 0.011 0.03 17 0 0.03 0.283 0.104 0.141 0.037 7 0 7 7 15 2.28 676 179 174 0 57 0 0 0 0.19 2.3 13.152 6.573 0.765 79 112 1 cup, shredded 28 1 oz 0
28 01027 CHEESE,MOZZARELLA,WHL MILK,LO MOIST 48.38 318 21.6 24.64 2.91 2.47 0 1.00999999 575 0.2 21 412 75 415 2.46 0.022 0.009 16.1 0 0.016 0.27 0.094 0.071 0.062 8 0 8 8 15 0.73 745 197 192 0 63 0 0 0 0.21 2.5 15.561 7.027 0.778 89 28.35 1 oz 18 1 cubic inch 0
29 01028 CHEESE,MOZZARELLA,PART SKIM MILK 53.78 254 24.26 15.92 3.27 2.77 0 1.129999995 782 0.22 23 463 84 619 2.76 0.025 0.01 14.4 0 0.018 0.303 0.105 0.079 0.07 9 0 9 9 15 0.82 481 127 124 0 41 0 0 0 0.14 1.6 10.114 4.51 0.472 64 28.35 1 oz 0
30 01029 CHEESE,MOZZARELLA,PART SKIM MILK,LO MOIST 46.46 302 25.96 20.03 3.72 3.83 0 0.600000024 731 0.25 26 524 95 528 3.13 0.027 0.011 16.3 0 0.101 0.329 0.119 0.09 0.079 10 0 10 10 14 2.31 517 137 133 0 44 0 0 0 0.37 1.3 12.67 5.73 0.626 54 132 1 cup, diced 113 1 cup, shredded 0
31 01030 CHEESE,MUENSTER 41.77 368 23.41 30.04 3.66 1.12 0 1.120000005 717 0.41 27 468 134 628 2.81 0.031 0.008 14.5 0 0.013 0.32 0.103 0.19 0.056 12 0 12 12 15 1.47 1012 298 297 0 13 0 0 0 0.26 2.5 19.113 8.711 0.661 96 132 1 cup, diced 113 1 cup, shredded 0
32 01031 CHEESE,NEUFCHATEL 63.11 253 9.15 22.78 1.37 3.59 0 3.190000057 117 0.13 10 138 152 334 0.82 0.027 0.011 3 0 0.022 0.155 0.21 0.575 0.041 14 0 14 14 0.3 841 241 239 0 27 0 0 0.4 1.7 12.79 5.784 0.97 74 28.35 1 oz 85 1 package, (3 oz) 0
33 01032 CHEESE,PARMESAN,GRATED 20.84 431 38.46 28.61 8.03 4.06 0 0.899999976 1109 0.9 38 729 125 1529 3.87 0.238 0.085 17.7 0 0.029 0.486 0.114 0.325 0.049 10 0 10 10 15 2.26 442 120 117 0 31 0 0 0 0.26 1.9 17.301 8.375 1.173 88 100 1 cup 5 1 tbsp 0
34 01033 CHEESE,PARMESAN,HARD 29.16 392 35.75 25.83 6.04 3.22 0 0.800000012 1184 0.82 44 694 92 1602 2.75 0.032 0.02 22.5 0 0.039 0.332 0.271 0.453 0.091 7 0 7 7 15 1.2 399 108 106 0 28 0 0 0 0.23 1.7 16.41 7.515 0.569 68 28.35 1 oz 10 1 cubic inch 0
35 01034 CHEESE,PORT DE SALUT 45.45 352 23.78 28.2 2 0.57 0 0.569999993 650 0.43 24 360 136 534 2.6 0.022 0.011 14.5 0 0.014 0.24 0.06 0.21 0.053 18 0 18 18 15 1.5 1092 315 313 0 29 0 0 0 0.24 2.4 16.691 9.338 0.729 123 132 1 cup, diced 113 1 cup, shredded 0
36 01035 CHEESE,PROVOLONE 40.95 351 25.58 26.62 4.71 2.14 0 0.560000002 756 0.52 28 496 138 876 3.23 0.026 0.01 14.5 0 0.019 0.321 0.156 0.476 0.073 10 0 10 10 15 1.46 880 236 230 0 68 0 0 0 0.23 2.2 17.078 7.393 0.769 69 132 1 cup, diced 28 1 oz 0
37 01036 CHEESE,RICOTTA,WHOLE MILK 71.7 174 11.26 12.98 1.02 3.04 0 0.270000011 207 0.38 11 158 105 84 1.16 0.021 0.006 14.5 0 0.013 0.195 0.104 0.213 0.043 12 0 12 12 18 0.34 445 120 117 0 33 0 0 0 0.11 1.1 8.295 3.627 0.385 51 246 1 cup 124 .5 cup 0
38 01037 CHEESE,RICOTTA,PART SKIM MILK 74.41 138 11.39 7.91 1.15 5.14 0 0.310000002 272 0.44 15 183 125 125 1.34 0.034 0.01 16.7 0 0.021 0.185 0.078 0.242 0.02 13 0 13 13 18 0.29 384 107 105 0 20 0 0 0 0.07 0.7 4.927 2.314 0.26 31 246 1 cup 28 1 oz 0
39 01038 CHEESE,ROMANO 30.91 387 31.8 26.94 6.72 3.63 0 0.730000019 1064 0.77 41 760 86 1200 2.58 0.03 0.02 14.5 0 0.037 0.37 0.077 0.424 0.085 7 0 7 7 15 1.12 415 96 90 0 69 0 0 0 0.23 2.2 17.115 7.838 0.593 104 28.35 1 oz 142 5 package, (5 oz) 0
40 01039 CHEESE,ROQUEFORT 39.38 369 21.54 30.64 6.44 2 0 662 0.56 30 392 91 1809 2.08 0.034 0.03 14.5 0 0.04 0.586 0.734 1.731 0.124 49 0 49 49 0.64 1047 294 290 19.263 8.474 1.32 90 28.35 1 oz 85 1 package, (3 oz) 0
41 01040 CHEESE,SWISS 37.12 380 26.93 27.8 2.77 5.38 0 1.320000052 791 0.2 38 567 77 192 4.36 0.043 0.005 18.2 0 0.063 0.296 0.092 0.429 0.083 6 0 6 6 16 3.34 830 220 214 0 70 0 0 0 0.38 2.5 17.779 7.274 0.972 92 132 1 cup, diced 244 1 cup, melted 0
42 01041 CHEESE,TILSIT 42.86 340 24.41 25.98 4.87 1.88 0 700 0.23 13 500 65 753 3.5 0.026 0.013 14.5 0 0.061 0.359 0.205 0.346 0.065 20 0 20 20 2.1 1045 249 236 16.775 7.136 0.721 102 28.35 1 oz 170 1 package, (6 oz) 0
43 01042 CHEESE,PAST PROCESS,AMERICAN,W/DI NA PO4 39.16 375 22.15 31.25 5.84 1.6 0 0.50999999 552 0.19 27 513 169 1489 2.84 0.016 0.008 14.4 0 0.027 0.353 0.069 0.482 0.071 8 0 8 8 36 0.7 961 254 247 0 82 0 0 0 0.27 2.7 19.694 8.951 0.99 94 140 1 cup, diced 244 1 cup, melted 0
44 01043 CHEESE,PAST PROCESS,PIMENTO 39.08 375 22.13 31.2 5.84 1.73 0.100000001 0.629999995 614 0.42 22 744 162 1428 2.98 0.033 0.016 14.5 2.3 0.027 0.354 0.078 0.485 0.071 8 0 8 8 36 0.7 1045 248 235 12 151 0 0 20 0.29 2.9 19.663 8.937 0.988 94 140 1 cup, diced 244 1 cup, melted 0
45 01044 CHEESE,PAST PROCESS,SWISS,W/DI NA PO4 42.31 334 24.73 25.01 5.85 2.1 0 1.230000019 772 0.61 29 762 216 1370 3.61 0.027 0.014 15.9 0 0.014 0.276 0.038 0.26 0.036 6 0 6 6 36 1.23 746 198 192 0 63 0 0 0 0.34 2.2 16.045 7.046 0.622 85 140 1 cup, diced 113 1 cup, shredded 0
46 01045 CHEESE FD,COLD PK,AMERICAN 43.12 331 19.66 24.46 4.44 8.32 0 497 0.84 30 400 363 966 3.01 0.03 0.01 16.2 0 0.03 0.446 0.074 0.977 0.141 5 0 5 5 1.28 705 159 148 15.355 7.165 0.719 64 28.35 1 oz 227 1 package, (8 oz) 0
47 01046 CHEESE FD,PAST PROCESS,AMERICAN,WO/DI NA PO4 43.21 330 18.4 25.18 5.38 7.83 0 7.429999828 570 0.57 31 439 291 1265 3.19 0.085 0.073 16.1 0 0.068 0.517 0.17 0.974 0.073 7 0 7 7 36 1.26 761 201 196 0 65 0 0 0 0.22 3.4 14.895 7.214 1.108 80 113 1 cup 28 1 oz 0
48 01047 CHEESE FD,PAST PROCESS,SWISS 43.67 323 21.92 24.14 5.77 4.5 0 723 0.6 28 526 284 1552 3.55 0.03 0.01 16.1 0 0.014 0.4 0.104 0.5 0.035 6 0 6 6 2.3 856 237 233 15.487 6.801 0.6 82 28.35 1 oz 227 1 package, (8 oz) 0
49 01048 CHEESE SPRD,PAST PROCESS,AMERICAN,WO/DI NA PO4 47.65 290 16.41 21.23 5.98 8.73 0 7.320000172 562 0.33 29 712 242 1345 2.59 0.033 0.02 11.3 0 0.048 0.431 0.131 0.686 0.117 7 0 7 7 36 0.4 653 173 168 0 55 0 0 0 0.19 1.8 13.327 6.219 0.624 55 140 1 cup, diced 244 1 cup 0
50 01049 CREAM,FLUID,HALF AND HALF 80.57 130 2.96 11.5 0.67 4.3 0 0.159999996 105 0.07 10 95 130 41 0.51 0.01 0.001 1.8 0.9 0.035 0.149 0.078 0.289 0.039 3 0 3 3 19 0.33 354 97 95 0 22 0 0 0 0.33 1.3 7.158 3.321 0.427 37 242 1 cup 15 1 tbsp 0
51 01050 CREAM,FLUID,LT (COFFEE CRM OR TABLE CRM) 73.75 195 2.7 19.31 0.58 3.66 0 0.140000001 96 0.04 9 80 122 40 0.27 0.008 0.001 0.6 0.8 0.032 0.148 0.057 0.276 0.032 2 0 2 2 17 0.22 656 181 178 0 37 0 0 0 0.55 1.7 12.02 5.577 0.717 66 240 1 cup 15 1 tbsp 0
52 01052 CREAM,FLUID,LT WHIPPING 63.5 292 2.17 30.91 0.46 2.96 0 0.109999999 69 0.03 7 61 97 34 0.25 0.007 0.001 0.5 0.6 0.024 0.125 0.042 0.259 0.028 4 0 4 4 17 0.2 1013 279 274 0 60 0 0 0 0.88 2.7 19.337 9.093 0.884 111 120 1 cup, whipped 239 1 cup, fluid (yields 2 cups whipped) 0
53 01053 CREAM,FLUID,HVY WHIPPING 57.71 345 2.05 37 0.45 2.79 0 0.109999999 65 0.03 7 62 75 38 0.23 0.006 0.001 0.5 0.6 0.022 0.11 0.039 0.255 0.026 4 0 4 4 17 0.18 1470 411 405 0 72 0 0 0 1.06 3.2 23.032 10.686 1.374 137 119.5 1 cup, whipped 238 1 cup, fluid (yields 2 cups whipped) 0
54 01054 CREAM,WHIPPED,CRM TOPPING,PRESSURIZED 61.33 257 3.2 22.22 0.76 12.49 0 8 101 0.05 11 89 147 130 0.37 0.01 0.001 1.4 0 0.037 0.065 0.07 0.305 0.041 3 0 3 3 17 0.29 685 188 184 0 43 0 0 0 0.64 1.9 13.831 6.418 0.825 76 60 1 cup 3 1 tbsp 0
55 01055 CREAM,SOUR,RED FAT,CULTURED 80.14 135 2.94 12 0.66 4.26 0 0.159999996 104 0.07 10 95 129 41 0.5 0.016 0.003 2.1 0.9 0.035 0.149 0.067 0.363 0.016 11 0 11 11 19 0.3 372 102 100 0 23 0 0 0 0.34 0.6 7.47 3.466 0.446 39 242 1 cup 15 1 tbsp 0
56 01056 CREAM,SOUR,CULTURED 74.46 193 2.07 19.73 0.85 2.88 0 3.5 110 0.17 10 115 141 80 0.38 0.019 0.011 2.6 0.9 0.036 0.172 0.109 0.336 0.057 7 0 7 7 19 0.28 576 162 160 0 26 0 0 0 0.44 1.8 11.507 5.068 0.84 52 230 1 cup 12 1 tbsp 0
57 01057 EGGNOG 74.37 135 3.81 7.48 0.8 13.54 0 8.409999847 130 0.2 19 109 165 54 0.46 0.013 0.005 4.2 1.5 0.034 0.19 0.105 0.417 0.05 1 0 1 1 52 0.45 161 46 45 0 6 1 0 54 0.2 0.2 4.443 2.233 0.339 59 254 1 cup 32 1 fl oz 0
58 01058 SOUR DRSNG,NON-BUTTERFAT,CULTURED,FILLED CREAM-TYPE 74.79 178 3.25 16.57 0.71 4.68 0 4.679999828 113 0.03 10 87 162 48 0.37 0.01 0.002 2.3 0.9 0.038 0.163 0.074 0.398 0.017 12 0 12 12 15 0.33 10 3 3 0 0 0 0 0 1.34 4.1 13.272 1.958 0.468 5 235 1 cup 12 1 tbsp 0
59 01059 MILK,FILLED,FLUID,W/BLEND OF HYDR VEG OILS 87.67 63 3.33 3.46 0.8 4.74 0 128 0.05 13 97 139 57 0.36 0.01 0.002 2 0.9 0.03 0.123 0.087 0.301 0.04 5 0 5 5 0.34 7 2 2 0.768 1.783 0.75 2 244 1 cup 976 1 quart 0
60 01060 MILK,FILLED,FLUID,W/LAURIC ACID OIL 87.73 63 3.33 3.4 0.8 4.74 0 4.739999771 128 0.05 13 97 139 57 0.36 0.01 0.002 2 0.9 0.03 0.123 0.087 0.301 0.04 5 0 5 5 15 0.34 7 2 2 0 0 0 0 0 0.13 0.8 3.101 0.1 0.01 2 244 1 cup 30 1 fl oz 0
61 01067 CREAM SUB,LIQ,W/HYDR VEG OIL&SOY PROT 77.27 136 1 9.97 0.38 11.38 0 11.38000011 9 0.03 0 64 191 79 0.02 0 0 1.1 0 0 0 0 0 0 0 0 0 0 0 0 15 1 0 0 9 0 0 0 0.81 2.5 1.937 7.551 0.027 0 240 1 cup 30 1 fl oz 0
62 01068 CREAM SUB,LIQ,W/LAURIC ACID OIL&NA CASEINATE 77.27 136 1 9.97 0.38 11.38 0 9 0.03 0 64 191 79 0.02 0.025 0.04 1.1 0 0 0 0 0 0 0 0 0 0 0 89 4 0 9.304 0.106 0.003 0 15 1 container, individual 120 .5 cup 0
63 01069 CREAM SUBSTITUTE,POWDERED 2.21 545 4.79 35.48 2.64 54.88 0 54.88000107 22 1.15 4 422 812 181 0.51 0.115 0.22 0.6 0 0 0.165 0 0 0 0 0 0 0 2 0 33 2 0 0 20 0 0 0 0.59 8.8 32.525 0.968 0.014 0 94 1 cup 2 1 tsp 0
64 01070 DESSERT TOPPING,POWDERED 1.47 577 4.9 39.92 1.17 52.54 0 52.54000092 17 0.03 7 74 166 122 0.08 0.118 0.225 0.6 0 0 0 0 0 0 0 0 0 0 0 0 180 9 0 0 108 0 0 0 1.52 9.9 36.723 0.6 0.447 0 42.5 1.5 oz 1 1 portion, amount to make 1 tbsp 0
65 01071 DESSERT TOPPING,PDR,1.5 OZ PREP W/1/2 CUP MILK 66.65 188 3.6 12.41 0.81 16.53 0 16.53000069 90 0.04 10 86 151 66 0.27 0.012 0.005 4.8 0.7 0.027 0.117 0.06 0.226 0.03 4 0 4 4 11 0.26 122 23 21 0 32 0 0 0 0.44 2.7 10.684 0.843 0.201 10 80 1 cup 4 1 tbsp 0
66 01072 DESSERT TOPPING,PRESSURIZED 60.37 264 0.98 22.3 0.28 16.07 0 16.06999969 5 0.02 1 18 19 62 0.01 0.024 0.045 1.5 0 0 0 0 0 0 0 0 0 0 0 0 78 4 0 0 47 0 0 0 0.85 5.5 18.912 1.927 0.241 0 70 1 cup 4 1 tbsp 0
67 01073 DESSERT TOPPING,SEMI SOLID,FRZ 50.21 318 1.25 25.31 0.18 23.05 0 23.04999924 6 0.12 2 8 18 25 0.03 0.03 0.058 2.1 0 0 0 0 0 0 0 0 0 0 0 0 143 7 0 0 86 0 0 0 0.96 6.3 21.783 1.616 0.523 0 75 1 cup 4 1 tbsp 0
68 01074 SOUR CRM,IMITN,CULTURED 71.15 208 2.4 19.52 0.3 6.63 0 6.630000114 3 0.39 6 45 161 102 1.18 0.058 0.11 2.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.74 4.8 17.791 0.588 0.056 0 230 1 cup 28 1 oz 0
69 01075 MILK SUBSTITUTES,FLUID W/HYDR VEG OILS 88.18 61 1.75 3.41 0.5 6.16 0 6.159999847 33 0.39 6 74 114 78 1.18 0.051 0.097 1.9 0 0.012 0.088 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.28 0.8 0.767 1.998 0.488 0 244 1 cup 30 1 fl oz 0
70 01076 MILK SUBSTITUTES,FLUID,W/LAURIC ACID OIL 88.18 61 1.75 3.41 0.5 6.16 0 33 0.39 6 74 114 78 1.18 0.051 0.097 1.9 0 0.012 0.088 0 0 0 0 0 0 0 0 0 0 0 3.037 0.176 0.008 0 244 1 cup 976 1 quart 0
71 01077 MILK,WHL,3.25% MILKFAT 88.32 60 3.22 3.25 0.69 4.52 0 5.260000229 113 0.03 10 91 143 40 0.4 0.011 0.003 3.7 0 0.044 0.183 0.107 0.362 0.036 5 0 5 5 14 0.44 102 28 28 0 5 0 0 0 0.06 0.2 1.865 0.812 0.195 10 244 1 cup 15 1 tbsp 0
72 01078 MILK,PRODUCER,FLUID,3.7% MILKFAT 87.69 64 3.28 3.66 0.72 4.65 0 119 0.05 13 93 151 49 0.38 0.01 0.004 2 1.5 0.038 0.161 0.084 0.313 0.042 5 0 5 5 0.36 138 33 31 2.278 1.057 0.136 14 244 1 cup 976 1 quart 0
73 01079 MILK,RED FAT,FLUID,2%MILKFAT,W/ADDED VIT A 89.33 50 3.3 1.97 0.71 4.68 0 5.059999943 117 0.03 11 94 150 41 0.43 0.012 0.003 2.5 0.2 0.039 0.185 0.092 0.356 0.038 5 0 5 5 16 0.46 189 55 55 0 3 0 0 0 0.03 0.2 1.257 0.56 0.073 8 244 1 cup 30 1 fl oz 0
74 01080 MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL&VIT A 88.86 51 3.48 1.92 0.77 4.97 0 128 0.05 14 100 162 52 0.4 0.008 0.002 2.3 1 0.04 0.173 0.09 0.336 0.045 5 0 5 5 0.38 204 56 55 1.195 0.555 0.071 8 245 1 cup 980 1 quart 0
75 01081 MILK,RED FAT,FLUID,2% MILKFAT,PROT FORT,W/ VIT A 87.71 56 3.95 1.98 0.87 5.49 0 5.260000229 143 0.06 16 112 182 59 0.45 0.008 0.002 2.6 1.1 0.045 0.194 0.101 0.376 0.051 6 0 6 6 0.43 5 0 0 3 0 0 0 0.04 0.1 1.232 0.572 0.074 8 246 1 cup 984 1 quart 0
76 01082 MILK,LOWFAT,FLUID,1% MILKFAT,W/ VIT A 89.92 42 3.37 0.97 0.75 4.99 0 5.199999809 119 0.03 11 95 150 44 0.42 0.01 0.003 3.3 0 0.02 0.185 0.093 0.361 0.037 5 0 5 5 18 0.44 196 58 58 0 2 0 0 0 0.01 0.1 0.633 0.277 0.035 5 244 1 cup 30 1 fl oz 0
77 01083 MILK,LOWFAT,FLUID,1% MILKFAT,W/ NONFAT MILK SOL&VIT A 89.81 43 3.48 0.97 0.77 4.97 0 128 0.05 14 100 162 52 0.4 0.01 0.002 2.3 1 0.04 0.173 0.09 0.336 0.045 5 0 5 5 0.38 204 59 58 0.604 0.28 0.036 4 245 1 cup 980 1 quart 0
78 01084 MILK,LOWFAT,FLUID,1% MILKFAT,PROT FORT,W/ VIT A 88.74 48 3.93 1.17 0.86 5.52 0 142 0.06 16 111 180 58 0.45 0.01 0.002 2.5 1.2 0.045 0.192 0.1 0.373 0.05 6 0 6 6 0.43 203 61 61 0.728 0.338 0.043 4 246 1 cup 984 1 quart 0
79 01085 MILK,NONFAT,FLUID,W/ VIT A (FAT FREE OR SKIM) 90.84 34 3.37 0.08 0.75 4.96 0 5.090000153 125 0.03 11 101 156 42 0.42 0.013 0.003 3.1 0 0.045 0.182 0.094 0.357 0.037 5 0 5 5 16 0.53 204 61 61 0 0 0 0 0 0.01 0 0.051 0.021 0.003 2 245 1 cup 31 1 fl oz 0
80 01086 MILK,NONFAT,FLUID,W/ NONFAT MILK SOL&VIT A (FAT FREE/SKIM) 90.38 37 3.57 0.25 0.78 5.02 0 5.019999981 129 0.05 15 104 171 53 0.41 0.011 0.002 2.2 1 0.041 0.175 0.091 0.339 0.046 5 0 5 5 16 0.39 203 61 61 0 0 0 0 0 0 0 0.162 0.065 0.009 2 245 1 cup 31 1 fl oz 0
81 01087 MILK,NONFAT,FLUID,PROT FORT,W/ VIT A (FAT FREE/SKIM) 89.36 41 3.96 0.25 0.87 5.56 0 143 0.06 16 112 182 59 0.45 0.011 0.002 2.4 1.1 0.045 0.194 0.101 0.376 0.05 6 0 6 6 0.43 203 61 61 0.162 0.065 0.009 2 246 1 cup 984 1 quart 0
82 01088 MILK,BTTRMLK,FLUID,CULTURED,LOWFAT 90.13 40 3.31 0.88 0.89 4.79 0 4.789999962 116 0.05 11 89 151 105 0.42 0.011 0.002 2 1 0.034 0.154 0.058 0.275 0.034 5 0 5 5 16 0.22 26 7 7 0 1 0 0 0 0.05 0.1 0.548 0.254 0.033 4 245 1 cup 31 1 fl oz 0
83 01089 MILK,LOW SODIUM,FLUID 88.2 61 3.1 3.46 0.78 4.46 0 4.460000038 101 0.05 5 86 253 3 0.38 0.01 0.004 2 0.9 0.02 0.105 0.043 0.304 0.034 5 0 5 5 16 0.36 103 28 28 0 6 0 0 0 0.06 0.2 2.154 0.999 0.128 14 244 1 cup 30 1 fl oz 0
84 01090 MILK,DRY,WHOLE 2.47 496 26.32 26.71 6.08 38.42 0 38.41999817 912 0.47 85 776 1330 371 3.34 0.08 0.04 16.3 8.6 0.283 1.205 0.646 2.271 0.302 37 0 37 37 119 3.25 915 257 253 0 43 0 0 0 0.48 1.8 16.742 7.924 0.665 97 128 1 cup 32 .25 cup 0
85 01091 MILK,DRY,NONFAT,REG,WO/ VIT A 3.16 362 36.16 0.77 7.93 51.98 0 51.97999954 1257 0.32 110 968 1794 535 4.08 0.041 0.02 27.3 6.8 0.415 1.55 0.951 3.568 0.361 50 0 50 50 169 4.03 22 6 6 0 1 0 0 0 0 0.1 0.499 0.201 0.03 20 120 1 cup 30 .25 cup 0
86 01092 MILK,DRY,NONFAT,INST,W/ VIT A 3.96 358 35.1 0.72 8.03 52.19 0 52.18999863 1231 0.31 117 985 1705 549 4.41 0.041 0.02 27.3 5.6 0.413 1.744 0.891 3.235 0.345 50 0 50 50 168 3.99 2365 709 709 0 1 0 0 0 0.01 0 0.467 0.187 0.028 18 68 1 cup 91 1 envelope, (1-1/3 cup) 0
87 01093 MILK,DRY,NONFAT,CA RED 4.9 354 35.5 0.2 7.6 51.8 0 280 0.32 60 1011 680 2280 4.03 0.016 0.008 27.3 6.7 0.163 1.642 0.665 3.312 0.298 50 0 50 50 3.98 8 2 1 0.124 0.058 0.007 2 28.35 1 oz 113 .25 lb 0
88 01094 MILK,BUTTERMILK,DRIED 2.97 387 34.3 5.78 7.95 49 0 49 1184 0.3 110 933 1592 517 4.02 0.111 0.023 20.3 5.7 0.392 1.579 0.876 3.17 0.338 47 0 47 47 119 3.82 175 49 48 0 9 0 0 0 0.1 0.4 3.598 1.669 0.215 69 120 1 cup 6 1 tbsp 0
89 01095 MILK,CND,COND,SWTND 27.16 321 7.91 8.7 1.83 54.4 0 54.40000153 284 0.19 26 253 371 127 0.94 0.015 0.006 14.8 2.6 0.09 0.416 0.21 0.75 0.051 11 0 11 11 89 0.44 267 74 73 0 14 0 0 0 0.16 0.6 5.486 2.427 0.337 34 306 1 cup 38 1 fl oz 0
90 01096 MILK,CND,EVAP,WO/ VIT A 74.04 134 6.81 7.56 1.55 10.04 0 10.03999996 261 0.19 24 203 303 106 0.77 0.016 0.006 2.3 1.9 0.047 0.316 0.194 0.638 0.05 8 0 8 8 32 0.16 233 65 64 0 12 0 0 0 0.14 0.5 4.591 2.335 0.245 29 252 1 cup 32 1 fl oz 0
91 01097 MILK,CND,EVAP,NONFAT 79.4 78 7.55 0.2 1.5 11.35 0 11.35000038 290 0.29 27 195 332 115 0.9 0.016 0.006 2.5 1.2 0.045 0.309 0.174 0.738 0.055 9 0 9 9 25 0.24 394 118 118 0 0 0 0 0 0 0 0.121 0.062 0.006 4 256 1 cup 32 1 fl oz 0
92 01102 MILK,CHOC,FLUID,COMM, 82.3 83 3.17 3.39 0.8 10.34 0.800000012 9.539999962 112 0.24 13 101 167 60 0.41 0.065 0.077 1.9 0.9 0.037 0.162 0.125 0.295 0.04 5 0 5 5 17 0.33 95 26 26 0 5 0 0 0 0.06 0.2 2.104 0.99 0.124 12 250 1 cup 31 1 fl oz 0
93 01103 MILK,CHOC,FLUID,COMM,RED FAT 82.17 76 2.99 1.9 0.81 12.13 0.699999988 9.550000191 109 0.24 14 102 169 66 0.39 0.075 0.062 3.4 0 0.045 0.183 0.164 0.539 0.024 2 0 2 2 17 0.33 227 64 63 0 11 0 0 0 0.04 0.2 1.177 0.455 0.089 8 250 1 cup 31 1 fl oz 0
94 01104 MILK,CHOC,FLUID,COMM,LOWFAT 84.5 63 3.24 1 0.82 10.44 0.5 9.93999958 115 0.24 13 103 170 61 0.41 0.065 0.077 1.9 0.9 0.038 0.166 0.127 0.302 0.041 5 0 5 5 17 0.34 196 58 58 0 2 0 0 0 0.02 0.1 0.616 0.3 0.035 3 250 1 cup 1000 1 quart 0
95 01105 MILK,CHOC BEV,HOT COCOA,HOMEMADE 82.57 77 3.52 2.33 0.65 10.63 1 9.670000076 105 0.48 23 105 197 44 0.63 0.103 0.013 2.7 0.2 0.039 0.182 0.133 0.328 0.04 5 0 5 5 0.42 175 51 51 0 3 0 0 0 0.03 0.2 1.431 0.677 0.034 8 250 1 cup 31 1 fl oz 0
96 01106 MILK,GOAT,FLUID 87.03 69 3.56 4.14 0.82 4.45 0 4.449999809 134 0.05 14 111 204 50 0.3 0.046 0.018 1.4 1.3 0.048 0.138 0.277 0.31 0.046 1 0 1 1 16 0.07 198 57 56 0 7 0 0 0 0.07 0.3 2.667 1.109 0.149 11 244 1 cup 30 1 fl oz 0
97 01107 MILK,HUMAN,MATURE,FLUID 87.5 70 1.03 4.38 0.2 6.89 0 6.889999866 32 0.03 3 14 51 17 0.17 0.052 0.026 1.8 5 0.014 0.036 0.177 0.223 0.011 5 0 5 5 16 0.05 212 61 60 0 7 0 0 0 0.08 0.3 2.009 1.658 0.497 14 246 1 cup 31 1 fl oz 0
98 01108 MILK,INDIAN BUFFALO,FLUID 83.39 97 3.75 6.89 0.79 5.18 0 169 0.12 31 117 178 52 0.22 0.046 0.018 2.3 0.052 0.135 0.091 0.192 0.023 6 0 6 6 0.36 178 53 53 4.597 1.787 0.146 19 244 1 cup 976 1 quart 0
99 01109 MILK,SHEEP,FLUID 80.7 108 5.98 7 0.96 5.36 0 193 0.1 18 158 137 44 0.54 0.046 0.018 1.7 4.2 0.065 0.355 0.417 0.407 0.06 7 0 7 7 0.71 147 44 44 4.603 1.724 0.308 27 245 1 cup 980 1 quart 0
100 01110 MILK SHAKES,THICK CHOC 72.2 119 3.05 2.7 0.9 21.15 0.300000012 20.85000038 132 0.31 16 126 224 111 0.48 0.065 0.039 1.9 0 0.047 0.222 0.124 0.363 0.025 5 0 5 5 0.32 67 18 18 0 4 0 0 0 0.05 0.2 1.681 0.78 0.1 11 28.35 1 fl oz 300 1 container, (10.6 oz) 0
101 01111 MILK SHAKES,THICK VANILLA 74.45 112 3.86 3.03 0.91 17.75 0 17.75 146 0.1 12 115 183 95 0.39 0.051 0.014 2.3 0 0.03 0.195 0.146 0.368 0.042 7 0 7 7 0.52 91 25 25 0 5 0 0 0 0.05 0.2 1.886 0.875 0.113 12 28.35 1 fl oz 313 1 container, (11 oz) 0
102 01112 WHEY,ACID,FLUID 93.42 24 0.76 0.09 0.61 5.12 0 5.119999886 103 0.08 10 78 143 48 0.43 0.003 0.002 1.8 0.1 0.042 0.14 0.079 0.381 0.042 2 0 2 2 16 0.18 7 2 2 0 0 0 0 0 0 0 0.057 0.025 0.004 1 246 1 cup 984 1 quart 0
103 01113 WHEY,ACID,DRIED 3.51 339 11.73 0.54 10.77 73.45 0 73.44999695 2054 1.24 199 1349 2289 968 6.31 0.05 0.015 27.3 0.9 0.622 2.06 1.16 5.632 0.62 33 0 33 33 225 2.5 59 17 17 0 1 0 0 0 0 0 0.342 0.149 0.021 3 57 1 cup 3 1 tbsp 0
104 01114 WHEY,SWEET,FLUID 93.12 27 0.85 0.36 0.53 5.14 0 5.139999866 47 0.06 8 46 161 54 0.13 0.004 0.001 1.9 0.1 0.036 0.158 0.074 0.383 0.031 1 0 1 1 16 0.28 12 3 3 0 1 0 0 0 0 0 0.23 0.1 0.011 2 246 1 cup 984 1 quart 0
105 01115 WHEY,SWEET,DRIED 3.19 353 12.93 1.07 8.35 74.46 0 74.45999908 796 0.88 176 932 2080 1079 1.97 0.07 0.009 27.2 1.5 0.519 2.208 1.258 5.62 0.584 12 0 12 12 225 2.37 30 8 8 0 2 0 0 0 0.02 0.1 0.684 0.297 0.034 6 145 1 cup 8 1 tbsp 0
106 01116 YOGURT,PLN,WHL MILK,8 GRAMS PROT PER 8 OZ 87.9 61 3.47 3.25 0.72 4.66 0 4.659999847 121 0.05 12 95 155 46 0.59 0.009 0.004 2.2 0.5 0.029 0.142 0.075 0.389 0.032 7 0 7 7 15 0.37 99 27 27 0 5 0 0 0 0.06 0.2 2.096 0.893 0.092 13 245 1 cup, (8 fl oz) 227 1 container, (8 oz) 0
107 01117 YOGURT,PLN,LOFAT,12 GRAMS PROT PER 8 OZ 85.07 63 5.25 1.55 1.09 7.04 0 7.039999962 183 0.08 17 144 234 70 0.89 0.013 0.004 3.3 0.8 0.044 0.214 0.114 0.591 0.049 11 0 11 11 15 0.56 51 14 14 0 2 0 0 0 0.03 0.2 1 0.426 0.044 6 245 1 cup, (8 fl oz) 227 1 container, (8 oz) 0
108 01118 YOGURT,PLN,SKIM MILK,13 GRAMS PROT PER 8 OZ 85.23 56 5.73 0.18 1.18 7.68 0 7.679999828 199 0.09 19 157 255 77 0.97 0.015 0.005 3.6 0.9 0.048 0.234 0.124 0.641 0.053 12 0 12 12 15 0.61 7 2 2 0 0 0 0 0 0 0.2 0.116 0.049 0.005 2 245 1 cup, (8 fl oz) 227 1 container, (8 oz) 0
109 01119 YOGURT,VANILLA,LOFAT,11 GRAMS PROT PER 8 OZ 79 85 4.93 1.25 1.02 13.8 0 13.80000019 171 0.07 16 135 219 66 0.83 0.013 0.004 4.9 0.8 0.042 0.201 0.107 0.552 0.045 11 0 11 11 15 0.53 43 12 12 0 2 0 0 0 0.02 0.1 0.806 0.343 0.036 5 245 1 cup, (8 fl oz) 227 1 container, (8 oz) 0
110 01120 YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ 75.3 99 3.98 1.15 0.93 18.64 0 18.63999939 138 0.06 13 109 177 53 0.67 0.079 0.064 2.8 0.6 0.034 0.162 0.086 0.446 0.037 9 0 9 9 15 0.43 40 11 11 0 2 0 0 0 0.02 0.1 0.742 0.316 0.033 5 245 1 cup, (8 fl oz) 125 1 container, (4.4 oz) 0
111 01121 YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ 74.48 102 4.37 1.08 1.02 19.05 0 19.04999924 152 0.07 15 119 195 58 0.74 0.08 0.065 3.1 0.7 0.037 0.178 0.095 0.489 0.04 9 0 9 9 14 0.47 36 10 10 0 2 0 0 0 0.02 0.1 0.697 0.297 0.031 4 245 1 cup, (8 fl oz) 170 1 container, (6 oz) 0
112 01122 YOGURT,FRUIT,LOFAT,11 GRAMS PROT PER 8 OZ 74.1 105 4.86 1.41 1.03 18.6 0 169 0.07 16 133 216 65 0.82 0.08 0.065 3.1 0.7 0.041 0.198 0.105 0.544 0.045 10 0 10 10 0.52 60 0.909 0.387 0.04 6 227 1 container, (8 oz) 113 .5 container, (4 oz) 0
113 01123 EGG,WHOLE,RAW,FRESH 75.84 143 12.58 9.94 0.86 0.77 0 0.769999981 53 1.83 12 191 134 140 1.11 0.102 0.038 31.7 0 0.069 0.478 0.07 1.438 0.143 47 0 47 47 251 1.29 487 140 139 0 10 9 0 331 0.97 0.3 3.099 3.81 1.364 423 243 1 cup, (4.86 large eggs) 56 1 extra large 12
114 01124 EGG,WHITE,RAW,FRESH 87.57 48 10.9 0.17 0.63 0.73 0 0.709999979 7 0.08 11 15 163 166 0.03 0.023 0.011 20 0 0.004 0.439 0.105 0.19 0.005 4 0 4 4 1 0.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243 1 cup 33 1 large 0
115 01125 EGG,YOLK,RAW,FRSH 52.31 317 15.86 26.54 1.71 3.59 0 0.560000002 129 2.73 5 390 109 48 2.3 0.077 0.055 56 0 0.176 0.528 0.024 2.99 0.35 146 0 146 146 682 1.95 1442 381 371 38 88 33 0 1094 2.58 0.7 9.551 11.738 4.204 1234 243 1 cup 17 1 large 0
116 01126 EGG,YOLK,RAW,FROZEN 56.2 303 15.5 25.6 1.55 1.15 0 0.50999999 138 3.34 9 417 118 67 2.88 0.024 0.062 41.8 0 0.155 0.52 0.045 3.53 0.345 116 0 116 116 682 1.82 1609 433 423 36 85 32 0 1055 2.49 0.7 7.82 9.747 3.628 1075 227 .5 lb 0
117 01127 EGG,YOLK,RAW,FRZ,SUGARED 51.25 307 13.8 22.75 1.4 10.8 0 123 3.14 10 384 103 67 2.81 0.012 0.059 37.7 0 0.135 0.53 0.023 3.2 0.284 139 0 139 139 1.77 1315 395 395 6.97 8.614 3.244 959 227 .5 lb 0
118 01128 EGG,WHL,CKD,FRIED 69.13 196 13.63 15.31 1.05 0.88 0 0.829999983 59 1.98 13 208 147 204 1.2 0.111 0.041 34.2 0 0.075 0.518 0.077 1.558 0.155 51 0 51 51 273 1.39 729 198 193 0 46 10 0 358 1.22 5.6 4.294 6.346 2.66 457 46 1 large 0
119 01129 EGG,WHL,CKD,HARD-BOILED 74.62 155 12.58 10.61 1.08 1.12 0 1.120000005 50 1.19 10 172 126 124 1.05 0.013 0.026 30.8 0 0.066 0.513 0.064 1.398 0.121 44 0 44 44 225 1.11 586 169 168 0 11 10 0 353 1.03 0.3 3.267 4.077 1.414 424 136 1 cup, chopped 8 1 tbsp 12
120 01130 EGG,WHOLE,COOKED,OMELET 75.87 157 10.59 12.03 0.84 0.68 0 0.649999976 47 1.55 10 162 114 161 0.93 0.088 0.032 26.7 0 0.058 0.404 0.06 1.21 0.121 39 0 39 39 212 1.09 572 155 152 0 36 8 0 279 1.22 4.5 3.296 4.971 2.252 356 15.2 1 tbsp 61 1 large 0
121 01131 EGG,WHL,CKD,POACHED 75.54 142 12.53 9.9 1.26 0.76 0 0.769999981 53 1.83 12 190 133 294 1.1 0.102 0.039 31.6 0 0.055 0.405 0.059 1.433 0.121 35 0 35 35 200 1.28 485 139 138 0 10 9 0 330 0.96 0.3 3.087 3.795 1.359 422 50 1 large 0
122 01132 EGG,WHL,CKD,SCRMBLD 73.15 167 11.09 12.21 1.36 2.2 0 1.730000019 71 1.2 12 170 138 280 1 0.014 0.022 22.5 0.2 0.052 0.437 0.079 1.007 0.118 30 0 30 30 190 0.77 526 143 140 0 33 7 0 245 1.09 4 3.679 4.768 2.148 352 220 1 cup 14 1 tbsp 0
123 01133 EGG,WHOLE,DRIED 3.1 594 47.35 40.95 3.65 4.95 0 3.079999924 231 6.79 42 831 493 523 5.28 0.196 0.125 119.6 0 0.195 1.54 0.305 5.905 0.388 171 0 171 171 1007 3.95 997 275 270 0 41 36 0 1329 3.88 1.2 12.727 15.337 5.804 1715 85 1 cup, sifted 5 1 tbsp 0
124 01134 EGG,WHL,DRIED,STABILIZED,GLUCOSE RED 1.87 615 48.17 43.95 3.63 2.38 0 222 8.28 49 715 515 548 5.71 0.27 0.15 121.1 0 0.325 1.232 0.259 6.71 0.42 193 0 193 193 10.51 2050 616 616 13.198 17.564 5.713 2017 85 1 cup, sifted 5 1 tbsp 0
125 01135 EGG,WHITE,DRIED,FLAKES,GLUCOSE RED 14.62 351 76.92 0.04 4.25 4.17 0 4.170000076 83 0.23 67 83 1042 1156 0.15 0.23 0.07 116.8 0 0.035 2.162 0.675 1.829 0.023 89 0 89 89 0.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 227 .5 lb 0
126 01136 EGG,WHITE,DRIED,PDR,GLUCOSE RED 8.54 376 82.4 0.04 4.55 4.47 0 4.46999979 89 0.24 72 89 1116 1238 0.16 0.17 0.05 125.1 0 0.037 2.316 0.723 1.958 0.024 96 0 96 96 8 0.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 107 1 cup, sifted 7 1 tbsp 0
127 01137 EGG,YOLK,DRIED 2.95 666 34.25 55.8 3.4 3.6 0 3.599999905 284 5.42 13 920 244 135 4.93 0.012 0.119 86.8 0 0.29 1.88 0.095 7.765 0.66 244 0 244 244 1388 5.33 1751 417 395 79 186 70 0 2299 5.42 1.5 17.154 21.129 7.895 2335 67 1 cup, sifted 4 1 tbsp 0
128 01138 EGG,DUCK,WHOLE,FRESH,RAW 70.83 185 12.81 13.77 1.14 1.45 0 0.930000007 64 3.85 17 220 222 146 1.41 0.062 0.038 36.4 0 0.156 0.404 0.2 1.862 0.25 80 0 80 80 263 5.4 674 194 192 0 14 12 0 459 1.34 0.4 3.681 6.525 1.223 884 70 1 egg 12
129 01139 EGG,GOOSE,WHOLE,FRESH,RAW 70.43 185 13.87 13.27 1.08 1.35 0 0.939999998 60 3.64 16 208 210 138 1.33 0.062 0.038 36.9 0 0.147 0.382 0.189 1.759 0.236 76 0 76 76 263 5.1 650 187 185 0 13 12 0 442 1.29 0.4 3.595 5.747 1.672 852 144 1 egg 13
130 01140 EGG,QUAIL,WHOLE,FRESH,RAW 74.35 158 13.05 11.09 1.1 0.41 0 0.409999996 64 3.65 13 226 132 141 1.47 0.062 0.038 32 0 0.13 0.79 0.15 1.761 0.15 66 0 66 66 263 1.58 543 156 155 0 11 10 0 369 1.08 0.3 3.557 4.324 1.324 844 9 1 egg 8
131 01141 EGG,TURKEY,WHL,FRSH,RAW 72.5 171 13.68 11.88 0.79 1.15 0 99 4.1 13 170 142 151 1.58 0.062 0.038 34.3 0 0.11 0.47 0.024 1.889 0.131 71 0 71 71 1.69 554 166 166 3.632 4.571 1.658 933 79 1 egg 12
132 01142 EGG SUBSTITUTE,FROZEN 73.1 160 11.29 11.11 1.3 3.2 0 3.200000048 73 1.98 15 72 213 199 0.98 0.022 0.006 41.3 0.5 0.12 0.386 0.14 1.66 0.133 16 0 16 16 2 0.34 225 11 0 0 135 0 0 0 1.59 0.2 1.93 2.435 6.241 2 240 1 cup 60 .25 cup 0
133 01143 EGG SUBSTITUTE,LIQUID 82.75 84 12 3.31 1.3 0.64 0 0.639999986 53 2.1 9 121 330 177 1.3 0.023 0.007 24.9 0 0.11 0.3 0.11 2.7 0.003 15 0 15 15 2 0.3 360 18 0 0 216 0 0 0 0.27 0.8 0.659 0.896 1.603 1 251 1 cup 16 1 tbsp 0
134 01144 EGG SUBSTITUTE,POWDER 3.86 444 55.5 13 5.84 21.8 0 21.79999924 326 3.16 65 478 744 800 1.82 0.207 0.08 127.7 0.8 0.226 1.76 0.577 3.384 0.143 125 0 125 125 118 3.52 1230 369 369 0 0 0 0 0 1.26 0.4 3.766 5.341 1.683 572 9.9 .35 oz 20 .7 oz 0
135 01145 BUTTER,WITHOUT SALT 17.94 717 0.85 81.11 0.04 0.06 0 0.059999999 24 0.02 2 24 24 11 0.09 0.016 0.004 1 0 0.005 0.034 0.042 0.11 0.003 3 0 3 3 19 0.17 2499 684 671 0 158 0 0 0 2.32 7 51.368 21.021 3.043 215 227 1 cup 14 1 tbsp 0
136 01146 CHEESE,PARMESAN,SHREDDED 25 415 37.86 27.34 6.39 3.41 0 1253 0.87 51 735 97 1696 3.19 0.037 0.023 23.9 0 0.041 0.352 0.287 0.527 0.105 8 0 8 8 1.4 639 122 108 17.37 8.734 0.661 72 5 1 tbsp 0
137 01147 CHEESE,PAST PROCESS,AMERICAN,WO/DI NA PO4 39.16 375 22.15 31.25 5.84 1.6 0 0.50999999 616 0.39 22 444 162 650 2.99 0.03 0.015 14.4 0 0.027 0.353 0.069 0.482 0.071 8 0 8 8 0.7 961 254 247 0 82 0 0 0 0.27 2.7 19.694 8.951 0.99 94 28.35 1 oz 18 1 cubic inch 0
138 01148 CHEESE,PAST PROCESS,SWISS,WO/DI NA PO4 42.31 334 24.73 25.01 5.85 2.1 0 772 0.61 29 540 216 681 3.61 0.027 0.014 15.9 0 0.014 0.276 0.038 0.26 0.036 6 0 6 6 1.23 808 225 221 16.045 7.046 0.622 85 28.35 1 oz 18 1 cubic inch 0
139 01149 CHEESE FD,PAST PROCESS,AMERICAN,W/DI NA PO4 43.15 328 19.61 24.6 5.35 7.29 0 7.429999828 574 0.84 31 754 279 1596 2.99 0.03 0.01 16 0 0.029 0.442 0.14 0.558 0.141 7 0 7 7 1.12 762 201 196 65 0.22 15.443 7.206 0.723 64 28.35 1 oz 227 1 package, (8 oz) 0
140 01150 CHEESE SPRD,PAST PROCESS,AMERICAN,W/DI NA PO4 47.65 290 16.41 21.23 5.98 8.73 0 562 0.33 29 875 242 1625 2.59 0.033 0.02 11.3 0 0.048 0.431 0.131 0.686 0.117 7 0 7 7 0.4 788 13.327 6.219 0.624 55 28.35 1 oz 142 1 jar, (5 oz) 0
141 01151 MILK,NONFAT,FLUID,WO/ VIT A (FAT FREE OR SKIM) 90.8 35 3.41 0.18 0.76 4.85 0 5.090000153 123 0.04 11 101 166 52 0.4 0.011 0.002 2.1 1 0.036 0.14 0.088 0.329 0.04 5 0 5 5 0.38 7 2 2 0.04 0.117 0.047 0.007 2 245 1 cup 980 1 quart 0
142 01152 MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL,WO/ VIT A 87.71 56 3.95 1.98 0.87 5.49 0 143 0.06 15 112 182 59 0.41 0.011 0.002 2.6 1.1 0.045 0.194 0.101 0.339 0.046 5 0 5 5 0.39 75 17 16 1.232 0.065 0.009 8 245 1 cup 980 1 quart 0
143 01153 MILK,CND,EVAP,W/ VIT A 74.04 134 6.81 7.56 1.55 10.04 0 261 0.19 24 203 303 106 0.77 0.016 0.006 2.3 1.9 0.047 0.316 0.194 0.638 0.05 8 0 8 8 0.16 397 4.591 2.335 0.245 29 31.5 1 fl oz 126 .5 cup 0
144 01154 MILK,DRY,NONFAT,REG,W/ VIT A 3.16 362 36.16 0.77 7.93 51.98 0 51.97999954 1257 0.32 110 968 1794 535 4.08 0.041 0.02 27.3 6.8 0.415 1.55 0.951 3.568 0.361 50 0 50 50 169 4.03 2179 653 653 0 1 0 0 0 0 0.1 0.499 0.2 0.03 20 120 1 cup 30 .25 cup 0
145 01155 MILK,DRY,NONFAT,INST,WO/ VIT A 3.96 358 35.1 0.72 8.03 52.19 0 52.18999863 1231 0.31 117 985 1705 549 4.41 0.041 0.02 27.3 5.6 0.413 1.744 0.891 3.23 0.345 50 0 50 50 3.99 15 4 4 0 1 0 0 0 0.01 0 0.47 0.19 0.03 18 68 1 cup 91 1 envelope, (1-1/3 cup) 0
146 01156 CHEESE,GOAT,HARD TYPE 29.01 452 30.52 35.59 3.72 2.17 0 2.170000076 895 1.88 54 729 48 346 1.59 0.627 0.252 5.5 0 0.14 1.19 2.4 0.41 0.08 4 0 4 4 15 0.12 1745 486 478 0 91 0 0 0 0.31 3 24.609 8.117 0.845 105 28.35 1 oz 0
147 01157 CHEESE,GOAT,SEMISOFT TYPE 45.52 364 21.58 29.84 2.94 2.54 0 2.539999962 298 1.62 29 375 158 515 0.66 0.564 0.093 3.8 0 0.072 0.676 1.148 0.19 0.06 2 0 2 2 15 0.22 1464 407 401 0 77 0 0 0 0.26 2.5 20.639 6.808 0.709 79 28.35 1 oz 0
148 01159 CHEESE,GOAT,SOFT TYPE 60.75 268 18.52 21.08 1.58 0.89 0 0.889999986 140 1.9 16 256 26 368 0.92 0.732 0.1 2.8 0 0.07 0.38 0.43 0.68 0.25 12 0 12 12 15 0.19 1033 288 283 0 54 0 0 0 0.18 1.8 14.575 4.807 0.501 46 28.35 1 oz 0
149 01160 EGG,YOLK,RAW,FRZ,SALTED 50.8 274 14 23 10.6 1.6 0 114 3.75 10 431 117 3780 2.84 0.109 0.062 37.7 0 0.13 0.43 0.04 3.23 0.261 107 0 107 107 2.52 1190 357 357 7.028 8.849 3.15 955 227 .5 lb 0
150 01161 CHEESE SUB,MOZZARELLA 47.36 248 11.47 12.22 5.27 23.67 0 23.67000008 610 0.4 41 583 455 685 1.92 0.11 0.028 19.2 0.1 0.026 0.444 0.317 0.083 0.051 11 0 11 11 14 0.81 1457 437 437 0 0 0 0 0 0.11 1 3.711 6.243 1.738 0 113 1 cup, shredded 28 1 oz 0
151 01163 CHEESE FONDUE 61.61 229 14.23 13.47 1.85 3.77 0 476 0.39 23 306 105 132 1.96 0.026 0.099 9 0 0.027 0.196 0.19 0.233 0.055 8 4 4 11 0.83 414 109 107 8.721 3.563 0.484 45 215 1 cup 108 .5 cup 0
152 01164 CHEESE SAU,PREP FROM RECIPE 66.86 197 10.33 14.92 2.41 5.48 0.100000001 311 0.35 19 229 142 493 1.26 0.019 0.04 6.6 0.6 0.044 0.243 0.204 0.233 0.045 10 2 8 11 0.35 606 166 163 8.034 4.735 1.397 38 243 1 cup 30 2 tbsp 0
153 01165 CHEESE,MEXICAN,QUESO ANEJO 38.06 373 21.44 29.98 5.89 4.63 0 4.630000114 680 0.47 28 444 87 1131 2.94 0.008 0.037 14.5 0 0.02 0.209 0.032 0.252 0.047 1 0 1 1 15 1.38 187 54 54 0 4 0 0 0 0.26 2.5 19.033 8.528 0.901 105 132 1 cup, crumbled 28 1 oz 0
154 01166 CHEESE,MEXICAN,QUESO ASADERO 42.16 356 22.6 28.26 4.11 2.87 0 2.869999886 661 0.51 26 443 86 655 3.02 0.026 0.036 14.5 0 0.021 0.223 0.181 0.231 0.053 8 0 8 8 15 1 190 55 55 0 4 0 0 0 0.24 2.4 17.939 8.038 0.85 105 132 1 cup, diced 113 1 cup, shredded 0
155 01167 CHEESE,MEXICAN,QUESO CHIHUAHUA 39.13 374 21.56 29.68 4.06 5.56 0 5.559999943 651 0.47 23 442 52 617 3.5 0.024 0.071 14.5 0 0.018 0.225 0.15 0.279 0.055 2 0 2 2 15 1.03 193 56 56 0 4 0 0 0 0.26 2.5 18.843 8.443 0.892 105 132 1 cup, diced 113 1 cup, shredded 0
156 01168 CHEESE,LOFAT,CHEDDAR OR COLBY 63.1 173 24.35 7 3.64 1.91 0 0.519999981 415 0.42 16 484 66 612 1.82 0.021 0.006 14.5 0 0.012 0.221 0.051 0.183 0.045 11 0 11 11 15 0.49 207 60 60 0 4 0 0 0 0.06 0.6 4.342 2.082 0.222 21 132 1 cup, diced 113 1 cup, shredded 0
157 01169 CHEESE,LOW-SODIUM,CHEDDAR OR COLBY 38.98 398 24.35 32.62 2.13 1.91 0 0.49000001 703 0.72 27 484 112 21 3.09 0.036 0.011 14.5 0 0.021 0.375 0.086 0.311 0.076 18 0 18 18 15 0.83 996 264 257 0 84 0 0 0 0.28 2.7 20.768 9.189 0.972 100 132 1 cup, diced 113 1 cup, shredded 0
158 01171 EGG,WHOLE,RAW,FROZEN 75.85 148 11.95 10.2 0.95 1.05 0 59 1.85 11 202 130 133 1.38 0.053 0.034 30.8 0 0.06 0.46 0.075 1.48 0.162 73 0 73 73 1.07 525 158 158 3.147 3.886 1.412 432 0
159 01172 EGG,WHITE,RAW,FROZEN 88.55 47 9.8 0 0.6 1.05 0 7 0.05 10 13 136 158 0.02 0.012 0.007 17.6 0 0.005 0.4 0.1 0.155 0.004 3 0 3 3 0.06 0 0 0 0 0 0 0 0
160 01173 EGG,WHITE,DRIED 5.8 382 81.1 0 5.3 7.8 0 5.400000095 62 0.15 88 111 1125 1280 0.1 0.114 0.007 125.1 0 0.005 2.53 0.865 0.775 0.036 18 0 18 18 0.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
161 01178 SOUR CREAM,REDUCED FAT 71 181 7 14.1 0.9 7 0 0.300000012 141 0.06 11 85 211 70 0.27 0.01 4.1 0.9 0.04 0.24 0.07 0.02 11 0 11 11 19 0.3 436 119 117 0 27 0 0 0 0.4 0.7 8.7 4.1 0.5 35 0
162 01179 SOUR CREAM,LIGHT 78.1 136 3.5 10.6 0.7 7.1 0 0.219999999 141 0.07 10 71 212 71 0.5 0.016 3.1 0.9 0.04 0.12 0.07 0.02 11 0 11 11 19 0.42 328 90 88 0 21 0 0 0 0.3 0.5 6.6 3.1 0.4 35 0
163 01180 SOUR CREAM,FAT FREE 80.6 74 3.1 0 0.7 15.6 0 0.389999986 125 0 10 95 129 141 0.5 0.016 5.3 0 0.04 0.15 0.07 0.02 11 0 11 11 19 0.3 255 73 72 0 9 0 0 0 0 0 0 0 0 9 0
164 01182 USDA COMMODITY,CHS,CHEDDAR,RED FAT 48.2 282 27.2 18.3 4.3 2 0 0.579999983 905 0.13 35 583 93 725 4.3 0.021 15.5 0 0.03 0.3 0.06 0.084 20 0 20 20 15 1.66 633 150 142 0 95 0 0 0 0.16 1.5 11.6 5.02 0.75 56 0
165 01184 YOGURT,VAN OR LEM FLAV,NONFAT MILK,SWTND W/LOW-CALORIE SWTNR 87.43 47 3.86 0.18 1 7.5 0 7.5 143 0.12 13 109 177 59 0.67 0.079 3.1 1.1 0.034 0.162 0.086 0.037 8 0 8 8 15 0.43 0 0 0 0 0 0 0 0 0 0 0.116 0.049 0.005 2 0
166 01185 PARMESAN CHS TOPPING,FAT FREE 8.6 370 40 5 6.4 40 0 1.5 800 5 40 700 600 1150 3 0.02 43.3 0 0.05 0.05 0.2 0.1 25 0 25 25 15 1.1 151 40 39 0 13 0 0 0 0.04 0.4 3.11 1.446 0.186 20 0
167 01186 CHEESE,CREAM,FAT FREE 71.87 105 15.69 1 3.77 7.66 0 5.480000019 351 0.19 22 523 278 702 1.5 0.036 0.017 4.9 0 0.04 0.265 0.23 0.84 0.05 35 0 35 35 65 0.95 53 11 10 0 11 0 0 0 0.02 0.2 0.644 0.25 0.057 12 0
168 01187 YOGURT,CHOC,NONFAT MILK 71.57 108 3.53 0 1.37 23.53 1.200000048 14.97000027 88 0.42 40 166 339 135 1.13 0.209 7 0 0.047 0.215 0.223 0.047 12 0 12 12 15 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
169 01188 KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU 51.5 276 12 21 5.8 9.2 0.300000012 6.699999809 359 0.19 806 240 1638 1.64 0.4 0.24 649 13.1 75 33 2 tbsp 0
170 01189 KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT 51.5 215 16.3 9.5 6.4 16.2 0.200000003 8.199999809 418 0.16 943 297 1705 2.36 0.4 0.33 628 6.4 35 35 2 tbsp 0
171 01190 KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT 58 148 22.7 1 6.1 11.7 0.200000003 6.699999809 712 0.05 923 236 1298 2.5 0.2 0.28 2166 0.7 16 21 1 slice 0
172 01191 KRAFT VELVEETA PAST PROCESS CHS SPRD 45.8 303 16.3 22 6 9.8 0 8.100000381 466 0.18 863 335 1499 1.84 0.2 0.35 1107 14.4 80 28 1 oz 0
173 01192 KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT 51.3 222 19.6 10.6 6.6 11.8 0 8.5 574 0.14 1024 345 1586 2.49 0.1 0.65 982 7.1 42 28 1 oz 0
174 01193 KRAFT BREAKSTONE'S RED FAT SOUR CRM 76.2 152 4.5 12 0.8 6.5 0.100000001 6.400000095 161 0.06 110 210 59 1.1 1053 7.6 50 31 2 tbsp 0
175 01194 KRAFT BREAKSTONE'S FREE FAT FREE SOUR CRM 77.7 91 4.7 1.3 1.2 15.1 0 7.199999809 141 0.05 116 219 72 1.2 679 0.8 9 32 2 tbsp 0
176 01195 KRAFT BREYERS LOWFAT STRAWBERRY YOGURT (1% MILKFAT) 76.5 96 3.8 0.8 0.7 18.2 0.200000003 17.39999962 125 0.1 89 192 52 0 0.19 0.53 34 0.5 9 227 1 container, (8 oz) 0
177 01196 KRAFT BREYERS LT N' LVLY LOWFAT STR'BERY YOGURT (1% MILKFAT) 73.3 108 3.2 0.8 0.6 21.9 0.200000003 19.60000038 91 0.11 67 151 45 0 0.14 0.46 30 0.5 9 125 1 container, (4.4 oz) 0
178 01197 KRAFT BREYERS SMOTH&CRMY LOWFAT STR'BERY YOGURT (1% MILKFAT) 74.8 102 3.8 0.9 0.7 19.9 0.300000012 17.20000076 108 0.13 78 177 55 0 0.18 0.52 31 0.5 9 227 1 container, (8 oz) 0
179 01198 KRAFT BREYERS LT NONFAT STR'BERY YOGURT (W/ASPRT&FRUCT SW'T) 86 55 3.4 0.2 0.6 9.9 0 7.699999809 95 0.11 68 146 45 0.6 0.14 0.41 4 0.1 5 227 1 container, (8 oz) 0
180 01199 CREAM,HALF & HALF,FAT FREE 86 59 2.6 1.4 1 9 0 5 96 0 16 151 206 144 0.81 0.016 0.002 2.9 0.7 0.056 0.237 0.124 0.459 0.062 4 0 4 4 15 0.52 43 12 12 0 3 0 0 0 0.04 0.2 0.841 0.384 0.052 5 0
181 01200 REDDI WIP FAT FREE WHIPPED TOPPING 66.44 149 3 5 0.56 25 0.400000006 16 108 0.03 8 68 108 72 0.31 0.019 3 0 0.148 0.619 0.364 0.123 17 0 17 17 0 1.48 175 49 48 0 9 0 0 0 0.09 0.3 2.869 1.25 0.299 16 0
182 01202 MILK,CHOC,FLUID,COMM,RED FAT,W/ ADDED CA 82.17 78 2.99 1.9 0.81 12.13 0.699999988 9.550000191 194 0.24 14 76 123 66 0.39 0.075 0.062 3.4 0 0.045 0.565 0.164 0.539 0.024 2 0 2 2 0.33 227 64 63 0 11 0 0 0 0.04 0.2 1.177 0.455 0.089 8 250 1 cup 31 1 fl oz 0
183 01203 YOGURT,FRUIT,LOFAT,W/LO CAL SWEETENER 74.1 105 4.86 1.41 1.03 18.6 0 2.900000095 152 0.07 16 133 194 58 0.82 0.08 0.065 3.1 0.7 0.041 0.18 0.105 0.544 0.045 10 0 10 10 15 0.52 441 131 131 0 4 0 0 0 0.06 1.2 0.909 0.387 0.04 6 227 1 8 oz container, (8 oz) 245 1 cup, (8 fl oz) 0
184 01204 CHEESE,PARMESAN,DRY GRATED,RED FAT 50.6 265 20 20 8.03 1.37 0 0 1109 0.9 38 729 125 1529 3.87 0.238 0.085 17.7 0 0.029 0.486 0.114 0.325 0.049 10 0 10 10 21 2.26 605 160 156 0 51 0 0 0 0.17 1.7 13.317 6.098 0.462 88 100 1 cup 5 1 tbsp 0
185 01205 CREAM SUB,FLAV,LIQ 50.06 251 0.69 13.5 0.55 35.07 1.100000024 33.04000092 6 0.59 19 28 96 80 0.25 0.142 0.142 0.7 0 0.004 0.024 0.091 0.01 0.004 1 0 1 1 0 0 0 0 0 0 0 0 0 1 1.58 3.3 2.635 4.002 6.269 0 0
186 01206 CREAM SUB,FLAV,POWDERED 1.52 495 0 21.47 0.79 75.42 1.200000048 58.00999832 5 0.63 17 28 90 196 0.23 0.135 0.14 1.3 0 0.004 0.027 0.084 0.009 0.004 1 0 1 1 0 0 0 0 0 0 0 0 0 1 0.41 9.1 19.446 0.618 0.229 0 0
187 01208 CHEESE,PROVOLONE,RED FAT 50.6 274 24.7 17.6 3.6 3.5 0 0.550000012 756 0.52 28 496 138 876 3.23 0.026 0.01 14.5 0 0.019 0.321 0.156 0.476 0.073 10 0 10 10 13 1.46 532 141 137 0 45 0 0 0 0.15 1.5 11.3 4.89 0.51 55 132 1 cup, diced 113 1 cup, shredded 0
188 01209 CHEESE,MEXICAN,BLEND,RED FAT 48.2 282 24.69 19.4 4.3 3.41 0 0.560000002 1146 0.13 35 583 93 776 4.3 0.021 15.5 0 0.03 0.3 0.06 0.084 20 0 20 20 14 1.66 586 155 151 0 50 0 0 0 0.17 1.6 11.58 5.02 0.75 62 0
189 01210 EGG MIX,USDA CMDTY 2.78 549 35.6 34.5 3.15 23.97 2.460000038 171 3.23 11 451 373 576 2.76 0.149 0.056 118 0.19 1.277 0.267 6.5 0.207 138 0 138 138 602 2.9 398 117 116 0 0 13 0 2.04 0.7 10.305 13.745 7.555 1110 0
190 02001 ALLSPICE,GROUND 8.46 263 6.09 8.69 4.65 72.12 21.60000038 661 7.06 135 113 1044 77 1.01 0.553 2.943 2.7 39.2 0.101 0.063 2.86 0.21 36 0 36 36 0 540 27 0 2.55 0.66 2.36 0 6 1 tbsp 2 1 tsp 0
191 02002 ANISE SEED 9.54 337 17.6 15.9 6.95 50.02 14.60000038 646 36.96 170 440 1441 16 5.3 0.91 2.3 5 21 0.34 0.29 3.06 0.797 0.65 10 0 10 10 0 311 16 0 0.586 9.78 3.15 0 6.7 1 tbsp, whole 2 1 tsp, whole 0
192 02003 SPICES,BASIL,DRIED 6.43 251 14.37 3.98 14.27 60.96 40.5 1.710000038 2113 42 422 490 3433 34 5.82 1.367 3.167 2.8 61.2 0.148 0.316 6.948 2.32 274 0 274 274 55 0 9375 469 0 0 5584 81 393 1150 7.48 1714.5 0.24 0.453 2.168 0 0.7 1 tsp, leaves 2 1 tbsp, leaves 0
193 02004 SPICES,BAY LEAF 5.44 313 7.61 8.36 3.62 74.97 26.29999924 834 43 120 113 529 23 3.7 0.416 8.167 2.8 46.5 0.009 0.421 2.005 1.74 180 0 180 180 0 6185 309 0 2.28 1.64 2.29 0 1.8 1 tbsp, crumbled 1 1 tsp, crumbled 0
194 02005 CARAWAY SEED 9.87 333 19.77 14.59 5.87 49.9 38 0.639999986 689 16.23 258 568 1351 17 5.5 0.91 1.3 12.1 21 0.383 0.379 3.606 0.36 10 0 10 10 25 0 363 18 0 0 189 58 6 205 2.5 0 0.62 7.125 3.272 0 6.7 1 tbsp 2 1 tsp 0
195 02006 SPICES,CARDAMOM 8.28 311 10.76 6.7 5.78 68.47 28 383 13.97 229 178 1119 18 7.47 0.383 28 21 0.198 0.182 1.102 0.23 0 0 0 0 0.68 0.87 0.43 0 5.8 1 tbsp, ground 2 1 tsp, ground 0
196 02007 CELERY SEED 6.04 392 18.07 25.27 9.27 41.35 11.80000019 0.670000017 1767 44.9 440 547 1400 160 6.93 1.37 7.567 12.1 17.1 0.34 0.29 3.06 0.89 10 0 10 10 25 0 52 3 0 0 31 0 0 0 1.07 0 2.19 15.93 3.72 0 6.5 1 tbsp 2 1 tsp 0
197 02008 CHERVIL,DRIED 7.2 237 23.2 3.9 16.6 49.1 11.30000019 1346 31.95 130 450 4740 83 8.8 0.44 2.1 29.3 50 0.38 0.68 5.4 0.93 274 0 274 274 0 5850 293 0 0.169 1.399 1.8 0 1.9 1 tbsp 1 1 tsp 0
198 02009 CHILI POWDER 7.79 314 12.26 16.76 8.53 54.66 34.20000076 7.190000057 278 14.25 170 303 1916 1010 2.7 0.429 2.165 6 64.1 0.349 0.794 7.893 3.67 100 0 100 100 66 0 29650 1483 0 2090 15000 3490 21 310 29.05 105.7 2.953 3.574 7.458 0 7.5 1 tbsp 3 1 tsp 0
199 02010 CINNAMON,GROUND 10.58 247 3.99 1.24 3.6 80.59 53.09999847 2.170000076 1002 8.32 60 64 431 10 1.83 0.339 17.466 3.1 3.8 0.022 0.041 1.332 0.358 0.158 6 0 6 6 11 0 295 15 0 1 112 129 15 222 2.32 31.2 0.345 0.246 0.068 0 7.85 1 tbsp 3 1 tsp 0
200 02011 CLOVES,GROUND 6.86 323 5.98 20.07 5.88 61.21 34.20000076 2.380000114 646 8.68 264 105 1102 243 1.09 0.347 30.033 5.9 80.8 0.115 0.267 1.458 0.59 93 0 93 93 37 0 530 27 0 0 84 468 0 0 8.52 141.8 5.438 1.471 7.088 0 6.6 1 tbsp 2 1 tsp 0

View File

@ -0,0 +1,854 @@
year,discipline,winner,desc
1901,chemistry,Jacobus H. van 't Hoff,in recognition of the extraordinary services he has rendered by the discovery of the laws of chemical dynamics and osmotic pressure in solutions
1901,literature,Sully Prudhomme,"in special recognition of his poetic composition, which gives evidence of lofty idealism, artistic perfection and a rare combination of the qualities of both heart and intellect"
1901,medicine,Emil von Behring,"for his work on serum therapy, especially its application against diphtheria, by which he has opened a new road in the domain of medical science and thereby placed in the hands of the physician a victorious weapon against illness and deaths"
1901,peace,Henry Dunant,
1901,peace,Fr&eacute;d&eacute;ric Passy,
1901,physics,Wilhelm Conrad R&ouml;ntgen,in recognition of the extraordinary services he has rendered by the discovery of the remarkable rays subsequently named after him
1902,chemistry,Emil Fischer,in recognition of the extraordinary services he has rendered by his work on sugar and purine syntheses
1902,literature,Theodor Mommsen,"the greatest living master of the art of historical writing, with special reference to his monumental work, <i>A history of Rome</i>"
1902,medicine,Ronald Ross,"for his work on malaria, by which he has shown how it enters the organism and thereby has laid the foundation for successful research on this disease and methods of combating it"
1902,peace,&Eacute;lie Ducommun,
1902,peace,Albert Gobat,
1902,physics,Hendrik A. Lorentz,in recognition of the extraordinary service they rendered by their researches into the influence of magnetism upon radiation phenomena
1902,physics,Pieter Zeeman,in recognition of the extraordinary service they rendered by their researches into the influence of magnetism upon radiation phenomena
1903,chemistry,Svante Arrhenius,in recognition of the extraordinary services he has rendered to the advancement of chemistry by his electrolytic theory of dissociation
1903,literature,Bj&oslash;rnstjerne Bj&oslash;rnson,"as a tribute to his noble, magnificent and versatile poetry, which has always been distinguished by both the freshness of its inspiration and the rare purity of its spirit"
1903,medicine,Niels Ryberg Finsen,"in recognition of his contribution to the treatment of diseases, especially lupus vulgaris, with concentrated light radiation, whereby he has opened a new avenue for medical science"
1903,peace,Randal Cremer,
1903,physics,Henri Becquerel,
1903,physics,Pierre Curie,
1903,physics,Marie Curie,
1904,chemistry,Sir William Ramsay,"in recognition of his services in the discovery of the inert gaseous elements in air, and his determination of their place in the periodic system"
1904,literature,Jos&eacute; Echegaray,
1904,literature,Fr&eacute;d&eacute;ric Mistral,
1904,medicine,Ivan Pavlov,"in recognition of his work on the physiology of digestion, through which knowledge on vital aspects of the subject has been transformed and enlarged"
1904,peace,Institute of International Law,
1904,physics,Lord Rayleigh,for his investigations of the densities of the most important gases and for his discovery of argon in connection with these studies
1905,chemistry,Adolf von Baeyer,"in recognition of his services in the advancement of organic chemistry and the chemical industry, through his work on organic dyes and hydroaromatic compounds"
1905,literature,Henryk Sienkiewicz,because of his outstanding merits as an epic writer
1905,medicine,Robert Koch,for his investigations and discoveries in relation to tuberculosis
1905,peace,Bertha von Suttner,
1905,physics,Philipp Lenard,for his work on cathode rays
1906,chemistry,Henri Moissan,"in recognition of the great services rendered by him in his investigation and isolation of the element fluorine, and for the adoption in the service of science of the electric furnace called after him"
1906,literature,Giosu&egrave; Carducci,"not only in consideration of his deep learning and critical research, but above all as a tribute to the creative energy, freshness of style, and lyrical force which characterize his poetic masterpieces"
1906,medicine,Camillo Golgi,in recognition of their work on the structure of the nervous system
1906,medicine,Santiago Ram&oacute;n y Cajal,in recognition of their work on the structure of the nervous system
1906,peace,Theodore Roosevelt,
1906,physics,J.J. Thomson,in recognition of the great merits of his theoretical and experimental investigations on the conduction of electricity by gases
1907,chemistry,Eduard Buchner,for his biochemical researches and his discovery of cell-free fermentation
1907,literature,Rudyard Kipling,"in consideration of the power of observation, originality of imagination, virility of ideas and remarkable talent for narration which characterize the creations of this world-famous author"
1907,medicine,Alphonse Laveran,in recognition of his work on the role played by protozoa in causing diseases
1907,peace,Ernesto Teodoro Moneta,
1907,peace,Louis Renault,
1907,physics,Albert A. Michelson,for his optical precision instruments and the spectroscopic and metrological investigations carried out with their aid
1908,chemistry,Ernest Rutherford,"for his investigations into the disintegration of the elements, and the chemistry of radioactive substances"
1908,literature,Rudolf Eucken,"in recognition of his earnest search for truth, his penetrating power of thought, his wide range of vision, and the warmth and strength in presentation with which in his numerous works he has vindicated and developed an idealistic philosophy of life"
1908,medicine,Paul Ehrlich,in recognition of their work on immunity
1908,medicine,Ilya Mechnikov,in recognition of their work on immunity
1908,peace,Klas Pontus Arnoldson,
1908,peace,Fredrik Bajer,
1908,physics,Gabriel Lippmann,for his method of reproducing colours photographically based on the phenomenon of interference
1909,chemistry,Wilhelm Ostwald,in recognition of his work on catalysis and for his investigations into the fundamental principles governing chemical equilibria and rates of reaction
1909,literature,Selma Lagerl&ouml;f,"in appreciation of the lofty idealism, vivid imagination and spiritual perception that characterize her writings"
1909,medicine,Theodor Kocher,"for his work on the physiology, pathology and surgery of the thyroid gland"
1909,peace,Auguste Beernaert,
1909,peace,Paul Henri d'Estournelles de Constant,
1909,physics,Ferdinand Braun,in recognition of their contributions to the development of wireless telegraphy
1909,physics,Guglielmo Marconi,in recognition of their contributions to the development of wireless telegraphy
1910,chemistry,Otto Wallach,in recognition of his services to organic chemistry and the chemical industry by his pioneer work in the field of alicyclic compounds
1910,literature,Paul Heyse,"as a tribute to the consummate artistry, permeated with idealism, which he has demonstrated during his long productive career as a lyric poet, dramatist, novelist and writer of world-renowned short stories"
1910,medicine,Albrecht Kossel,"in recognition of the contributions to our knowledge of cell chemistry made through his work on proteins, including the nucleic substances"
1910,peace,Permanent International Peace Bureau,
1910,physics,Johannes Diderik van der Waals,for his work on the equation of state for gases and liquids
1911,chemistry,Marie Curie,"in recognition of her services to the advancement of chemistry by the discovery of the elements radium and polonium, by the isolation of radium and the study of the nature and compounds of this remarkable element"
1911,literature,Maurice Maeterlinck,"in appreciation of his many-sided literary activities, and especially of his dramatic works, which are distinguished by a wealth of imagination and by a poetic fancy, which reveals, sometimes in the guise of a fairy tale, a deep inspiration, while in a mysterious way they appeal to the readers' own feelings and stimulate their imaginations"
1911,medicine,Allvar Gullstrand,for his work on the dioptrics of the eye
1911,peace,Tobias Asser,
1911,peace,Alfred Fried,
1911,physics,Wilhelm Wien,for his discoveries regarding the laws governing the radiation of heat
1912,chemistry,Victor Grignard,
1912,chemistry,Paul Sabatier,
1912,literature,Gerhart Hauptmann,"primarily in recognition of his fruitful, varied and outstanding production in the realm of dramatic art"
1912,medicine,Alexis Carrel,in recognition of his work on vascular suture and the transplantation of blood vessels and organs
1912,peace,Elihu Root,
1912,physics,Gustaf Dal&eacute;n,for his invention of automatic regulators for use in conjunction with gas accumulators for illuminating lighthouses and buoys
1913,chemistry,Alfred Werner,in recognition of his work on the linkage of atoms in molecules by which he has thrown new light on earlier investigations and opened up new fields of research especially in inorganic chemistry
1913,literature,Rabindranath Tagore,"because of his profoundly sensitive, fresh and beautiful verse, by which, with consummate skill, he has made his poetic thought, expressed in his own English words, a part of the literature of the West"
1913,medicine,Charles Richet,in recognition of his work on anaphylaxis
1913,peace,Henri La Fontaine,
1913,physics,Heike Kamerlingh Onnes,"for his investigations on the properties of matter at low temperatures which led, inter alia, to the production of liquid helium"
1914,chemistry,Theodore W. Richards,in recognition of his accurate determinations of the atomic weight of a large number of chemical elements
1914,literature,No Prize was Awarded,
1914,medicine,Robert B&aacute;r&aacute;ny,for his work on the physiology and pathology of the vestibular apparatus
1914,peace,No Prize was Awarded,
1914,physics,Max von Laue,for his discovery of the diffraction of X-rays by crystals
1915,chemistry,Richard Willst&auml;tter,"for his researches on plant pigments, especially chlorophyll"
1915,literature,Romain Rolland,as a tribute to the lofty idealism of his literary production and to the sympathy and love of truth with which he has described different types of human beings
1915,medicine,No Prize was Awarded,
1915,peace,No Prize was Awarded,
1915,physics,William Bragg,for their services in the analysis of crystal structure by means of X-rays
1915,physics,Lawrence Bragg,for their services in the analysis of crystal structure by means of X-rays
1916,chemistry,No Prize was Awarded,
1916,literature,Verner von Heidenstam,in recognition of his significance as the leading representative of a new era in our literature
1916,medicine,No Prize was Awarded,
1916,peace,No Prize was Awarded,
1916,physics,No Prize was Awarded,
1917,chemistry,No Prize was Awarded,
1917,literature,Karl Gjellerup,
1917,literature,Henrik Pontoppidan,
1917,medicine,No Prize was Awarded,
1917,peace,International Committee of the Red Cross,
1917,physics,Charles Glover Barkla,for his discovery of the characteristic R&ouml;ntgen radiation of the elements
1918,chemistry,Fritz Haber,for the synthesis of ammonia from its elements
1918,literature,No Prize was Awarded,
1918,medicine,No Prize was Awarded,
1918,peace,No Prize was Awarded,
1918,physics,Max Planck,in recognition of the services he rendered to the advancement of Physics by his discovery of energy quanta
1919,chemistry,No Prize was Awarded,
1919,literature,Carl Spitteler,"in special appreciation of his epic, <i>Olympian Spring</i>"
1919,medicine,Jules Bordet,for his discoveries relating to immunity
1919,peace,Woodrow Wilson,
1919,physics,Johannes Stark,for his discovery of the Doppler effect in canal rays and the splitting of spectral lines in electric fields
1920,chemistry,Walther Nernst,in recognition of his work in thermochemistry
1920,literature,Knut Hamsun,"for his monumental work, <i>Growth of the Soil</i>"
1920,medicine,August Krogh,for his discovery of the capillary motor regulating mechanism
1920,peace,L&eacute;on Bourgeois,
1920,physics,Charles Edouard Guillaume,in recognition of the service he has rendered to precision measurements in Physics by his discovery of anomalies in nickel steel alloys
1921,chemistry,Frederick Soddy,"for his contributions to our knowledge of the chemistry of radioactive substances, and his investigations into the origin and nature of isotopes"
1921,literature,Anatole France,"in recognition of his brilliant literary achievements, characterized as they are by a nobility of style, a profound human sympathy, grace, and a true Gallic temperament"
1921,medicine,No Prize was Awarded,
1921,peace,Hjalmar Branting,
1921,peace,Christian Lange,
1921,physics,Albert Einstein,"for his services to Theoretical Physics, and especially for his discovery of the law of the photoelectric effect"
1922,chemistry,Francis W. Aston,"for his discovery, by means of his mass spectrograph, of isotopes, in a large number of non-radioactive elements, and for his enunciation of the whole-number rule"
1922,literature,Jacinto Benavente,for the happy manner in which he has continued the illustrious traditions of the Spanish drama
1922,medicine,Archibald V. Hill,
1922,medicine,Otto Meyerhof,
1922,peace,Fridtjof Nansen,
1922,physics,Niels Bohr,for his services in the investigation of the structure of atoms and of the radiation emanating from them
1923,chemistry,Fritz Pregl,for his invention of the method of micro-analysis of organic substances
1923,literature,William Butler Yeats,"for his always inspired poetry, which in a highly artistic form gives expression to the spirit of a whole nation"
1923,medicine,Frederick G. Banting,for the discovery of insulin
1923,medicine,John Macleod,for the discovery of insulin
1923,peace,No Prize was Awarded,
1923,physics,Robert A. Millikan,for his work on the elementary charge of electricity and on the photoelectric effect
1924,chemistry,No Prize was Awarded,
1924,literature,Wladyslaw Reymont,"for his great national epic, <i>The Peasants</i>"
1924,medicine,Willem Einthoven,for his discovery of the mechanism of the electrocardiogram
1924,peace,No Prize was Awarded,
1924,physics,Manne Siegbahn,for his discoveries and research in the field of X-ray spectroscopy
1925,chemistry,Richard Zsigmondy,"for his demonstration of the heterogenous nature of colloid solutions and for the methods he used, which have since become fundamental in modern colloid chemistry"
1925,literature,George Bernard Shaw,"for his work which is marked by both idealism and humanity, its stimulating satire often being infused with a singular poetic beauty"
1925,medicine,No Prize was Awarded,
1925,peace,Sir Austen Chamberlain,
1925,peace,Charles G. Dawes,
1925,physics,James Franck,for their discovery of the laws governing the impact of an electron upon an atom
1925,physics,Gustav Hertz,for their discovery of the laws governing the impact of an electron upon an atom
1926,chemistry,The Svedberg,for his work on disperse systems
1926,literature,Grazia Deledda,for her idealistically inspired writings which with plastic clarity picture the life on her native island and with depth and sympathy deal with human problems in general
1926,medicine,Johannes Fibiger,for his discovery of the Spiroptera carcinoma
1926,peace,Aristide Briand,
1926,peace,Gustav Stresemann,
1926,physics,Jean Baptiste Perrin,"for his work on the discontinuous structure of matter, and especially for his discovery of sedimentation equilibrium"
1927,chemistry,Heinrich Wieland,for his investigations of the constitution of the bile acids and related substances
1927,literature,Henri Bergson,in recognition of his rich and vitalizing ideas and the brillant skill with which they have been presented
1927,medicine,Julius Wagner-Jauregg,for his discovery of the therapeutic value of malaria inoculation in the treatment of dementia paralytica
1927,peace,Ferdinand Buisson,
1927,peace,Ludwig Quidde,
1927,physics,Arthur H. Compton,
1927,physics,C.T.R. Wilson,
1928,chemistry,Adolf Windaus,for the services rendered through his research into the constitution of the sterols and their connection with the vitamins
1928,literature,Sigrid Undset,principially for her powerful descriptions of Northern life during the Middle Ages
1928,medicine,Charles Nicolle,for his work on typhus
1928,peace,No Prize was Awarded,
1928,physics,Owen Willans Richardson,for his work on the thermionic phenomenon and especially for the discovery of the law named after him
1929,chemistry,Arthur Harden,for their investigations on the fermentation of sugar and fermentative enzymes
1929,chemistry,Hans von Euler-Chelpin,for their investigations on the fermentation of sugar and fermentative enzymes
1929,literature,Thomas Mann,"principally for his great novel, <i>Buddenbrooks</i>, which has won steadily increased recognition as one of the classic works of contemporary literature"
1929,medicine,Christiaan Eijkman,
1929,medicine,Sir Frederick Hopkins,
1929,peace,Frank B. Kellogg,
1929,physics,Louis de Broglie,for his discovery of the wave nature of electrons
1930,chemistry,Hans Fischer,for his researches into the constitution of haemin and chlorophyll and especially for his synthesis of haemin
1930,literature,Sinclair Lewis,"for his vigorous and graphic art of description and his ability to create, with wit and humour, new types of characters"
1930,medicine,Karl Landsteiner,for his discovery of human blood groups
1930,peace,Nathan S&ouml;derblom,
1930,physics,Venkata Raman,for his work on the scattering of light and for the discovery of the effect named after him
1931,chemistry,Friedrich Bergius,in recognition of their contributions to the invention and development of chemical high pressure methods
1931,chemistry,Carl Bosch,in recognition of their contributions to the invention and development of chemical high pressure methods
1931,literature,Erik Axel Karlfeldt,The poetry of Erik Axel Karlfeldt
1931,medicine,Otto Warburg,for his discovery of the nature and mode of action of the respiratory enzyme
1931,peace,Jane Addams,
1931,peace,Nicholas Murray Butler,
1931,physics,No Prize was Awarded,
1932,chemistry,Irving Langmuir,for his discoveries and investigations in surface chemistry
1932,literature,John Galsworthy,for his distinguished art of narration which takes its highest form in <i>The Forsyte Saga</i>
1932,medicine,Edgar Adrian,for their discoveries regarding the functions of neurons
1932,medicine,Sir Charles Sherrington,for their discoveries regarding the functions of neurons
1932,peace,No Prize was Awarded,
1932,physics,Werner Heisenberg,"for the creation of quantum mechanics, the application of which has, inter alia, led to the discovery of the allotropic forms of hydrogen"
1933,chemistry,No Prize was Awarded,
1933,literature,Ivan Bunin,for the strict artistry with which he has carried on the classical Russian traditions in prose writing
1933,medicine,Thomas H. Morgan,for his discoveries concerning the role played by the chromosome in heredity
1933,peace,Sir Norman Angell,
1933,physics,Paul A.M. Dirac,for the discovery of new productive forms of atomic theory
1933,physics,Erwin Schr&ouml;dinger,for the discovery of new productive forms of atomic theory
1934,chemistry,Harold C. Urey,for his discovery of heavy hydrogen
1934,literature,Luigi Pirandello,for his bold and ingenious revival of dramatic and scenic art
1934,medicine,George R. Minot,for their discoveries concerning liver therapy in cases of anaemia
1934,medicine,William P. Murphy,for their discoveries concerning liver therapy in cases of anaemia
1934,medicine,George H. Whipple,for their discoveries concerning liver therapy in cases of anaemia
1934,peace,Arthur Henderson,
1934,physics,No Prize was Awarded,
1935,chemistry,Fr&eacute;d&eacute;ric Joliot,in recognition of their synthesis of new radioactive elements
1935,chemistry,Ir&egrave;ne Joliot-Curie,in recognition of their synthesis of new radioactive elements
1935,literature,No Prize was Awarded,
1935,medicine,Hans Spemann,for his discovery of the organizer effect in embryonic development
1935,peace,Carl von Ossietzky,
1935,physics,James Chadwick,for the discovery of the neutron
1936,chemistry,Peter Debye,for his contributions to our knowledge of molecular structure through his investigations on dipole moments and on the diffraction of X-rays and electrons in gases
1936,literature,Eugene O'Neill,"for the power, honesty and deep-felt emotions of his dramatic works, which embody an original concept of tragedy"
1936,medicine,Sir Henry Dale,for their discoveries relating to chemical transmission of nerve impulses
1936,medicine,Otto Loewi,for their discoveries relating to chemical transmission of nerve impulses
1936,peace,Carlos Saavedra Lamas,
1936,physics,Carl D. Anderson,
1936,physics,Victor F. Hess,
1937,chemistry,Norman Haworth,
1937,chemistry,Paul Karrer,
1937,literature,Roger Martin du Gard,for the artistic power and truth with which he has depicted human conflict as well as some fundamental aspects of contemporary life in his novel-cycle <i>Les Thibault</i>
1937,medicine,Albert Szent-Gy&ouml;rgyi,"for his discoveries in connection with the biological combustion processes, with special reference to vitamin C and the catalysis of fumaric acid"
1937,peace,Robert Cecil,
1937,physics,Clinton Davisson,for their experimental discovery of the diffraction of electrons by crystals
1937,physics,George Paget Thomson,for their experimental discovery of the diffraction of electrons by crystals
1938,chemistry,Richard Kuhn,for his work on carotenoids and vitamins
1938,literature,Pearl Buck,for her rich and truly epic descriptions of peasant life in China and for her biographical masterpieces
1938,medicine,Corneille Heymans,for the discovery of the role played by the sinus and aortic mechanisms in the regulation of respiration
1938,peace,Nansen International Office for Refugees,
1938,physics,Enrico Fermi,"for his demonstrations of the existence of new radioactive elements produced by neutron irradiation, and for his related discovery of nuclear reactions brought about by slow neutrons"
1939,chemistry,Adolf Butenandt,
1939,chemistry,Leopold Ruzicka,
1939,literature,Frans Eemil Sillanp&auml;&auml;,for his deep understanding of his country's peasantry and the exquisite art with which he has portrayed their way of life and their relationship with Nature
1939,medicine,Gerhard Domagk,for the discovery of the antibacterial effects of prontosil
1939,peace,No Prize was Awarded,
1939,physics,Ernest Lawrence,"for the invention and development of the cyclotron and for results obtained with it, especially with regard to artificial radioactive elements"
1940,chemistry,No Prize was Awarded,
1940,literature,No Prize was Awarded,
1940,medicine,No Prize was Awarded,
1940,peace,No Prize was Awarded,
1940,physics,No Prize was Awarded,
1941,chemistry,No Prize was Awarded,
1941,literature,No Prize was Awarded,
1941,medicine,No Prize was Awarded,
1941,peace,No Prize was Awarded,
1941,physics,No Prize was Awarded,
1942,chemistry,No Prize was Awarded,
1942,literature,No Prize was Awarded,
1942,medicine,No Prize was Awarded,
1942,peace,No Prize was Awarded,
1942,physics,No Prize was Awarded,
1943,chemistry,George de Hevesy,for his work on the use of isotopes as tracers in the study of chemical processes
1943,literature,No Prize was Awarded,
1943,medicine,Henrik Dam,
1943,medicine,Edward A. Doisy,
1943,peace,No Prize was Awarded,
1943,physics,Otto Stern,for his contribution to the development of the molecular ray method and his discovery of the magnetic moment of the proton
1944,chemistry,Otto Hahn,for his discovery of the fission of heavy nuclei
1944,literature,Johannes V. Jensen,"for the rare strength and fertility of his poetic imagination with which is combined an intellectual curiosity of wide scope and a bold, freshly creative style"
1944,medicine,Joseph Erlanger,for their discoveries relating to the highly differentiated functions of single nerve fibres
1944,medicine,Herbert S. Gasser,for their discoveries relating to the highly differentiated functions of single nerve fibres
1944,peace,International Committee of the Red Cross,
1944,physics,Isidor Isaac Rabi,for his resonance method for recording the magnetic properties of atomic nuclei
1945,chemistry,Artturi Virtanen,"for his research and inventions in agricultural and nutrition chemistry, especially for his fodder preservation method"
1945,literature,Gabriela Mistral,"for her lyric poetry which, inspired by powerful emotions, has made her name a symbol of the idealistic aspirations of the entire Latin American world"
1945,medicine,Ernst B. Chain,for the discovery of penicillin and its curative effect in various infectious diseases
1945,medicine,Sir Alexander Fleming,for the discovery of penicillin and its curative effect in various infectious diseases
1945,medicine,Sir Howard Florey,for the discovery of penicillin and its curative effect in various infectious diseases
1945,peace,Cordell Hull,
1945,physics,Wolfgang Pauli,"for the discovery of the Exclusion Principle, also called the Pauli Principle"
1946,chemistry,John H. Northrop,
1946,chemistry,Wendell M. Stanley,
1946,chemistry,James B. Sumner,
1946,literature,Hermann Hesse,"for his inspired writings which, while growing in boldness and penetration, exemplify the classical humanitarian ideals and high qualities of style"
1946,medicine,Hermann J. Muller,for the discovery of the production of mutations by means of X-ray irradiation
1946,peace,Emily Greene Balch,
1946,peace,John R. Mott,
1946,physics,Percy W. Bridgman,"for the invention of an apparatus to produce extremely high pressures, and for the discoveries he made therewith in the field of high pressure physics"
1947,chemistry,Sir Robert Robinson,"for his investigations on plant products of biological importance, especially the alkaloids"
1947,literature,Andr&eacute; Gide,"for his comprehensive and artistically significant writings, in which human problems and conditions have been presented with a fearless love of truth and keen psychological insight"
1947,medicine,Carl Cori,
1947,medicine,Gerty Cori,
1947,medicine,Bernardo Houssay,
1947,peace,Friends Service Council,
1947,peace,American Friends Service Committee,
1947,physics,Edward V. Appleton,for his investigations of the physics of the upper atmosphere especially for the discovery of the so-called Appleton layer
1948,chemistry,Arne Tiselius,"for his research on electrophoresis and adsorption analysis, especially for his discoveries concerning the complex nature of the serum proteins"
1948,literature,T.S. Eliot,"for his outstanding, pioneer contribution to present-day poetry"
1948,medicine,Paul M&uuml;ller,for his discovery of the high efficiency of DDT as a contact poison against several arthropods
1948,peace,No Prize was Awarded,
1948,physics,Patrick M.S. Blackett,"for his development of the Wilson cloud chamber method, and his discoveries therewith in the fields of nuclear physics and cosmic radiation"
1949,chemistry,William F. Giauque,"for his contributions in the field of chemical thermodynamics, particularly concerning the behaviour of substances at extremely low temperatures"
1949,literature,William Faulkner,for his powerful and artistically unique contribution to the modern American novel
1949,medicine,Walter Hess,
1949,medicine,Egas Moniz,
1949,peace,Lord Boyd Orr,
1949,physics,Hideki Yukawa,for his prediction of the existence of mesons on the basis of theoretical work on nuclear forces
1950,chemistry,Kurt Alder,for their discovery and development of the diene synthesis
1950,chemistry,Otto Diels,for their discovery and development of the diene synthesis
1950,literature,Bertrand Russell,in recognition of his varied and significant writings in which he champions humanitarian ideals and freedom of thought
1950,medicine,Philip S. Hench,"for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects"
1950,medicine,Edward C. Kendall,"for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects"
1950,medicine,Tadeus Reichstein,"for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects"
1950,peace,Ralph Bunche,
1950,physics,Cecil Powell,for his development of the photographic method of studying nuclear processes and his discoveries regarding mesons made with this method
1951,chemistry,Edwin M. McMillan,for their discoveries in the chemistry of the transuranium elements
1951,chemistry,Glenn T. Seaborg,for their discoveries in the chemistry of the transuranium elements
1951,literature,P&auml;r Lagerkvist,for the artistic vigour and true independence of mind with which he endeavours in his poetry to find answers to the eternal questions confronting mankind
1951,medicine,Max Theiler,for his discoveries concerning yellow fever and how to combat it
1951,peace,L&eacute;on Jouhaux,
1951,physics,John Cockcroft,for their pioneer work on the transmutation of atomic nuclei by artificially accelerated atomic particles
1951,physics,Ernest T.S. Walton,for their pioneer work on the transmutation of atomic nuclei by artificially accelerated atomic particles
1952,chemistry,Archer J.P. Martin,for their invention of partition chromatography
1952,chemistry,Richard L.M. Synge,for their invention of partition chromatography
1952,literature,Fran&ccedil;ois Mauriac,for the deep spiritual insight and the artistic intensity with which he has in his novels penetrated the drama of human life
1952,medicine,Selman A. Waksman,"for his discovery of streptomycin, the first antibiotic effective against tuberculosis"
1952,peace,Albert Schweitzer,
1952,physics,Felix Bloch,for their development of new methods for nuclear magnetic precision measurements and discoveries in connection therewith
1952,physics,E. M. Purcell,for their development of new methods for nuclear magnetic precision measurements and discoveries in connection therewith
1953,chemistry,Hermann Staudinger,for his discoveries in the field of macromolecular chemistry
1953,literature,Winston Churchill,for his mastery of historical and biographical description as well as for brilliant oratory in defending exalted human values
1953,medicine,Hans Krebs,
1953,medicine,Fritz Lipmann,
1953,peace,George C. Marshall,
1953,physics,Frits Zernike,"for his demonstration of the phase contrast method, especially for his invention of the phase contrast microscope"
1954,chemistry,Linus Pauling,for his research into the nature of the chemical bond and its application to the elucidation of the structure of complex substances
1954,literature,Ernest Hemingway,"for his mastery of the art of narrative, most recently demonstrated in <i>The Old Man and the Sea,</i> and for the influence that he has exerted on contemporary style"
1954,medicine,John F. Enders,for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
1954,medicine,Frederick C. Robbins,for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
1954,medicine,Thomas H. Weller,for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
1954,peace,Office of the United Nations High Commissioner for Refugees,
1954,physics,Max Born,
1954,physics,Walther Bothe,
1955,chemistry,Vincent du Vigneaud,"for his work on biochemically important sulphur compounds, especially for the first synthesis of a polypeptide hormone"
1955,literature,Halld&oacute;r Laxness,for his vivid epic power which has renewed the great narrative art of Iceland
1955,medicine,Hugo Theorell,for his discoveries concerning the nature and mode of action of oxidation enzymes
1955,peace,No Prize was Awarded,
1955,physics,Polykarp Kusch,
1955,physics,Willis E. Lamb,
1956,chemistry,Sir Cyril Hinshelwood,for their researches into the mechanism of chemical reactions
1956,chemistry,Nikolay Semenov,for their researches into the mechanism of chemical reactions
1956,literature,Juan Ram&oacute;n Jim&eacute;nez,"for his lyrical poetry, which in Spanish language constitutes an example of high spirit and artistical purity"
1956,medicine,Andr&eacute; F. Cournand,for their discoveries concerning heart catheterization and pathological changes in the circulatory system
1956,medicine,Werner Forssmann,for their discoveries concerning heart catheterization and pathological changes in the circulatory system
1956,medicine,Dickinson W. Richards,for their discoveries concerning heart catheterization and pathological changes in the circulatory system
1956,peace,No Prize was Awarded,
1956,physics,John Bardeen,for their researches on semiconductors and their discovery of the transistor effect
1956,physics,Walter H. Brattain,for their researches on semiconductors and their discovery of the transistor effect
1956,physics,William B. Shockley,for their researches on semiconductors and their discovery of the transistor effect
1957,chemistry,Lord Todd,for his work on nucleotides and nucleotide co-enzymes
1957,literature,Albert Camus,"for his important literary production, which with clear-sighted earnestness illuminates the problems of the human conscience in our times"
1957,medicine,Daniel Bovet,"for his discoveries relating to synthetic compounds that inhibit the action of certain body substances, and especially their action on the vascular system and the skeletal muscles"
1957,peace,Lester Bowles Pearson,
1957,physics,Tsung-Dao Lee,for their penetrating investigation of the so-called parity laws which has led to important discoveries regarding the elementary particles
1957,physics,Chen Ning Yang,for their penetrating investigation of the so-called parity laws which has led to important discoveries regarding the elementary particles
1958,chemistry,Frederick Sanger,"for his work on the structure of proteins, especially that of insulin"
1958,literature,Boris Pasternak,for his important achievement both in contemporary lyrical poetry and in the field of the great Russian epic tradition
1958,medicine,George Beadle,
1958,medicine,Joshua Lederberg,
1958,medicine,Edward Tatum,
1958,peace,Georges Pire,
1958,physics,Pavel A. Cherenkov,for the discovery and the interpretation of the Cherenkov effect
1958,physics,Il&acute;ja M. Frank,for the discovery and the interpretation of the Cherenkov effect
1958,physics,Igor Y. Tamm,for the discovery and the interpretation of the Cherenkov effect
1959,chemistry,Jaroslav Heyrovsky,for his discovery and development of the polarographic methods of analysis
1959,literature,Salvatore Quasimodo,"for his lyrical poetry, which with classical fire expresses the tragic experience of life in our own times"
1959,medicine,Arthur Kornberg,for their discovery of the mechanisms in the biological synthesis of ribonucleic acid and deoxyribonucleic acid
1959,medicine,Severo Ochoa,for their discovery of the mechanisms in the biological synthesis of ribonucleic acid and deoxyribonucleic acid
1959,peace,Philip Noel-Baker,
1959,physics,Owen Chamberlain,for their discovery of the antiproton
1959,physics,Emilio Segr&egrave;,for their discovery of the antiproton
1960,chemistry,Willard F. Libby,"for his method to use carbon-14 for age determination in archaeology, geology, geophysics, and other branches of science"
1960,literature,Saint-John Perse,for the soaring flight and the evocative imagery of his poetry which in a visionary fashion reflects the conditions of our time
1960,medicine,Sir Frank Macfarlane Burnet,for discovery of acquired immunological tolerance
1960,medicine,Peter Medawar,for discovery of acquired immunological tolerance
1960,peace,Albert Lutuli,
1960,physics,Donald A. Glaser,for the invention of the bubble chamber
1961,chemistry,Melvin Calvin,for his research on the carbon dioxide assimilation in plants
1961,literature,Ivo Andric,for the epic force with which he has traced themes and depicted human destinies drawn from the history of his country
1961,medicine,Georg von B&eacute;k&eacute;sy,for his discoveries of the physical mechanism of stimulation within the cochlea
1961,peace,Dag Hammarskj&ouml;ld,
1961,physics,Robert Hofstadter,
1961,physics,Rudolf M&ouml;ssbauer,
1962,chemistry,John C. Kendrew,for their studies of the structures of globular proteins
1962,chemistry,Max F. Perutz,for their studies of the structures of globular proteins
1962,literature,John Steinbeck,"for his realistic and imaginative writings, combining as they do sympathetic humour and keen social perception"
1962,medicine,Francis Crick,for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
1962,medicine,James Watson,for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
1962,medicine,Maurice Wilkins,for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
1962,peace,Linus Pauling,
1962,physics,Lev Landau,"for his pioneering theories for condensed matter, especially liquid helium"
1963,chemistry,Giulio Natta,for their discoveries in the field of the chemistry and technology of high polymers
1963,chemistry,Karl Ziegler,for their discoveries in the field of the chemistry and technology of high polymers
1963,literature,Giorgos Seferis,"for his eminent lyrical writing, inspired by a deep feeling for the Hellenic world of culture"
1963,medicine,Sir John Eccles,for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
1963,medicine,Alan L. Hodgkin,for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
1963,medicine,Andrew F. Huxley,for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
1963,peace,International Committee of the Red Cross,
1963,peace,League of Red Cross Societies,
1963,physics,Maria Goeppert-Mayer,
1963,physics,J. Hans D. Jensen,
1963,physics,Eugene Wigner,
1964,chemistry,Dorothy Crowfoot Hodgkin,for her determinations by X-ray techniques of the structures of important biochemical substances
1964,literature,Jean-Paul Sartre,"for his work which, rich in ideas and filled with the spirit of freedom and the quest for truth, has exerted a far-reaching influence on our age"
1964,medicine,Konrad Bloch,for their discoveries concerning the mechanism and regulation of the cholesterol and fatty acid metabolism
1964,medicine,Feodor Lynen,for their discoveries concerning the mechanism and regulation of the cholesterol and fatty acid metabolism
1964,peace,Martin Luther King,
1964,physics,Nicolay G. Basov,"for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle"
1964,physics,Aleksandr M. Prokhorov,"for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle"
1964,physics,Charles H. Townes,"for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle"
1965,chemistry,Robert B. Woodward,for his outstanding achievements in the art of organic synthesis
1965,literature,Mikhail Sholokhov,"for the artistic power and integrity with which, in his epic of the Don, he has given expression to a historic phase in the life of the Russian people"
1965,medicine,Fran&ccedil;ois Jacob,for their discoveries concerning genetic control of enzyme and virus synthesis
1965,medicine,Andr&eacute; Lwoff,for their discoveries concerning genetic control of enzyme and virus synthesis
1965,medicine,Jacques Monod,for their discoveries concerning genetic control of enzyme and virus synthesis
1965,peace,United Nations Children's Fund,
1965,physics,Richard P. Feynman,"for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles"
1965,physics,Julian Schwinger,"for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles"
1965,physics,Sin-Itiro Tomonaga,"for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles"
1966,chemistry,Robert S. Mulliken,for his fundamental work concerning chemical bonds and the electronic structure of molecules by the molecular orbital method
1966,literature,Samuel Agnon,
1966,literature,Nelly Sachs,
1966,medicine,Charles B. Huggins,
1966,medicine,Peyton Rous,
1966,peace,No Prize was Awarded,
1966,physics,Alfred Kastler,for the discovery and development of optical methods for studying Hertzian resonances in atoms
1967,chemistry,Manfred Eigen,"for their studies of extremely fast chemical reactions, effected by disturbing the equlibrium by means of very short pulses of energy"
1967,chemistry,Ronald G.W. Norrish,"for their studies of extremely fast chemical reactions, effected by disturbing the equlibrium by means of very short pulses of energy"
1967,chemistry,George Porter,"for their studies of extremely fast chemical reactions, effected by disturbing the equlibrium by means of very short pulses of energy"
1967,literature,Miguel Angel Asturias,"for his vivid literary achievement, deep-rooted in the national traits and traditions of Indian peoples of Latin America"
1967,medicine,Ragnar Granit,for their discoveries concerning the primary physiological and chemical visual processes in the eye
1967,medicine,Haldan K. Hartline,for their discoveries concerning the primary physiological and chemical visual processes in the eye
1967,medicine,George Wald,for their discoveries concerning the primary physiological and chemical visual processes in the eye
1967,peace,No Prize was Awarded,
1967,physics,Hans Bethe,"for his contributions to the theory of nuclear reactions, especially his discoveries concerning the energy production in stars"
1968,chemistry,Lars Onsager,"for the discovery of the reciprocal relations bearing his name, which are fundamental for the thermodynamics of irreversible processes"
1968,literature,Yasunari Kawabata,"for his narrative mastery, which with great sensibility expresses the essence of the Japanese mind"
1968,medicine,Robert W. Holley,for their interpretation of the genetic code and its function in protein synthesis
1968,medicine,H. Gobind Khorana,for their interpretation of the genetic code and its function in protein synthesis
1968,medicine,Marshall W. Nirenberg,for their interpretation of the genetic code and its function in protein synthesis
1968,peace,Ren&eacute; Cassin,
1968,physics,Luis Alvarez,"for his decisive contributions to elementary particle physics, in particular the discovery of a large number of resonance states, made possible through his development of the technique of using hydrogen bubble chamber and data analysis"
1969,chemistry,Derek Barton,for their contributions to the development of the concept of conformation and its application in chemistry
1969,chemistry,Odd Hassel,for their contributions to the development of the concept of conformation and its application in chemistry
1969,economics,Ragnar Frisch,for having developed and applied dynamic models for the analysis of economic processes
1969,economics,Jan Tinbergen,for having developed and applied dynamic models for the analysis of economic processes
1969,literature,Samuel Beckett,"for his writing, which - in new forms for the novel and drama - in the destitution of modern man acquires its elevation"
1969,medicine,Max Delbr&uuml;ck,for their discoveries concerning the replication mechanism and the genetic structure of viruses
1969,medicine,Alfred D. Hershey,for their discoveries concerning the replication mechanism and the genetic structure of viruses
1969,medicine,Salvador E. Luria,for their discoveries concerning the replication mechanism and the genetic structure of viruses
1969,peace,International Labour Organization,
1969,physics,Murray Gell-Mann,for his contributions and discoveries concerning the classification of elementary particles and their interactions
1970,chemistry,Luis Leloir,for his discovery of sugar nucleotides and their role in the biosynthesis of carbohydrates
1970,economics,Paul A. Samuelson,for the scientific work through which he has developed static and dynamic economic theory and actively contributed to raising the level of analysis in economic science
1970,literature,Alexandr Solzhenitsyn,for the ethical force with which he has pursued the indispensable traditions of Russian literature
1970,medicine,Julius Axelrod,"for their discoveries concerning the humoral transmittors in the nerve terminals and the mechanism for their storage, release and inactivation"
1970,medicine,Sir Bernard Katz,"for their discoveries concerning the humoral transmittors in the nerve terminals and the mechanism for their storage, release and inactivation"
1970,medicine,Ulf von Euler,"for their discoveries concerning the humoral transmittors in the nerve terminals and the mechanism for their storage, release and inactivation"
1970,peace,Norman Borlaug,
1970,physics,Hannes Alfv&eacute;n,
1970,physics,Louis N&eacute;el,
1971,chemistry,Gerhard Herzberg,"for his contributions to the knowledge of electronic structure and geometry of molecules, particularly free radicals"
1971,economics,Simon Kuznets,for his empirically founded interpretation of economic growth which has led to new and deepened insight into the economic and social structure and process of development
1971,literature,Pablo Neruda,for a poetry that with the action of an elemental force brings alive a continent's destiny and dreams
1971,medicine,"Earl W. Sutherland, Jr.",for his discoveries concerning the mechanisms of the action of hormones
1971,peace,Willy Brandt,
1971,physics,Dennis Gabor,for his invention and development of the holographic method
1972,chemistry,Christian Anfinsen,
1972,chemistry,Stanford Moore,
1972,chemistry,William H. Stein,
1972,economics,Kenneth J. Arrow,for their pioneering contributions to general economic equilibrium theory and welfare theory
1972,economics,John R. Hicks,for their pioneering contributions to general economic equilibrium theory and welfare theory
1972,literature,Heinrich B&ouml;ll,for his writing which through its combination of a broad perspective on his time and a sensitive skill in characterization has contributed to a renewal of German literature
1972,medicine,Gerald M. Edelman,for their discoveries concerning the chemical structure of antibodies
1972,medicine,Rodney R. Porter,for their discoveries concerning the chemical structure of antibodies
1972,peace,No Prize was Awarded,
1972,physics,John Bardeen,"for their jointly developed theory of superconductivity, usually called the BCS-theory"
1972,physics,Leon N. Cooper,"for their jointly developed theory of superconductivity, usually called the BCS-theory"
1972,physics,Robert Schrieffer,"for their jointly developed theory of superconductivity, usually called the BCS-theory"
1973,chemistry,Ernst Otto Fischer,"for their pioneering work, performed independently, on the chemistry of the organometallic, so called sandwich compounds"
1973,chemistry,Geoffrey Wilkinson,"for their pioneering work, performed independently, on the chemistry of the organometallic, so called sandwich compounds"
1973,economics,Wassily Leontief,for the development of the input-output method and for its application to important economic problems
1973,literature,Patrick White,for an epic and psychological narrative art which has introduced a new continent into literature
1973,medicine,Konrad Lorenz,for their discoveries concerning organization and elicitation of individual and social behaviour patterns
1973,medicine,Nikolaas Tinbergen,for their discoveries concerning organization and elicitation of individual and social behaviour patterns
1973,medicine,Karl von Frisch,for their discoveries concerning organization and elicitation of individual and social behaviour patterns
1973,peace,Le Duc Tho,
1973,peace,Henry Kissinger,
1973,physics,Leo Esaki,
1973,physics,Ivar Giaever,
1973,physics,Brian D. Josephson,
1974,chemistry,Paul J. Flory,"for his fundamental achievements, both theoretical and experimental, in the physical chemistry of the macromolecules"
1974,economics,Gunnar Myrdal,"for their pioneering work in the theory of money and economic fluctuations and for their penetrating analysis of the interdependence of economic, social and institutional phenomena"
1974,economics,Friedrich August von Hayek,"for their pioneering work in the theory of money and economic fluctuations and for their penetrating analysis of the interdependence of economic, social and institutional phenomena"
1974,literature,Eyvind Johnson,
1974,literature,Harry Martinson,
1974,medicine,Albert Claude,for their discoveries concerning the structural and functional organization of the cell
1974,medicine,Christian de Duve,for their discoveries concerning the structural and functional organization of the cell
1974,medicine,George E. Palade,for their discoveries concerning the structural and functional organization of the cell
1974,peace,Se&aacute;n MacBride,
1974,peace,Eisaku Sato,
1974,physics,Antony Hewish,"for their pioneering research in radio astrophysics: Ryle for his observations and inventions, in particular of the aperture synthesis technique, and Hewish for his decisive role in the discovery of pulsars"
1974,physics,Martin Ryle,"for their pioneering research in radio astrophysics: Ryle for his observations and inventions, in particular of the aperture synthesis technique, and Hewish for his decisive role in the discovery of pulsars"
1975,chemistry,John Cornforth,
1975,chemistry,Vladimir Prelog,
1975,economics,Leonid Vitaliyevich Kantorovich,for their contributions to the theory of optimum allocation of resources
1975,economics,Tjalling C. Koopmans,for their contributions to the theory of optimum allocation of resources
1975,literature,Eugenio Montale,"for his distinctive poetry which, with great artistic sensitivity, has interpreted human values under the sign of an outlook on life with no illusions"
1975,medicine,David Baltimore,for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
1975,medicine,Renato Dulbecco,for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
1975,medicine,Howard M. Temin,for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
1975,peace,Andrei Sakharov,
1975,physics,Aage N. Bohr,for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
1975,physics,Ben R. Mottelson,for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
1975,physics,James Rainwater,for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
1976,chemistry,William Lipscomb,for his studies on the structure of boranes illuminating problems of chemical bonding
1976,economics,Milton Friedman,"for his achievements in the fields of consumption analysis, monetary history and theory and for his demonstration of the complexity of stabilization policy"
1976,literature,Saul Bellow,for the human understanding and subtle analysis of contemporary culture that are combined in his work
1976,medicine,Baruch S. Blumberg,for their discoveries concerning new mechanisms for the origin and dissemination of infectious diseases
1976,medicine,D. Carleton Gajdusek,for their discoveries concerning new mechanisms for the origin and dissemination of infectious diseases
1976,peace,Mairead Corrigan,
1976,peace,Betty Williams,
1976,physics,Burton Richter,for their pioneering work in the discovery of a heavy elementary particle of a new kind
1976,physics,Samuel C.C. Ting,for their pioneering work in the discovery of a heavy elementary particle of a new kind
1977,chemistry,Ilya Prigogine,"for his contributions to non-equilibrium thermodynamics, particularly the theory of dissipative structures"
1977,economics,James E. Meade,for their pathbreaking contribution to the theory of international trade and international capital movements
1977,economics,Bertil Ohlin,for their pathbreaking contribution to the theory of international trade and international capital movements
1977,literature,Vicente Aleixandre,"for a creative poetic writing which illuminates man's condition in the cosmos and in present-day society, at the same time representing the great renewal of the traditions of Spanish poetry beween the wars"
1977,medicine,Roger Guillemin,
1977,medicine,Andrew V. Schally,
1977,medicine,Rosalyn Yalow,
1977,peace,Amnesty International,
1977,physics,Philip W. Anderson,for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
1977,physics,Sir Nevill F. Mott,for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
1977,physics,John H. van Vleck,for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
1978,chemistry,Peter Mitchell,for his contribution to the understanding of biological energy transfer through the formulation of the chemiosmotic theory
1978,economics,Herbert A. Simon,for his pioneering research into the decision-making process within economic organizations
1978,literature,Isaac Bashevis Singer,"for his impassioned narrative art which, with roots in a Polish-Jewish cultural tradition, brings universal human conditions to life"
1978,medicine,Werner Arber,for the discovery of restriction enzymes and their application to problems of molecular genetics
1978,medicine,Daniel Nathans,for the discovery of restriction enzymes and their application to problems of molecular genetics
1978,medicine,Hamilton O. Smith,for the discovery of restriction enzymes and their application to problems of molecular genetics
1978,peace,Anwar al-Sadat,
1978,peace,Menachem Begin,
1978,physics,Pyotr Kapitsa,
1978,physics,Arno Penzias,
1978,physics,Robert Woodrow Wilson,
1979,chemistry,Herbert C. Brown,"for their development of the use of boron- and phosphorus-containing compounds, respectively, into important reagents in organic synthesis"
1979,chemistry,Georg Wittig,"for their development of the use of boron- and phosphorus-containing compounds, respectively, into important reagents in organic synthesis"
1979,economics,Sir Arthur Lewis,for their pioneering research into economic development research with particular consideration of the problems of developing countries
1979,economics,Theodore W. Schultz,for their pioneering research into economic development research with particular consideration of the problems of developing countries
1979,literature,Odysseus Elytis,"for his poetry, which, against the background of Greek tradition, depicts with sensuous strength and intellectual clear-sightedness modern man's struggle for freedom and creativeness"
1979,medicine,Allan M. Cormack,for the development of computer assisted tomography
1979,medicine,Godfrey N. Hounsfield,for the development of computer assisted tomography
1979,peace,Mother Teresa,
1979,physics,Sheldon Glashow,"for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current"
1979,physics,Abdus Salam,"for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current"
1979,physics,Steven Weinberg,"for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current"
1980,chemistry,Paul Berg,
1980,chemistry,Walter Gilbert,
1980,chemistry,Frederick Sanger,
1980,economics,Lawrence R. Klein,for the creation of econometric models and the application to the analysis of economic fluctuations and economic policies
1980,literature,Czeslaw Milosz,who with uncompromising clear-sightedness voices man's exposed condition in a world of severe conflicts
1980,medicine,Baruj Benacerraf,for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
1980,medicine,Jean Dausset,for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
1980,medicine,George D. Snell,for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
1980,peace,Adolfo P&eacute;rez Esquivel,
1980,physics,James Cronin,for the discovery of violations of fundamental symmetry principles in the decay of neutral K-mesons
1980,physics,Val Fitch,for the discovery of violations of fundamental symmetry principles in the decay of neutral K-mesons
1981,chemistry,Kenichi Fukui,"for their theories, developed independently, concerning the course of chemical reactions"
1981,chemistry,Roald Hoffmann,"for their theories, developed independently, concerning the course of chemical reactions"
1981,economics,James Tobin,"for his analysis of financial markets and their relations to expenditure decisions, employment, production and prices"
1981,literature,Elias Canetti,"for writings marked by a broad outlook, a wealth of ideas and artistic power"
1981,medicine,David H. Hubel,
1981,medicine,Roger W. Sperry,
1981,medicine,Torsten N. Wiesel,
1981,peace,Office of the United Nations High Commissioner for Refugees,
1981,physics,Nicolaas Bloembergen,
1981,physics,Arthur L. Schawlow,
1981,physics,Kai M. Siegbahn,
1982,chemistry,Aaron Klug,for his development of crystallographic electron microscopy and his structural elucidation of biologically important nucleic acid-protein complexes
1982,economics,George J. Stigler,"for his seminal studies of industrial structures, functioning of markets and causes and effects of public regulation"
1982,literature,Gabriel Garc&iacute;a M&aacute;rquez,"for his novels and short stories, in which the fantastic and the realistic are combined in a richly composed world of imagination, reflecting a continent's life and conflicts"
1982,medicine,Sune K. Bergstr&ouml;m,for their discoveries concerning prostaglandins and related biologically active substances
1982,medicine,Bengt I. Samuelsson,for their discoveries concerning prostaglandins and related biologically active substances
1982,medicine,John R. Vane,for their discoveries concerning prostaglandins and related biologically active substances
1982,peace,Alfonso Garc&iacute;a Robles,
1982,peace,Alva Myrdal,
1982,physics,Kenneth G. Wilson,for his theory for critical phenomena in connection with phase transitions
1983,chemistry,Henry Taube,"for his work on the mechanisms of electron transfer reactions, especially in metal complexes"
1983,economics,Gerard Debreu,for having incorporated new analytical methods into economic theory and for his rigorous reformulation of the theory of general equilibrium
1983,literature,William Golding,"for his novels which, with the perspicuity of realistic narrative art and the diversity and universality of myth, illuminate the human condition in the world of today"
1983,medicine,Barbara McClintock,for her discovery of mobile genetic elements
1983,peace,Lech Walesa,
1983,physics,Subramanyan Chandrasekhar,
1983,physics,William A. Fowler,
1984,chemistry,Bruce Merrifield,for his development of methodology for chemical synthesis on a solid matrix
1984,economics,Richard Stone,for having made fundamental contributions to the development of systems of national accounts and hence greatly improved the basis for empirical economic analysis
1984,literature,Jaroslav Seifert,"for his poetry which endowed with freshness, sensuality and rich inventiveness provides a liberating image of the indomitable spirit and versatility of man"
1984,medicine,Niels K. Jerne,for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
1984,medicine,Georges J.F. K&ouml;hler,for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
1984,medicine,C&eacute;sar Milstein,for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
1984,peace,Desmond Tutu,
1984,physics,Carlo Rubbia,"for their decisive contributions to the large project, which led to the discovery of the field particles W and Z, communicators of weak interaction"
1984,physics,Simon van der Meer,"for their decisive contributions to the large project, which led to the discovery of the field particles W and Z, communicators of weak interaction"
1985,chemistry,Herbert A. Hauptman,for their outstanding achievements in the development of direct methods for the determination of crystal structures
1985,chemistry,Jerome Karle,for their outstanding achievements in the development of direct methods for the determination of crystal structures
1985,economics,Franco Modigliani,for his pioneering analyses of saving and of financial markets
1985,literature,Claude Simon,who in his novel combines the poet's and the painter's creativeness with a deepened awareness of time in the depiction of the human condition
1985,medicine,Michael S. Brown,for their discoveries concerning the regulation of cholesterol metabolism
1985,medicine,Joseph L. Goldstein,for their discoveries concerning the regulation of cholesterol metabolism
1985,peace,International Physicians for the Prevention of Nuclear War,
1985,physics,Klaus von Klitzing,for the discovery of the quantized Hall effect
1986,chemistry,Dudley R. Herschbach,for their contributions concerning the dynamics of chemical elementary processes
1986,chemistry,Yuan T. Lee,for their contributions concerning the dynamics of chemical elementary processes
1986,chemistry,John C. Polanyi,for their contributions concerning the dynamics of chemical elementary processes
1986,economics,James M. Buchanan Jr.,for his development of the contractual and constitutional bases for the theory of economic and political decision-making
1986,literature,Wole Soyinka,who in a wide cultural perspective and with poetic overtones fashions the drama of existence
1986,medicine,Stanley Cohen,for their discoveries of growth factors
1986,medicine,Rita Levi-Montalcini,for their discoveries of growth factors
1986,peace,Elie Wiesel,
1986,physics,Gerd Binnig,
1986,physics,Heinrich Rohrer,
1986,physics,Ernst Ruska,
1987,chemistry,Donald J. Cram,for their development and use of molecules with structure-specific interactions of high selectivity
1987,chemistry,Jean-Marie Lehn,for their development and use of molecules with structure-specific interactions of high selectivity
1987,chemistry,Charles J. Pedersen,for their development and use of molecules with structure-specific interactions of high selectivity
1987,economics,Robert M. Solow,for his contributions to the theory of economic growth
1987,literature,Joseph Brodsky,"for an all-embracing authorship, imbued with clarity of thought and poetic intensity"
1987,medicine,Susumu Tonegawa,for his discovery of the genetic principle for generation of antibody diversity
1987,peace,Oscar Arias S&aacute;nchez,"for his work for peace in Central America, efforts which led to the accord signed in Guatemala on August 7 this year"
1987,physics,J. Georg Bednorz,for their important break-through in the discovery of superconductivity in ceramic materials
1987,physics,K. Alex M&uuml;ller,for their important break-through in the discovery of superconductivity in ceramic materials
1988,chemistry,Johann Deisenhofer,for the determination of the three-dimensional structure of a photosynthetic reaction centre
1988,chemistry,Robert Huber,for the determination of the three-dimensional structure of a photosynthetic reaction centre
1988,chemistry,Hartmut Michel,for the determination of the three-dimensional structure of a photosynthetic reaction centre
1988,economics,Maurice Allais,for his pioneering contributions to the theory of markets and efficient utilization of resources
1988,literature,Naguib Mahfouz,"who, through works rich in nuance - now clear-sightedly realistic, now evocatively ambiguous - has formed an Arabian narrative art that applies to all mankind"
1988,medicine,Sir James W. Black,for their discoveries of important principles for drug treatment
1988,medicine,Gertrude B. Elion,for their discoveries of important principles for drug treatment
1988,medicine,George H. Hitchings,for their discoveries of important principles for drug treatment
1988,peace,United Nations Peacekeeping Forces,
1988,physics,Leon M. Lederman,for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
1988,physics,Melvin Schwartz,for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
1988,physics,Jack Steinberger,for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
1989,chemistry,Sidney Altman,for their discovery of catalytic properties of RNA
1989,chemistry,Thomas R. Cech,for their discovery of catalytic properties of RNA
1989,economics,Trygve Haavelmo,for his clarification of the probability theory foundations of econometrics and his analyses of simultaneous economic structures
1989,literature,Camilo Jos&eacute; Cela,"for a rich and intensive prose, which with restrained compassion forms a challenging vision of man's vulnerability"
1989,medicine,J. Michael Bishop,for their discovery of the cellular origin of retroviral oncogenes
1989,medicine,Harold E. Varmus,for their discovery of the cellular origin of retroviral oncogenes
1989,peace,The 14th Dalai Lama,
1989,physics,Hans G. Dehmelt,
1989,physics,Wolfgang Paul,
1989,physics,Norman F. Ramsey,
1990,chemistry,Elias James Corey,for his development of the theory and methodology of organic synthesis
1990,economics,Harry M. Markowitz,for their pioneering work in the theory of financial economics
1990,economics,Merton H. Miller,for their pioneering work in the theory of financial economics
1990,economics,William F. Sharpe,for their pioneering work in the theory of financial economics
1990,literature,Octavio Paz,"for impassioned writing with wide horizons, characterized by sensuous intelligence and humanistic integrity"
1990,medicine,Joseph E. Murray,for their discoveries concerning organ and cell transplantation in the treatment of human disease
1990,medicine,E. Donnall Thomas,for their discoveries concerning organ and cell transplantation in the treatment of human disease
1990,peace,Mikhail Gorbachev,for his leading role in the peace process which today characterizes important parts of the international community
1990,physics,Jerome I. Friedman,"for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics"
1990,physics,Henry W. Kendall,"for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics"
1990,physics,Richard E. Taylor,"for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics"
1991,chemistry,Richard R. Ernst,for his contributions to the development of the methodology of high resolution nuclear magnetic resonance (NMR) spectroscopy
1991,economics,Ronald H. Coase,for his discovery and clarification of the significance of transaction costs and property rights for the institutional structure and functioning of the economy
1991,literature,Nadine Gordimer,who through her magnificent epic writing has - in the words of Alfred Nobel - been of very great benefit to humanity
1991,medicine,Erwin Neher,for their discoveries concerning the function of single ion channels in cells
1991,medicine,Bert Sakmann,for their discoveries concerning the function of single ion channels in cells
1991,peace,Aung San Suu Kyi,for her non-violent struggle for democracy and human rights
1991,physics,Pierre-Gilles de Gennes,"for discovering that methods developed for studying order phenomena in simple systems can be generalized to more complex forms of matter, in particular to liquid crystals and polymers"
1992,chemistry,Rudolph A. Marcus,for his contributions to the theory of electron transfer reactions in chemical systems
1992,economics,Gary S. Becker,"for having extended the domain of microeconomic analysis to a wide range of human behaviour and interaction, including nonmarket behaviour"
1992,literature,Derek Walcott,"for a poetic oeuvre of great luminosity, sustained by a historical vision, the outcome of a multicultural commitment"
1992,medicine,Edmond H. Fischer,for their discoveries concerning reversible protein phosphorylation as a biological regulatory mechanism
1992,medicine,Edwin G. Krebs,for their discoveries concerning reversible protein phosphorylation as a biological regulatory mechanism
1992,peace,Rigoberta Mench&uacute; Tum,in recognition of her work for social justice and ethno-cultural reconciliation based on respect for the rights of indigenous peoples
1992,physics,Georges Charpak,"for his invention and development of particle detectors, in particular the multiwire proportional chamber"
1993,chemistry,Kary B. Mullis,for contributions to the developments of methods within DNA-based chemistry
1993,chemistry,Michael Smith,for contributions to the developments of methods within DNA-based chemistry
1993,economics,Robert W. Fogel,for having renewed research in economic history by applying economic theory and quantitative methods in order to explain economic and institutional change
1993,economics,Douglass C. North,for having renewed research in economic history by applying economic theory and quantitative methods in order to explain economic and institutional change
1993,literature,Toni Morrison,"who in novels characterized by visionary force and poetic import, gives life to an essential aspect of American reality"
1993,medicine,Richard J. Roberts,for their discoveries of split genes
1993,medicine,Phillip A. Sharp,for their discoveries of split genes
1993,peace,F.W. de Klerk,"for their work for the peaceful termination of the apartheid regime, and for laying the foundations for a new democratic South Africa"
1993,peace,Nelson Mandela,"for their work for the peaceful termination of the apartheid regime, and for laying the foundations for a new democratic South Africa"
1993,physics,Russell A. Hulse,"for the discovery of a new type of pulsar, a discovery that has opened up new possibilities for the study of gravitation"
1993,physics,Joseph H. Taylor Jr.,"for the discovery of a new type of pulsar, a discovery that has opened up new possibilities for the study of gravitation"
1994,chemistry,George A. Olah,for his contribution to carbocation chemistry
1994,economics,John C. Harsanyi,for their pioneering analysis of equilibria in the theory of non-cooperative games
1994,economics,John F. Nash Jr.,for their pioneering analysis of equilibria in the theory of non-cooperative games
1994,economics,Reinhard Selten,for their pioneering analysis of equilibria in the theory of non-cooperative games
1994,literature,Kenzaburo Oe,"who with poetic force creates an imagined world, where life and myth condense to form a disconcerting picture of the human predicament today"
1994,medicine,Alfred G. Gilman,for their discovery of G-proteins and the role of these proteins in signal transduction in cells
1994,medicine,Martin Rodbell,for their discovery of G-proteins and the role of these proteins in signal transduction in cells
1994,peace,Yasser Arafat,for their efforts to create peace in the Middle East
1994,peace,Shimon Peres,for their efforts to create peace in the Middle East
1994,peace,Yitzhak Rabin,for their efforts to create peace in the Middle East
1994,physics,Bertram N. Brockhouse,for pioneering contributions to the development of neutron scattering techniques for studies of condensed matter
1994,physics,Clifford G. Shull,for pioneering contributions to the development of neutron scattering techniques for studies of condensed matter
1995,chemistry,Paul J. Crutzen,"for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone"
1995,chemistry,Mario J. Molina,"for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone"
1995,chemistry,F. Sherwood Rowland,"for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone"
1995,economics,Robert E. Lucas Jr.,"for having developed and applied the hypothesis of rational expectations, and thereby having transformed macroeconomic analysis and deepened our understanding of economic policy"
1995,literature,Seamus Heaney,"for works of lyrical beauty and ethical depth, which exalt everyday miracles and the living past"
1995,medicine,Edward B. Lewis,for their discoveries concerning the genetic control of early embryonic development
1995,medicine,Christiane N&uuml;sslein-Volhard,for their discoveries concerning the genetic control of early embryonic development
1995,medicine,Eric F. Wieschaus,for their discoveries concerning the genetic control of early embryonic development
1995,peace,Pugwash Conferences on Science and World Affairs,"for their efforts to diminish the part played by nuclear arms in international politics and, in the longer run, to eliminate such arms"
1995,peace,Joseph Rotblat,"for their efforts to diminish the part played by nuclear arms in international politics and, in the longer run, to eliminate such arms"
1995,physics,Martin L. Perl,for pioneering experimental contributions to lepton physics
1995,physics,Frederick Reines,for pioneering experimental contributions to lepton physics
1996,chemistry,Robert F. Curl Jr.,for their discovery of fullerenes
1996,chemistry,Sir Harold Kroto,for their discovery of fullerenes
1996,chemistry,Richard E. Smalley,for their discovery of fullerenes
1996,economics,James A. Mirrlees,for their fundamental contributions to the economic theory of incentives under asymmetric information
1996,economics,William Vickrey,for their fundamental contributions to the economic theory of incentives under asymmetric information
1996,literature,Wislawa Szymborska,for poetry that with ironic precision allows the historical and biological context to come to light in fragments of human reality
1996,medicine,Peter C. Doherty,for their discoveries concerning the specificity of the cell mediated immune defence
1996,medicine,Rolf M. Zinkernagel,for their discoveries concerning the specificity of the cell mediated immune defence
1996,peace,Carlos Filipe Ximenes Belo,for their work towards a just and peaceful solution to the conflict in East Timor
1996,peace,Jos&eacute; Ramos-Horta,for their work towards a just and peaceful solution to the conflict in East Timor
1996,physics,David M. Lee,for their discovery of superfluidity in helium-3
1996,physics,Douglas D. Osheroff,for their discovery of superfluidity in helium-3
1996,physics,Robert C. Richardson,for their discovery of superfluidity in helium-3
1997,chemistry,Paul D. Boyer,
1997,chemistry,Jens C. Skou,
1997,chemistry,John E. Walker,
1997,economics,Robert C. Merton,for a new method to determine the value of derivatives
1997,economics,Myron S. Scholes,for a new method to determine the value of derivatives
1997,literature,Dario Fo,who emulates the jesters of the Middle Ages in scourging authority and upholding the dignity of the downtrodden
1997,medicine,Stanley B. Prusiner,for his discovery of Prions - a new biological principle of infection
1997,peace,International Campaign to Ban Landmines,for their work for the banning and clearing of anti-personnel mines
1997,peace,Jody Williams,for their work for the banning and clearing of anti-personnel mines
1997,physics,Steven Chu,for development of methods to cool and trap atoms with laser light
1997,physics,Claude Cohen-Tannoudji,for development of methods to cool and trap atoms with laser light
1997,physics,William D. Phillips,for development of methods to cool and trap atoms with laser light
1998,chemistry,Walter Kohn,
1998,chemistry,John Pople,
1998,economics,Amartya Sen,for his contributions to welfare economics
1998,literature,Jos&eacute; Saramago,"who with parables sustained by imagination, compassion and irony continually enables us once again to apprehend an elusory reality"
1998,medicine,Robert F. Furchgott,for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
1998,medicine,Louis J. Ignarro,for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
1998,medicine,Ferid Murad,for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
1998,peace,John Hume,for their efforts to find a peaceful solution to the conflict in Northern Ireland
1998,peace,David Trimble,for their efforts to find a peaceful solution to the conflict in Northern Ireland
1998,physics,Robert B. Laughlin,for their discovery of a new form of quantum fluid with fractionally charged excitations
1998,physics,Horst L. St&ouml;rmer,for their discovery of a new form of quantum fluid with fractionally charged excitations
1998,physics,Daniel C. Tsui,for their discovery of a new form of quantum fluid with fractionally charged excitations
1999,chemistry,Ahmed Zewail,for his studies of the transition states of chemical reactions using femtosecond spectroscopy
1999,economics,Robert A. Mundell,for his analysis of monetary and fiscal policy under different exchange rate regimes and his analysis of optimum currency areas
1999,literature,G&uuml;nter Grass,whose frolicsome black fables portray the forgotten face of history
1999,medicine,G&uuml;nter Blobel,for the discovery that proteins have intrinsic signals that govern their transport and localization in the cell
1999,peace,M&eacute;decins Sans Fronti&egrave;res,in recognition of the organization's pioneering humanitarian work on several continents
1999,physics,Gerardus 't Hooft,for elucidating the quantum structure of electroweak interactions in physics
1999,physics,Martinus J.G. Veltman,for elucidating the quantum structure of electroweak interactions in physics
2000,chemistry,Alan Heeger,for the discovery and development of conductive polymers
2000,chemistry,Alan G. MacDiarmid,for the discovery and development of conductive polymers
2000,chemistry,Hideki Shirakawa,for the discovery and development of conductive polymers
2000,economics,James J. Heckman,
2000,economics,Daniel L. McFadden,
2000,literature,Gao Xingjian,"for an &oelig;uvre of universal validity, bitter insights and linguistic ingenuity, which has opened new paths for the Chinese novel and drama"
2000,medicine,Arvid Carlsson,for their discoveries concerning signal transduction in the nervous system
2000,medicine,Paul Greengard,for their discoveries concerning signal transduction in the nervous system
2000,medicine,Eric R. Kandel,for their discoveries concerning signal transduction in the nervous system
2000,peace,Kim Dae-jung,"for his work for democracy and human rights in South Korea and in East Asia in general, and for peace and reconciliation with North Korea in particular"
2000,physics,Zhores I. Alferov,for basic work on information and communication technology
2000,physics,Jack S. Kilby,for basic work on information and communication technology
2000,physics,Herbert Kroemer,for basic work on information and communication technology
2001,chemistry,William S. Knowles,
2001,chemistry,Ryoji Noyori,
2001,chemistry,K. Barry Sharpless,
2001,economics,George A. Akerlof,for their analyses of markets with asymmetric information
2001,economics,A. Michael Spence,for their analyses of markets with asymmetric information
2001,economics,Joseph E. Stiglitz,for their analyses of markets with asymmetric information
2001,literature,V.S. Naipaul,for having united perceptive narrative and incorruptible scrutiny in works that compel us to see the presence of suppressed histories
2001,medicine,Leland H. Hartwell,for their discoveries of key regulators of the cell cycle
2001,medicine,Tim Hunt,for their discoveries of key regulators of the cell cycle
2001,medicine,Sir Paul Nurse,for their discoveries of key regulators of the cell cycle
2001,peace,United Nations,for their work for a better organized and more peaceful world
2001,peace,Kofi Annan,for their work for a better organized and more peaceful world
2001,physics,Eric A. Cornell,"for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates"
2001,physics,Wolfgang Ketterle,"for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates"
2001,physics,Carl E. Wieman,"for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates"
2002,chemistry,John B. Fenn,for the development of methods for identification and structure analyses of biological macromolecules
2002,chemistry,Koichi Tanaka,for the development of methods for identification and structure analyses of biological macromolecules
2002,chemistry,Kurt W&uuml;thrich,for the development of methods for identification and structure analyses of biological macromolecules
2002,economics,Daniel Kahneman,
2002,economics,Vernon L. Smith,
2002,literature,Imre Kert&eacute;sz,for writing that upholds the fragile experience of the individual against the barbaric arbitrariness of history
2002,medicine,Sydney Brenner,for their discoveries concerning 'genetic regulation of organ development and programmed cell death'
2002,medicine,H. Robert Horvitz,for their discoveries concerning 'genetic regulation of organ development and programmed cell death'
2002,medicine,John E. Sulston,for their discoveries concerning 'genetic regulation of organ development and programmed cell death'
2002,peace,Jimmy Carter,"for his decades of untiring effort to find peaceful solutions to international conflicts, to advance democracy and human rights, and to promote economic and social development"
2002,physics,Raymond Davis Jr.,
2002,physics,Riccardo Giacconi,
2002,physics,Masatoshi Koshiba,
2003,chemistry,Peter Agre,for discoveries concerning channels in cell membranes
2003,chemistry,Roderick MacKinnon,for discoveries concerning channels in cell membranes
2003,economics,Robert F. Engle III,
2003,economics,Clive W.J. Granger,
2003,literature,J.M. Coetzee,who in innumerable guises portrays the surprising involvement of the outsider
2003,medicine,Paul C. Lauterbur,for their discoveries concerning magnetic resonance imaging
2003,medicine,Sir Peter Mansfield,for their discoveries concerning magnetic resonance imaging
2003,peace,Shirin Ebadi,for her efforts for democracy and human rights. She has focused especially on the struggle for the rights of women and children.
2003,physics,Alexei A. Abrikosov,for pioneering contributions to the theory of superconductors and superfluids
2003,physics,Vitaly L. Ginzburg,for pioneering contributions to the theory of superconductors and superfluids
2003,physics,Anthony J. Leggett,for pioneering contributions to the theory of superconductors and superfluids
2004,chemistry,Aaron Ciechanover,for the discovery of ubiquitin-mediated protein degradation
2004,chemistry,Avram Hershko,for the discovery of ubiquitin-mediated protein degradation
2004,chemistry,Irwin Rose,for the discovery of ubiquitin-mediated protein degradation
2004,economics,Finn E. Kydland,for their contributions to dynamic macroeconomics: the time consistency of economic policy and the driving forces behind business cycles
2004,economics,Edward C. Prescott,for their contributions to dynamic macroeconomics: the time consistency of economic policy and the driving forces behind business cycles
2004,literature,Elfriede Jelinek,for her musical flow of voices and counter-voices in novels and plays that with extraordinary linguistic zeal reveal the absurdity of society's clich&eacute;s and their subjugating power
2004,medicine,Richard Axel,for their discoveries of odorant receptors and the organization of the olfactory system
2004,medicine,Linda B. Buck,for their discoveries of odorant receptors and the organization of the olfactory system
2004,peace,Wangari Maathai,"for her contribution to sustainable development, democracy and peace"
2004,physics,David J. Gross,for the discovery of asymptotic freedom in the theory of the strong interaction
2004,physics,H. David Politzer,for the discovery of asymptotic freedom in the theory of the strong interaction
2004,physics,Frank Wilczek,for the discovery of asymptotic freedom in the theory of the strong interaction
2005,chemistry,Yves Chauvin,for the development of the metathesis method in organic synthesis
2005,chemistry,Robert H. Grubbs,for the development of the metathesis method in organic synthesis
2005,chemistry,Richard R. Schrock,for the development of the metathesis method in organic synthesis
2005,economics,Robert J. Aumann,for having enhanced our understanding of conflict and cooperation through game-theory analysis
2005,economics,Thomas C. Schelling,for having enhanced our understanding of conflict and cooperation through game-theory analysis
2005,literature,Harold Pinter,who in his plays uncovers the precipice under everyday prattle and forces entry into oppression's closed rooms
2005,medicine,Barry J. Marshall,for their discovery of the bacterium <i>Helicobacter pylori</i> and its role in gastritis and peptic ulcer disease
2005,medicine,J. Robin Warren,for their discovery of the bacterium <i>Helicobacter pylori</i> and its role in gastritis and peptic ulcer disease
2005,peace,International Atomic Energy Agency,for their efforts to prevent nuclear energy from being used for military purposes and to ensure that nuclear energy for peaceful purposes is used in the safest possible way
2005,peace,Mohamed ElBaradei,for their efforts to prevent nuclear energy from being used for military purposes and to ensure that nuclear energy for peaceful purposes is used in the safest possible way
2005,physics,Roy J. Glauber,
2005,physics,John L. Hall,
2005,physics,Theodor W. H&auml;nsch,
2006,chemistry,Roger D. Kornberg,for his studies of the molecular basis of eukaryotic transcription
2006,economics,Edmund S. Phelps,for his analysis of intertemporal tradeoffs in macroeconomic policy
2006,literature,Orhan Pamuk,who in the quest for the melancholic soul of his native city has discovered new symbols for the clash and interlacing of cultures
2006,medicine,Andrew Z. Fire,for their discovery of RNA interference - gene silencing by double-stranded RNA
2006,medicine,Craig C. Mello,for their discovery of RNA interference - gene silencing by double-stranded RNA
2006,peace,Grameen Bank,for their efforts to create economic and social development from below
2006,peace,Muhammad Yunus,for their efforts to create economic and social development from below
2006,physics,John C. Mather,for their discovery of the blackbody form and anisotropy of the cosmic microwave background radiation
2006,physics,George F. Smoot,for their discovery of the blackbody form and anisotropy of the cosmic microwave background radiation
2007,chemistry,Gerhard Ertl,for his studies of chemical processes on solid surfaces
2007,economics,Leonid Hurwicz,for having laid the foundations of mechanism design theory
2007,economics,Eric S. Maskin,for having laid the foundations of mechanism design theory
2007,economics,Roger B. Myerson,for having laid the foundations of mechanism design theory
2007,literature,Doris Lessing,"that epicist of the female experience, who with scepticism, fire and visionary power has subjected a divided civilisation to scrutiny"
2007,medicine,Mario R. Capecchi,for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
2007,medicine,Sir Martin J. Evans,for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
2007,medicine,Oliver Smithies,for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
2007,peace,Intergovernmental Panel on Climate Change (IPCC),"for their efforts to build up and disseminate greater knowledge about man-made climate change, and to lay the foundations for the measures that are needed to counteract such change"
2007,peace,Albert Arnold (Al) Gore Jr.,"for their efforts to build up and disseminate greater knowledge about man-made climate change, and to lay the foundations for the measures that are needed to counteract such change"
2007,physics,Albert Fert,for the discovery of Giant Magnetoresistance
2007,physics,Peter Gr&Atilde;&frac14;nberg,for the discovery of Giant Magnetoresistance
1 year discipline winner desc
2 1901 chemistry Jacobus H. van 't Hoff in recognition of the extraordinary services he has rendered by the discovery of the laws of chemical dynamics and osmotic pressure in solutions
3 1901 literature Sully Prudhomme in special recognition of his poetic composition, which gives evidence of lofty idealism, artistic perfection and a rare combination of the qualities of both heart and intellect
4 1901 medicine Emil von Behring for his work on serum therapy, especially its application against diphtheria, by which he has opened a new road in the domain of medical science and thereby placed in the hands of the physician a victorious weapon against illness and deaths
5 1901 peace Henry Dunant
6 1901 peace Fr&eacute;d&eacute;ric Passy
7 1901 physics Wilhelm Conrad R&ouml;ntgen in recognition of the extraordinary services he has rendered by the discovery of the remarkable rays subsequently named after him
8 1902 chemistry Emil Fischer in recognition of the extraordinary services he has rendered by his work on sugar and purine syntheses
9 1902 literature Theodor Mommsen the greatest living master of the art of historical writing, with special reference to his monumental work, <i>A history of Rome</i>
10 1902 medicine Ronald Ross for his work on malaria, by which he has shown how it enters the organism and thereby has laid the foundation for successful research on this disease and methods of combating it
11 1902 peace &Eacute;lie Ducommun
12 1902 peace Albert Gobat
13 1902 physics Hendrik A. Lorentz in recognition of the extraordinary service they rendered by their researches into the influence of magnetism upon radiation phenomena
14 1902 physics Pieter Zeeman in recognition of the extraordinary service they rendered by their researches into the influence of magnetism upon radiation phenomena
15 1903 chemistry Svante Arrhenius in recognition of the extraordinary services he has rendered to the advancement of chemistry by his electrolytic theory of dissociation
16 1903 literature Bj&oslash;rnstjerne Bj&oslash;rnson as a tribute to his noble, magnificent and versatile poetry, which has always been distinguished by both the freshness of its inspiration and the rare purity of its spirit
17 1903 medicine Niels Ryberg Finsen in recognition of his contribution to the treatment of diseases, especially lupus vulgaris, with concentrated light radiation, whereby he has opened a new avenue for medical science
18 1903 peace Randal Cremer
19 1903 physics Henri Becquerel
20 1903 physics Pierre Curie
21 1903 physics Marie Curie
22 1904 chemistry Sir William Ramsay in recognition of his services in the discovery of the inert gaseous elements in air, and his determination of their place in the periodic system
23 1904 literature Jos&eacute; Echegaray
24 1904 literature Fr&eacute;d&eacute;ric Mistral
25 1904 medicine Ivan Pavlov in recognition of his work on the physiology of digestion, through which knowledge on vital aspects of the subject has been transformed and enlarged
26 1904 peace Institute of International Law
27 1904 physics Lord Rayleigh for his investigations of the densities of the most important gases and for his discovery of argon in connection with these studies
28 1905 chemistry Adolf von Baeyer in recognition of his services in the advancement of organic chemistry and the chemical industry, through his work on organic dyes and hydroaromatic compounds
29 1905 literature Henryk Sienkiewicz because of his outstanding merits as an epic writer
30 1905 medicine Robert Koch for his investigations and discoveries in relation to tuberculosis
31 1905 peace Bertha von Suttner
32 1905 physics Philipp Lenard for his work on cathode rays
33 1906 chemistry Henri Moissan in recognition of the great services rendered by him in his investigation and isolation of the element fluorine, and for the adoption in the service of science of the electric furnace called after him
34 1906 literature Giosu&egrave; Carducci not only in consideration of his deep learning and critical research, but above all as a tribute to the creative energy, freshness of style, and lyrical force which characterize his poetic masterpieces
35 1906 medicine Camillo Golgi in recognition of their work on the structure of the nervous system
36 1906 medicine Santiago Ram&oacute;n y Cajal in recognition of their work on the structure of the nervous system
37 1906 peace Theodore Roosevelt
38 1906 physics J.J. Thomson in recognition of the great merits of his theoretical and experimental investigations on the conduction of electricity by gases
39 1907 chemistry Eduard Buchner for his biochemical researches and his discovery of cell-free fermentation
40 1907 literature Rudyard Kipling in consideration of the power of observation, originality of imagination, virility of ideas and remarkable talent for narration which characterize the creations of this world-famous author
41 1907 medicine Alphonse Laveran in recognition of his work on the role played by protozoa in causing diseases
42 1907 peace Ernesto Teodoro Moneta
43 1907 peace Louis Renault
44 1907 physics Albert A. Michelson for his optical precision instruments and the spectroscopic and metrological investigations carried out with their aid
45 1908 chemistry Ernest Rutherford for his investigations into the disintegration of the elements, and the chemistry of radioactive substances
46 1908 literature Rudolf Eucken in recognition of his earnest search for truth, his penetrating power of thought, his wide range of vision, and the warmth and strength in presentation with which in his numerous works he has vindicated and developed an idealistic philosophy of life
47 1908 medicine Paul Ehrlich in recognition of their work on immunity
48 1908 medicine Ilya Mechnikov in recognition of their work on immunity
49 1908 peace Klas Pontus Arnoldson
50 1908 peace Fredrik Bajer
51 1908 physics Gabriel Lippmann for his method of reproducing colours photographically based on the phenomenon of interference
52 1909 chemistry Wilhelm Ostwald in recognition of his work on catalysis and for his investigations into the fundamental principles governing chemical equilibria and rates of reaction
53 1909 literature Selma Lagerl&ouml;f in appreciation of the lofty idealism, vivid imagination and spiritual perception that characterize her writings
54 1909 medicine Theodor Kocher for his work on the physiology, pathology and surgery of the thyroid gland
55 1909 peace Auguste Beernaert
56 1909 peace Paul Henri d'Estournelles de Constant
57 1909 physics Ferdinand Braun in recognition of their contributions to the development of wireless telegraphy
58 1909 physics Guglielmo Marconi in recognition of their contributions to the development of wireless telegraphy
59 1910 chemistry Otto Wallach in recognition of his services to organic chemistry and the chemical industry by his pioneer work in the field of alicyclic compounds
60 1910 literature Paul Heyse as a tribute to the consummate artistry, permeated with idealism, which he has demonstrated during his long productive career as a lyric poet, dramatist, novelist and writer of world-renowned short stories
61 1910 medicine Albrecht Kossel in recognition of the contributions to our knowledge of cell chemistry made through his work on proteins, including the nucleic substances
62 1910 peace Permanent International Peace Bureau
63 1910 physics Johannes Diderik van der Waals for his work on the equation of state for gases and liquids
64 1911 chemistry Marie Curie in recognition of her services to the advancement of chemistry by the discovery of the elements radium and polonium, by the isolation of radium and the study of the nature and compounds of this remarkable element
65 1911 literature Maurice Maeterlinck in appreciation of his many-sided literary activities, and especially of his dramatic works, which are distinguished by a wealth of imagination and by a poetic fancy, which reveals, sometimes in the guise of a fairy tale, a deep inspiration, while in a mysterious way they appeal to the readers' own feelings and stimulate their imaginations
66 1911 medicine Allvar Gullstrand for his work on the dioptrics of the eye
67 1911 peace Tobias Asser
68 1911 peace Alfred Fried
69 1911 physics Wilhelm Wien for his discoveries regarding the laws governing the radiation of heat
70 1912 chemistry Victor Grignard
71 1912 chemistry Paul Sabatier
72 1912 literature Gerhart Hauptmann primarily in recognition of his fruitful, varied and outstanding production in the realm of dramatic art
73 1912 medicine Alexis Carrel in recognition of his work on vascular suture and the transplantation of blood vessels and organs
74 1912 peace Elihu Root
75 1912 physics Gustaf Dal&eacute;n for his invention of automatic regulators for use in conjunction with gas accumulators for illuminating lighthouses and buoys
76 1913 chemistry Alfred Werner in recognition of his work on the linkage of atoms in molecules by which he has thrown new light on earlier investigations and opened up new fields of research especially in inorganic chemistry
77 1913 literature Rabindranath Tagore because of his profoundly sensitive, fresh and beautiful verse, by which, with consummate skill, he has made his poetic thought, expressed in his own English words, a part of the literature of the West
78 1913 medicine Charles Richet in recognition of his work on anaphylaxis
79 1913 peace Henri La Fontaine
80 1913 physics Heike Kamerlingh Onnes for his investigations on the properties of matter at low temperatures which led, inter alia, to the production of liquid helium
81 1914 chemistry Theodore W. Richards in recognition of his accurate determinations of the atomic weight of a large number of chemical elements
82 1914 literature No Prize was Awarded
83 1914 medicine Robert B&aacute;r&aacute;ny for his work on the physiology and pathology of the vestibular apparatus
84 1914 peace No Prize was Awarded
85 1914 physics Max von Laue for his discovery of the diffraction of X-rays by crystals
86 1915 chemistry Richard Willst&auml;tter for his researches on plant pigments, especially chlorophyll
87 1915 literature Romain Rolland as a tribute to the lofty idealism of his literary production and to the sympathy and love of truth with which he has described different types of human beings
88 1915 medicine No Prize was Awarded
89 1915 peace No Prize was Awarded
90 1915 physics William Bragg for their services in the analysis of crystal structure by means of X-rays
91 1915 physics Lawrence Bragg for their services in the analysis of crystal structure by means of X-rays
92 1916 chemistry No Prize was Awarded
93 1916 literature Verner von Heidenstam in recognition of his significance as the leading representative of a new era in our literature
94 1916 medicine No Prize was Awarded
95 1916 peace No Prize was Awarded
96 1916 physics No Prize was Awarded
97 1917 chemistry No Prize was Awarded
98 1917 literature Karl Gjellerup
99 1917 literature Henrik Pontoppidan
100 1917 medicine No Prize was Awarded
101 1917 peace International Committee of the Red Cross
102 1917 physics Charles Glover Barkla for his discovery of the characteristic R&ouml;ntgen radiation of the elements
103 1918 chemistry Fritz Haber for the synthesis of ammonia from its elements
104 1918 literature No Prize was Awarded
105 1918 medicine No Prize was Awarded
106 1918 peace No Prize was Awarded
107 1918 physics Max Planck in recognition of the services he rendered to the advancement of Physics by his discovery of energy quanta
108 1919 chemistry No Prize was Awarded
109 1919 literature Carl Spitteler in special appreciation of his epic, <i>Olympian Spring</i>
110 1919 medicine Jules Bordet for his discoveries relating to immunity
111 1919 peace Woodrow Wilson
112 1919 physics Johannes Stark for his discovery of the Doppler effect in canal rays and the splitting of spectral lines in electric fields
113 1920 chemistry Walther Nernst in recognition of his work in thermochemistry
114 1920 literature Knut Hamsun for his monumental work, <i>Growth of the Soil</i>
115 1920 medicine August Krogh for his discovery of the capillary motor regulating mechanism
116 1920 peace L&eacute;on Bourgeois
117 1920 physics Charles Edouard Guillaume in recognition of the service he has rendered to precision measurements in Physics by his discovery of anomalies in nickel steel alloys
118 1921 chemistry Frederick Soddy for his contributions to our knowledge of the chemistry of radioactive substances, and his investigations into the origin and nature of isotopes
119 1921 literature Anatole France in recognition of his brilliant literary achievements, characterized as they are by a nobility of style, a profound human sympathy, grace, and a true Gallic temperament
120 1921 medicine No Prize was Awarded
121 1921 peace Hjalmar Branting
122 1921 peace Christian Lange
123 1921 physics Albert Einstein for his services to Theoretical Physics, and especially for his discovery of the law of the photoelectric effect
124 1922 chemistry Francis W. Aston for his discovery, by means of his mass spectrograph, of isotopes, in a large number of non-radioactive elements, and for his enunciation of the whole-number rule
125 1922 literature Jacinto Benavente for the happy manner in which he has continued the illustrious traditions of the Spanish drama
126 1922 medicine Archibald V. Hill
127 1922 medicine Otto Meyerhof
128 1922 peace Fridtjof Nansen
129 1922 physics Niels Bohr for his services in the investigation of the structure of atoms and of the radiation emanating from them
130 1923 chemistry Fritz Pregl for his invention of the method of micro-analysis of organic substances
131 1923 literature William Butler Yeats for his always inspired poetry, which in a highly artistic form gives expression to the spirit of a whole nation
132 1923 medicine Frederick G. Banting for the discovery of insulin
133 1923 medicine John Macleod for the discovery of insulin
134 1923 peace No Prize was Awarded
135 1923 physics Robert A. Millikan for his work on the elementary charge of electricity and on the photoelectric effect
136 1924 chemistry No Prize was Awarded
137 1924 literature Wladyslaw Reymont for his great national epic, <i>The Peasants</i>
138 1924 medicine Willem Einthoven for his discovery of the mechanism of the electrocardiogram
139 1924 peace No Prize was Awarded
140 1924 physics Manne Siegbahn for his discoveries and research in the field of X-ray spectroscopy
141 1925 chemistry Richard Zsigmondy for his demonstration of the heterogenous nature of colloid solutions and for the methods he used, which have since become fundamental in modern colloid chemistry
142 1925 literature George Bernard Shaw for his work which is marked by both idealism and humanity, its stimulating satire often being infused with a singular poetic beauty
143 1925 medicine No Prize was Awarded
144 1925 peace Sir Austen Chamberlain
145 1925 peace Charles G. Dawes
146 1925 physics James Franck for their discovery of the laws governing the impact of an electron upon an atom
147 1925 physics Gustav Hertz for their discovery of the laws governing the impact of an electron upon an atom
148 1926 chemistry The Svedberg for his work on disperse systems
149 1926 literature Grazia Deledda for her idealistically inspired writings which with plastic clarity picture the life on her native island and with depth and sympathy deal with human problems in general
150 1926 medicine Johannes Fibiger for his discovery of the Spiroptera carcinoma
151 1926 peace Aristide Briand
152 1926 peace Gustav Stresemann
153 1926 physics Jean Baptiste Perrin for his work on the discontinuous structure of matter, and especially for his discovery of sedimentation equilibrium
154 1927 chemistry Heinrich Wieland for his investigations of the constitution of the bile acids and related substances
155 1927 literature Henri Bergson in recognition of his rich and vitalizing ideas and the brillant skill with which they have been presented
156 1927 medicine Julius Wagner-Jauregg for his discovery of the therapeutic value of malaria inoculation in the treatment of dementia paralytica
157 1927 peace Ferdinand Buisson
158 1927 peace Ludwig Quidde
159 1927 physics Arthur H. Compton
160 1927 physics C.T.R. Wilson
161 1928 chemistry Adolf Windaus for the services rendered through his research into the constitution of the sterols and their connection with the vitamins
162 1928 literature Sigrid Undset principially for her powerful descriptions of Northern life during the Middle Ages
163 1928 medicine Charles Nicolle for his work on typhus
164 1928 peace No Prize was Awarded
165 1928 physics Owen Willans Richardson for his work on the thermionic phenomenon and especially for the discovery of the law named after him
166 1929 chemistry Arthur Harden for their investigations on the fermentation of sugar and fermentative enzymes
167 1929 chemistry Hans von Euler-Chelpin for their investigations on the fermentation of sugar and fermentative enzymes
168 1929 literature Thomas Mann principally for his great novel, <i>Buddenbrooks</i>, which has won steadily increased recognition as one of the classic works of contemporary literature
169 1929 medicine Christiaan Eijkman
170 1929 medicine Sir Frederick Hopkins
171 1929 peace Frank B. Kellogg
172 1929 physics Louis de Broglie for his discovery of the wave nature of electrons
173 1930 chemistry Hans Fischer for his researches into the constitution of haemin and chlorophyll and especially for his synthesis of haemin
174 1930 literature Sinclair Lewis for his vigorous and graphic art of description and his ability to create, with wit and humour, new types of characters
175 1930 medicine Karl Landsteiner for his discovery of human blood groups
176 1930 peace Nathan S&ouml;derblom
177 1930 physics Venkata Raman for his work on the scattering of light and for the discovery of the effect named after him
178 1931 chemistry Friedrich Bergius in recognition of their contributions to the invention and development of chemical high pressure methods
179 1931 chemistry Carl Bosch in recognition of their contributions to the invention and development of chemical high pressure methods
180 1931 literature Erik Axel Karlfeldt The poetry of Erik Axel Karlfeldt
181 1931 medicine Otto Warburg for his discovery of the nature and mode of action of the respiratory enzyme
182 1931 peace Jane Addams
183 1931 peace Nicholas Murray Butler
184 1931 physics No Prize was Awarded
185 1932 chemistry Irving Langmuir for his discoveries and investigations in surface chemistry
186 1932 literature John Galsworthy for his distinguished art of narration which takes its highest form in <i>The Forsyte Saga</i>
187 1932 medicine Edgar Adrian for their discoveries regarding the functions of neurons
188 1932 medicine Sir Charles Sherrington for their discoveries regarding the functions of neurons
189 1932 peace No Prize was Awarded
190 1932 physics Werner Heisenberg for the creation of quantum mechanics, the application of which has, inter alia, led to the discovery of the allotropic forms of hydrogen
191 1933 chemistry No Prize was Awarded
192 1933 literature Ivan Bunin for the strict artistry with which he has carried on the classical Russian traditions in prose writing
193 1933 medicine Thomas H. Morgan for his discoveries concerning the role played by the chromosome in heredity
194 1933 peace Sir Norman Angell
195 1933 physics Paul A.M. Dirac for the discovery of new productive forms of atomic theory
196 1933 physics Erwin Schr&ouml;dinger for the discovery of new productive forms of atomic theory
197 1934 chemistry Harold C. Urey for his discovery of heavy hydrogen
198 1934 literature Luigi Pirandello for his bold and ingenious revival of dramatic and scenic art
199 1934 medicine George R. Minot for their discoveries concerning liver therapy in cases of anaemia
200 1934 medicine William P. Murphy for their discoveries concerning liver therapy in cases of anaemia
201 1934 medicine George H. Whipple for their discoveries concerning liver therapy in cases of anaemia
202 1934 peace Arthur Henderson
203 1934 physics No Prize was Awarded
204 1935 chemistry Fr&eacute;d&eacute;ric Joliot in recognition of their synthesis of new radioactive elements
205 1935 chemistry Ir&egrave;ne Joliot-Curie in recognition of their synthesis of new radioactive elements
206 1935 literature No Prize was Awarded
207 1935 medicine Hans Spemann for his discovery of the organizer effect in embryonic development
208 1935 peace Carl von Ossietzky
209 1935 physics James Chadwick for the discovery of the neutron
210 1936 chemistry Peter Debye for his contributions to our knowledge of molecular structure through his investigations on dipole moments and on the diffraction of X-rays and electrons in gases
211 1936 literature Eugene O'Neill for the power, honesty and deep-felt emotions of his dramatic works, which embody an original concept of tragedy
212 1936 medicine Sir Henry Dale for their discoveries relating to chemical transmission of nerve impulses
213 1936 medicine Otto Loewi for their discoveries relating to chemical transmission of nerve impulses
214 1936 peace Carlos Saavedra Lamas
215 1936 physics Carl D. Anderson
216 1936 physics Victor F. Hess
217 1937 chemistry Norman Haworth
218 1937 chemistry Paul Karrer
219 1937 literature Roger Martin du Gard for the artistic power and truth with which he has depicted human conflict as well as some fundamental aspects of contemporary life in his novel-cycle <i>Les Thibault</i>
220 1937 medicine Albert Szent-Gy&ouml;rgyi for his discoveries in connection with the biological combustion processes, with special reference to vitamin C and the catalysis of fumaric acid
221 1937 peace Robert Cecil
222 1937 physics Clinton Davisson for their experimental discovery of the diffraction of electrons by crystals
223 1937 physics George Paget Thomson for their experimental discovery of the diffraction of electrons by crystals
224 1938 chemistry Richard Kuhn for his work on carotenoids and vitamins
225 1938 literature Pearl Buck for her rich and truly epic descriptions of peasant life in China and for her biographical masterpieces
226 1938 medicine Corneille Heymans for the discovery of the role played by the sinus and aortic mechanisms in the regulation of respiration
227 1938 peace Nansen International Office for Refugees
228 1938 physics Enrico Fermi for his demonstrations of the existence of new radioactive elements produced by neutron irradiation, and for his related discovery of nuclear reactions brought about by slow neutrons
229 1939 chemistry Adolf Butenandt
230 1939 chemistry Leopold Ruzicka
231 1939 literature Frans Eemil Sillanp&auml;&auml; for his deep understanding of his country's peasantry and the exquisite art with which he has portrayed their way of life and their relationship with Nature
232 1939 medicine Gerhard Domagk for the discovery of the antibacterial effects of prontosil
233 1939 peace No Prize was Awarded
234 1939 physics Ernest Lawrence for the invention and development of the cyclotron and for results obtained with it, especially with regard to artificial radioactive elements
235 1940 chemistry No Prize was Awarded
236 1940 literature No Prize was Awarded
237 1940 medicine No Prize was Awarded
238 1940 peace No Prize was Awarded
239 1940 physics No Prize was Awarded
240 1941 chemistry No Prize was Awarded
241 1941 literature No Prize was Awarded
242 1941 medicine No Prize was Awarded
243 1941 peace No Prize was Awarded
244 1941 physics No Prize was Awarded
245 1942 chemistry No Prize was Awarded
246 1942 literature No Prize was Awarded
247 1942 medicine No Prize was Awarded
248 1942 peace No Prize was Awarded
249 1942 physics No Prize was Awarded
250 1943 chemistry George de Hevesy for his work on the use of isotopes as tracers in the study of chemical processes
251 1943 literature No Prize was Awarded
252 1943 medicine Henrik Dam
253 1943 medicine Edward A. Doisy
254 1943 peace No Prize was Awarded
255 1943 physics Otto Stern for his contribution to the development of the molecular ray method and his discovery of the magnetic moment of the proton
256 1944 chemistry Otto Hahn for his discovery of the fission of heavy nuclei
257 1944 literature Johannes V. Jensen for the rare strength and fertility of his poetic imagination with which is combined an intellectual curiosity of wide scope and a bold, freshly creative style
258 1944 medicine Joseph Erlanger for their discoveries relating to the highly differentiated functions of single nerve fibres
259 1944 medicine Herbert S. Gasser for their discoveries relating to the highly differentiated functions of single nerve fibres
260 1944 peace International Committee of the Red Cross
261 1944 physics Isidor Isaac Rabi for his resonance method for recording the magnetic properties of atomic nuclei
262 1945 chemistry Artturi Virtanen for his research and inventions in agricultural and nutrition chemistry, especially for his fodder preservation method
263 1945 literature Gabriela Mistral for her lyric poetry which, inspired by powerful emotions, has made her name a symbol of the idealistic aspirations of the entire Latin American world
264 1945 medicine Ernst B. Chain for the discovery of penicillin and its curative effect in various infectious diseases
265 1945 medicine Sir Alexander Fleming for the discovery of penicillin and its curative effect in various infectious diseases
266 1945 medicine Sir Howard Florey for the discovery of penicillin and its curative effect in various infectious diseases
267 1945 peace Cordell Hull
268 1945 physics Wolfgang Pauli for the discovery of the Exclusion Principle, also called the Pauli Principle
269 1946 chemistry John H. Northrop
270 1946 chemistry Wendell M. Stanley
271 1946 chemistry James B. Sumner
272 1946 literature Hermann Hesse for his inspired writings which, while growing in boldness and penetration, exemplify the classical humanitarian ideals and high qualities of style
273 1946 medicine Hermann J. Muller for the discovery of the production of mutations by means of X-ray irradiation
274 1946 peace Emily Greene Balch
275 1946 peace John R. Mott
276 1946 physics Percy W. Bridgman for the invention of an apparatus to produce extremely high pressures, and for the discoveries he made therewith in the field of high pressure physics
277 1947 chemistry Sir Robert Robinson for his investigations on plant products of biological importance, especially the alkaloids
278 1947 literature Andr&eacute; Gide for his comprehensive and artistically significant writings, in which human problems and conditions have been presented with a fearless love of truth and keen psychological insight
279 1947 medicine Carl Cori
280 1947 medicine Gerty Cori
281 1947 medicine Bernardo Houssay
282 1947 peace Friends Service Council
283 1947 peace American Friends Service Committee
284 1947 physics Edward V. Appleton for his investigations of the physics of the upper atmosphere especially for the discovery of the so-called Appleton layer
285 1948 chemistry Arne Tiselius for his research on electrophoresis and adsorption analysis, especially for his discoveries concerning the complex nature of the serum proteins
286 1948 literature T.S. Eliot for his outstanding, pioneer contribution to present-day poetry
287 1948 medicine Paul M&uuml;ller for his discovery of the high efficiency of DDT as a contact poison against several arthropods
288 1948 peace No Prize was Awarded
289 1948 physics Patrick M.S. Blackett for his development of the Wilson cloud chamber method, and his discoveries therewith in the fields of nuclear physics and cosmic radiation
290 1949 chemistry William F. Giauque for his contributions in the field of chemical thermodynamics, particularly concerning the behaviour of substances at extremely low temperatures
291 1949 literature William Faulkner for his powerful and artistically unique contribution to the modern American novel
292 1949 medicine Walter Hess
293 1949 medicine Egas Moniz
294 1949 peace Lord Boyd Orr
295 1949 physics Hideki Yukawa for his prediction of the existence of mesons on the basis of theoretical work on nuclear forces
296 1950 chemistry Kurt Alder for their discovery and development of the diene synthesis
297 1950 chemistry Otto Diels for their discovery and development of the diene synthesis
298 1950 literature Bertrand Russell in recognition of his varied and significant writings in which he champions humanitarian ideals and freedom of thought
299 1950 medicine Philip S. Hench for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects
300 1950 medicine Edward C. Kendall for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects
301 1950 medicine Tadeus Reichstein for their discoveries relating to the hormones of the adrenal cortex, their structure and biological effects
302 1950 peace Ralph Bunche
303 1950 physics Cecil Powell for his development of the photographic method of studying nuclear processes and his discoveries regarding mesons made with this method
304 1951 chemistry Edwin M. McMillan for their discoveries in the chemistry of the transuranium elements
305 1951 chemistry Glenn T. Seaborg for their discoveries in the chemistry of the transuranium elements
306 1951 literature P&auml;r Lagerkvist for the artistic vigour and true independence of mind with which he endeavours in his poetry to find answers to the eternal questions confronting mankind
307 1951 medicine Max Theiler for his discoveries concerning yellow fever and how to combat it
308 1951 peace L&eacute;on Jouhaux
309 1951 physics John Cockcroft for their pioneer work on the transmutation of atomic nuclei by artificially accelerated atomic particles
310 1951 physics Ernest T.S. Walton for their pioneer work on the transmutation of atomic nuclei by artificially accelerated atomic particles
311 1952 chemistry Archer J.P. Martin for their invention of partition chromatography
312 1952 chemistry Richard L.M. Synge for their invention of partition chromatography
313 1952 literature Fran&ccedil;ois Mauriac for the deep spiritual insight and the artistic intensity with which he has in his novels penetrated the drama of human life
314 1952 medicine Selman A. Waksman for his discovery of streptomycin, the first antibiotic effective against tuberculosis
315 1952 peace Albert Schweitzer
316 1952 physics Felix Bloch for their development of new methods for nuclear magnetic precision measurements and discoveries in connection therewith
317 1952 physics E. M. Purcell for their development of new methods for nuclear magnetic precision measurements and discoveries in connection therewith
318 1953 chemistry Hermann Staudinger for his discoveries in the field of macromolecular chemistry
319 1953 literature Winston Churchill for his mastery of historical and biographical description as well as for brilliant oratory in defending exalted human values
320 1953 medicine Hans Krebs
321 1953 medicine Fritz Lipmann
322 1953 peace George C. Marshall
323 1953 physics Frits Zernike for his demonstration of the phase contrast method, especially for his invention of the phase contrast microscope
324 1954 chemistry Linus Pauling for his research into the nature of the chemical bond and its application to the elucidation of the structure of complex substances
325 1954 literature Ernest Hemingway for his mastery of the art of narrative, most recently demonstrated in <i>The Old Man and the Sea,</i> and for the influence that he has exerted on contemporary style
326 1954 medicine John F. Enders for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
327 1954 medicine Frederick C. Robbins for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
328 1954 medicine Thomas H. Weller for their discovery of the ability of poliomyelitis viruses to grow in cultures of various types of tissue
329 1954 peace Office of the United Nations High Commissioner for Refugees
330 1954 physics Max Born
331 1954 physics Walther Bothe
332 1955 chemistry Vincent du Vigneaud for his work on biochemically important sulphur compounds, especially for the first synthesis of a polypeptide hormone
333 1955 literature Halld&oacute;r Laxness for his vivid epic power which has renewed the great narrative art of Iceland
334 1955 medicine Hugo Theorell for his discoveries concerning the nature and mode of action of oxidation enzymes
335 1955 peace No Prize was Awarded
336 1955 physics Polykarp Kusch
337 1955 physics Willis E. Lamb
338 1956 chemistry Sir Cyril Hinshelwood for their researches into the mechanism of chemical reactions
339 1956 chemistry Nikolay Semenov for their researches into the mechanism of chemical reactions
340 1956 literature Juan Ram&oacute;n Jim&eacute;nez for his lyrical poetry, which in Spanish language constitutes an example of high spirit and artistical purity
341 1956 medicine Andr&eacute; F. Cournand for their discoveries concerning heart catheterization and pathological changes in the circulatory system
342 1956 medicine Werner Forssmann for their discoveries concerning heart catheterization and pathological changes in the circulatory system
343 1956 medicine Dickinson W. Richards for their discoveries concerning heart catheterization and pathological changes in the circulatory system
344 1956 peace No Prize was Awarded
345 1956 physics John Bardeen for their researches on semiconductors and their discovery of the transistor effect
346 1956 physics Walter H. Brattain for their researches on semiconductors and their discovery of the transistor effect
347 1956 physics William B. Shockley for their researches on semiconductors and their discovery of the transistor effect
348 1957 chemistry Lord Todd for his work on nucleotides and nucleotide co-enzymes
349 1957 literature Albert Camus for his important literary production, which with clear-sighted earnestness illuminates the problems of the human conscience in our times
350 1957 medicine Daniel Bovet for his discoveries relating to synthetic compounds that inhibit the action of certain body substances, and especially their action on the vascular system and the skeletal muscles
351 1957 peace Lester Bowles Pearson
352 1957 physics Tsung-Dao Lee for their penetrating investigation of the so-called parity laws which has led to important discoveries regarding the elementary particles
353 1957 physics Chen Ning Yang for their penetrating investigation of the so-called parity laws which has led to important discoveries regarding the elementary particles
354 1958 chemistry Frederick Sanger for his work on the structure of proteins, especially that of insulin
355 1958 literature Boris Pasternak for his important achievement both in contemporary lyrical poetry and in the field of the great Russian epic tradition
356 1958 medicine George Beadle
357 1958 medicine Joshua Lederberg
358 1958 medicine Edward Tatum
359 1958 peace Georges Pire
360 1958 physics Pavel A. Cherenkov for the discovery and the interpretation of the Cherenkov effect
361 1958 physics Il&acute;ja M. Frank for the discovery and the interpretation of the Cherenkov effect
362 1958 physics Igor Y. Tamm for the discovery and the interpretation of the Cherenkov effect
363 1959 chemistry Jaroslav Heyrovsky for his discovery and development of the polarographic methods of analysis
364 1959 literature Salvatore Quasimodo for his lyrical poetry, which with classical fire expresses the tragic experience of life in our own times
365 1959 medicine Arthur Kornberg for their discovery of the mechanisms in the biological synthesis of ribonucleic acid and deoxyribonucleic acid
366 1959 medicine Severo Ochoa for their discovery of the mechanisms in the biological synthesis of ribonucleic acid and deoxyribonucleic acid
367 1959 peace Philip Noel-Baker
368 1959 physics Owen Chamberlain for their discovery of the antiproton
369 1959 physics Emilio Segr&egrave; for their discovery of the antiproton
370 1960 chemistry Willard F. Libby for his method to use carbon-14 for age determination in archaeology, geology, geophysics, and other branches of science
371 1960 literature Saint-John Perse for the soaring flight and the evocative imagery of his poetry which in a visionary fashion reflects the conditions of our time
372 1960 medicine Sir Frank Macfarlane Burnet for discovery of acquired immunological tolerance
373 1960 medicine Peter Medawar for discovery of acquired immunological tolerance
374 1960 peace Albert Lutuli
375 1960 physics Donald A. Glaser for the invention of the bubble chamber
376 1961 chemistry Melvin Calvin for his research on the carbon dioxide assimilation in plants
377 1961 literature Ivo Andric for the epic force with which he has traced themes and depicted human destinies drawn from the history of his country
378 1961 medicine Georg von B&eacute;k&eacute;sy for his discoveries of the physical mechanism of stimulation within the cochlea
379 1961 peace Dag Hammarskj&ouml;ld
380 1961 physics Robert Hofstadter
381 1961 physics Rudolf M&ouml;ssbauer
382 1962 chemistry John C. Kendrew for their studies of the structures of globular proteins
383 1962 chemistry Max F. Perutz for their studies of the structures of globular proteins
384 1962 literature John Steinbeck for his realistic and imaginative writings, combining as they do sympathetic humour and keen social perception
385 1962 medicine Francis Crick for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
386 1962 medicine James Watson for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
387 1962 medicine Maurice Wilkins for their discoveries concerning the molecular structure of nucleic acids and its significance for information transfer in living material
388 1962 peace Linus Pauling
389 1962 physics Lev Landau for his pioneering theories for condensed matter, especially liquid helium
390 1963 chemistry Giulio Natta for their discoveries in the field of the chemistry and technology of high polymers
391 1963 chemistry Karl Ziegler for their discoveries in the field of the chemistry and technology of high polymers
392 1963 literature Giorgos Seferis for his eminent lyrical writing, inspired by a deep feeling for the Hellenic world of culture
393 1963 medicine Sir John Eccles for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
394 1963 medicine Alan L. Hodgkin for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
395 1963 medicine Andrew F. Huxley for their discoveries concerning the ionic mechanisms involved in excitation and inhibition in the peripheral and central portions of the nerve cell membrane
396 1963 peace International Committee of the Red Cross
397 1963 peace League of Red Cross Societies
398 1963 physics Maria Goeppert-Mayer
399 1963 physics J. Hans D. Jensen
400 1963 physics Eugene Wigner
401 1964 chemistry Dorothy Crowfoot Hodgkin for her determinations by X-ray techniques of the structures of important biochemical substances
402 1964 literature Jean-Paul Sartre for his work which, rich in ideas and filled with the spirit of freedom and the quest for truth, has exerted a far-reaching influence on our age
403 1964 medicine Konrad Bloch for their discoveries concerning the mechanism and regulation of the cholesterol and fatty acid metabolism
404 1964 medicine Feodor Lynen for their discoveries concerning the mechanism and regulation of the cholesterol and fatty acid metabolism
405 1964 peace Martin Luther King
406 1964 physics Nicolay G. Basov for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle
407 1964 physics Aleksandr M. Prokhorov for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle
408 1964 physics Charles H. Townes for fundamental work in the field of quantum electronics, which has led to the construction of oscillators and amplifiers based on the maser-laser principle
409 1965 chemistry Robert B. Woodward for his outstanding achievements in the art of organic synthesis
410 1965 literature Mikhail Sholokhov for the artistic power and integrity with which, in his epic of the Don, he has given expression to a historic phase in the life of the Russian people
411 1965 medicine Fran&ccedil;ois Jacob for their discoveries concerning genetic control of enzyme and virus synthesis
412 1965 medicine Andr&eacute; Lwoff for their discoveries concerning genetic control of enzyme and virus synthesis
413 1965 medicine Jacques Monod for their discoveries concerning genetic control of enzyme and virus synthesis
414 1965 peace United Nations Children's Fund
415 1965 physics Richard P. Feynman for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles
416 1965 physics Julian Schwinger for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles
417 1965 physics Sin-Itiro Tomonaga for their fundamental work in quantum electrodynamics, with deep-ploughing consequences for the physics of elementary particles
418 1966 chemistry Robert S. Mulliken for his fundamental work concerning chemical bonds and the electronic structure of molecules by the molecular orbital method
419 1966 literature Samuel Agnon
420 1966 literature Nelly Sachs
421 1966 medicine Charles B. Huggins
422 1966 medicine Peyton Rous
423 1966 peace No Prize was Awarded
424 1966 physics Alfred Kastler for the discovery and development of optical methods for studying Hertzian resonances in atoms
425 1967 chemistry Manfred Eigen for their studies of extremely fast chemical reactions, effected by disturbing the equlibrium by means of very short pulses of energy
426 1967 chemistry Ronald G.W. Norrish for their studies of extremely fast chemical reactions, effected by disturbing the equlibrium by means of very short pulses of energy
427 1967 chemistry George Porter for their studies of extremely fast chemical reactions, effected by disturbing the equlibrium by means of very short pulses of energy
428 1967 literature Miguel Angel Asturias for his vivid literary achievement, deep-rooted in the national traits and traditions of Indian peoples of Latin America
429 1967 medicine Ragnar Granit for their discoveries concerning the primary physiological and chemical visual processes in the eye
430 1967 medicine Haldan K. Hartline for their discoveries concerning the primary physiological and chemical visual processes in the eye
431 1967 medicine George Wald for their discoveries concerning the primary physiological and chemical visual processes in the eye
432 1967 peace No Prize was Awarded
433 1967 physics Hans Bethe for his contributions to the theory of nuclear reactions, especially his discoveries concerning the energy production in stars
434 1968 chemistry Lars Onsager for the discovery of the reciprocal relations bearing his name, which are fundamental for the thermodynamics of irreversible processes
435 1968 literature Yasunari Kawabata for his narrative mastery, which with great sensibility expresses the essence of the Japanese mind
436 1968 medicine Robert W. Holley for their interpretation of the genetic code and its function in protein synthesis
437 1968 medicine H. Gobind Khorana for their interpretation of the genetic code and its function in protein synthesis
438 1968 medicine Marshall W. Nirenberg for their interpretation of the genetic code and its function in protein synthesis
439 1968 peace Ren&eacute; Cassin
440 1968 physics Luis Alvarez for his decisive contributions to elementary particle physics, in particular the discovery of a large number of resonance states, made possible through his development of the technique of using hydrogen bubble chamber and data analysis
441 1969 chemistry Derek Barton for their contributions to the development of the concept of conformation and its application in chemistry
442 1969 chemistry Odd Hassel for their contributions to the development of the concept of conformation and its application in chemistry
443 1969 economics Ragnar Frisch for having developed and applied dynamic models for the analysis of economic processes
444 1969 economics Jan Tinbergen for having developed and applied dynamic models for the analysis of economic processes
445 1969 literature Samuel Beckett for his writing, which - in new forms for the novel and drama - in the destitution of modern man acquires its elevation
446 1969 medicine Max Delbr&uuml;ck for their discoveries concerning the replication mechanism and the genetic structure of viruses
447 1969 medicine Alfred D. Hershey for their discoveries concerning the replication mechanism and the genetic structure of viruses
448 1969 medicine Salvador E. Luria for their discoveries concerning the replication mechanism and the genetic structure of viruses
449 1969 peace International Labour Organization
450 1969 physics Murray Gell-Mann for his contributions and discoveries concerning the classification of elementary particles and their interactions
451 1970 chemistry Luis Leloir for his discovery of sugar nucleotides and their role in the biosynthesis of carbohydrates
452 1970 economics Paul A. Samuelson for the scientific work through which he has developed static and dynamic economic theory and actively contributed to raising the level of analysis in economic science
453 1970 literature Alexandr Solzhenitsyn for the ethical force with which he has pursued the indispensable traditions of Russian literature
454 1970 medicine Julius Axelrod for their discoveries concerning the humoral transmittors in the nerve terminals and the mechanism for their storage, release and inactivation
455 1970 medicine Sir Bernard Katz for their discoveries concerning the humoral transmittors in the nerve terminals and the mechanism for their storage, release and inactivation
456 1970 medicine Ulf von Euler for their discoveries concerning the humoral transmittors in the nerve terminals and the mechanism for their storage, release and inactivation
457 1970 peace Norman Borlaug
458 1970 physics Hannes Alfv&eacute;n
459 1970 physics Louis N&eacute;el
460 1971 chemistry Gerhard Herzberg for his contributions to the knowledge of electronic structure and geometry of molecules, particularly free radicals
461 1971 economics Simon Kuznets for his empirically founded interpretation of economic growth which has led to new and deepened insight into the economic and social structure and process of development
462 1971 literature Pablo Neruda for a poetry that with the action of an elemental force brings alive a continent's destiny and dreams
463 1971 medicine Earl W. Sutherland, Jr. for his discoveries concerning the mechanisms of the action of hormones
464 1971 peace Willy Brandt
465 1971 physics Dennis Gabor for his invention and development of the holographic method
466 1972 chemistry Christian Anfinsen
467 1972 chemistry Stanford Moore
468 1972 chemistry William H. Stein
469 1972 economics Kenneth J. Arrow for their pioneering contributions to general economic equilibrium theory and welfare theory
470 1972 economics John R. Hicks for their pioneering contributions to general economic equilibrium theory and welfare theory
471 1972 literature Heinrich B&ouml;ll for his writing which through its combination of a broad perspective on his time and a sensitive skill in characterization has contributed to a renewal of German literature
472 1972 medicine Gerald M. Edelman for their discoveries concerning the chemical structure of antibodies
473 1972 medicine Rodney R. Porter for their discoveries concerning the chemical structure of antibodies
474 1972 peace No Prize was Awarded
475 1972 physics John Bardeen for their jointly developed theory of superconductivity, usually called the BCS-theory
476 1972 physics Leon N. Cooper for their jointly developed theory of superconductivity, usually called the BCS-theory
477 1972 physics Robert Schrieffer for their jointly developed theory of superconductivity, usually called the BCS-theory
478 1973 chemistry Ernst Otto Fischer for their pioneering work, performed independently, on the chemistry of the organometallic, so called sandwich compounds
479 1973 chemistry Geoffrey Wilkinson for their pioneering work, performed independently, on the chemistry of the organometallic, so called sandwich compounds
480 1973 economics Wassily Leontief for the development of the input-output method and for its application to important economic problems
481 1973 literature Patrick White for an epic and psychological narrative art which has introduced a new continent into literature
482 1973 medicine Konrad Lorenz for their discoveries concerning organization and elicitation of individual and social behaviour patterns
483 1973 medicine Nikolaas Tinbergen for their discoveries concerning organization and elicitation of individual and social behaviour patterns
484 1973 medicine Karl von Frisch for their discoveries concerning organization and elicitation of individual and social behaviour patterns
485 1973 peace Le Duc Tho
486 1973 peace Henry Kissinger
487 1973 physics Leo Esaki
488 1973 physics Ivar Giaever
489 1973 physics Brian D. Josephson
490 1974 chemistry Paul J. Flory for his fundamental achievements, both theoretical and experimental, in the physical chemistry of the macromolecules
491 1974 economics Gunnar Myrdal for their pioneering work in the theory of money and economic fluctuations and for their penetrating analysis of the interdependence of economic, social and institutional phenomena
492 1974 economics Friedrich August von Hayek for their pioneering work in the theory of money and economic fluctuations and for their penetrating analysis of the interdependence of economic, social and institutional phenomena
493 1974 literature Eyvind Johnson
494 1974 literature Harry Martinson
495 1974 medicine Albert Claude for their discoveries concerning the structural and functional organization of the cell
496 1974 medicine Christian de Duve for their discoveries concerning the structural and functional organization of the cell
497 1974 medicine George E. Palade for their discoveries concerning the structural and functional organization of the cell
498 1974 peace Se&aacute;n MacBride
499 1974 peace Eisaku Sato
500 1974 physics Antony Hewish for their pioneering research in radio astrophysics: Ryle for his observations and inventions, in particular of the aperture synthesis technique, and Hewish for his decisive role in the discovery of pulsars
501 1974 physics Martin Ryle for their pioneering research in radio astrophysics: Ryle for his observations and inventions, in particular of the aperture synthesis technique, and Hewish for his decisive role in the discovery of pulsars
502 1975 chemistry John Cornforth
503 1975 chemistry Vladimir Prelog
504 1975 economics Leonid Vitaliyevich Kantorovich for their contributions to the theory of optimum allocation of resources
505 1975 economics Tjalling C. Koopmans for their contributions to the theory of optimum allocation of resources
506 1975 literature Eugenio Montale for his distinctive poetry which, with great artistic sensitivity, has interpreted human values under the sign of an outlook on life with no illusions
507 1975 medicine David Baltimore for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
508 1975 medicine Renato Dulbecco for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
509 1975 medicine Howard M. Temin for their discoveries concerning the interaction between tumour viruses and the genetic material of the cell
510 1975 peace Andrei Sakharov
511 1975 physics Aage N. Bohr for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
512 1975 physics Ben R. Mottelson for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
513 1975 physics James Rainwater for the discovery of the connection between collective motion and particle motion in atomic nuclei and the development of the theory of the structure of the atomic nucleus based on this connection
514 1976 chemistry William Lipscomb for his studies on the structure of boranes illuminating problems of chemical bonding
515 1976 economics Milton Friedman for his achievements in the fields of consumption analysis, monetary history and theory and for his demonstration of the complexity of stabilization policy
516 1976 literature Saul Bellow for the human understanding and subtle analysis of contemporary culture that are combined in his work
517 1976 medicine Baruch S. Blumberg for their discoveries concerning new mechanisms for the origin and dissemination of infectious diseases
518 1976 medicine D. Carleton Gajdusek for their discoveries concerning new mechanisms for the origin and dissemination of infectious diseases
519 1976 peace Mairead Corrigan
520 1976 peace Betty Williams
521 1976 physics Burton Richter for their pioneering work in the discovery of a heavy elementary particle of a new kind
522 1976 physics Samuel C.C. Ting for their pioneering work in the discovery of a heavy elementary particle of a new kind
523 1977 chemistry Ilya Prigogine for his contributions to non-equilibrium thermodynamics, particularly the theory of dissipative structures
524 1977 economics James E. Meade for their pathbreaking contribution to the theory of international trade and international capital movements
525 1977 economics Bertil Ohlin for their pathbreaking contribution to the theory of international trade and international capital movements
526 1977 literature Vicente Aleixandre for a creative poetic writing which illuminates man's condition in the cosmos and in present-day society, at the same time representing the great renewal of the traditions of Spanish poetry beween the wars
527 1977 medicine Roger Guillemin
528 1977 medicine Andrew V. Schally
529 1977 medicine Rosalyn Yalow
530 1977 peace Amnesty International
531 1977 physics Philip W. Anderson for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
532 1977 physics Sir Nevill F. Mott for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
533 1977 physics John H. van Vleck for their fundamental theoretical investigations of the electronic structure of magnetic and disordered systems
534 1978 chemistry Peter Mitchell for his contribution to the understanding of biological energy transfer through the formulation of the chemiosmotic theory
535 1978 economics Herbert A. Simon for his pioneering research into the decision-making process within economic organizations
536 1978 literature Isaac Bashevis Singer for his impassioned narrative art which, with roots in a Polish-Jewish cultural tradition, brings universal human conditions to life
537 1978 medicine Werner Arber for the discovery of restriction enzymes and their application to problems of molecular genetics
538 1978 medicine Daniel Nathans for the discovery of restriction enzymes and their application to problems of molecular genetics
539 1978 medicine Hamilton O. Smith for the discovery of restriction enzymes and their application to problems of molecular genetics
540 1978 peace Anwar al-Sadat
541 1978 peace Menachem Begin
542 1978 physics Pyotr Kapitsa
543 1978 physics Arno Penzias
544 1978 physics Robert Woodrow Wilson
545 1979 chemistry Herbert C. Brown for their development of the use of boron- and phosphorus-containing compounds, respectively, into important reagents in organic synthesis
546 1979 chemistry Georg Wittig for their development of the use of boron- and phosphorus-containing compounds, respectively, into important reagents in organic synthesis
547 1979 economics Sir Arthur Lewis for their pioneering research into economic development research with particular consideration of the problems of developing countries
548 1979 economics Theodore W. Schultz for their pioneering research into economic development research with particular consideration of the problems of developing countries
549 1979 literature Odysseus Elytis for his poetry, which, against the background of Greek tradition, depicts with sensuous strength and intellectual clear-sightedness modern man's struggle for freedom and creativeness
550 1979 medicine Allan M. Cormack for the development of computer assisted tomography
551 1979 medicine Godfrey N. Hounsfield for the development of computer assisted tomography
552 1979 peace Mother Teresa
553 1979 physics Sheldon Glashow for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current
554 1979 physics Abdus Salam for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current
555 1979 physics Steven Weinberg for their contributions to the theory of the unified weak and electromagnetic interaction between elementary particles, including, inter alia, the prediction of the weak neutral current
556 1980 chemistry Paul Berg
557 1980 chemistry Walter Gilbert
558 1980 chemistry Frederick Sanger
559 1980 economics Lawrence R. Klein for the creation of econometric models and the application to the analysis of economic fluctuations and economic policies
560 1980 literature Czeslaw Milosz who with uncompromising clear-sightedness voices man's exposed condition in a world of severe conflicts
561 1980 medicine Baruj Benacerraf for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
562 1980 medicine Jean Dausset for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
563 1980 medicine George D. Snell for their discoveries concerning genetically determined structures on the cell surface that regulate immunological reactions
564 1980 peace Adolfo P&eacute;rez Esquivel
565 1980 physics James Cronin for the discovery of violations of fundamental symmetry principles in the decay of neutral K-mesons
566 1980 physics Val Fitch for the discovery of violations of fundamental symmetry principles in the decay of neutral K-mesons
567 1981 chemistry Kenichi Fukui for their theories, developed independently, concerning the course of chemical reactions
568 1981 chemistry Roald Hoffmann for their theories, developed independently, concerning the course of chemical reactions
569 1981 economics James Tobin for his analysis of financial markets and their relations to expenditure decisions, employment, production and prices
570 1981 literature Elias Canetti for writings marked by a broad outlook, a wealth of ideas and artistic power
571 1981 medicine David H. Hubel
572 1981 medicine Roger W. Sperry
573 1981 medicine Torsten N. Wiesel
574 1981 peace Office of the United Nations High Commissioner for Refugees
575 1981 physics Nicolaas Bloembergen
576 1981 physics Arthur L. Schawlow
577 1981 physics Kai M. Siegbahn
578 1982 chemistry Aaron Klug for his development of crystallographic electron microscopy and his structural elucidation of biologically important nucleic acid-protein complexes
579 1982 economics George J. Stigler for his seminal studies of industrial structures, functioning of markets and causes and effects of public regulation
580 1982 literature Gabriel Garc&iacute;a M&aacute;rquez for his novels and short stories, in which the fantastic and the realistic are combined in a richly composed world of imagination, reflecting a continent's life and conflicts
581 1982 medicine Sune K. Bergstr&ouml;m for their discoveries concerning prostaglandins and related biologically active substances
582 1982 medicine Bengt I. Samuelsson for their discoveries concerning prostaglandins and related biologically active substances
583 1982 medicine John R. Vane for their discoveries concerning prostaglandins and related biologically active substances
584 1982 peace Alfonso Garc&iacute;a Robles
585 1982 peace Alva Myrdal
586 1982 physics Kenneth G. Wilson for his theory for critical phenomena in connection with phase transitions
587 1983 chemistry Henry Taube for his work on the mechanisms of electron transfer reactions, especially in metal complexes
588 1983 economics Gerard Debreu for having incorporated new analytical methods into economic theory and for his rigorous reformulation of the theory of general equilibrium
589 1983 literature William Golding for his novels which, with the perspicuity of realistic narrative art and the diversity and universality of myth, illuminate the human condition in the world of today
590 1983 medicine Barbara McClintock for her discovery of mobile genetic elements
591 1983 peace Lech Walesa
592 1983 physics Subramanyan Chandrasekhar
593 1983 physics William A. Fowler
594 1984 chemistry Bruce Merrifield for his development of methodology for chemical synthesis on a solid matrix
595 1984 economics Richard Stone for having made fundamental contributions to the development of systems of national accounts and hence greatly improved the basis for empirical economic analysis
596 1984 literature Jaroslav Seifert for his poetry which endowed with freshness, sensuality and rich inventiveness provides a liberating image of the indomitable spirit and versatility of man
597 1984 medicine Niels K. Jerne for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
598 1984 medicine Georges J.F. K&ouml;hler for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
599 1984 medicine C&eacute;sar Milstein for theories concerning the specificity in development and control of the immune system and the discovery of the principle for production of monoclonal antibodies
600 1984 peace Desmond Tutu
601 1984 physics Carlo Rubbia for their decisive contributions to the large project, which led to the discovery of the field particles W and Z, communicators of weak interaction
602 1984 physics Simon van der Meer for their decisive contributions to the large project, which led to the discovery of the field particles W and Z, communicators of weak interaction
603 1985 chemistry Herbert A. Hauptman for their outstanding achievements in the development of direct methods for the determination of crystal structures
604 1985 chemistry Jerome Karle for their outstanding achievements in the development of direct methods for the determination of crystal structures
605 1985 economics Franco Modigliani for his pioneering analyses of saving and of financial markets
606 1985 literature Claude Simon who in his novel combines the poet's and the painter's creativeness with a deepened awareness of time in the depiction of the human condition
607 1985 medicine Michael S. Brown for their discoveries concerning the regulation of cholesterol metabolism
608 1985 medicine Joseph L. Goldstein for their discoveries concerning the regulation of cholesterol metabolism
609 1985 peace International Physicians for the Prevention of Nuclear War
610 1985 physics Klaus von Klitzing for the discovery of the quantized Hall effect
611 1986 chemistry Dudley R. Herschbach for their contributions concerning the dynamics of chemical elementary processes
612 1986 chemistry Yuan T. Lee for their contributions concerning the dynamics of chemical elementary processes
613 1986 chemistry John C. Polanyi for their contributions concerning the dynamics of chemical elementary processes
614 1986 economics James M. Buchanan Jr. for his development of the contractual and constitutional bases for the theory of economic and political decision-making
615 1986 literature Wole Soyinka who in a wide cultural perspective and with poetic overtones fashions the drama of existence
616 1986 medicine Stanley Cohen for their discoveries of growth factors
617 1986 medicine Rita Levi-Montalcini for their discoveries of growth factors
618 1986 peace Elie Wiesel
619 1986 physics Gerd Binnig
620 1986 physics Heinrich Rohrer
621 1986 physics Ernst Ruska
622 1987 chemistry Donald J. Cram for their development and use of molecules with structure-specific interactions of high selectivity
623 1987 chemistry Jean-Marie Lehn for their development and use of molecules with structure-specific interactions of high selectivity
624 1987 chemistry Charles J. Pedersen for their development and use of molecules with structure-specific interactions of high selectivity
625 1987 economics Robert M. Solow for his contributions to the theory of economic growth
626 1987 literature Joseph Brodsky for an all-embracing authorship, imbued with clarity of thought and poetic intensity
627 1987 medicine Susumu Tonegawa for his discovery of the genetic principle for generation of antibody diversity
628 1987 peace Oscar Arias S&aacute;nchez for his work for peace in Central America, efforts which led to the accord signed in Guatemala on August 7 this year
629 1987 physics J. Georg Bednorz for their important break-through in the discovery of superconductivity in ceramic materials
630 1987 physics K. Alex M&uuml;ller for their important break-through in the discovery of superconductivity in ceramic materials
631 1988 chemistry Johann Deisenhofer for the determination of the three-dimensional structure of a photosynthetic reaction centre
632 1988 chemistry Robert Huber for the determination of the three-dimensional structure of a photosynthetic reaction centre
633 1988 chemistry Hartmut Michel for the determination of the three-dimensional structure of a photosynthetic reaction centre
634 1988 economics Maurice Allais for his pioneering contributions to the theory of markets and efficient utilization of resources
635 1988 literature Naguib Mahfouz who, through works rich in nuance - now clear-sightedly realistic, now evocatively ambiguous - has formed an Arabian narrative art that applies to all mankind
636 1988 medicine Sir James W. Black for their discoveries of important principles for drug treatment
637 1988 medicine Gertrude B. Elion for their discoveries of important principles for drug treatment
638 1988 medicine George H. Hitchings for their discoveries of important principles for drug treatment
639 1988 peace United Nations Peacekeeping Forces
640 1988 physics Leon M. Lederman for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
641 1988 physics Melvin Schwartz for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
642 1988 physics Jack Steinberger for the neutrino beam method and the demonstration of the doublet structure of the leptons through the discovery of the muon neutrino
643 1989 chemistry Sidney Altman for their discovery of catalytic properties of RNA
644 1989 chemistry Thomas R. Cech for their discovery of catalytic properties of RNA
645 1989 economics Trygve Haavelmo for his clarification of the probability theory foundations of econometrics and his analyses of simultaneous economic structures
646 1989 literature Camilo Jos&eacute; Cela for a rich and intensive prose, which with restrained compassion forms a challenging vision of man's vulnerability
647 1989 medicine J. Michael Bishop for their discovery of the cellular origin of retroviral oncogenes
648 1989 medicine Harold E. Varmus for their discovery of the cellular origin of retroviral oncogenes
649 1989 peace The 14th Dalai Lama
650 1989 physics Hans G. Dehmelt
651 1989 physics Wolfgang Paul
652 1989 physics Norman F. Ramsey
653 1990 chemistry Elias James Corey for his development of the theory and methodology of organic synthesis
654 1990 economics Harry M. Markowitz for their pioneering work in the theory of financial economics
655 1990 economics Merton H. Miller for their pioneering work in the theory of financial economics
656 1990 economics William F. Sharpe for their pioneering work in the theory of financial economics
657 1990 literature Octavio Paz for impassioned writing with wide horizons, characterized by sensuous intelligence and humanistic integrity
658 1990 medicine Joseph E. Murray for their discoveries concerning organ and cell transplantation in the treatment of human disease
659 1990 medicine E. Donnall Thomas for their discoveries concerning organ and cell transplantation in the treatment of human disease
660 1990 peace Mikhail Gorbachev for his leading role in the peace process which today characterizes important parts of the international community
661 1990 physics Jerome I. Friedman for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics
662 1990 physics Henry W. Kendall for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics
663 1990 physics Richard E. Taylor for their pioneering investigations concerning deep inelastic scattering of electrons on protons and bound neutrons, which have been of essential importance for the development of the quark model in particle physics
664 1991 chemistry Richard R. Ernst for his contributions to the development of the methodology of high resolution nuclear magnetic resonance (NMR) spectroscopy
665 1991 economics Ronald H. Coase for his discovery and clarification of the significance of transaction costs and property rights for the institutional structure and functioning of the economy
666 1991 literature Nadine Gordimer who through her magnificent epic writing has - in the words of Alfred Nobel - been of very great benefit to humanity
667 1991 medicine Erwin Neher for their discoveries concerning the function of single ion channels in cells
668 1991 medicine Bert Sakmann for their discoveries concerning the function of single ion channels in cells
669 1991 peace Aung San Suu Kyi for her non-violent struggle for democracy and human rights
670 1991 physics Pierre-Gilles de Gennes for discovering that methods developed for studying order phenomena in simple systems can be generalized to more complex forms of matter, in particular to liquid crystals and polymers
671 1992 chemistry Rudolph A. Marcus for his contributions to the theory of electron transfer reactions in chemical systems
672 1992 economics Gary S. Becker for having extended the domain of microeconomic analysis to a wide range of human behaviour and interaction, including nonmarket behaviour
673 1992 literature Derek Walcott for a poetic oeuvre of great luminosity, sustained by a historical vision, the outcome of a multicultural commitment
674 1992 medicine Edmond H. Fischer for their discoveries concerning reversible protein phosphorylation as a biological regulatory mechanism
675 1992 medicine Edwin G. Krebs for their discoveries concerning reversible protein phosphorylation as a biological regulatory mechanism
676 1992 peace Rigoberta Mench&uacute; Tum in recognition of her work for social justice and ethno-cultural reconciliation based on respect for the rights of indigenous peoples
677 1992 physics Georges Charpak for his invention and development of particle detectors, in particular the multiwire proportional chamber
678 1993 chemistry Kary B. Mullis for contributions to the developments of methods within DNA-based chemistry
679 1993 chemistry Michael Smith for contributions to the developments of methods within DNA-based chemistry
680 1993 economics Robert W. Fogel for having renewed research in economic history by applying economic theory and quantitative methods in order to explain economic and institutional change
681 1993 economics Douglass C. North for having renewed research in economic history by applying economic theory and quantitative methods in order to explain economic and institutional change
682 1993 literature Toni Morrison who in novels characterized by visionary force and poetic import, gives life to an essential aspect of American reality
683 1993 medicine Richard J. Roberts for their discoveries of split genes
684 1993 medicine Phillip A. Sharp for their discoveries of split genes
685 1993 peace F.W. de Klerk for their work for the peaceful termination of the apartheid regime, and for laying the foundations for a new democratic South Africa
686 1993 peace Nelson Mandela for their work for the peaceful termination of the apartheid regime, and for laying the foundations for a new democratic South Africa
687 1993 physics Russell A. Hulse for the discovery of a new type of pulsar, a discovery that has opened up new possibilities for the study of gravitation
688 1993 physics Joseph H. Taylor Jr. for the discovery of a new type of pulsar, a discovery that has opened up new possibilities for the study of gravitation
689 1994 chemistry George A. Olah for his contribution to carbocation chemistry
690 1994 economics John C. Harsanyi for their pioneering analysis of equilibria in the theory of non-cooperative games
691 1994 economics John F. Nash Jr. for their pioneering analysis of equilibria in the theory of non-cooperative games
692 1994 economics Reinhard Selten for their pioneering analysis of equilibria in the theory of non-cooperative games
693 1994 literature Kenzaburo Oe who with poetic force creates an imagined world, where life and myth condense to form a disconcerting picture of the human predicament today
694 1994 medicine Alfred G. Gilman for their discovery of G-proteins and the role of these proteins in signal transduction in cells
695 1994 medicine Martin Rodbell for their discovery of G-proteins and the role of these proteins in signal transduction in cells
696 1994 peace Yasser Arafat for their efforts to create peace in the Middle East
697 1994 peace Shimon Peres for their efforts to create peace in the Middle East
698 1994 peace Yitzhak Rabin for their efforts to create peace in the Middle East
699 1994 physics Bertram N. Brockhouse for pioneering contributions to the development of neutron scattering techniques for studies of condensed matter
700 1994 physics Clifford G. Shull for pioneering contributions to the development of neutron scattering techniques for studies of condensed matter
701 1995 chemistry Paul J. Crutzen for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone
702 1995 chemistry Mario J. Molina for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone
703 1995 chemistry F. Sherwood Rowland for their work in atmospheric chemistry, particularly concerning the formation and decomposition of ozone
704 1995 economics Robert E. Lucas Jr. for having developed and applied the hypothesis of rational expectations, and thereby having transformed macroeconomic analysis and deepened our understanding of economic policy
705 1995 literature Seamus Heaney for works of lyrical beauty and ethical depth, which exalt everyday miracles and the living past
706 1995 medicine Edward B. Lewis for their discoveries concerning the genetic control of early embryonic development
707 1995 medicine Christiane N&uuml;sslein-Volhard for their discoveries concerning the genetic control of early embryonic development
708 1995 medicine Eric F. Wieschaus for their discoveries concerning the genetic control of early embryonic development
709 1995 peace Pugwash Conferences on Science and World Affairs for their efforts to diminish the part played by nuclear arms in international politics and, in the longer run, to eliminate such arms
710 1995 peace Joseph Rotblat for their efforts to diminish the part played by nuclear arms in international politics and, in the longer run, to eliminate such arms
711 1995 physics Martin L. Perl for pioneering experimental contributions to lepton physics
712 1995 physics Frederick Reines for pioneering experimental contributions to lepton physics
713 1996 chemistry Robert F. Curl Jr. for their discovery of fullerenes
714 1996 chemistry Sir Harold Kroto for their discovery of fullerenes
715 1996 chemistry Richard E. Smalley for their discovery of fullerenes
716 1996 economics James A. Mirrlees for their fundamental contributions to the economic theory of incentives under asymmetric information
717 1996 economics William Vickrey for their fundamental contributions to the economic theory of incentives under asymmetric information
718 1996 literature Wislawa Szymborska for poetry that with ironic precision allows the historical and biological context to come to light in fragments of human reality
719 1996 medicine Peter C. Doherty for their discoveries concerning the specificity of the cell mediated immune defence
720 1996 medicine Rolf M. Zinkernagel for their discoveries concerning the specificity of the cell mediated immune defence
721 1996 peace Carlos Filipe Ximenes Belo for their work towards a just and peaceful solution to the conflict in East Timor
722 1996 peace Jos&eacute; Ramos-Horta for their work towards a just and peaceful solution to the conflict in East Timor
723 1996 physics David M. Lee for their discovery of superfluidity in helium-3
724 1996 physics Douglas D. Osheroff for their discovery of superfluidity in helium-3
725 1996 physics Robert C. Richardson for their discovery of superfluidity in helium-3
726 1997 chemistry Paul D. Boyer
727 1997 chemistry Jens C. Skou
728 1997 chemistry John E. Walker
729 1997 economics Robert C. Merton for a new method to determine the value of derivatives
730 1997 economics Myron S. Scholes for a new method to determine the value of derivatives
731 1997 literature Dario Fo who emulates the jesters of the Middle Ages in scourging authority and upholding the dignity of the downtrodden
732 1997 medicine Stanley B. Prusiner for his discovery of Prions - a new biological principle of infection
733 1997 peace International Campaign to Ban Landmines for their work for the banning and clearing of anti-personnel mines
734 1997 peace Jody Williams for their work for the banning and clearing of anti-personnel mines
735 1997 physics Steven Chu for development of methods to cool and trap atoms with laser light
736 1997 physics Claude Cohen-Tannoudji for development of methods to cool and trap atoms with laser light
737 1997 physics William D. Phillips for development of methods to cool and trap atoms with laser light
738 1998 chemistry Walter Kohn
739 1998 chemistry John Pople
740 1998 economics Amartya Sen for his contributions to welfare economics
741 1998 literature Jos&eacute; Saramago who with parables sustained by imagination, compassion and irony continually enables us once again to apprehend an elusory reality
742 1998 medicine Robert F. Furchgott for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
743 1998 medicine Louis J. Ignarro for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
744 1998 medicine Ferid Murad for their discoveries concerning nitric oxide as a signalling molecule in the cardiovascular system
745 1998 peace John Hume for their efforts to find a peaceful solution to the conflict in Northern Ireland
746 1998 peace David Trimble for their efforts to find a peaceful solution to the conflict in Northern Ireland
747 1998 physics Robert B. Laughlin for their discovery of a new form of quantum fluid with fractionally charged excitations
748 1998 physics Horst L. St&ouml;rmer for their discovery of a new form of quantum fluid with fractionally charged excitations
749 1998 physics Daniel C. Tsui for their discovery of a new form of quantum fluid with fractionally charged excitations
750 1999 chemistry Ahmed Zewail for his studies of the transition states of chemical reactions using femtosecond spectroscopy
751 1999 economics Robert A. Mundell for his analysis of monetary and fiscal policy under different exchange rate regimes and his analysis of optimum currency areas
752 1999 literature G&uuml;nter Grass whose frolicsome black fables portray the forgotten face of history
753 1999 medicine G&uuml;nter Blobel for the discovery that proteins have intrinsic signals that govern their transport and localization in the cell
754 1999 peace M&eacute;decins Sans Fronti&egrave;res in recognition of the organization's pioneering humanitarian work on several continents
755 1999 physics Gerardus 't Hooft for elucidating the quantum structure of electroweak interactions in physics
756 1999 physics Martinus J.G. Veltman for elucidating the quantum structure of electroweak interactions in physics
757 2000 chemistry Alan Heeger for the discovery and development of conductive polymers
758 2000 chemistry Alan G. MacDiarmid for the discovery and development of conductive polymers
759 2000 chemistry Hideki Shirakawa for the discovery and development of conductive polymers
760 2000 economics James J. Heckman
761 2000 economics Daniel L. McFadden
762 2000 literature Gao Xingjian for an &oelig;uvre of universal validity, bitter insights and linguistic ingenuity, which has opened new paths for the Chinese novel and drama
763 2000 medicine Arvid Carlsson for their discoveries concerning signal transduction in the nervous system
764 2000 medicine Paul Greengard for their discoveries concerning signal transduction in the nervous system
765 2000 medicine Eric R. Kandel for their discoveries concerning signal transduction in the nervous system
766 2000 peace Kim Dae-jung for his work for democracy and human rights in South Korea and in East Asia in general, and for peace and reconciliation with North Korea in particular
767 2000 physics Zhores I. Alferov for basic work on information and communication technology
768 2000 physics Jack S. Kilby for basic work on information and communication technology
769 2000 physics Herbert Kroemer for basic work on information and communication technology
770 2001 chemistry William S. Knowles
771 2001 chemistry Ryoji Noyori
772 2001 chemistry K. Barry Sharpless
773 2001 economics George A. Akerlof for their analyses of markets with asymmetric information
774 2001 economics A. Michael Spence for their analyses of markets with asymmetric information
775 2001 economics Joseph E. Stiglitz for their analyses of markets with asymmetric information
776 2001 literature V.S. Naipaul for having united perceptive narrative and incorruptible scrutiny in works that compel us to see the presence of suppressed histories
777 2001 medicine Leland H. Hartwell for their discoveries of key regulators of the cell cycle
778 2001 medicine Tim Hunt for their discoveries of key regulators of the cell cycle
779 2001 medicine Sir Paul Nurse for their discoveries of key regulators of the cell cycle
780 2001 peace United Nations for their work for a better organized and more peaceful world
781 2001 peace Kofi Annan for their work for a better organized and more peaceful world
782 2001 physics Eric A. Cornell for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates
783 2001 physics Wolfgang Ketterle for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates
784 2001 physics Carl E. Wieman for the achievement of Bose-Einstein condensation in dilute gases of alkali atoms, and for early fundamental studies of the properties of the condensates
785 2002 chemistry John B. Fenn for the development of methods for identification and structure analyses of biological macromolecules
786 2002 chemistry Koichi Tanaka for the development of methods for identification and structure analyses of biological macromolecules
787 2002 chemistry Kurt W&uuml;thrich for the development of methods for identification and structure analyses of biological macromolecules
788 2002 economics Daniel Kahneman
789 2002 economics Vernon L. Smith
790 2002 literature Imre Kert&eacute;sz for writing that upholds the fragile experience of the individual against the barbaric arbitrariness of history
791 2002 medicine Sydney Brenner for their discoveries concerning 'genetic regulation of organ development and programmed cell death'
792 2002 medicine H. Robert Horvitz for their discoveries concerning 'genetic regulation of organ development and programmed cell death'
793 2002 medicine John E. Sulston for their discoveries concerning 'genetic regulation of organ development and programmed cell death'
794 2002 peace Jimmy Carter for his decades of untiring effort to find peaceful solutions to international conflicts, to advance democracy and human rights, and to promote economic and social development
795 2002 physics Raymond Davis Jr.
796 2002 physics Riccardo Giacconi
797 2002 physics Masatoshi Koshiba
798 2003 chemistry Peter Agre for discoveries concerning channels in cell membranes
799 2003 chemistry Roderick MacKinnon for discoveries concerning channels in cell membranes
800 2003 economics Robert F. Engle III
801 2003 economics Clive W.J. Granger
802 2003 literature J.M. Coetzee who in innumerable guises portrays the surprising involvement of the outsider
803 2003 medicine Paul C. Lauterbur for their discoveries concerning magnetic resonance imaging
804 2003 medicine Sir Peter Mansfield for their discoveries concerning magnetic resonance imaging
805 2003 peace Shirin Ebadi for her efforts for democracy and human rights. She has focused especially on the struggle for the rights of women and children.
806 2003 physics Alexei A. Abrikosov for pioneering contributions to the theory of superconductors and superfluids
807 2003 physics Vitaly L. Ginzburg for pioneering contributions to the theory of superconductors and superfluids
808 2003 physics Anthony J. Leggett for pioneering contributions to the theory of superconductors and superfluids
809 2004 chemistry Aaron Ciechanover for the discovery of ubiquitin-mediated protein degradation
810 2004 chemistry Avram Hershko for the discovery of ubiquitin-mediated protein degradation
811 2004 chemistry Irwin Rose for the discovery of ubiquitin-mediated protein degradation
812 2004 economics Finn E. Kydland for their contributions to dynamic macroeconomics: the time consistency of economic policy and the driving forces behind business cycles
813 2004 economics Edward C. Prescott for their contributions to dynamic macroeconomics: the time consistency of economic policy and the driving forces behind business cycles
814 2004 literature Elfriede Jelinek for her musical flow of voices and counter-voices in novels and plays that with extraordinary linguistic zeal reveal the absurdity of society's clich&eacute;s and their subjugating power
815 2004 medicine Richard Axel for their discoveries of odorant receptors and the organization of the olfactory system
816 2004 medicine Linda B. Buck for their discoveries of odorant receptors and the organization of the olfactory system
817 2004 peace Wangari Maathai for her contribution to sustainable development, democracy and peace
818 2004 physics David J. Gross for the discovery of asymptotic freedom in the theory of the strong interaction
819 2004 physics H. David Politzer for the discovery of asymptotic freedom in the theory of the strong interaction
820 2004 physics Frank Wilczek for the discovery of asymptotic freedom in the theory of the strong interaction
821 2005 chemistry Yves Chauvin for the development of the metathesis method in organic synthesis
822 2005 chemistry Robert H. Grubbs for the development of the metathesis method in organic synthesis
823 2005 chemistry Richard R. Schrock for the development of the metathesis method in organic synthesis
824 2005 economics Robert J. Aumann for having enhanced our understanding of conflict and cooperation through game-theory analysis
825 2005 economics Thomas C. Schelling for having enhanced our understanding of conflict and cooperation through game-theory analysis
826 2005 literature Harold Pinter who in his plays uncovers the precipice under everyday prattle and forces entry into oppression's closed rooms
827 2005 medicine Barry J. Marshall for their discovery of the bacterium <i>Helicobacter pylori</i> and its role in gastritis and peptic ulcer disease
828 2005 medicine J. Robin Warren for their discovery of the bacterium <i>Helicobacter pylori</i> and its role in gastritis and peptic ulcer disease
829 2005 peace International Atomic Energy Agency for their efforts to prevent nuclear energy from being used for military purposes and to ensure that nuclear energy for peaceful purposes is used in the safest possible way
830 2005 peace Mohamed ElBaradei for their efforts to prevent nuclear energy from being used for military purposes and to ensure that nuclear energy for peaceful purposes is used in the safest possible way
831 2005 physics Roy J. Glauber
832 2005 physics John L. Hall
833 2005 physics Theodor W. H&auml;nsch
834 2006 chemistry Roger D. Kornberg for his studies of the molecular basis of eukaryotic transcription
835 2006 economics Edmund S. Phelps for his analysis of intertemporal tradeoffs in macroeconomic policy
836 2006 literature Orhan Pamuk who in the quest for the melancholic soul of his native city has discovered new symbols for the clash and interlacing of cultures
837 2006 medicine Andrew Z. Fire for their discovery of RNA interference - gene silencing by double-stranded RNA
838 2006 medicine Craig C. Mello for their discovery of RNA interference - gene silencing by double-stranded RNA
839 2006 peace Grameen Bank for their efforts to create economic and social development from below
840 2006 peace Muhammad Yunus for their efforts to create economic and social development from below
841 2006 physics John C. Mather for their discovery of the blackbody form and anisotropy of the cosmic microwave background radiation
842 2006 physics George F. Smoot for their discovery of the blackbody form and anisotropy of the cosmic microwave background radiation
843 2007 chemistry Gerhard Ertl for his studies of chemical processes on solid surfaces
844 2007 economics Leonid Hurwicz for having laid the foundations of mechanism design theory
845 2007 economics Eric S. Maskin for having laid the foundations of mechanism design theory
846 2007 economics Roger B. Myerson for having laid the foundations of mechanism design theory
847 2007 literature Doris Lessing that epicist of the female experience, who with scepticism, fire and visionary power has subjected a divided civilisation to scrutiny
848 2007 medicine Mario R. Capecchi for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
849 2007 medicine Sir Martin J. Evans for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
850 2007 medicine Oliver Smithies for their discoveries of principles for introducing specific gene modifications in mice by the use of embryonic stem cells
851 2007 peace Intergovernmental Panel on Climate Change (IPCC) for their efforts to build up and disseminate greater knowledge about man-made climate change, and to lay the foundations for the measures that are needed to counteract such change
852 2007 peace Albert Arnold (Al) Gore Jr. for their efforts to build up and disseminate greater knowledge about man-made climate change, and to lay the foundations for the measures that are needed to counteract such change
853 2007 physics Albert Fert for the discovery of Giant Magnetoresistance
854 2007 physics Peter Gr&Atilde;&frac14;nberg for the discovery of Giant Magnetoresistance

316836
tests/ozone_8hr_dmax.csv Normal file

File diff suppressed because it is too large Load Diff