File size: 71,531 Bytes
ef0c133 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 |
{
"_id": "qd4982518",
"title": "",
"text": "what is the price of the s&p 500 index in 2015?\n\ns&p 500 2015?"
}
{
"_id": "qd49795a8",
"title": "",
"text": "what is the sum of the average backlog at year-end in 2014 and 2015?\n\nbacklog year-end 2014 2015?"
}
{
"_id": "qd496f724",
"title": "",
"text": "what was the total gross amount of unrecognized tax benefits in 2018?\n\nunrecognized tax benefits 2018?"
}
{
"_id": "qd496f102",
"title": "",
"text": "what was the average revenue from discontinued operations in 2013?\n\naverage revenue discontinued?"
}
{
"_id": "qd496f918",
"title": "",
"text": "what is the total of estimated future contingent acquisition obligations payable in cash in 2009?\n\ntotal future obligations cash 2009?"
}
{
"_id": "qd49859fc",
"title": "",
"text": "what is the aaa interest rate in 2009?\n\nrate 2009?"
}
{
"_id": "qd4981d2a",
"title": "",
"text": "what is the total capital in 2008 less tier 1 capital?\n\ntotal capital 2008 1?"
}
{
"_id": "qd497d4aa",
"title": "",
"text": "what was the average backlog in 2015?\n\nbacklog 2015?"
}
{
"_id": "qd497e0ee",
"title": "",
"text": "as of december 28, 2013, what percentage of the square footage of major facilities was owned?\n\ndecember 28, 2013, percentage facilities?"
}
{
"_id": "qd49850c4",
"title": "",
"text": "what is the sum of the high and low stock price for the second quarter 2002?\n\nsum low stock second quarter 2002?"
}
{
"_id": "qd4982d6a",
"title": "",
"text": "what was the total revenue in 2011?\n\ntotal revenue?"
}
{
"_id": "qd498998a",
"title": "",
"text": "what is the increased rent after five years?\n\nincreased five?"
}
{
"_id": "qd4977906",
"title": "",
"text": "what is the net change in revenue from 2007 to 2008?\n\nnet change 2007 2008?"
}
{
"_id": "qd498a6dc",
"title": "",
"text": "what was the total of non-utility nuclear earnings by the end of 2002?\n\nnon-utility nuclear earnings 2002?"
}
{
"_id": "qd498f128",
"title": "",
"text": "what is the net change in estimated future net amortization expense of present value of future profits from 2013 to 2014?\n\nnet change amortization expense profits 2013 2014?"
}
{
"_id": "qd4973770",
"title": "",
"text": "what was the total of contingent payments related to impella?\n\ntotal contingent payments?"
}
{
"_id": "qd498d6fc",
"title": "",
"text": "what was the change in the total debt from 2014 to 2015?\n\nchange debt 2014 2015?"
}
{
"_id": "qd496d118",
"title": "",
"text": "what was the cash provided by operating activities in 2013?\n\ncash activities 2013?"
}
{
"_id": "qd496f594",
"title": "",
"text": "what is the value of citi common stock in 2017 less an initial $100 investment?\n\nvalue citi stock 2017 $100?"
}
{
"_id": "qd49825e0",
"title": "",
"text": "what is the 2015 value of outstanding fuel hedges less the 2014 value?\n\n2015 fuel hedges 2014?"
}
{
"_id": "qd497a3b8",
"title": "",
"text": "what was the variance in the price of common stock from low to high in the first quarter of 2002?\n\nvariance price common stock first quarter 2002?"
}
{
"_id": "qd497c528",
"title": "",
"text": "what were the total annual dividend requirements in the end of the 2015 and 2016?\n\nannual dividend requirements 2015 2016?"
}
{
"_id": "qd498f394",
"title": "",
"text": "what is the highest stock price in the second quarter of 2017?\n\nhighest price second quarter?"
}
{
"_id": "qd4980326",
"title": "",
"text": "what is the assumed fmv of a share?\n\nassumed fmv?"
}
{
"_id": "qd498cc2a",
"title": "",
"text": "what is the value of european industrial packaging net sales for 2007 times 1000?\n\nvalue european packaging sales 2007?"
}
{
"_id": "qd497b7e0",
"title": "",
"text": "what was the total liability by the end of 2008?\n\ntotal liability 2008?"
}
{
"_id": "qd498ed9a",
"title": "",
"text": "what is the balance of total accounts payable and other current liabilities in 2014?\n\nbalance accounts liabilities 2014?"
}
{
"_id": "qd498e660",
"title": "",
"text": "what was the value of unrecognized tax benefits in 2016?\n\nunrecognized benefits 2016?"
}
{
"_id": "qd498d5e4",
"title": "",
"text": "what is the net change in rental expense for operating leases from 2009 to 2010?\n\nnet change rental expense 2009?"
}
{
"_id": "qd497c92e",
"title": "",
"text": "what was the total of annual long-term debt maturities in 2017?\n\ndebt maturities 2017?"
}
{
"_id": "qd498c428",
"title": "",
"text": "what is the net revenue in 2007?\n\nnet revenue?"
}
{
"_id": "qd4978d1a",
"title": "",
"text": "how much did the weighted average exercise price per share increase between 2005 and 2007?\n\nexercise price share 2005 2007?"
}
{
"_id": "qd49792ba",
"title": "",
"text": "what was the change in the total cash flow between 2014 and 2015?\n\nchange cash flow 2015?"
}
{
"_id": "qd4980a06",
"title": "",
"text": "what is the price of jpmorgan chase in 2014?\n\nprice jpmorgan chase?"
}
{
"_id": "qd4973c3e",
"title": "",
"text": "what percentage of total other assets was made of goodwill and identifiable intangible assets in 2012?\n\npercentage assets goodwill assets 2012?"
}
{
"_id": "qd4986d0c",
"title": "",
"text": "what is the fair value of notes due in 2015 plus those due 2017?\n\nfair value notes 2015 2017?"
}
{
"_id": "qd498650a",
"title": "",
"text": "what was the increase in the operating profit for space systems from 2011 to 2012?\n\nincrease operating profit space systems?"
}
{
"_id": "qd498c8b0",
"title": "",
"text": "what was the operating margin in 2014?\n\noperating margin?"
}
{
"_id": "qd49781b2",
"title": "",
"text": "how much does the fuel surcharge revenue in 2014 represent in relation to the one in 2013?\n\nfuel surcharge revenue 2014 2013?"
}
{
"_id": "qd498b1b8",
"title": "",
"text": "what is the net change in value of delphi automotive plc from 2011 to 2014?\n\nnet change delphi automotive 2014?"
}
{
"_id": "qd497214a",
"title": "",
"text": "in 2013, what was the ratio of sales to operating income?\n\nratio sales to income?"
}
{
"_id": "qd4972b4a",
"title": "",
"text": "what is the net change in the price for pmi common stock from 2013 to 2018?\n\nnet change price 2013 2018?"
}
{
"_id": "qd4979c6a",
"title": "",
"text": "what was the difference in net revenue between 2015 and 2016?\n\nnet revenue 2015?"
}
{
"_id": "qd498c2de",
"title": "",
"text": "what was the percentage of sales to restaurants in 2018?\n\npercentage sales 2018?"
}
{
"_id": "qd496e4f0",
"title": "",
"text": "what was the net favorable prior period development in 2010?\n\nnet favorable 2010?"
}
{
"_id": "qd4988300",
"title": "",
"text": "what is the sum of carrying value of notes due 2014 and 2015?\n\nsum notes 2014 2015?"
}
{
"_id": "qd497b4e8",
"title": "",
"text": "what was the price of lkq corporation in 2016?\n\nprice lkq 2016?"
}
{
"_id": "qd496fbca",
"title": "",
"text": "what is the difference of the price of cadence design from 2007 to 2012?\n\ndifference price design 2007 2012?"
}
{
"_id": "qd4970ce6",
"title": "",
"text": "what was the change in the balance of the prudential insurance company of america from 2016 to 2017?\n\nchange balance prudential insurance 2016 2017?"
}
{
"_id": "qd49885da",
"title": "",
"text": "what were the sales proceeds from cilcorp/medina valley in january 2003?\n\ncilcorp valley 2003?"
}
{
"_id": "qd4982112",
"title": "",
"text": "what is the value of advance auto parts stock in 2009 less 100?\n\nvalue advance auto 2009?"
}
{
"_id": "qd498411a",
"title": "",
"text": "what is the sum of goodwill and customer related intangible assets?\n\nsum goodwill assets?"
}
{
"_id": "qd498d21a",
"title": "",
"text": "what is the net change in the price of the nasdaq composite from 2008 to 2012?\n\nnet change nasdaq 2008 2012?"
}
{
"_id": "qd4982770",
"title": "",
"text": "what was the total of unrecognized tax benefits in 2015?\n\nunrecognized tax benefits?"
}
{
"_id": "qd498de22",
"title": "",
"text": "what is the value of cadence design systems in 2006 less 100?\n\nvalue cadence systems 2006?"
}
{
"_id": "qd498a5e2",
"title": "",
"text": "what is the total acquired intangible assets in thousands?\n\ntotal acquired assets?"
}
{
"_id": "qd498ce96",
"title": "",
"text": "what was the value of stock-based compensation in 2011?\n\nstock-based compensation?"
}
{
"_id": "qd497b95c",
"title": "",
"text": "what was the change in price for ball corporation between 12/31/10 and 12/31/05?\n\nchange price ball 12/31/10?"
}
{
"_id": "qd4978306",
"title": "",
"text": "what was the total of net earnings attributable to pmi in 2017?\n\nnet earnings pmi 2017?"
}
{
"_id": "qd4988422",
"title": "",
"text": "what is the net change in amortized cost during 2009?\n\nnet change cost?"
}
{
"_id": "qd4981186",
"title": "",
"text": "in the year of 2008, what were the preliminary purchase price allocations related to contract-based intangible assets, in thousands?\n\n2008, preliminary purchase allocations contract assets?"
}
{
"_id": "qd4976d12",
"title": "",
"text": "what was the total payment volume for american express, in billions?\n\ntotal american express billions?"
}
{
"_id": "qd4971344",
"title": "",
"text": "what is the net change in the value of commodities from 2016 to 2017?\n\nnet change commodities 2016?"
}
{
"_id": "qd498cb30",
"title": "",
"text": "what were operating profits in 2012?\n\nprofits 2012?"
}
{
"_id": "qd4989ac0",
"title": "",
"text": "in the year of 2011, how much did the mutual funds represent in relation to the total investment?\n\n2011, mutual funds represent total investment?"
}
{
"_id": "qd4987784",
"title": "",
"text": "what is the sum of interest only product in 2012 and principal and interest product in 2012?\n\nsum of interest product 2012 principal?"
}
{
"_id": "qd4983b3e",
"title": "",
"text": "what was the change in the unamortized debt issuance costs associated with the senior notes from 2016 to 2017?\n\nunamortized debt senior notes 2016 2017?"
}
{
"_id": "qd497843c",
"title": "",
"text": "what is the combined total of the net cash provided by operating activities and the one used in investing activities?\n\ncombined total net cash operating investing activities?"
}
{
"_id": "qd497feb2",
"title": "",
"text": "what is the ratio of common stock outstanding shares post split to prior?\n\nratio common stock shares split?"
}
{
"_id": "qd4970de0",
"title": "",
"text": "what was the ratio of the 2016 hedged gallons to 2017?\n\n2016 hedged gallons?"
}
{
"_id": "qd498694c",
"title": "",
"text": "what was the number of new stores in 2008 and 2012?\n\nstores 2008 2012?"
}
{
"_id": "qd497fc46",
"title": "",
"text": "what was the total value of the shares purchased in october?\n\ntotal value shares october?"
}
{
"_id": "qd496dc08",
"title": "",
"text": "what was the difference in total shipment volume between 2010 and 2011?\n\ndifference shipment 2010 2011?"
}
{
"_id": "qd498fc86",
"title": "",
"text": "what was the fair value in 2011?\n\nfair value?"
}
{
"_id": "qd496f404",
"title": "",
"text": "what is the net change in the balance of other intangible assets net from 2003 to 2004?\n\nnet change intangible assets 2003 2004?"
}
{
"_id": "qd49703d6",
"title": "",
"text": "what was the minimum annual rental payment in 2011?\n\nminimum payment 2011?"
}
{
"_id": "qd4974436",
"title": "",
"text": "for the five year period ended in 2012, what was the fluctuation of the stockholder return for cadence design systems inc .?\n\nfive year fluctuation stockholder cadence systems. ?"
}
{
"_id": "qd4981bfe",
"title": "",
"text": "what is the proportional recoverable environmental capital expenditures in 2015?\n\nrecoverable expenditures 2015?"
}
{
"_id": "qd4983256",
"title": "",
"text": "what is the fair value per share in 2016?\n\nfair value 2016?"
}
{
"_id": "qd496fd00",
"title": "",
"text": "what was the net change in total debt from 2014 to 2015?\n\nnet change debt 2014?"
}
{
"_id": "qd4988a76",
"title": "",
"text": "what was the difference in shorewood net sales between 2005 and 2006?\n\nshorewood sales 2005 2006?"
}
{
"_id": "qd497a926",
"title": "",
"text": "what was the total of north american consumer packaging net sales in 2009, in millions?\n\ntotal north american 2009, millions?"
}
{
"_id": "qd498c090",
"title": "",
"text": "as of december 31, 2007, what percentage did the future principal payments of corporate debt due in 2011 represent in relation to the total ones?\n\n31, 2007, percentage future payments corporate debt 2011?"
}
{
"_id": "qd4984a16",
"title": "",
"text": "what was the total of intangible assets, in millions?\n\nintangible assets millions?"
}
{
"_id": "qd4970f34",
"title": "",
"text": "what was the total in raw materials and supplies in 2018?\n\nraw supplies 2018?"
}
{
"_id": "qd4971722",
"title": "",
"text": "what was the total of payments for entergy arkansas, in millions?\n\ntotal payments arkansas millions?"
}
{
"_id": "qd4987d7e",
"title": "",
"text": "what was the total of annual long-term debt maturities ( excluding lease obligations ) and annual cash sinking fund requirements for debt outstanding in 2005?\n\nannual debt maturities lease cash sinking fund requirements 2005?"
}
{
"_id": "qd496c9c0",
"title": "",
"text": "what was the change in the unamortized debt issuance costs associated with the senior notes between 2016 and 2017?\n\nunamortized debt senior notes 2016 2017?"
}
{
"_id": "qd49856aa",
"title": "",
"text": "what was the percentage of equity ownership interests acquired in eurosport?\n\npercentage equity eurosport?"
}
{
"_id": "qd49867da",
"title": "",
"text": "what was the change in estimated future net amortization expense of present value of future profits between 2013 and 2014?\n\nchange future amortization profits 2013 2014?"
}
{
"_id": "qd4987b12",
"title": "",
"text": "what was, in thousands, the total of purchase commitments in the years of 2010 and 2011, combined?\n\nthousands total purchase commitments 2011, combined?"
}
{
"_id": "qd497471a",
"title": "",
"text": "what was the performance value of the united parcel service , inc . in 2006?\n\nunited parcel service. 2006?"
}
{
"_id": "qd498cd6a",
"title": "",
"text": "what was the fuel surcharge program freight revenue in 2014?\n\nfuel surcharge freight?"
}
{
"_id": "qd4978054",
"title": "",
"text": "what was the net change in value of the amortization expense from 2016 to 2017?\n\nnet change amortization expense 2016?"
}
{
"_id": "qd49893e0",
"title": "",
"text": "in the year of 2007, what was the net income as a portion of the revenue?\n\n2007, net income portion revenue?"
}
{
"_id": "qd497b006",
"title": "",
"text": "what was the long-term debt in 2011?\n\n-term debt 2011?"
}
{
"_id": "qd498f47a",
"title": "",
"text": "what was the amount of long-term debt maturities in 2018?\n\ndebt maturities 2018?"
}
{
"_id": "qd496ecd4",
"title": "",
"text": "what was the tier 2 capital in 2008?\n\ntier 2?"
}
{
"_id": "qd4988152",
"title": "",
"text": "what was the change in the return of the kbw bank index from 2009 to 2014?\n\nchange bank index 2009 2014?"
}
{
"_id": "qd498b99c",
"title": "",
"text": "what was the percentage of total commitments that expire in less than a year?\n\npercentage commitments expire less year?"
}
{
"_id": "qd496e07c",
"title": "",
"text": "in the year of 2008, what was the variance of the foreign exchange products in the first section?\n\n2008, variance foreign exchange first section?"
}
{
"_id": "qd4977e06",
"title": "",
"text": "what was the value of credit net in 2017?\n\ncredit net 2017?"
}
{
"_id": "qd498cfd6",
"title": "",
"text": "what was the difference in rent expense and certain office equipment expense under agreements between 2012 and 2013?\n\ndifference rent office equipment 2012 2013?"
}
{
"_id": "qd4979f26",
"title": "",
"text": "what were net sales in 2014?\n\nsales 2014?"
}
{
"_id": "qd4977410",
"title": "",
"text": "what is the amount of the goodwill?\n\namount goodwill?"
}
{
"_id": "qd498d90e",
"title": "",
"text": "what was revenue in 2013?\n\n2013?"
}
{
"_id": "qd497ca32",
"title": "",
"text": "what was the cash by operating activities for 2014?\n\ncash activities 2014?"
}
{
"_id": "qd497cff0",
"title": "",
"text": "what was the purchase price, net of what cash was acquired?\n\npurchase price cash acquired?"
}
{
"_id": "qd496d3f2",
"title": "",
"text": "what was the total of risk and insurance brokerage services segment revenue in 2009?\n\ntotal risk insurance revenue 2009?"
}
{
"_id": "qd496eb76",
"title": "",
"text": "what are the annual long-term obligations in 2014?\n\nannual obligations?"
}
{
"_id": "qd498be10",
"title": "",
"text": "what is the maximum potential change that can be made by cme on their current line of credit?\n\nmaximum change cme current line credit?"
}
{
"_id": "qd497f1d8",
"title": "",
"text": "what is the net change in the cash flows from operations from 2011 to 2012?\n\nnet change cash to 2012?"
}
{
"_id": "qd49779e2",
"title": "",
"text": "what was the amount of cash provided by operating activities?\n\namount cash provided activities?"
}
{
"_id": "qd496ea54",
"title": "",
"text": "what's the portion of fair value to carrying value?\n\nportion fair carrying?"
}
{
"_id": "qd4979b34",
"title": "",
"text": "what was the change in capital gain distributions from 2008 to 2009?\n\nchange capital 2008 2009?"
}
{
"_id": "qd4978afe",
"title": "",
"text": "what is the net change in revenue for risk solutions from 2010 to 2011?\n\nnet change 2010 2011?"
}
{
"_id": "qd4989e12",
"title": "",
"text": "as of december 31, 2004, what percentage of the total of aggregate contractual obligations was due to long-term debt?\n\n31, 2004, percentage obligations long-term debt?"
}
{
"_id": "qd498aace",
"title": "",
"text": "what is the value of the investment in snap-onincorporated\tin 2008?\n\ninvestment snap-onincorporated 2008?"
}
{
"_id": "qd497d6c6",
"title": "",
"text": "what is the sum of the provision recapture for purchased impaired loans in 2014 and 2015?\n\nsum recapture loans 2014 2015?"
}
{
"_id": "qd498d85a",
"title": "",
"text": "what was the price performance of the pmi in 2014?\n\nperformance pmi 2014?"
}
{
"_id": "qd497f58e",
"title": "",
"text": "in 2008, what percentage did the tier 2 capital represent in relation to the total one?\n\n2008, tier 2 capital total?"
}
{
"_id": "qd498a4d4",
"title": "",
"text": "what was the difference in free cash flow between 2015 and 2014\n\ndifference cash 2015 2014"
}
{
"_id": "qd4983a30",
"title": "",
"text": "what is the price of citi in 2017?\n\nprice 2017?"
}
{
"_id": "qd498fe8e",
"title": "",
"text": "what was the total amortization amount in the years of 2015 to 2018?\n\ntotal amortization 2015 2018?"
}
{
"_id": "qd498458e",
"title": "",
"text": "what is the price of united parcel service stock in 2006 less 100?\n\nprice united parcel 2006?"
}
{
"_id": "qd497b25e",
"title": "",
"text": "what is the sum of the average price per share in november and december?\n\nsum average price share december?"
}
{
"_id": "qd4984afc",
"title": "",
"text": "what is the value of north american consumer packaging net sales in 2008 times 1000?\n\nvalue north american sales 2008?"
}
{
"_id": "qd497dedc",
"title": "",
"text": "what was the difference in research and development net between 2011 and 2012?\n\ndifference development 2011 2012?"
}
{
"_id": "qd4981e6a",
"title": "",
"text": "what were, in millions, the total catastrophe losses in the years of 2009 and 2010, combined?\n\ncatastrophe losses 2009 2010,?"
}
{
"_id": "qd4975aca",
"title": "",
"text": "what is the value of cap ex for pp&e in 2010?\n\nvalue cap pp 2010?"
}
{
"_id": "qd4983508",
"title": "",
"text": "what was the difference in total stock-based compensation expense between 2009 and 2010?\n\ncompensation expense 2009 2010?"
}
{
"_id": "qd4985d26",
"title": "",
"text": "what was the change in total net goodwill between 2010 and 2011?\n\nchange goodwill 2010 2011?"
}
{
"_id": "qd496efe0",
"title": "",
"text": "what was the 2016 net revenue?\n\n2016?"
}
{
"_id": "qd498885a",
"title": "",
"text": "what was the net pension cost in 2018?\n\nnet 2018?"
}
{
"_id": "qd497ed64",
"title": "",
"text": "between the years of 2008 and 2009, what was the change in the rental expense?\n\n2008 2009, change rental expense?"
}
{
"_id": "qd49812d0",
"title": "",
"text": "what is the price of e*trade financial corporation in 2014 less an initial 100?\n\nprice e*trade 2014 initial 100?"
}
{
"_id": "qd497a26e",
"title": "",
"text": "as of december 31, 2007, what was the amount of the purchase obligations due in 2008?\n\n31, 2007, purchase obligations 2008?"
}
{
"_id": "qd497e878",
"title": "",
"text": "what is the rental expense under operating leases in 2005?\n\nrental expense 2005?"
}
{
"_id": "qd4973504",
"title": "",
"text": "what was the final aggregate purchase price of all towers, in millions of dollars?\n\nfinal purchase price towers millions?"
}
{
"_id": "qd49770fa",
"title": "",
"text": "what is the price of e*trade financial corporation in 2014?\n\nprice e*trade 2014?"
}
{
"_id": "qd49878ce",
"title": "",
"text": "what was the net change in revenue from 2006 to 2007?\n\nnet change 2006 2007?"
}
{
"_id": "qd498482c",
"title": "",
"text": "what was the change in the return of the lkq corporation from 2011 to 2016?\n\nchange lkq 2011 2016?"
}
{
"_id": "qd497cb22",
"title": "",
"text": "what was the increase observed in the net revenue from 2007 to 2008?\n\nnet revenue 2007 2008?"
}
{
"_id": "qd497da68",
"title": "",
"text": "what was the price of the tractor supply company stock in 2014?\n\nprice tractor stock 2014?"
}
{
"_id": "qd497562e",
"title": "",
"text": "during 2009, what was the total of additions charged to expense?\n\n2009, additions expense?"
}
{
"_id": "qd498b6d6",
"title": "",
"text": "what was the change in rd&e spendings from 2013 to 2014?\n\nchange 2013 2014?"
}
{
"_id": "qd498eb10",
"title": "",
"text": "what was the fluctuation in the total return of citi common stock for the five year period ended 2017?\n\nfluctuation return citi five year 2017?"
}
{
"_id": "qd498fd94",
"title": "",
"text": "what was the difference in rent payment after 10 years compared to after five years?\n\ndifference rent 10 years five?"
}
{
"_id": "qd496fa58",
"title": "",
"text": "as of december 31, 2012, what was the remaining amount under the share repurchase program for shares of schlumberger common stock?\n\n2012, remaining share repurchase program schlumberger stock?"
}
{
"_id": "qd4981640",
"title": "",
"text": "in the year of 2009, considering the percentage of the total facilities the bbb/baa ones represented, if there had been 50 facilities, how many of them would have been bbb/baa?\n\n2009, percentage total facilities bbb/baa 50 facilities how many bbb/baa?"
}
{
"_id": "qd497eb2a",
"title": "",
"text": "what was the pension service cost in 2018, in millions?\n\ncost 2018 millions?"
}
{
"_id": "qd496cfc4",
"title": "",
"text": "what was the total african and us net undeveloped acres expiring in 2016?\n\nafrican undeveloped acres 2016?"
}
{
"_id": "qd497d5c2",
"title": "",
"text": "what was the total of operating leases in 2007?\n\ntotal leases 2007?"
}
{
"_id": "qd497d964",
"title": "",
"text": "what is the net change in the cash dividend for the period ended march 31, 2002 to the period ended march 31, 2003?\n\nnet change cash dividend ended 31, 2002 2003?"
}
{
"_id": "qd497729e",
"title": "",
"text": "what was the change in investment banking fees from 2005 to 2006?\n\nchange fees 2005 2006?"
}
{
"_id": "qd49813d4",
"title": "",
"text": "what is the value of total accumulated other comprehensive losses in 2014?\n\nvalue total losses 2014?"
}
{
"_id": "qd496df14",
"title": "",
"text": "what was the total expense for repairs and maintenance incurred in 2011?\n\ntotal expense repairs 2011?"
}
{
"_id": "qd4973d42",
"title": "",
"text": "what was the total increase in the volume/weather segment from 2009 to 2010?\n\nincrease volume 2009 2010?"
}
{
"_id": "qd49704da",
"title": "",
"text": "what is 45 times 4?\n\n45?"
}
{
"_id": "qd497cc6c",
"title": "",
"text": "what was the change in the rsus from 2009 to 2010?\n\nchange 2009 2010?"
}
{
"_id": "qd496e374",
"title": "",
"text": "what is the sum of long-term debt due in 2004 and 2005?\n\nsum debt 2004 2005?"
}
{
"_id": "qd4975cf0",
"title": "",
"text": "what is the net rental expense in 2009?\n\nexpense 2009?"
}
{
"_id": "qd4983fc6",
"title": "",
"text": "in the year of 2016, what percentage did the pension settlement losses represent in relation to the total of special terminations settlements and curtailments?\n\n2016, percentage pension losses terminations settlements curtailments?"
}
{
"_id": "qd4983ea4",
"title": "",
"text": "what is the net change in the value of total accumulated other comprehensive losses from 2013 or 2014?\n\nnet change value losses 2013 2014?"
}
{
"_id": "qd49879d2",
"title": "",
"text": "what was the change in the defined benefit plan income from 2016 to 2017?\n\nchange defined benefit 2016?"
}
{
"_id": "qd4987266",
"title": "",
"text": "what was the net change in development costs from 2006 to 2007?\n\nnet change 2006 2007?"
}
{
"_id": "qd4980204",
"title": "",
"text": "what was the return for united parcel service inc . in 2006?\n\nunited service. 2006?"
}
{
"_id": "qd4972c76",
"title": "",
"text": "as of december 31, 2003, what was the total amount of long-term debt due in the years of 2004 and 2005, in thousands?\n\n2003, total long-term debt 2004 2005, thousands?"
}
{
"_id": "qd498f858",
"title": "",
"text": "how much was contributed to defined contribution plans for foreign countries in 2008?\n\ncontributed plans countries 2008?"
}
{
"_id": "qd4987c84",
"title": "",
"text": "what were the number of stores at the end of 2011?\n\nnumber stores end 2011?"
}
{
"_id": "qd497c672",
"title": "",
"text": "what is the value of accumulated depreciation and amortization at the end of 2005?\n\naccumulated depreciation amortization 2005?"
}
{
"_id": "qd498764e",
"title": "",
"text": "what was the total weighted average common shares outstanding for diluted computations in 2016 and 2017?\n\ntotal weighted shares computations 2016 2017?"
}
{
"_id": "qd4978f04",
"title": "",
"text": "what was the net change in value of total net goodwill from 2010 to 2011?\n\nnet change goodwill 2010 2011?"
}
{
"_id": "qd49767c2",
"title": "",
"text": "what was the interest cost for 2018?\n\ninterest 2018?"
}
{
"_id": "qd498f9c0",
"title": "",
"text": "between the years of 2017 and 2018, what was the variation observed in the total gross amount of unrecognized tax benefits?\n\n2017 2018 variation in unrecognized tax benefits?"
}
{
"_id": "qd497d39c",
"title": "",
"text": "what was the value of pmi common stock in 2018?\n\nvalue pmi 2018?"
}
{
"_id": "qd498540c",
"title": "",
"text": "what was the difference in cash provided by operating activities between 2013 and 2014?\n\ndifference cash activities 2013 2014?"
}
{
"_id": "qd4988d64",
"title": "",
"text": "what was the total net revenue in 2017, in millions?\n\nrevenue 2017 millions?"
}
{
"_id": "qd4982a22",
"title": "",
"text": "what was the price performance of the advance auto parts stock in january 2009?\n\nprice performance advance auto 2009?"
}
{
"_id": "qd496fe5e",
"title": "",
"text": "what was the percentage of sq ft of the office in alpharette, georgia not leased as of 12/31/13?\n\npercentage office alpharette not leased 12/31/13?"
}
{
"_id": "qd4984912",
"title": "",
"text": "what was the difference in sold receivables between 2007 and 2008?\n\nreceivables 2007 2008?"
}
{
"_id": "qd497d7e8",
"title": "",
"text": "in the year of 2009, considering the segment 2019s net sales and the percent they represented in relation to the 2019s consolidated net sales, what can be concluded to have been these consolidates sales, in billions?\n\n2009, 2019s net sales percent consolidated net sales concluded consolidates sales billions?"
}
{
"_id": "qd4985556",
"title": "",
"text": "what is the value of goodwill?\n\nvalue goodwill?"
}
{
"_id": "qd498efb6",
"title": "",
"text": "what was the difference in fuel surcharge program freight revenue between 2012 and 2013?\n\ndifference fuel surcharge freight revenue?"
}
{
"_id": "qd497bbdc",
"title": "",
"text": "what is the value of s&p financials in 2016?\n\ns&p 2016?"
}
{
"_id": "qd498d30a",
"title": "",
"text": "what were net inventories in 2003?\n\ninventories?"
}
{
"_id": "qd498a826",
"title": "",
"text": "what was the beginning number of stores in 2012?\n\nbeginning stores 2012?"
}
{
"_id": "qd497e5a8",
"title": "",
"text": "what is the net change in the price of henry hub natural gas from 2007 to 2009?\n\nnet change henry hub 2007 2009?"
}
{
"_id": "qd498e282",
"title": "",
"text": "what is the total of receivables from puerto rico?\n\nreceivables rico?"
}
{
"_id": "qd496f2b0",
"title": "",
"text": "what was the value of liability in 2007?\n\nliability 2007?"
}
{
"_id": "qd4970778",
"title": "",
"text": "what was the change in the average of investments from 2014 to 2015?\n\nchange investments 2014 2015?"
}
{
"_id": "qd498fbaa",
"title": "",
"text": "how much does the total of intangibles represent in relation to the total amortization in 2014?\n\ntotal intangibles represent amortization 2014?"
}
{
"_id": "qd4976fc4",
"title": "",
"text": "what is the value of the s&p 500 in 2005 less an assumed initial $100 investment?\n\ns&p 500 2005 $100 investment?"
}
{
"_id": "qd4984fac",
"title": "",
"text": "what is the fair value per share in 2015?\n\nfair value 2015?"
}
{
"_id": "qd49886d4",
"title": "",
"text": "what was the net change in the fair value of derivatives outstanding from 2007 to 2008?\n\nnet change derivatives 2007 2008?"
}
{
"_id": "qd497a0fc",
"title": "",
"text": "what portion of the total identifiable net assets in cash?\n\nportion net assets cash?"
}
{
"_id": "qd4983918",
"title": "",
"text": "what is the price of tractor supply company in 2013?\n\nprice tractor 2013?"
}
{
"_id": "qd497b650",
"title": "",
"text": "what was the long-term retail/hnw in americas as a percentage of the total long-term retail/hnw?\n\nlong-term retail/hnw americas percentage total?"
}
{
"_id": "qd498bcda",
"title": "",
"text": "between the years of 2008 and 2009, what was the variation in the capital gain distributions?\n\n2008 2009, variation capital distributions?"
}
{
"_id": "qd4981776",
"title": "",
"text": "what was the change in the interest income from 2014 to 2015?\n\nchange interest 2014 2015?"
}
{
"_id": "qd498e372",
"title": "",
"text": "what is the amount of long-term debt due in 2014?\n\nlong-term debt 2014?"
}
{
"_id": "qd496e64e",
"title": "",
"text": "what was the change in net revenues during 2003?\n\nnet revenues 2003?"
}
{
"_id": "qd49708fe",
"title": "",
"text": "what was the closing price of common stock as of 2/11/11?\n\nclosing price stock?"
}
{
"_id": "qd498abe6",
"title": "",
"text": "between the years of 2016 and 2017, what was the change in the number of class a common stocks issued and outstanding?\n\n2016 2017 change class common stocks issued outstanding?"
}
{
"_id": "qd497d266",
"title": "",
"text": "what was the total of short-term borrowings in 2016?\n\ntotal borrowings 2016?"
}
{
"_id": "qd497a84a",
"title": "",
"text": "what is the effect of volume/weather in net revenue during 2010, in millions?\n\neffect volume net revenue millions?"
}
{
"_id": "qd4983c4c",
"title": "",
"text": "what is the net change in the non-us pension plans rate from 2014 to 2015?\n\nnet change non-us 2014 2015?"
}
{
"_id": "qd49714d4",
"title": "",
"text": "what is the net change in loews common stock from 2013 to 2014?\n\nnet change stock 2014?"
}
{
"_id": "qd498f204",
"title": "",
"text": "what was the difference common stock under stock and option plans and the total number?\n\ndifference common stock option total?"
}
{
"_id": "qd497dcde",
"title": "",
"text": "what was the total increase in the other regulatory credits in 2003?\n\nincrease regulatory credits 2003?"
}
{
"_id": "qd497f9bc",
"title": "",
"text": "what is the price of ball corporation in 2010?\n\nprice ball 2010?"
}
{
"_id": "qd496cb6e",
"title": "",
"text": "what is the ratio of discretionary company contributions to total expensed amounts for savings plans in 2009?\n\nratio company contributions savings plans 2009?"
}
{
"_id": "qd497ec92",
"title": "",
"text": "what was the total cash paid for interest in the years of 2015 and 2016, combined?\n\ntotal cash paid interest 2016,?"
}
{
"_id": "qd496d8f2",
"title": "",
"text": "what was the number of gas customers in 2008?\n\ngas customers 2008?"
}
{
"_id": "qd498103c",
"title": "",
"text": "what is the value of other sinking fund requirements times 1000?\n\nsinking fund 1000?"
}
{
"_id": "qd498043e",
"title": "",
"text": "what was the total deferred compensation plan investments in 2011?\n\ndeferred compensation investments?"
}
{
"_id": "qd4980f24",
"title": "",
"text": "what was the net income ( loss ) attributable to common shareholders in 2008?\n\nnet income loss shareholders 2008?"
}
{
"_id": "qd4977be0",
"title": "",
"text": "what was the percentage of total segment operations that was made of investment banking in 2005?\n\npercentage operations investment banking 2005?"
}
{
"_id": "qd498a100",
"title": "",
"text": "what was the change in the value of the interest retained by upri from 2007 to 2008?\n\nchange value interest upri 2007 2008?"
}
{
"_id": "qd4975fb6",
"title": "",
"text": "what is the sum of the weighted average common shares outstanding for diluted computations in 2017 and 2016?\n\nsum shares diluted computations 2017 2016?"
}
{
"_id": "qd49763a8",
"title": "",
"text": "what was the cash dividend per share in the last quarter of 2002?\n\ncash dividend last quarter?"
}
{
"_id": "qd4985f56",
"title": "",
"text": "what would be the change in the multi-currency line of credit if the potential increase was fulfilled?\n\nchange multi-currency line credit potential increase?"
}
{
"_id": "qd4983652",
"title": "",
"text": "what is the value of gross unrecognized tax benefits at the end of 2015?\n\nunrecognized tax benefits 2015?"
}
{
"_id": "qd4975822",
"title": "",
"text": "what was the total of u.s . dollar notes issued in 2014 and that matured in either 2024 or 2044, in millions?\n\n. dollar notes 2014 matured 2024 2044 millions?"
}
{
"_id": "qd49846ec",
"title": "",
"text": "what is the net change in long-term debt payments from 2007 to 2011?\n\nnet change 2007 2011?"
}
{
"_id": "qd49798f0",
"title": "",
"text": "what is the price of pmi in 2014?\n\nprice pmi?"
}
{
"_id": "qd497c3de",
"title": "",
"text": "what was the closing price of the common stock in february of 2011?\n\nclosing price common stock?"
}
{
"_id": "qd4974012",
"title": "",
"text": "in 2014, what percentage did the notional value of derivatives designated as hedging instruments under gaap represent in relation to the fair value?\n\n2014, percentage notional value hedging instruments fair value?"
}
{
"_id": "qd4987018",
"title": "",
"text": "what was total operating income in 2013?\n\nincome 2013?"
}
{
"_id": "qd498b06e",
"title": "",
"text": "what was the amount of the afs investment securities in 2018?\n\nafs securities 2018?"
}
{
"_id": "qd49860dc",
"title": "",
"text": "what was the cash capital investments in track in 2006?\n\ncash investments 2006?"
}
{
"_id": "qd498aee8",
"title": "",
"text": "what was the total long-term debt net in 2015?\n\n-term debt 2015?"
}
{
"_id": "qd497f0a2",
"title": "",
"text": "during 2011, what percentage did the higher charges related to tobacco and health judgments represent in relation to the operating companies income increase?\n\n2011, percentage higher charges tobacco health companies income?"
}
{
"_id": "qd4972f78",
"title": "",
"text": "what was the average individual price of the shares used in the acquisition of suros?\n\naverage price shares acquisition suros?"
}
{
"_id": "qd49768da",
"title": "",
"text": "what is the net change of compensation cost recognized for rsus from 2008 to 2009?\n\nnet change compensation 2008 2009?"
}
{
"_id": "qd498a218",
"title": "",
"text": "in the year of 2005, what percentage did the federal nol set to expire between 2016 to 2020 represent in relation to the total federal one?\n\n2005, percentage federal nol expire 2016 2020 federal?"
}
{
"_id": "qd4970bd8",
"title": "",
"text": "what was the total number of shares purchased in november for the q4 ended 12/31/18?\n\ntotal shares november 12/31/18?"
}
{
"_id": "qd497780c",
"title": "",
"text": "what is the weighted average cost per share in 2017?\n\nweighted cost 2017?"
}
{
"_id": "qd4980c18",
"title": "",
"text": "what is the total number of securities approved by security holders?\n\ntotal securities approved holders?"
}
{
"_id": "qd4984214",
"title": "",
"text": "what was the change in the average wti crude oil benchmark from 2007 to 2009?\n\nchange average wti 2007 2009?"
}
{
"_id": "qd497ef44",
"title": "",
"text": "what was the total of diluted earnings per common share as of december 2013?\n\ndiluted earnings share 2013?"
}
{
"_id": "qd496da50",
"title": "",
"text": "what was, in millions, the operating income in 2017?\n\noperating income 2017?"
}
{
"_id": "qd496dd84",
"title": "",
"text": "what were the total accumulated other comprehensive losses in 2015?\n\ntotal losses 2015?"
}
{
"_id": "qd4977f3c",
"title": "",
"text": "what was the change in amortized cost in 2009?\n\nchange cost 2009?"
}
{
"_id": "qd496d596",
"title": "",
"text": "what is the change in price of the s&p 500 from 2015 to 2016?\n\nchange s&p 500 2015?"
}
{
"_id": "qd4990190",
"title": "",
"text": "what was the annual performance of the jkhy stock in 2010?\n\nannual performance stock 2010?"
}
{
"_id": "qd496d758",
"title": "",
"text": "what is the ratio of fair value to carrying value?\n\nratio fair carrying?"
}
{
"_id": "qd497264a",
"title": "",
"text": "how much did net revenue change between 2015 and 2016?\n\nrevenue 2015 2016?"
}
{
"_id": "qd49863d4",
"title": "",
"text": "what was the change in total liabilities for litigation settlements from 2006 to 2007?\n\nchange liabilities 2006 2007?"
}
{
"_id": "qd498c194",
"title": "",
"text": "what is the amount of long-term debt due in 2014, in thousands?\n\nlong-term debt thousands?"
}
{
"_id": "qd498f6f0",
"title": "",
"text": "what is the buy/sell volume in 2006?\n\nvolume 2006?"
}
{
"_id": "qd497b11e",
"title": "",
"text": "what was the value of goodwill , representing the excess of the purchase price over the fair value of the net tangible and identifiable intangible assets acquired in the merger by 1000?\n\nvalue goodwill excess purchase price over net assets acquired merger 1000?"
}
{
"_id": "qd496d2b2",
"title": "",
"text": "what is the amount of oil and gas mmboe from canada divided by the total?\n\namount oil gas canada total?"
}
{
"_id": "qd496e252",
"title": "",
"text": "what was the amount of notes maturing in june 2022?\n\nnotes june 2022?"
}
{
"_id": "qd497019c",
"title": "",
"text": "what was the operating income in 2017?\n\nincome 2017?"
}
{
"_id": "qd497bf38",
"title": "",
"text": "what is the value of loews common stock in 2011 less 100?\n\nvalue loews common stock?"
}
{
"_id": "qd49733ce",
"title": "",
"text": "what was the change in the performance value of the s&p 500 from 2012 to 2017?\n\nchange s&p 500 2012 2017?"
}
{
"_id": "qd49730fe",
"title": "",
"text": "what was reporting operating profit in 2018?\n\nprofit 2018?"
}
{
"_id": "qd4976632",
"title": "",
"text": "what was, in millions, the total of future minimum lease commitments at december 31 , 2006 for all operating leases that have a remaining term of more than one year?\n\nmillions total future lease commitments december 31 2006 leases one year?"
}
{
"_id": "qd497dbb2",
"title": "",
"text": "what was the difference in total smokeless product shipment volume between 2011 and 2012?\n\ndifference smokeless 2011 2012?"
}
{
"_id": "qd498e02a",
"title": "",
"text": "what was the profit margin in 2015?\n\nprofit 2015?"
}
{
"_id": "qd498c572",
"title": "",
"text": "what is the number of shares not included in the repurchase plan?\n\nshares not repurchase plan?"
}
{
"_id": "qd498c7b6",
"title": "",
"text": "as of february 13, 2009, what was the average number of outstanding shares of common stock per registered holder?\n\nfebruary 13, 2009, average shares stock?"
}
{
"_id": "qd49764fc",
"title": "",
"text": "what is the value of mmboe from canada divided by the total?\n\nmmboe canada divided?"
}
{
"_id": "qd49754ee",
"title": "",
"text": "what was the total value spent on the repurchase of shares during october 2007?\n\ntotal repurchase october 2007?"
}
{
"_id": "qd498a38a",
"title": "",
"text": "between the years of 2004 and 2005, what was the variation in the long-term debt?\n\n2004 variation long-term debt?"
}
{
"_id": "qd498e4da",
"title": "",
"text": "what is the net change in total commitments to extend credit and other commitments from 2017 to 2018?\n\nnet change commitments credit 2017 2018?"
}
{
"_id": "qd497ddba",
"title": "",
"text": "what is the net change in value of annual long-term debt maturities from 2016 to 2017?\n\nnet change debt 2016 2017?"
}
{
"_id": "qd497ac6e",
"title": "",
"text": "what was the variance in the price of shares in the first quarter of 2002?\n\nvariance price first quarter 2002?"
}
{
"_id": "qd498bb90",
"title": "",
"text": "what was the change in the net revenue from 2012 to 2013?\n\nchange net revenue 2012?"
}
{
"_id": "qd49806fa",
"title": "",
"text": "what was the carrying amount reported on the consolidated balance sheet trading assets in 2008?\n\ncarrying amount consolidated balance 2008?"
}
{
"_id": "qd497ae62",
"title": "",
"text": "what was the research and development net in 2013?\n\ndevelopment net 2013?"
}
{
"_id": "qd4985b64",
"title": "",
"text": "what is the value of the s&p 500 index on january 3, 2009 less it at the end of 2006?\n\nvalue s&p 500 january 2009 end 2006?"
}
{
"_id": "qd4988ff8",
"title": "",
"text": "what were operating revenues in 2002?\n\nrevenues 2002?"
}
{
"_id": "qd49857c2",
"title": "",
"text": "what is the total value of the options , warrants and rights that remain available for future issuance?\n\ntotal value options warrants rights future?"
}
{
"_id": "qd497f2fa",
"title": "",
"text": "for the year ended on may 27, 2012, what was the total interest expense, in millions?\n\nyear ended total interest expense millions?"
}
{
"_id": "qd4980d76",
"title": "",
"text": "between the years of 2011 and 2012, what was the change in rent expenses?\n\n2012, change rent expenses?"
}
{
"_id": "qd498664a",
"title": "",
"text": "what is the number of securities to be issued upon exercise of outstanding options warrants and rights under equity compensation plans approved by security holders?\n\nnumber securities issued options warrants rights equity compensation plans?"
}
{
"_id": "qd498b85c",
"title": "",
"text": "what was the difference in accrued wages and vacation between 2007 and 2008?\n\nwages vacation 2007 2008?"
}
{
"_id": "qd497c15e",
"title": "",
"text": "what was the change in the amortization expense from 2007 to 2008?\n\nchange expense 2007 2008?"
}
{
"_id": "qd497915c",
"title": "",
"text": "what is the net change fair value of forward exchange contracts asset from 2010 to 2011?\n\nnet change contracts 2010 2011?"
}
{
"_id": "qd4974ac6",
"title": "",
"text": "what was the percentage of the total second generation capital expenditures by reportable operating segment that was office related in 2012?\n\npercentage second generation capital expenditures office 2012?"
}
{
"_id": "qd4976b96",
"title": "",
"text": "from 2010 to 2011, what was the change in the value of the loews common stock?\n\n2010 2011, change common stock?"
}
{
"_id": "qd4980b0a",
"title": "",
"text": "what is the value of non-tower cash flow for the twelve months ended december 31 2005?\n\nnon-tower cash twelve months 2005?"
}
{
"_id": "qd498e174",
"title": "",
"text": "what was the amount paid from the long-term debt after the discounts and debt issuance costs, in millions?\n\npaid long-term debt discounts costs millions?"
}
{
"_id": "qd497611e",
"title": "",
"text": "in 2017, what was the amount of unamortized debt issuance costs associated with credit facilities?\n\n2017 unamortized debt credit facilities?"
}
{
"_id": "qd4989520",
"title": "",
"text": "as of december 31, 2008, what was the amount of the accrued wages and vacation?\n\n2008, accrued wages vacation?"
}
{
"_id": "qd4976a60",
"title": "",
"text": "what was the performance value of the cadence design systems inc in 2004?\n\ncadence design systems 2004?"
}
{
"_id": "qd497f700",
"title": "",
"text": "what was the difference in amortization expense between 2008 and 2009?\n\ndifference expense 2008 2009?"
}
{
"_id": "qd4982b3a",
"title": "",
"text": "what was the performance price of the loews common stock in 2012?\n\nperformance price stock 2012?"
}
{
"_id": "qd497e238",
"title": "",
"text": "what was the performance price of the s&p 500 in 2012?\n\ns&p 500 2012?"
}
{
"_id": "qd498984a",
"title": "",
"text": "what is the difference in segment revenue from 2008 to 2009?\n\nrevenue 2008 2009?"
}
{
"_id": "qd4990050",
"title": "",
"text": "what was the contingent payments to impella 2019s former shareholders if impella 2.5 and impella 5.0 are approved?\n\ncontingent payments impella shareholders 2. 5. approved?"
}
{
"_id": "qd49702b4",
"title": "",
"text": "what is the net cash from operating and investing activities?\n\nnet cash activities?"
}
{
"_id": "qd497ad40",
"title": "",
"text": "in the year of 2007, what was the amount of the industrial packaging sales that was from europe, in millions?\n\n2007, industrial packaging sales europe millions?"
}
{
"_id": "qd498eea8",
"title": "",
"text": "what was the net change on all total purchased impaired loans between 12/31/15 and 12/31/14?\n\nnet change purchased loans/31/15?"
}
{
"_id": "qd497fade",
"title": "",
"text": "what was the total net change in net fair value of derivatives outstanding between 2007 and 2008?\n\nnet change value derivatives 2007 2008?"
}
{
"_id": "qd498dcd8",
"title": "",
"text": "what was the difference in the cash capital investments in track between 2004 and 2005?\n\ndifference cash investments 2004 2005?"
}
{
"_id": "qd4985312",
"title": "",
"text": "what is the value of cadence design stock in 2018?\n\ncadence design 2018?"
}
{
"_id": "qd497f46c",
"title": "",
"text": "what was the net change in value of net earnings attributable to pmi from 2016 to 2017?\n\nchange earnings pmi 2016 2017?"
}
{
"_id": "qd4986f00",
"title": "",
"text": "what was the total of us dollar notes issued in november of 2014, in millions?\n\ntotal dollar notes 2014, millions?"
}
{
"_id": "qd498df58",
"title": "",
"text": "what was the highest price of the company's share price for the quarter ended march 31, 2008?\n\nhighest price company share quarter 2008?"
}
{
"_id": "qd4975be2",
"title": "",
"text": "what was the total variance in net revenue from 2010 to 2011?\n\nvariance net revenue 2010?"
}
{
"_id": "qd4984304",
"title": "",
"text": "what was the weighted average discount rate for postretirement plans in 2018?\n\nweighted discount postretirement 2018?"
}
{
"_id": "qd4977708",
"title": "",
"text": "what is the value of net earnings for basic and diluted eps in 2017?\n\nnet earnings diluted 2017?"
}
{
"_id": "qd498e8b8",
"title": "",
"text": "what was the total value of both the reserve equalization and the purchased power capacity as a change in net revenue from 2015 to 2016, in millions?\n\ntotal value reserve equalization purchased power net revenue millions?"
}
{
"_id": "qd4976e70",
"title": "",
"text": "what was the change in the average price per share from 2010 to 2011?\n\naverage price share 2010 2011?"
}
{
"_id": "qd4984476",
"title": "",
"text": "what is the value of the company 2019s purchased distressed loan portfolio in 2010?\n\ncompany purchased distressed loan 2010?"
}
{
"_id": "qd4975e44",
"title": "",
"text": "what was the percentage of the total investments amount attributable to the track in 2006?\n\npercentage total investments track 2006?"
}
{
"_id": "qd4976222",
"title": "",
"text": "what is the total value of the issued options, warrants, and rights?\n\nissued options warrants rights?"
}
{
"_id": "qd4974bca",
"title": "",
"text": "what is the sum of long-term debt due in 2004 and 2005?\n\nsum debt 2004 2005?"
}
{
"_id": "qd496ccfe",
"title": "",
"text": "what was the equipment rents payable in 2008?\n\nequipment 2008?"
}
{
"_id": "qd4974eae",
"title": "",
"text": "what was the beginning balance in the gross amount of unrecognized tax benefits in 2018?\n\nbalance unrecognized tax benefits 2018?"
}
{
"_id": "qd497596c",
"title": "",
"text": "what was the amount of statutory capital and surplus for bermuda subsidiaries in 2010?\n\nsurplus bermuda subsidiaries 2010?"
}
{
"_id": "qd4983d78",
"title": "",
"text": "what is the last year included in the remaining terms of the facility leases?\n\nlast year terms facility leases?"
}
{
"_id": "qd497c01e",
"title": "",
"text": "in the year of 2005, what was the total amount of the non-tower cash flow?\n\n2005, total non-tower cash flow?"
}
{
"_id": "qd4973eb4",
"title": "",
"text": "what was the change in the investment income from 2011 to 2012?\n\nchange investment income 2012?"
}
{
"_id": "qd49729a6",
"title": "",
"text": "what were the capital expenditures on a non-gaap basis in 2012?\n\ncapital expenditures non-gaap?"
}
{
"_id": "qd4986230",
"title": "",
"text": "between the years of 2012 and 2013, what was the change in the total of residential mortgages, in millions?\n\n2012 2013, change residential mortgages millions?"
}
{
"_id": "qd498088a",
"title": "",
"text": "what is the net change in total maximum exposure to loss fro vies from 2016 to 2017?\n\nnet change exposure loss 2016 2017?"
}
{
"_id": "qd49745d0",
"title": "",
"text": "what was the total, in millions, of sales proceeds for subsidiaries assets in the months of december and august of 2003, combined, in the locations of bangladesh and republic of georgia?\n\ntotal millions sales proceeds subsidiaries assets august 2003, bangladesh georgia?"
}
{
"_id": "qd49837ce",
"title": "",
"text": "what percentage was eurasia sbu of the total revenue in 2017?\n\neurasia revenue 2017?"
}
{
"_id": "qd497c28a",
"title": "",
"text": "in the year of 2017, what percentage of the net sales were for international markets?\n\n2017 net sales international markets?"
}
{
"_id": "qd49823ec",
"title": "",
"text": "what is the value of net income adjusted to reconcile net income to net cash provided by operating activities in 2015?\n\nvalue net income reconcile cash activities 2015?"
}
{
"_id": "qd4974fc6",
"title": "",
"text": "what is the weighted average discount rate for u.s pension plans in 2015?\n\nweighted discount rate. plans 2015?"
}
{
"_id": "qd497a61a",
"title": "",
"text": "what is the pre-tax pension and postretirement expense in 2019?\n\n-tax postretirement expense 2019?"
}
{
"_id": "qd498f592",
"title": "",
"text": "what was the value of liabilities assumed?\n\nvalue liabilities?"
}
{
"_id": "qd4984d72",
"title": "",
"text": "what was the change in the value of the cadence design systems inc . from 2001 to 2006?\n\nchange cadence design systems. 2006?"
}
{
"_id": "qd498338c",
"title": "",
"text": "what is the total goodwill?\n\ntotal?"
}
{
"_id": "qd49851a0",
"title": "",
"text": "in 2013, what was the total expense related to discontinued operations?\n\ntotal expense discontinued operations?"
}
{
"_id": "qd4974986",
"title": "",
"text": "what was the net revenue in 2016 for entergy texas , inc.?\n\nnet revenue 2016. ?"
}
{
"_id": "qd49830f8",
"title": "",
"text": "what is the ratio of the balance at the end of 2012 to the beginning of 2010?\n\nratio balance end 2012 beginning 2010?"
}
{
"_id": "qd497a750",
"title": "",
"text": "what was the accrued value of tax related interest and penalties in 2011?\n\naccrued tax interest penalties?"
}
{
"_id": "qd498290a",
"title": "",
"text": "what was the net change in value of the nasdaq from 2017 to 2018?\n\nchange nasdaq 2017 2018?"
}
{
"_id": "qd4988bc0",
"title": "",
"text": "what was the total value of net operating loss carryforwards?\n\ntotal net loss?"
}
{
"_id": "qd497e468",
"title": "",
"text": "what percentage did the change in the proportional free cash flow from 2008 to 2009 represent in relation to that cash in 2008?\n\npercentage change free cash 2008 2009 cash 2008?"
}
{
"_id": "qd4971114",
"title": "",
"text": "what were investment banking fees in 2007?\n\nfees 2007?"
}
{
"_id": "qd4988954",
"title": "",
"text": "what were revenues in 2007?\n\n2007?"
}
{
"_id": "qd4987fcc",
"title": "",
"text": "what was the unpaid principal balance outstanding of loans sold as a participant in these programs in 2011, in billions?\n\nunpaid principal balance loans sold programs billions?"
}
{
"_id": "qd496e874",
"title": "",
"text": "what is the last year in which payments to participants in the unfunded german plans are expected to be approximately $ 26 million?\n\nlast year payments unfunded plans $ 26 million?"
}
{
"_id": "qd4973946",
"title": "",
"text": "what portion of the long-term debt is reported under the current liabilities section of the balance sheet as of 9/28/08?\n\nlong-term debt current liabilities balance 9/28/08?"
}
{
"_id": "qd498ca04",
"title": "",
"text": "what is the expected annual dividends per share in 2007?\n\nexpected dividends 2007?"
}
{
"_id": "qd49892dc",
"title": "",
"text": "by what amount did the net earnings attributable to pmi decrease over the year, in millions?\n\nnet earnings pmi decrease millions?"
}
{
"_id": "qd4982c20",
"title": "",
"text": "what was the change in capital expenditures for property, plant and equipment from 2008 to 2009?\n\ncapital expenditures property 2008 2009?"
}
{
"_id": "qd497bde4",
"title": "",
"text": "what was the total of unrealized losses related to reclassifications in 2011, before tax?\n\ntotal unrealized losses reclassifications?"
}
{
"_id": "qd498fac4",
"title": "",
"text": "what was the lease payments to the employee who became an officer of the company following his business acquisition in 2008?\n\nlease payments employee officer business acquisition 2008?"
}
{
"_id": "qd496ee8c",
"title": "",
"text": "what was the change in the rd&e spendings from 2013 to 2014?\n\nchange 2013 2014?"
}
{
"_id": "qd497dff4",
"title": "",
"text": "what was the net change in revenue from 2007 to 2008?\n\nnet change 2007 2008?"
}
{
"_id": "qd4984c28",
"title": "",
"text": "what was the change in the fair value per share from 2014 to 2016?\n\nchange fair value 2014 2016?"
}
{
"_id": "qd497e9a4",
"title": "",
"text": "what was the change in the contingent rental liability from 2007 to 2009?\n\nchange liability 2007 2009?"
}
{
"_id": "qd498ada8",
"title": "",
"text": "what is the value of euro notes with march 2021 maturities?\n\nvalue notes 2021?"
}
{
"_id": "qd497fd2c",
"title": "",
"text": "what is the ratio of the payment amount per share, 2017 to 2016?\n\npayment share 2017 2016?"
}
{
"_id": "qd4981fc8",
"title": "",
"text": "what was the difference between the highest and the lowest future benefit payment made for the postretirement benefit plans?\n\ndifference highest lowest future postretirement plans?"
}
{
"_id": "qd497d0f4",
"title": "",
"text": "what is the net change in value of interest income from 2014 to 2015?\n\nnet change interest 2014 2015?"
}
{
"_id": "qd49858da",
"title": "",
"text": "what was the net change in rental expense for operating leases from 2008 to 2009?\n\nchange rental expense 2008 2009?"
}
{
"_id": "qd496c6a0",
"title": "",
"text": "what was the weighted average exercise price per share in 2007?\n\nweighted price share 2007?"
}
{
"_id": "qd49800e2",
"title": "",
"text": "what is the net change of securities between 2008 and 2009?\n\nnet change securities 2008?"
}
{
"_id": "qd497a4ee",
"title": "",
"text": "as of december 31, 2006, what was the total of the future minimum lease commitments for all operating leases that have a remaining term of more than one year?\n\n31, 2006, future minimum lease commitments leases remaining one year?"
}
{
"_id": "qd4974878",
"title": "",
"text": "what is the value of miscellaneous receivables and other assets in 2012 divided by 100?\n\nreceivables assets 2012 divided?"
}
{
"_id": "qd497bcc2",
"title": "",
"text": "what portion of the company owned facilities are in europe?\n\ncompany facilities europe?"
}
{
"_id": "qd498a97a",
"title": "",
"text": "what was the change in the share price from lowest to highest during the quarter ended september 30 of 2010?\n\nchange share price lowest highest quarter 2010?"
}
{
"_id": "qd498c64e",
"title": "",
"text": "what would be the payments made upon the sale of 1000 units of impella 2019s products worldwide?\n\npayments sale 1000 units impella products?"
}
{
"_id": "qd498d422",
"title": "",
"text": "what was the cash provided by operating activities for 2015?\n\ncash activities 2015?"
}
{
"_id": "qd4979db4",
"title": "",
"text": "what was the total expense for repairs and maintenance incurred in 2013?\n\ntotal expense repairs 2013?"
}
{
"_id": "qd4974d64",
"title": "",
"text": "what was the change in the amount of guarantees from parent company from 2007 to 2008?\n\nchange guarantees 2007 to 2008?"
}
{
"_id": "qd4986b4a",
"title": "",
"text": "what was the cash dividend paid per common stock share in 2006?\n\ncash dividend stock 2006?"
}
{
"_id": "qd497f818",
"title": "",
"text": "what percentage of the total dividend in 2019 is from the first quarter?\n\ndividend 2019 first quarter?"
}
{
"_id": "qd497b3d0",
"title": "",
"text": "what is the difference between the beginning balance carrying amount of loan receivables and allowance?\n\nbeginning balance loan receivables allowance?"
}
{
"_id": "qd498150a",
"title": "",
"text": "what is the statutory net income bermuda subsidiaries in 2010?\n\nincome bermuda subsidiaries?"
}
{
"_id": "qd497e724",
"title": "",
"text": "what was the price of shares in february of 2009?\n\nprice february 2009?"
}
{
"_id": "qd497325c",
"title": "",
"text": "what was the operating profit for the americas as a percentage of net sales in 2003?\n\noperating profit americas sales 2003?"
}
{
"_id": "qd498ec5a",
"title": "",
"text": "what was the high sales price in the second quarter of 2016?\n\nhigh second quarter 2016?"
}
{
"_id": "qd497ce92",
"title": "",
"text": "what is the balance in the unaffiliated life insurance company in 2017?\n\nbalance unaffiliated insurance 2017?"
}
{
"_id": "qd4975110",
"title": "",
"text": "what was the value included in the capital investments for buyout of locomotives in 2012, in dollars?\n\nvalue capital investments locomotives dollars?"
}
{
"_id": "qd49799ea",
"title": "",
"text": "what was the impact in mmboe resulting from an increase in drilling programs in the us resource plays and an increase in discontinued operations due to technical reevaluation and lower royalty percentages related to lower realized prices?\n\nimpact mmboe drilling programs us discontinued operations technical reevaluation lower royalty percentages prices?"
}
{
"_id": "qd4970034",
"title": "",
"text": "what was the change in net revenues between 12/28/12 and 12/29/13?\n\nchange net revenues 12?"
}
{
"_id": "qd498dbb6",
"title": "",
"text": "what was operating profit in 2011?\n\n2011?"
}
{
"_id": "qd498e7a0",
"title": "",
"text": "what was the operating profit margin as adjusted in 2017?\n\noperating adjusted 2017?"
}
{
"_id": "qd4970606",
"title": "",
"text": "what was the value of e*trade financial on 12/14?\n\nvalue*trade 12/14?"
}
{
"_id": "qd4981a46",
"title": "",
"text": "as of december 31, 2008, what was the total liability from the 2003 and the 2007 program, combined?\n\n2008, total liability 2003 2007 program?"
}
{
"_id": "qd498ff92",
"title": "",
"text": "what was the net revenue for entergy texas , inc . in 2007?\n\nrevenue texas. 2007?"
}
{
"_id": "qd497cd70",
"title": "",
"text": "in the year of 2006, what amount from the consumer packaging sales was due to foodservice net sales?\n\n2006, consumer packaging foodservice net sales?"
}
{
"_id": "qd4973afe",
"title": "",
"text": "what was the total cost of the all the towers in the mtn group acquisition, in millions of dollars?\n\ntotal cost towers mtn acquisition millions?"
}
{
"_id": "qd497ba9c",
"title": "",
"text": "what was the net change in non-utility nuclear earnings from 2001 to 2002?\n\nnon-utility nuclear earnings 2001?"
}
{
"_id": "qd4989174",
"title": "",
"text": "what is the value of the afs investment securities in 2018?\n\nafs securities 2018?"
}
{
"_id": "qd497857c",
"title": "",
"text": "what was the total of revenues for transactions with related parties in 2017?\n\ntotal revenues parties 2017?"
}
{
"_id": "qd4987540",
"title": "",
"text": "what is the value of an investment in cadence design systems inc. in 2012?\n\ncadence design systems. 2012?"
}
{
"_id": "qd4984e8a",
"title": "",
"text": "what was the value of inventories in 2018?\n\ninventories 2018?"
}
{
"_id": "qd498bf64",
"title": "",
"text": "what was the free cash flow in 2015?\n\ncash 2015?"
}
{
"_id": "qd497ffde",
"title": "",
"text": "what was the fair value in 2011?\n\nfair value?"
}
{
"_id": "qd49818ac",
"title": "",
"text": "what was the change in net revenue for entergy texas in 2007?\n\nnet revenue texas 2007?"
}
{
"_id": "qd498e9f8",
"title": "",
"text": "what is the value of cadence design system in 2018 less an initial investment of $100?\n\nvalue cadence system 2018 $100?"
}
{
"_id": "qd49805a6",
"title": "",
"text": "what was the difference in the total expense for repairs and maintenance incurred between 2013 and 2014?\n\ndifference expense repairs maintenance 2013 2014?"
}
{
"_id": "qd497977e",
"title": "",
"text": "what is the difference between the fair and the carrying value of all notes?\n\ndifference fair carrying value notes?"
}
{
"_id": "qd49789be",
"title": "",
"text": "what is the total operating leases that have a remaining term of more than one year, in billions?\n\ntotal operating leases remaining year billions?"
}
{
"_id": "qd4982f22",
"title": "",
"text": "what portion of the total long-term debt obligations are due to the long-term debt?\n\nportion-term debt obligations due?"
}
{
"_id": "qd4989f8e",
"title": "",
"text": "what was the net change in cash contributions to funded plans and benefit payments for unfunded plans from 2015 to 2016?\n\nnet change cash contributions benefit 2015 2016?"
}
{
"_id": "qd496ce3e",
"title": "",
"text": "how much did the gallons hedged in 2018 represent in relation to the ones hedged in 2017?\n\ngallons hedged 2018 hedged 2017?"
}
{
"_id": "qd498d4f4",
"title": "",
"text": "what were the total payments made for the notes entergy issued to nypa that lasted 7 years?\n\ntotal payments notes nypa 7 years?"
}
{
"_id": "qd4978842",
"title": "",
"text": "what is the balance in the air value of our foreign currency forward contracts in 2009?\n\nbalance air value currency contracts 2009?"
}
{
"_id": "qd4975386",
"title": "",
"text": "in the year of 2010, what percentage did the net allowance represent in relation to the carrying amount of the company 2019s purchased distressed loan portfolio?\n\n2010, percentage net allowance carrying company distressed loan portfolio?"
}
{
"_id": "qd4970a48",
"title": "",
"text": "what was the total amount of cash outflow used for shares repurchased during november 2007, in millions of dollars?\n\ntotal cash outflow shares repurchased millions?"
}
{
"_id": "qd4978716",
"title": "",
"text": "what is the high price in 2016?\n\nhigh 2016?"
}
{
"_id": "qd497942c",
"title": "",
"text": "what were operating leases in 2007?\n\nleases 2007?"
}
{
"_id": "qd4977596",
"title": "",
"text": "what was the change in total debt to be repaid in the contractual obligations for future payments under existing debt and lease commitments and purchase obligations as of 12/31/05 between 2008 and 2009?\n\nchange debt obligations future payments lease purchase obligations 12/31/05 2008 2009?"
}
{
"_id": "qd4979030",
"title": "",
"text": "what was the total of inventories in 2003?\n\ninventories 2003?"
}
{
"_id": "qd498da94",
"title": "",
"text": "what was the change in the balance from the start of 2010 to the end of 2012?\n\nchange balance start 2010 end 2012?"
}
{
"_id": "qd49742ec",
"title": "",
"text": "what is the sum of net revenues from 2016 and 2017?\n\nrevenues 2016 2017?"
}
{
"_id": "qd4987eb4",
"title": "",
"text": "between the years of 2015 and 2016, what was the change in the estimated sensitivity to a one basis point increase in credit spreads on financial liabilities for which the fair value option was elected?\n\n2015 2016, change sensitivity one increase credit spreads liabilities fair value option?"
}
{
"_id": "qd4973676",
"title": "",
"text": "what is 1000 times the number of votes from class b-3 common stock authorized issued and outstanding in 2017?\n\n1000 votes class b-3 stock 2017?"
}
{
"_id": "qd4989c8c",
"title": "",
"text": "what were the annual cash dividends paid on common stock per share in 2006, in dollars?\n\nannual dividends stock 2006, dollars?"
}
{
"_id": "qd49873e2",
"title": "",
"text": "what is the connected fitness value in 2014?\n\nfitness 2014?"
}
{
"_id": "qd49751f6",
"title": "",
"text": "what was the change in the number of shares of the issuance under the employee stock purchase plan from 2016 to 2017?\n\nchange shares employee stock plan 2016 to 2017?"
}
{
"_id": "qd497ab06",
"title": "",
"text": "what year does the initial lease expire for the chicago headquarters?\n\ninitial lease expire chicago?"
}
{
"_id": "qd49741b6",
"title": "",
"text": "what were cabinet sales in 2017?\n\n2017?"
}
{
"_id": "qd498d0f8",
"title": "",
"text": "what is the value of earning for non-utility nuclear in 2002?\n\nnon-utility nuclear 2002?"
}
{
"_id": "qd497c816",
"title": "",
"text": "what was the decrease amount on the net interest from fiscal year 2015 to 2016?\n\ndecrease net interest 2015 2016?"
}
{
"_id": "qd4988ecc",
"title": "",
"text": "what was the total of operating expenses in 2018?\n\ntotal expenses 2018?"
}
{
"_id": "qd4982266",
"title": "",
"text": "what is the current ratio of robert mondavi?\n\ncurrent ratio robert?"
}
{
"_id": "qd4985e34",
"title": "",
"text": "what was the rent expense in 2007?\n\nexpense 2007?"
}
{
"_id": "qd4989714",
"title": "",
"text": "between 2016 and 2017, what was the variation in the credit net?\n\n2016 2017 credit net?"
}
|