File size: 30,151 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 |
{
"_id": "q00001",
"title": "",
"text": "What are the service and product offerings from Microsoft\n\nservice, product, offerings, Microsoft"
}
{
"_id": "q00002",
"title": "",
"text": "MSFT segment breakdown\n\nMSFT, segment, breakdown"
}
{
"_id": "q00003",
"title": "",
"text": "Who are Microsoft`s key customers?\n\nMicrosoft, key customers"
}
{
"_id": "q00004",
"title": "",
"text": "What is Microsoft`s business model\n\nMicrosoft, business model"
}
{
"_id": "q00005",
"title": "",
"text": "MSFT Capex commitment\n\nMSFT, Capex, commitment"
}
{
"_id": "q00006",
"title": "",
"text": "Which recent M&A activities has Microsoft been involved in\n\nM&A activities, Microsoft"
}
{
"_id": "q00007",
"title": "",
"text": "How much revenue does Microsoft generate from contracts with customers?\n\nrevenue, Microsoft, contracts, customers"
}
{
"_id": "q00008",
"title": "",
"text": "MSFT remaining performance obligation\n\nMSFT, performance, obligation"
}
{
"_id": "q00009",
"title": "",
"text": "Adobe subsidiaries of trademarks\n\nAdobe, subsidiaries, trademarks"
}
{
"_id": "q00010",
"title": "",
"text": "ADBE share repurchase\n\nADBE, share, repurchase"
}
{
"_id": "q00011",
"title": "",
"text": "fully diluted shares outstanding ADBE\n\nshares, ADBE"
}
{
"_id": "q00012",
"title": "",
"text": "Who are the members of Adobe`s management team\n\nmembers, Adobe, management team"
}
{
"_id": "q00013",
"title": "",
"text": "ADBE RPO\n\nADBE, RPO"
}
{
"_id": "q00014",
"title": "",
"text": "ADBE KPI\n\nADBE, KPI"
}
{
"_id": "q00015",
"title": "",
"text": "How are Coupang`s KPIs?\"\n\nCoupang, KPIs"
}
{
"_id": "q00016",
"title": "",
"text": "Coupang segment margin\n\nCoupang, segment, margin"
}
{
"_id": "q00017",
"title": "",
"text": "CPNG capital expenditure\n\nCPNG, capital, expenditure"
}
{
"_id": "q00018",
"title": "",
"text": "CPNG any recent M&A activities\n\nCPNG, M&A, activities"
}
{
"_id": "q00019",
"title": "",
"text": "When did Coupang`s Farfetch consolidation start\n\nCoupang, Farfetch, consolidation, start"
}
{
"_id": "q00020",
"title": "",
"text": "What is FLC, and how is its revenue recognized by Coupang\n\nFLC, revenue, Coupang"
}
{
"_id": "q00021",
"title": "",
"text": "When did new FLC contract begin CPNG\n\nFLC contract, CPNG"
}
{
"_id": "q00022",
"title": "",
"text": "CPNG free cash flow\n\nCPNG, free cash flow"
}
{
"_id": "q00023",
"title": "",
"text": "Class of Shares CPNG\n\nClass, Shares, CPNG"
}
{
"_id": "q00024",
"title": "",
"text": "any highlights from Linde`s 2023 earnings result\n\nhighlights, Linde, 2023, earnings, result"
}
{
"_id": "q00025",
"title": "",
"text": "Linde Segment breakdown\n\nLinde, Segment, breakdown"
}
{
"_id": "q00026",
"title": "",
"text": "Linde Shareholder return\n\nLinde, Shareholder, return"
}
{
"_id": "q00027",
"title": "",
"text": "asset divestitures Linde\n\nasset, divestitures, Linde"
}
{
"_id": "q00028",
"title": "",
"text": "What is the total number of leases held by Linde\n\ntotal number, leases, Linde"
}
{
"_id": "q00029",
"title": "",
"text": "Linde Outstanding share\n\nLinde, Outstanding, share"
}
{
"_id": "q00030",
"title": "",
"text": "the top 3 risks faced by Linde\n\ntop, risks, Linde"
}
{
"_id": "q00031",
"title": "",
"text": "Linde`s geographical coverage\n\nLinde, geographical, coverage"
}
{
"_id": "q00032",
"title": "",
"text": "Which items were taken into account to derive adjusted EBITDA compared to EBITDA for Linde\n\nitems, account, adjusted EBITDA, EBITDA, Linde"
}
{
"_id": "q00033",
"title": "",
"text": "one-off expenses of Linde occurred in 2023\n\nexpenses, Linde, 2023"
}
{
"_id": "q00034",
"title": "",
"text": "Why did Linde`s working capital increase\n\nLinde, working capital, increase"
}
{
"_id": "q00035",
"title": "",
"text": "How much is available for Oracle stock repurchases\n\nOracle, stock, repurchases, amount, availability"
}
{
"_id": "q00036",
"title": "",
"text": "Oracle`s equity investments\n\nOracle, equity, investments"
}
{
"_id": "q00037",
"title": "",
"text": "ORCL M&A\n\nORCL, M&A"
}
{
"_id": "q00038",
"title": "",
"text": "Oracle`s contractual obligations\n\nOracle, contractual obligations"
}
{
"_id": "q00039",
"title": "",
"text": "Why did Oracle`s net cash used for investing activities change by over 80%\n\nOracle, net cash, investing activities, change, 80%"
}
{
"_id": "q00040",
"title": "",
"text": "Which cost item represents the highest percentage of Oracle`s sales\n\ncost item, highest percentage, Oracle, sales"
}
{
"_id": "q00041",
"title": "",
"text": "ORCL segment breakdown\n\nORCL, segment, breakdown"
}
{
"_id": "q00042",
"title": "",
"text": "Updates on Oracle`s headcount\n\nUpdates, Oracle, headcount"
}
{
"_id": "q00043",
"title": "",
"text": "Oracle`s dividend payout\n\nOracle, dividend, payout"
}
{
"_id": "q00044",
"title": "",
"text": "Any meaningful ramp to address AI capacity/datacenter constraints ORCL\n\nramp, AI capacity, datacenter constraints, ORCL"
}
{
"_id": "q00045",
"title": "",
"text": "Nvidia`s end market\n\nNvidia, end market"
}
{
"_id": "q00046",
"title": "",
"text": "Nvidia 5yr cumulative total return\n\nNvidia, 5yr, cumulative, total, return"
}
{
"_id": "q00047",
"title": "",
"text": "Percentage of total revenue accounted for by Nvidia`s largest customer\n\nPercentage, total revenue, Nvidia, largest customer"
}
{
"_id": "q00048",
"title": "",
"text": "Any other concentration risks observed from Nvidia`s financials?\n\nconcentration risks, Nvidia, financials"
}
{
"_id": "q00049",
"title": "",
"text": "What drove the improvement in the gross profit margin NVDA\n\nimprovement, gross profit margin, NVDA"
}
{
"_id": "q00050",
"title": "",
"text": "P&G business model\n\nP&G, business model"
}
{
"_id": "q00051",
"title": "",
"text": "What percentage of total revenue does the P&G`s largest customer account for\n\npercentage, total revenue, P&G, largest customer"
}
{
"_id": "q00052",
"title": "",
"text": "Current number of employees at P&G and % yoy growth\n\nemployees, P&G, % yoy growth"
}
{
"_id": "q00053",
"title": "",
"text": "How did war between Russia and Ukraine impact P&G business\n\nwar, Russia, Ukraine, impact, P&G, business"
}
{
"_id": "q00054",
"title": "",
"text": "P&G cybersecurity related risks\n\nP&G, cybersecurity, risks"
}
{
"_id": "q00055",
"title": "",
"text": "Who among the management had the longest tenure? P&G\n\nmanagement, tenure, P&G"
}
{
"_id": "q00056",
"title": "",
"text": "P&G any updates on share repurchase plan?\n\nP&G, updates, share, repurchase, plan"
}
{
"_id": "q00057",
"title": "",
"text": "How many consecutive years has P&G increased its dividend?\n\nP&G, years, dividend"
}
{
"_id": "q00058",
"title": "",
"text": "By what percentage did the P&G`s dividend increase this year\n\npercentage, P&G, dividend, increase, year"
}
{
"_id": "q00059",
"title": "",
"text": "P&G`s ticker\n\nP&G, ticker"
}
{
"_id": "q00060",
"title": "",
"text": "P&G org structure overview\n\nP&G, org, structure, overview"
}
{
"_id": "q00061",
"title": "",
"text": "How many product categories does P&G have\n\nproduct categories, P&G"
}
{
"_id": "q00062",
"title": "",
"text": "What are the major brands for Fem care in P&G\n\nbrands, Fem care, P&G"
}
{
"_id": "q00063",
"title": "",
"text": "Strategic direction of P&G\n\nStrategic direction, P&G"
}
{
"_id": "q00064",
"title": "",
"text": "Why did net earnings decrease despite increase of sales/OP P&G\n\nnet earnings, decrease, increase, sales, OP, P&G"
}
{
"_id": "q00065",
"title": "",
"text": "P&G What does the ratio of adjusted free cash flow to net earnings imply?\n\nP&G, ratio, adjusted free cash flow, net earnings"
}
{
"_id": "q00066",
"title": "",
"text": "Which factor contributed more significantly to the gross margin improvement of P&G: price increases or quantity increases?\n\nfactor, gross margin improvement, P&G, price increases, quantity increases"
}
{
"_id": "q00067",
"title": "",
"text": "Capex during the fiscal year ended in Jun 2023 and where it was spent P&G\n\nCapex, fiscal year, Jun 2023, P&G"
}
{
"_id": "q00068",
"title": "",
"text": "Did P&G acquire any businesses in 2023?\n\nP&G, businesses, 2023"
}
{
"_id": "q00069",
"title": "",
"text": "Did P&G raise any debts during the fiscal year ended in Jun 2023\n\nP&G, debts, fiscal year, Jun 2023"
}
{
"_id": "q00070",
"title": "",
"text": "What is the total amount of cash and cash equivalents Procter & Gamble (P&G) has as of the fiscal year ended in Jun 2023\n\ntotal amount, cash, cash equivalents, Procter & Gamble, P&G, fiscal year, Jun 2023"
}
{
"_id": "q00071",
"title": "",
"text": "P&G`s credit rating?\n\nP&G, credit, rating"
}
{
"_id": "q00072",
"title": "",
"text": "What was the yoy organic growth % of Beauty segment of P&G\n\nyoy, organic growth, Beauty segment, P&G"
}
{
"_id": "q00073",
"title": "",
"text": "What is a measure for P&G to determine dividends, share repurchases, acquisitions and other discretionary investments\n\nmeasure, P&G, dividends, share repurchases, acquisitions, discretionary investments"
}
{
"_id": "q00074",
"title": "",
"text": "How many fleet does DAL own\n\nfleet, DAL"
}
{
"_id": "q00075",
"title": "",
"text": "Ratio of owned: finance lease: operating lease based on operating aircraft fleet DAL\n\nRatio, owned, finance lease, operating lease, operating aircraft fleet, DAL"
}
{
"_id": "q00076",
"title": "",
"text": "What percentage of Endeavor`s shares does Delta own?\n\nEndeavor, shares, Delta, percentage"
}
{
"_id": "q00077",
"title": "",
"text": "When is the scheduled delivery date for the DAL A350?\n\nscheduled delivery date, DAL A350"
}
{
"_id": "q00078",
"title": "",
"text": "Which region showed highest % growth of delta in passenger revenue? And what was the main driver?\n\nregion, growth, delta, passenger revenue, driver"
}
{
"_id": "q00079",
"title": "",
"text": "Any updates on DAL and AMEX partnership\n\nupdates, DAL, AMEX, partnership"
}
{
"_id": "q00080",
"title": "",
"text": "Which operating expense represents the highest percentage of DAL`s sales\n\noperating expense, highest percentage, DAL, sales"
}
{
"_id": "q00081",
"title": "",
"text": "How did the fuel price impact the 2023 financials of delta air lines\n\nfuel price, 2023 financials, delta air lines"
}
{
"_id": "q00082",
"title": "",
"text": "DAL Capex during the fiscal year ended in Jun 2023 and where it was spent\n\nDAL, Capex, fiscal year, Jun 2023, spending"
}
{
"_id": "q00083",
"title": "",
"text": "DAL 2024 Capex guidance\n\nDAL, 2024, Capex, guidance"
}
{
"_id": "q00084",
"title": "",
"text": "What is the estimated cost for the New York-LaGuardia Redevelopment DAL\n\ncost, New York-LaGuardia, Redevelopment, DAL"
}
{
"_id": "q00085",
"title": "",
"text": "When did DAL`s quarterly dividend start all over again?\n\nDAL, quarterly dividend"
}
{
"_id": "q00086",
"title": "",
"text": "How much was the delta¡¯s aggregate current and noncurrent loyalty program deferred revenue balance as of FY 2023\n\ndelta, aggregate, current, noncurrent, loyalty program, deferred revenue, balance, FY 2023"
}
{
"_id": "q00087",
"title": "",
"text": "What is the useful life for aircraft DAL\n\nuseful life, aircraft, DAL"
}
{
"_id": "q00088",
"title": "",
"text": "Where does DAL recognize advertising costs\n\nDAL, advertising, costs"
}
{
"_id": "q00089",
"title": "",
"text": "How many vehicles did TSLA deliver in 2023?\n\nvehicles, TSLA, delivery, 2023"
}
{
"_id": "q00090",
"title": "",
"text": "Were there any one-off items reported in tesla 2023?\n\none-off items, tesla, 2023"
}
{
"_id": "q00091",
"title": "",
"text": "Capex in 2023 tsla\n\nCapex, 2023, tsla"
}
{
"_id": "q00092",
"title": "",
"text": "TSLA Capex guidance in 2024\n\nTSLA, Capex, guidance, 2024"
}
{
"_id": "q00093",
"title": "",
"text": "Where does TSLA produce its Cybertruck\n\nTSLA, Cybertruck"
}
{
"_id": "q00094",
"title": "",
"text": "TSLA Inventory breakdown as of 2023\n\nTSLA, Inventory, breakdown, 2023"
}
{
"_id": "q00095",
"title": "",
"text": "Any recent litigation cases tesla\n\nlitigation, cases, Tesla"
}
{
"_id": "q00096",
"title": "",
"text": "TSLA three-year historical depreciation expense\n\nTSLA, three-year, historical, depreciation, expense"
}
{
"_id": "q00097",
"title": "",
"text": "How many outstanding shares TSLA\n\noutstanding shares, TSLA"
}
{
"_id": "q00098",
"title": "",
"text": "What is TSLA`s mission?\n\nTSLA, mission"
}
{
"_id": "q00099",
"title": "",
"text": "Netflix Paid membership updates\n\nNetflix, Paid membership, updates"
}
{
"_id": "q00100",
"title": "",
"text": "Does Netflix still offer DVD-by-mail service\n\nNetflix, DVD-by-mail service"
}
{
"_id": "q00101",
"title": "",
"text": "Netflix Business model\n\nNetflix, Business model"
}
{
"_id": "q00102",
"title": "",
"text": "Netflix Any updates on total amount of content obligations\n\nNetflix, updates, total amount, content obligations"
}
{
"_id": "q00103",
"title": "",
"text": "Content obligations in next 12 months Netflix\n\nContent, obligations, next 12 months, Netflix"
}
{
"_id": "q00104",
"title": "",
"text": "NFLX 3 year historical advertising cost trend\n\nNFLX, year, historical, advertising, cost, trend"
}
{
"_id": "q00105",
"title": "",
"text": "3 year streaming revenue trend of netflix\n\nyear, streaming, revenue, trend, Netflix"
}
{
"_id": "q00106",
"title": "",
"text": "What drove OP margin improvement NFLX\n\nOP margin improvement, NFLX"
}
{
"_id": "q00107",
"title": "",
"text": "Which region showed the highest increase in paid net membership additions of netflix\n\nregion, increase, paid net membership additions, Netflix"
}
{
"_id": "q00108",
"title": "",
"text": "NFLX Any updates on share repurchase\n\nNFLX, updates, share repurchase"
}
{
"_id": "q00109",
"title": "",
"text": "Customer group that Home depot serve\n\nCustomer group, Home Depot"
}
{
"_id": "q00110",
"title": "",
"text": "Home Depot # of employee\n\nHome Depot, employee"
}
{
"_id": "q00111",
"title": "",
"text": "Home Depot retail strategy\n\nHome Depot, retail, strategy"
}
{
"_id": "q00112",
"title": "",
"text": "HD How many acquisitions happened in 2023?\n\nacquisitions, 2023"
}
{
"_id": "q00113",
"title": "",
"text": "Total amount of shareholder return in 2023 Home Depot\n\nTotal amount, shareholder return, 2023, Home Depot"
}
{
"_id": "q00114",
"title": "",
"text": "Any reasons for Capex growth of HD\n\nCapex, growth, HD"
}
{
"_id": "q00115",
"title": "",
"text": "Home Depot why did net sales decrease in 2023?\n\nHome Depot, net sales, decrease, 2023"
}
{
"_id": "q00116",
"title": "",
"text": "Updates on inventory level Home Depot\n\nUpdates, inventory level, Home Depot"
}
{
"_id": "q00117",
"title": "",
"text": "Net advertising expense over the past three years on an annual basis Home Depot\n\nNet advertising expense, past three years, annual basis, Home Depot"
}
{
"_id": "q00118",
"title": "",
"text": "HD Net PP&E as of 2023\n\nHD Net, PP&E, 2023"
}
{
"_id": "q00119",
"title": "",
"text": "Company fiscal year appl\n\nCompany, fiscal year, appl"
}
{
"_id": "q00120",
"title": "",
"text": "When will apple Vision Pro launch?\n\napple Vision Pro, launch"
}
{
"_id": "q00121",
"title": "",
"text": "Depreciation expense on PP&E over the past three years on an annual basis apple\n\nDepreciation expense, PP&E, past three years, annual basis, apple"
}
{
"_id": "q00122",
"title": "",
"text": "Update on share repurchase of apple\n\nshare repurchase, apple"
}
{
"_id": "q00123",
"title": "",
"text": "Which region contributes the most to the revenue of APPL?\n\nregion, revenue, APPL"
}
{
"_id": "q00124",
"title": "",
"text": "APPL new product launch in 4Q23\n\nAPPL, product, launch, 4Q23"
}
{
"_id": "q00125",
"title": "",
"text": "SG&A % of rev in 2023 appl\n\nSG&A, rev, 2023, appl"
}
{
"_id": "q00126",
"title": "",
"text": "Appl additional leases occurred in later part of 2023\n\nAppl, additional leases, part, 2023"
}
{
"_id": "q00127",
"title": "",
"text": "When was the most recent employee stock plan that apple announced?\n\nemployee stock plan, apple"
}
{
"_id": "q00128",
"title": "",
"text": "Appl depreciation expense over the past three years on an annual basis\n\nAppl, depreciation, expense, past, years, annual, basis"
}
{
"_id": "q00129",
"title": "",
"text": "Amazon AWS yoy growth in constant cuurency\n\nAmazon, AWS, yoy, growth, constant, currency"
}
{
"_id": "q00130",
"title": "",
"text": "Amazon 1Q24 guidance\n\nAmazon, 1Q24, guidance"
}
{
"_id": "q00131",
"title": "",
"text": "AMZN what are the components of fulfillment costs?\n\nAMZN, components, fulfillment, costs"
}
{
"_id": "q00132",
"title": "",
"text": "2023 inventory valuation allowance of AMZN\n\ninventory, valuation, allowance, AMZN"
}
{
"_id": "q00133",
"title": "",
"text": "Total PP&E of AMZN in 2023\n\nTotal, PP&E, AMZN, 2023"
}
{
"_id": "q00134",
"title": "",
"text": "Any updates on Amazon Prime Video\n\nupdates, Amazon Prime Video"
}
{
"_id": "q00135",
"title": "",
"text": "Were there any share repurchases in 2023 Amazon?\n\nshare repurchases, 2023, Amazon"
}
{
"_id": "q00136",
"title": "",
"text": "AMZN SBC expense occurred in 2023\n\nAMZN, SBC, expense, 2023"
}
{
"_id": "q00137",
"title": "",
"text": "Amazon revenue sources\n\nAmazon, revenue, sources"
}
{
"_id": "q00138",
"title": "",
"text": "Any comments on tech investment of amazon\n\ncomments, tech investment, amazon"
}
{
"_id": "q00139",
"title": "",
"text": "Amazon Par value\n\nAmazon, Par value"
}
{
"_id": "q00140",
"title": "",
"text": "Potential/current competitors of amazon?\n\ncompetitors, amazon"
}
{
"_id": "q00141",
"title": "",
"text": "When was Amazon established?\n\nAmazon, established"
}
{
"_id": "q00142",
"title": "",
"text": "What is the total square footage of Amazon`s international fulfillment centers, data centers, and other facilities?\n\ntotal square footage, Amazon, international fulfillment centers, data centers, facilities"
}
{
"_id": "q00143",
"title": "",
"text": "Revenue recognition methodology of amazon from 3rd party seller\n\nRevenue, recognition, methodology, Amazon, 3rd party, seller"
}
{
"_id": "q00144",
"title": "",
"text": "When did 20:1 stock split happen in AMZN\n\n20:1 stock split, AMZN"
}
{
"_id": "q00145",
"title": "",
"text": "Describe how AWS generate revenue\n\nAWS, revenue"
}
{
"_id": "q00146",
"title": "",
"text": "Amazon Acquisitions in 2023?\n\nAmazon, Acquisitions, 2023"
}
{
"_id": "q00147",
"title": "",
"text": "When was the current share repurchase program announced in AMZN?\n\nshare repurchase program, AMZN"
}
{
"_id": "q00148",
"title": "",
"text": "Amazon inventory management strategy\n\nAmazon, inventory, management, strategy"
}
{
"_id": "q00150",
"title": "",
"text": "Why does Meta use family metrics?\n\nMeta, family metrics"
}
{
"_id": "q00151",
"title": "",
"text": "META Family DAP and MAP calculation methodology?\n\nMETA, Family, DAP, MAP, calculation, methodology"
}
{
"_id": "q00152",
"title": "",
"text": "Any upddates on Reality Labs Meta\n\nupdates, Reality Labs, Meta"
}
{
"_id": "q00153",
"title": "",
"text": "Key investment areas in 2024 Meta\n\ninvestment areas, 2024, Meta"
}
{
"_id": "q00154",
"title": "",
"text": "Mgmt view on Meta competitive landscape\n\nMgmt, view, Meta, competitive landscape"
}
{
"_id": "q00155",
"title": "",
"text": "Meta % yoy growth of FoA revenue\n\nMeta, yoy growth, FoA revenue"
}
{
"_id": "q00156",
"title": "",
"text": "Meta what is management`s outlook on the future drivers of ad revenue?\n\nMeta, management, outlook, future, drivers, ad revenue"
}
{
"_id": "q00157",
"title": "",
"text": "Has the sales volume of Meta Quest increased or decreased?\n\nsales volume, Meta Quest"
}
{
"_id": "q00158",
"title": "",
"text": "Any divestures in 2023 Meta\n\ndivestures, 2023, Meta"
}
{
"_id": "q00159",
"title": "",
"text": "Total number of employees of JnJ\n\nTotal, number, employees, JnJ"
}
{
"_id": "q00160",
"title": "",
"text": "Gross amounts of patents and trademarks as of 2023 JnJ\n\npatents, trademarks, 2023, JnJ"
}
{
"_id": "q00161",
"title": "",
"text": "What has been DPS over the past 3 years JnJ\n\nDPS, past, 3 years, JnJ"
}
{
"_id": "q00162",
"title": "",
"text": "JnJ Diluted Adj. avg. shares outstanding as of 2023 (include the unit as well)\n\nJnJ, Diluted, Adj., avg., shares, outstanding, 2023, unit"
}
{
"_id": "q00163",
"title": "",
"text": "Best selling drug in 2023 of Johnson & Johnson\n\nBest, selling, drug, 2023, Johnson & Johnson"
}
{
"_id": "q00164",
"title": "",
"text": "Johnson & Johnson Investment in 2023\n\nJohnson & Johnson, Investment, 2023"
}
{
"_id": "q00165",
"title": "",
"text": "JnJ Mgmt overview\n\nJnJ, Mgmt, overview"
}
{
"_id": "q00166",
"title": "",
"text": "How much $ invested in JnJ R&D as of 2023\n\n$ invested, JnJ, R&D, 2023"
}
{
"_id": "q00167",
"title": "",
"text": "Any advancements for its Innovative Medicine pipeline JnJ\n\nadvancements, Innovative Medicine, pipeline, JnJ"
}
{
"_id": "q00168",
"title": "",
"text": "JnJ R&D expense % of revenue in 2023\n\nJnJ, R&D, expense, revenue, 2023"
}
{
"_id": "q00169",
"title": "",
"text": "ROE and ROTCE as of 2023 JP Morgan\n\nROE, ROTCE, 2023, JP Morgan"
}
{
"_id": "q00170",
"title": "",
"text": "Credit provided for consumers as of 2023 JP Morgan\n\nCredit, consumers, 2023, JP Morgan"
}
{
"_id": "q00171",
"title": "",
"text": "JP Morgan markets revenue consist of what\n\nJP Morgan, markets, revenue"
}
{
"_id": "q00172",
"title": "",
"text": "What are the components of principal transactions of JPM\n\ncomponents, principal transactions, JPM"
}
{
"_id": "q00173",
"title": "",
"text": "JPM Acquisition in 2023\n\nJPM, Acquisition, 2023"
}
{
"_id": "q00174",
"title": "",
"text": "Competitors of JPM\n\nCompetitors, JPM"
}
{
"_id": "q00175",
"title": "",
"text": "Employee net addition in 2023 JPM\n\nEmployee, net addition, 2023, JPM"
}
{
"_id": "q00176",
"title": "",
"text": "Why did LT debt increase in 2023 JP Morgan\n\nLT debt, increase, 2023, JP Morgan"
}
{
"_id": "q00177",
"title": "",
"text": "JPM What drove strong performance of equity underwriting\n\nJPM, performance, equity, underwriting"
}
{
"_id": "q00178",
"title": "",
"text": "JP Morgan Segment breakdown\n\nJP Morgan, Segment, breakdown"
}
{
"_id": "q00180",
"title": "",
"text": "Visa Company overview\n\nVisa, Company, overview"
}
{
"_id": "q00181",
"title": "",
"text": "How does VISA earn money\n\nVISA, money"
}
{
"_id": "q00182",
"title": "",
"text": "VISA Acquisition in 2023\n\nVISA, Acquisition, 2023"
}
{
"_id": "q00183",
"title": "",
"text": "Who are VISA`s electronic payment competitors\n\nVISA, electronic payment, competitors"
}
{
"_id": "q00184",
"title": "",
"text": "How geopolitical factors can impact the VISA business\n\ngeopolitical factors, VISA business"
}
{
"_id": "q00185",
"title": "",
"text": "Why did labor cost increase 17% yoy Visa\n\nlabor cost, increase, 17%, yoy, Visa"
}
{
"_id": "q00186",
"title": "",
"text": "What has been the total amount of processed transactions by Visa over the past 3 years, measured in billions?\n\ntotal amount, processed transactions, Visa, past 3 years, billions"
}
{
"_id": "q00187",
"title": "",
"text": "Visa 2023 earning\n\nVisa, 2023, earning"
}
{
"_id": "q00188",
"title": "",
"text": "VISA Fintech related commentary\n\nVISA, Fintech, commentary"
}
{
"_id": "q00189",
"title": "",
"text": "UnitedHealth Group Segment breakdown\n\nUnitedHealth Group, Segment, breakdown"
}
{
"_id": "q00190",
"title": "",
"text": "UnitedHealth Group What drove revenue increase in 2023\n\nUnitedHealth Group, revenue, increase, 2023"
}
{
"_id": "q00191",
"title": "",
"text": "Company level OP margin in 2023 unitedhealth\n\nCompany, level, OP margin, 2023, UnitedHealth"
}
{
"_id": "q00192",
"title": "",
"text": "UNH ROE as of 2023\n\nUNH, ROE, 2023"
}
{
"_id": "q00193",
"title": "",
"text": "UNH Impact of cyber attack\n\nUNH, Impact, cyber attack"
}
{
"_id": "q00194",
"title": "",
"text": "Medical care ratio of UnitedHealth Group as of 2023\n\nMedical care ratio, UnitedHealth Group, 2023"
}
{
"_id": "q00195",
"title": "",
"text": "Any updates on Brazil biz disposition of UnitedHealth Group\n\nBrazil, biz, disposition, UnitedHealth Group"
}
{
"_id": "q00196",
"title": "",
"text": "What is management`s outlook of UnitedHealth Group on medical cost trends for 2024?\n\nmanagement, outlook, UnitedHealth Group, medical cost trends, 2024"
}
{
"_id": "q00197",
"title": "",
"text": "What factors contributed to the significant increase in revenue of UNH?\n\nfactors, increase, revenue, UNH"
}
{
"_id": "q00198",
"title": "",
"text": "Dividend paid in 2023 UnitedHealth\n\nDividend, 2023, UnitedHealth"
}
{
"_id": "q00199",
"title": "",
"text": "What is Alphabet`s stance on AI?\n\nAlphabet, stance, AI"
}
{
"_id": "q00200",
"title": "",
"text": "Primary revenue source of Google Services\n\nPrimary, revenue, source, Google, Services"
}
{
"_id": "q00201",
"title": "",
"text": "What potential threats to Google Search has the management identified?\n\npotential threats, Google Search, management"
}
{
"_id": "q00202",
"title": "",
"text": "Why did Alphabet Opex increase in 2023 vs. previous year\n\nAlphabet, Opex, increase, 2023, previous year"
}
{
"_id": "q00203",
"title": "",
"text": "Alphabet When was the offer letter issued to Ruth Porat?\n\nAlphabet, offer letter, Ruth Porat"
}
{
"_id": "q00204",
"title": "",
"text": "Capex guidance Alphabet\n\nCapex, guidance, Alphabet"
}
{
"_id": "q00205",
"title": "",
"text": "How is subscription revenue (e.g., YouTube premium) recognized\n\nsubscription revenue, YouTube premium"
}
{
"_id": "q00206",
"title": "",
"text": "Alphabet What has been the trend in Advertising and Promotional Expenses over the past three years?\n\nAlphabet, trend, Advertising, Promotional Expenses, past three years"
}
{
"_id": "q00207",
"title": "",
"text": "Google Cloud RPO as of 2023 (approximate # is fine)\n\nGoogle Cloud, RPO, 2023, approximate"
}
{
"_id": "q00208",
"title": "",
"text": "How might changes to advertising policies and data privacy practices impact Alphabet`s ads biz\n\nchanges, advertising policies, data privacy practices, impact, Alphabet, ads, biz"
}
{
"_id": "q00209",
"title": "",
"text": "BNSF railroad freight volume\n\nBNSF, railroad, freight, volume"
}
{
"_id": "q00210",
"title": "",
"text": "Who runs berkshire\n\nberkshire"
}
{
"_id": "q00211",
"title": "",
"text": "What is management`s perspective on the insurance business Berkshire Hathaway\n\nmanagement, perspective, insurance business, Berkshire Hathaway"
}
{
"_id": "q00212",
"title": "",
"text": "How is Berkshire Hathaway`s business segmented into its major divisions or operating units\n\nBerkshire Hathaway, business, segments, divisions, operating units"
}
{
"_id": "q00213",
"title": "",
"text": "When will Berkshire repurchase common stock?\n\nBerkshire, repurchase, common stock"
}
{
"_id": "q00214",
"title": "",
"text": "How many distinct insurance underwriting groups are there within Berkshire\n\ninsurance, underwriting groups, Berkshire"
}
{
"_id": "q00215",
"title": "",
"text": "What is the ticker symbol for Berkshire Hathaway`s Class B shares?\n\nticker symbol, Berkshire Hathaway, Class B shares"
}
{
"_id": "q00216",
"title": "",
"text": "What is the largest operating segment of the Berkshire Hathaway in terms of % of total revenue, as of 2023\n\nlargest operating segment, Berkshire Hathaway, total revenue, 2023"
}
{
"_id": "q00217",
"title": "",
"text": "Source of invested assets of insurance business BRK.A\n\nSource, invested assets, insurance business, BRK.A"
}
{
"_id": "q00218",
"title": "",
"text": "Float as of 2023 BRK\n\nFloat, 2023, BRK"
}
|