forked from jamsix/ib-edavki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
companies.xml
1229 lines (1229 loc) · 42 KB
/
companies.xml
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
<companies>
<company>
<conid>265598</conid>
<symbol>AAPL</symbol>
<name>Apple Inc</name>
<taxNumber>942404110</taxNumber>
<address>1 Infinite Loop, Cupertino, CA 95014</address>
<country>US</country>
</company>
<company>
<conid>52424577</conid>
<symbol>ATVI</symbol>
<name>Activision Blizzard Inc</name>
<taxNumber>954803544</taxNumber>
<address>3100 Ocean Park Blvd, Santa Monica, CA 90405</address>
<country>US</country>
</company>
<company>
<conid>10098</conid>
<symbol>BAC</symbol>
<name>Bank of America Corporation</name>
<taxNumber>941687665</taxNumber>
<address>100 N. Tryon St, Charlotte, NC 28255</address>
<country>US</country>
</company>
<company>
<symbol>CSCO</symbol>
<name>Cisco Systems Inc</name>
<taxNumber>770059951</taxNumber>
<address>170 West Tasman Drive, San Jose, CA 95134</address>
<country>US</country>
</company>
<company>
<conid>45127739</conid>
<symbol>CME</symbol>
<name>CME Group Inc</name>
<taxNumber>364459170</taxNumber>
<address>20 S Wacker Dr, Chicago, IL 60606-7431</address>
<country>US</country>
</company>
<company>
<symbol>DIS</symbol>
<name>The Walt Disney Company</name>
<taxNumber>830940635</taxNumber>
<address>500 South Buena Vista Street, Burbank, California</address>
<country>US</country>
</company>
<company>
<symbol>EURN</symbol>
<name>Euronav NV</name>
<taxNumber>0546943111</taxNumber>
<address>De Gerlachekaai 20, 2000 Antwerpen, Belgija</address>
<country>BE</country>
</company>
<company>
<conid>9599491</conid>
<symbol>F</symbol>
<name>Ford Motor Company</name>
<taxNumber>380549190</taxNumber>
<address>One American Road, Dearborn, MI 48126</address>
<country>US</country>
</company>
<company>
<conid>611060</conid>
<symbol>GOLD</symbol>
<name>Barrick Gold Corporation</name>
<taxNumber>980161470</taxNumber>
<address>161 Bay Street, Toronto, Ontario M5J 2S1</address>
<country>CA</country>
</company>
<company>
<conid>270639</conid>
<symbol>INTC</symbol>
<name>Intel Corp</name>
<taxNumber>941672743</taxNumber>
<address>2200 Mission College Blvd, Santa Clara, CA 95054</address>
<country>US</country>
</company>
<company>
<symbol>JNJ</symbol>
<name>Johnson & Johnson</name>
<taxNumber>221024240</taxNumber>
<address>One Johnson & Johnson Plz, New Brunswick, NJ 08933</address>
<country>US</country>
</company>
<company>
<conid>271308</conid>
<symbol>LRCX</symbol>
<name>Lam Research Corp</name>
<taxNumber>942634797</taxNumber>
<address>4650 Cushing Parkway, Fremont, CA 94538</address>
<country>US</country>
</company>
<company>
<conid>9408</conid>
<symbol>MCD</symbol>
<name>Mcdonald's Corp</name>
<taxNumber>362361282</taxNumber>
<address>110 North Carpenter Street, Chicago, IL 60607</address>
<country>US</country>
</company>
<company>
<conid>9720</conid>
<symbol>MMM</symbol>
<name>3M Company</name>
<taxNumber>043205742</taxNumber>
<address>3m Center 224-2w-15, St. Paul, MN 55144-1000</address>
<country>US</country>
</company>
<company>
<conid>272093</conid>
<symbol>MSFT</symbol>
<name>Microsoft Corp</name>
<taxNumber>911144442</taxNumber>
<address>One Microsoft Way, Redmond, WA 98052-6399</address>
<country>US</country>
</company>
<company>
<conid>2586162</conid>
<symbol>MTN</symbol>
<name>Vail Resorts Inc</name>
<taxNumber>510291762</taxNumber>
<address>390 Interlocken Crescent, Broomfield, CO 80021</address>
<country>US</country>
</company>
<company>
<conid>9939</conid>
<symbol>MU</symbol>
<name>Micron Technology Inc</name>
<taxNumber>751618004</taxNumber>
<address>8000 South Federal Way, Boise, ID 83716-9632</address>
<country>US</country>
</company>
<company>
<symbol>NTAP</symbol>
<name>NetApp, Inc.</name>
<taxNumber>770307520</taxNumber>
<address>1395 Crossman Ave, Sunnyvale, CA 94089</address>
<country>US</country>
</company>
<company>
<conid>55279376</conid>
<symbol>NTES</symbol>
<name>NetEase Inc</name>
<taxNumber>64110W102</taxNumber>
<address>Zhongguancun Software Park (Phase II), No. 10 Xibeiwang East Road, Haidian District, Beijing, 100193</address>
<country>CN</country>
</company>
<company>
<conid>755883</conid>
<symbol>NYT</symbol>
<name>The New York Times Company</name>
<taxNumber>131102020</taxNumber>
<address>620 Eighth Avenue, New York, NY 10018</address>
<country>US</country>
</company>
<company>
<conid>2852762</conid>
<symbol>RIO</symbol>
<name>Rio Tinto Plc</name>
<taxNumber>00719885</taxNumber>
<address>6 St James's Square, London SW1Y 4AD</address>
<country>GB</country>
</company>
<company>
<conid>360308912</conid>
<symbol>SBER</symbol>
<name>Sberbank of Russia PJSC</name>
<taxNumber>7707083893</taxNumber>
<address>19 Vavilova Street, Moscow 117997</address>
<country>RU</country>
</company>
<company>
<conid>284632520</conid>
<symbol>SSRM</symbol>
<name>SSR Mining Inc</name>
<taxNumber>980211014</taxNumber>
<address>1055 Dunsmuir Street, Vancouver, BC V7X 1G4</address>
<country>CA</country>
</company>
<company>
<conid>55279376</conid>
<symbol>TCEHY</symbol>
<name>Tencent Holdings Ltd</name>
<taxNumber>88032Q10</taxNumber>
<address>Kejizhongyi Avenue, Hi-tech Park, Nanshan District, Shenzhen, 518057</address>
<country>CN</country>
</company>
<company>
<conid>13024</conid>
<symbol>TTC</symbol>
<name>Toro Co</name>
<taxNumber>410580470</taxNumber>
<address>8111 Lyndale Avenue South, Bloomington, MN 55420-1196</address>
<country>US</country>
</company>
<company>
<conid>1447060</conid>
<symbol>CCJ</symbol>
<name>Cameco Corp</name>
<taxNumber>980113090</taxNumber>
<address>2121 11th St W, Saskatoon, S7M 1J3</address>
<country>CA</country>
</company>
<company>
<conid>6437</conid>
<symbol>TGT</symbol>
<name>Target Corp</name>
<taxNumber>410215170</taxNumber>
<address>1000 Nicollet Mall, Minneapolis, Minnesota, 55403</address>
<country>US</country>
</company>
<company>
<conid>358053635</conid>
<symbol>LEVI</symbol>
<name>Levi Strauss & Co</name>
<taxNumber>940905160</taxNumber>
<address>1155 Battery St, San Francisco CA 94111</address>
<country>US</country>
</company>
<company>
<conid>257775837</conid>
<symbol>KL</symbol>
<name>Kirkland Lake Gold Ltd</name>
<taxNumber>000000000</taxNumber>
<address>200 Bay Street, Suite 3120, Toronto ON M5J 2J1, Canada</address>
<country>CA</country>
</company>
<company>
<conid>120420959</conid>
<symbol>USAC</symbol>
<name>Usa Compression Partners Lp</name>
<taxNumber>752771546</taxNumber>
<address>111 Congress Avenue, Suite 2400, Austin TX 78701</address>
<country>US</country>
</company>
<company>
<conid>10174</conid>
<symbol>NEM</symbol>
<name>Newmont Corp</name>
<taxNumber>841611629</taxNumber>
<address>6363 South Fiddlers Green Circle, Greenwood Village, CO 80111</address>
<country>US</country>
</company>
<company>
<conid>110322264</conid>
<symbol>DHT</symbol>
<name>DHT Holdings Inc</name>
<taxNumber>980497420</taxNumber>
<address>Clarendon House, 2 Church Street, Hamilton HM 11</address>
<country>BM</country>
</company>
<company>
<conid>6604153</conid>
<symbol>NAT</symbol>
<name>NORDIC AMERICAN TANKERS LTD</name>
<taxNumber>980500048</taxNumber>
<address>LOM Building, 27 Reid Street, Hamilton, HM 11</address>
<country>BM</country>
</company>
<company>
<conid>6180</conid>
<symbol>LUMN</symbol>
<name>CenturyLink Inc</name>
<taxNumber>720651161</taxNumber>
<address>100 Centurylink Dr, Monroe LA</address>
<country>US</country>
</company>
<company>
<symbol>O</symbol>
<name>Realty Income</name>
<taxNumber>330580106</taxNumber>
<address>11995 El Camino Real San Diego, CA </address>
<country>US</country>
</company>
<company>
<symbol>PBA</symbol>
<name>Pembina Pipeline Corp</name>
<taxNumber>980131760</taxNumber>
<address>4000, 585 - 8th Avenue S.W. Calgary, Alberta T2P 1G1</address>
<country>CA</country>
</company>
<company>
<symbol>RDS A</symbol>
<name>Royal Dutch Shell</name>
<taxNumber>522074528</taxNumber>
<address>Carel van Bylandtlaan 16, 2596 HR The Hague</address>
<country>NL</country>
</company>
<company>
<conid>120643511</conid>
<symbol>CONE</symbol>
<name>CyrusOne Inc</name>
<taxNumber>274286158</taxNumber>
<address>2101 Cedar Springs Road, Suite 900, Dallas, TX 75201</address>
<country>US</country>
</company>
<company>
<symbol>DLR</symbol>
<name>Digital Realty Trust, Inc.</name>
<taxNumber>260081711</taxNumber>
<address>Four Embarcadero Center, Suite 3200, San Francisco, CA 94111</address>
<country>US</country>
</company>
<company>
<symbol>ESS</symbol>
<name>Essex Property Trust, Inc.</name>
<taxNumber>770369576</taxNumber>
<address>1100 Park Place, Suite 200, San Mateo, CA 94403</address>
<country>US</country>
</company>
<company>
<symbol>FRT</symbol>
<name>Federal Realty Investment Trust</name>
<taxNumber>520782497</taxNumber>
<address>1626 East Jefferson Street, Rockville, MD 20852-4041</address>
<country>US</country>
</company>
<company>
<symbol>FRT.OLD</symbol>
<name>Federal Realty Investment Trust</name>
<taxNumber>520782497</taxNumber>
<address>1626 East Jefferson Street, Rockville, MD 20852-4041</address>
<country>US</country>
</company>
<company>
<symbol>SLG</symbol>
<name>Sl Green Realty Corp</name>
<taxNumber>133956775</taxNumber>
<address>420 Lexington Avenue, New York, NY 10170</address>
<country>US</country>
</company>
<company>
<symbol>SRC</symbol>
<name>Spirit Realty Capital, Inc.</name>
<taxNumber>201676382</taxNumber>
<address>2727 North Harwood Street, Suite 300, Dallas, TX 75201</address>
<country>US</country>
</company>
<company>
<symbol>STOR</symbol>
<name>Store Capital Corp</name>
<taxNumber>452280254</taxNumber>
<address>8377 East Hartford Drive, Suite 100, Scottsdale, AZ 85255</address>
<country>US</country>
</company>
<company>
<symbol>WPC</symbol>
<name>W. P. Carey Inc.</name>
<taxNumber>133912578</taxNumber>
<address>50 Rockefeller Plaza, New York, NY 10020</address>
<country>US</country>
</company>
<company>
<symbol>IRT</symbol>
<name>Independence Realty Trust, Inc.</name>
<taxNumber>264567130</taxNumber>
<address>1835 Market Street, Suite 2601, Philadelphia, PA 19103</address>
<country>US</country>
</company>
<company>
<symbol>CM</symbol>
<name>Canadian Imperial Bank Of Commerce</name>
<taxNumber>131942440</taxNumber>
<address>425 Lexington Avenue, 425 Lexington Avenue, New York, NY 10017</address>
<country>US</country>
</company>
<company>
<symbol>BNS</symbol>
<name>Bank Of Nova Scotia</name>
<taxNumber>134941099</taxNumber>
<address>44 King Street West, Scotia Plaza 8th Fl., Toronto, A6 M5H 1H1</address>
<country>CA</country>
</company>
<company>
<symbol>JPM</symbol>
<name>Jpmorgan Chase & Co</name>
<taxNumber>132624428</taxNumber>
<address>383 Madison Avenue, New York, NY 10017</address>
<country>US</country>
</company>
<company>
<symbol>TD</symbol>
<name>Toronto Dominion Bank</name>
<taxNumber>135640479</taxNumber>
<address>66 Wellington Street West, 12th Floor, Td Tower, Toronto, Ontario, A6 M5K 1A2</address>
<country>CA</country>
</company>
<company>
<symbol>CPB</symbol>
<name>Campbell Soup Co</name>
<taxNumber>210419870</taxNumber>
<address>Campbell Pl, Camden, NJ 08103</address>
<country>US</country>
</company>
<company>
<conid>199169586</conid>
<symbol>KHC</symbol>
<name>Kraft Heinz Co</name>
<taxNumber>462078182</taxNumber>
<address>One Ppg Place, Pittsburgh, Pennsylvania 15222</address>
<country>US</country>
</company>
<company>
<conid>4901</conid>
<symbol>VZ</symbol>
<name>Verizon Communications Inc</name>
<taxNumber>232259884</taxNumber>
<address>1095 Avenue Of The Americas, New York, NY 10036</address>
<country>US</country>
</company>
<company>
<conid>10245</conid>
<symbol>NHI</symbol>
<name>National Health Investors Inc</name>
<taxNumber>621470956</taxNumber>
<address>222 Robert Rose Drive, Murfreesboro, TN 37129</address>
<country>US</country>
</company>
<company>
<conid>6607910</conid>
<symbol>EPD</symbol>
<name>Enterprise Products Partners L.p.</name>
<taxNumber>760568219</taxNumber>
<address>1100 Louisiana 10th Floor, Houston, TX 77002</address>
<country>US</country>
</company>
<company>
<symbol>ABBV</symbol>
<name>Abbvie Inc.</name>
<taxNumber>320375147</taxNumber>
<address>1 North Waukegan Road, North Chicago, IL 60064</address>
<country>US</country>
</company>
<company>
<symbol>NNN</symbol>
<name>National Retail Properties, Inc.</name>
<taxNumber>561431377</taxNumber>
<address>450 S Orange Ave, Suite 900, Orlando, FL 32801</address>
<country>US</country>
</company>
<company>
<symbol>KMI</symbol>
<name>Kinder Morgan, Inc.</name>
<taxNumber>260238387</taxNumber>
<address>1001 Louisiana Street, Suite 1000, Houston, TX 77002</address>
<country>US</country>
</company>
<company>
<symbol>PG</symbol>
<name>Procter & Gamble Co</name>
<taxNumber>310411980</taxNumber>
<address>One Procter & Gamble Plaza, Cincinnati, OH 45202</address>
<country>US</country>
</company>
<company>
<symbol>UNM</symbol>
<name>Unum Group</name>
<taxNumber>621598430</taxNumber>
<address>1 Fountain Square, Chattanooga, TN 37402</address>
<country>US</country>
</company>
<company>
<symbol>BMO</symbol>
<name>Bank Of Montreal Europe Plc</name>
<taxNumber>980392985</taxNumber>
<address>2 Harbourmaster Place, Ifsc, Dublin 1, L2 D01 X5P3</address>
<country>IE</country>
</company>
<company>
<symbol>ENB</symbol>
<name>Enbridge Energy Partners Lp</name>
<taxNumber>391715850</taxNumber>
<address>5400 Westheimer Court, Houston, TX 77056</address>
<country>US</country>
</company>
<company>
<symbol>PFE</symbol>
<name>Pfizer Inc</name>
<taxNumber>135315170</taxNumber>
<address>235 E 42nd St, New York, NY 10017</address>
<country>US</country>
</company>
<company>
<symbol>MAC</symbol>
<name>Macerich Co</name>
<taxNumber>954448705</taxNumber>
<address>401 Wilshire Blvd, Ste 700, Santa Monica, CA 90401</address>
<country>US</country>
</company>
<company>
<symbol>CVX</symbol>
<name>Chevron Corp</name>
<taxNumber>940890210</taxNumber>
<address>6001 Bollinger Canyon Road, San Ramon, CA 94583</address>
<country>US</country>
</company>
<company>
<symbol>RTX</symbol>
<name>Raytheon Co</name>
<taxNumber>951778500</taxNumber>
<address>870 Winter Street, Waltham, MA 02451-1449</address>
<country>US</country>
</company>
<company>
<symbol>XOM</symbol>
<name>Exxon Mobil Corp</name>
<taxNumber>135409005</taxNumber>
<address>5959 Las Colinas Blvd, Irving, TX 75039-2298</address>
<country>US</country>
</company>
<company>
<symbol>ED</symbol>
<name>Consolidated Edison Inc</name>
<taxNumber>133965100</taxNumber>
<address>4 Irving Place, New York, NY 10003</address>
<country>US</country>
</company>
<company>
<symbol>LMT</symbol>
<name>Lockheed Martin Corp</name>
<taxNumber>521893632</taxNumber>
<address>6801 Rockledge Dr, Bethesda, MD 20817</address>
<country>US</country>
</company>
<company>
<symbol>GILD</symbol>
<name>Gilead Sciences Inc</name>
<taxNumber>94-3047598</taxNumber>
<address>333 Lakeside Dr, Foster City, CA 94404</address>
<country>US</country>
</company>
<company>
<symbol>CCI</symbol>
<name>Crown Castle International Corp</name>
<taxNumber>760470458</taxNumber>
<address>1220 Augusta Drive, Suite 600, Houston, TX 77057</address>
<country>US</country>
</company>
<company>
<symbol>PEP</symbol>
<name>Pepsico Inc</name>
<taxNumber>131584302</taxNumber>
<address>700 Anderson Hill Rd, Purchase, NY 10577</address>
<country>US</country>
</company>
<company>
<symbol>RPT PRD</symbol>
<name>Rpt Realty</name>
<taxNumber>136908486</taxNumber>
<address>19 W 44th Street, Suite 1002, New York, NY 10036</address>
<country>US</country>
</company>
<company>
<symbol>STX</symbol>
<name>Seagate Technology Plc</name>
<taxNumber>980648577</taxNumber>
<address>38/39 Fitzwilliam Square, Dublin 2, L2</address>
<country>IE</country>
</company>
<company>
<symbol>MPW</symbol>
<name>Medical Properties Trust, Llc</name>
<taxNumber>341985135</taxNumber>
<address>1000 Urban Center Drive, Suite 501, Birmingham, AL 35242</address>
<country>US</country>
</company>
<company>
<symbol>AVB</symbol>
<name>Avalonbay Communities Inc</name>
<taxNumber>770404318</taxNumber>
<address>671 N. Glebe Road, Suite 800, Arlington, VA 22203</address>
<country>US</country>
</company>
<company>
<symbol>SRE</symbol>
<name>Sempra Energy</name>
<taxNumber>330732627</taxNumber>
<address>488 8th Avenue, P O Box 129400, San Diego, CA 92101</address>
<country>US</country>
</company>
<company>
<symbol>T</symbol>
<name>At&t Inc.</name>
<taxNumber>431301883</taxNumber>
<address>208 S. Akard St, Attn : James Lacy, Dallas, TX 75202</address>
<country>US</country>
</company>
<company>
<symbol>ACN</symbol>
<name>Accenture Plc</name>
<taxNumber>980627530</taxNumber>
<address>1 Grand Canal Square, Grand Canal Harbour, Dublin L2, D2</address>
<country>IE</country>
</company>
<company>
<symbol>GD</symbol>
<name>General Dynamics Corp</name>
<taxNumber>131673581</taxNumber>
<address>11011 Sunset Hills Rd, Reston, VA 20190</address>
<country>US</country>
</company>
<company>
<symbol>OKE</symbol>
<name>Oneok Inc</name>
<taxNumber>731520922</taxNumber>
<address>100 West 5th St, Tulsa, OK 74103</address>
<country>US</country>
</company>
<company>
<symbol>BTI</symbol>
<name>British American Tobacco p.l.c.</name>
<taxNumber>239136950</taxNumber>
<address>REGENTS PARK ROAD, MILLBROOK, SOUTHAMPTON, SO15 8TL</address>
<country>GB</country>
</company>
<company>
<symbol>AWR</symbol>
<name>American States Water Co</name>
<taxNumber>954676679</taxNumber>
<address>630 E Foothill Blvd, San Dimas, CA 91773-9016</address>
<country>US</country>
</company>
<company>
<symbol>SO</symbol>
<name>Southern Co</name>
<taxNumber>580690070</taxNumber>
<address>30 Ivan Allen Jr. Blvd., N.w., Atlanta, GA 30308</address>
<country>US</country>
</company>
<company>
<symbol>VLO</symbol>
<name>Valero Energy Corp</name>
<taxNumber>741244795</taxNumber>
<address>530 Mccullough Ave, San Antonio, TX 78215</address>
<country>US</country>
</company>
<company>
<symbol>IBM</symbol>
<name>International Business Machines Corp</name>
<taxNumber>130871985</taxNumber>
<address>1 New Orchard Road, Armonk, NY 10504</address>
<country>US</country>
</company>
<company>
<symbol>SWKS</symbol>
<name>Skyworks Solutions, Inc.</name>
<taxNumber>042302115</taxNumber>
<address>20 Sylvan Road, Woburn, MA 01801</address>
<country>US</country>
</company>
<company>
<symbol>NEE</symbol>
<name>Nextera Energy Inc</name>
<taxNumber>592449419</taxNumber>
<address>700 Universe Blvd, Juno Beach, FL 33408</address>
<country>US</country>
</company>
<company>
<symbol>HD</symbol>
<name>Home Depot, Inc.</name>
<taxNumber>953261426</taxNumber>
<address>2455 Paces Ferry Road, Atlanta, GA 30339-4024</address>
<country>US</country>
</company>
<company>
<symbol>AVGO</symbol>
<name>Broadcom Inc.</name>
<taxNumber>352617337</taxNumber>
<address>1320 Ridder Park Drive, San Jose, CA 95131</address>
<country>US</country>
</company>
<company>
<symbol>HPE</symbol>
<name>Hewlett Packard Enterprise Co</name>
<taxNumber>473298624</taxNumber>
<address>6280 America Center Drive, San Jose, CA 95002</address>
<country>US</country>
</company>
<company>
<symbol>ORCL</symbol>
<name>Oracle Corp</name>
<taxNumber>542185193</taxNumber>
<address>500 Oracle Parkway, Mail Stop 5 Op 7, Redwood City, CA 94065</address>
<country>US</country>
</company>
<company>
<symbol>ET</symbol>
<name>Energy Transfer Lp</name>
<taxNumber>300108820</taxNumber>
<address>8111 Westchester Drive, Suite 600, Dallas, TX 75225</address>
<country>US</country>
</company>
<company>
<symbol>APA</symbol>
<name>Apache Corp</name>
<taxNumber>410747868</taxNumber>
<address>2000 Post Oak Blvd, Ste 100, Houston, TX 77056-4400</address>
<country>US</country>
</company>
<company>
<symbol>WRK</symbol>
<name>Westrock Co</name>
<taxNumber>371880617</taxNumber>
<address>1000 Abernathy Road Ne, Atlanta, GA 30328</address>
<country>US</country>
</company>
<company>
<symbol>WELL</symbol>
<name>Welltower Inc.</name>
<taxNumber>341096634</taxNumber>
<address>4500 Dorr Street, Toledo, OH 43615</address>
<country>US</country>
</company>
<company>
<symbol>WFC</symbol>
<name>Wells Fargo & Company</name>
<taxNumber>410449260</taxNumber>
<address>420 Montgomery Street, San Francisco, CA 94163</address>
<country>US</country>
</company>
<company>
<symbol>IVZ</symbol>
<name>Invesco Ltd.</name>
<taxNumber>980557567</taxNumber>
<address>1555 Peachtree Street Ne, Suite 1800, Atlanta, GA 30309</address>
<country>US</country>
</company>
<company>
<symbol>ADM</symbol>
<name>Archer-daniels-midland Co</name>
<taxNumber>410129150</taxNumber>
<address>77 W. Wacker Dr., Chicago, IL 60601</address>
<country>US</country>
</company>
<company>
<symbol>MPC</symbol>
<name>Marathon Petroleum Corp</name>
<taxNumber>271284632</taxNumber>
<address>539 South Main Street, Findlay, OH 45840-3229</address>
<country>US</country>
</company>
<company>
<symbol>AIG</symbol>
<name>American International Group Inc</name>
<taxNumber>132592361</taxNumber>
<address>175 Water Street, New York, NY 10038</address>
<country>US</country>
</company>
<company>
<symbol>OMC</symbol>
<name>Omnicom Group Inc.</name>
<taxNumber>131514814</taxNumber>
<address>437 Madison Ave, New York, NY 10022</address>
<country>US</country>
</company>
<company>
<symbol>TSM</symbol>
<name>Taiwan Semiconductor Manufacturing Company Limited</name>
<taxNumber>-</taxNumber>
<address>Hsinchu Science Park No. 8, Li-Hsin Road 6 Hsinchu 300-78</address>
<country>TW</country>
</company>
<company>
<symbol>SPG</symbol>
<name>Simon Property Group Inc</name>
<taxNumber>046268599</taxNumber>
<address>225 West Washington Street, Indianapolis, IN 46204-3438</address>
<country>US</country>
</company>
<company>
<symbol>NYMT</symbol>
<name>New York Mortgage Trust Inc</name>
<taxNumber>470934168</taxNumber>
<address>90 Park Avenue, New York, NY 10016</address>
<country>US</country>
</company>
<company>
<symbol>CIM</symbol>
<name>Chimera Investment Corp</name>
<taxNumber>260630461</taxNumber>
<address>520 Madison Avenue, 32nd Floor, New York, NY 10022</address>
<country>US</country>
</company>
<company>
<symbol>FL</symbol>
<name>Foot Locker, Inc.</name>
<taxNumber>133513936</taxNumber>
<address>Foot Locker, Inc., 330 West 34th Street, New York, NY 10001</address>
<country>US</country>
</company>
<company>
<symbol>VWRD</symbol>
<name>Vanguard FTSE All-World UCITS ETF</name>
<taxNumber>00B3RBWM25</taxNumber>
<address>70 Sir John Rogerson's Quay Dublin 2 Ireland</address>
<country>IE</country>
</company>
<company>
<symbol>VXUS</symbol>
<name>Vanguard Total International Stock ETF</name>
<taxNumber>9219097683</taxNumber>
<address>P.O. Box 1110, Valley Forge, 19482-1110</address>
<country>US</country>
</company>
<company>
<symbol>VTI</symbol>
<name>Vanguard Total Stock Market ETF</name>
<taxNumber>9229087690</taxNumber>
<address>P.O. Box 1110, Valley Forge, 19482-1110</address>
<country>US</country>
</company>
<company>
<symbol>VEU</symbol>
<name>Vanguard FTSE All-World ex-US ETF</name>
<taxNumber>9220427754</taxNumber>
<address>P.O. Box 1110, Valley Forge, 19482-1110</address>
<country>US</country>
</company>
<company>
<symbol>BND</symbol>
<name>Vanguard Total Bond Market ETF</name>
<taxNumber>9219378356</taxNumber>
<address>P.O. Box 1110, Valley Forge, 19482-1110</address>
<country>US</country>
</company>
<company>
<symbol>BNDX</symbol>
<name>Vanguard Total International Bond ETF</name>
<taxNumber>92203J4076</taxNumber>
<address>P.O. Box 1110, Valley Forge, 19482-1110</address>
<country>US</country>
</company>
<company>
<symbol>MRK</symbol>
<name>Merck & Co., Inc.</name>
<taxNumber>221918501</taxNumber>
<address>2000 GALLOPING HILL ROAD K5 3155M, KENILWORTH, NJ, 070331310</address>
<country>US</country>
</company>
<company>
<symbol>MO</symbol>
<name>Altria Group Inc</name>
<taxNumber>133260245</taxNumber>
<address>6601 West Broad Street, Richmond, VA 23230</address>
<country>US</country>
</company>
<company>
<symbol>UBA</symbol>
<name>Urstadt Biddle Properties Inc</name>
<taxNumber>042458042</taxNumber>
<address>321 Railroad Avenue, Greenwich, CT 06830</address>
<country>US</country>
</company>
<company>
<symbol>BGS</symbol>
<name>B&G Foods, Inc.</name>
<taxNumber>133918742</taxNumber>
<address>Four Gatehall Drive Suite 110 Parsippany, NJ 07054</address>
<country>US</country>
</company>
<company>
<symbol>AMT</symbol>
<name>American Tower Corp</name>
<taxNumber>650723837</taxNumber>
<address>116 Huntington Ave, Boston, MA 02116</address>
<country>US</country>
</company>
<company>
<symbol>CLX</symbol>
<name>Clorox Co</name>
<taxNumber>310595760</taxNumber>
<address>1221 Broadway Oakland, CA 94612-1888</address>
<country>US</country>
</company>
<company>
<symbol>SWX</symbol>
<name>Southwest Gas Holdings Inc</name>
<taxNumber>813881866</taxNumber>
<address>C/o Southwest Gas Corporation, 5241 Spring Mountain Road, Las Vegas, NV 89150-0002</address>
<country>US</country>
</company>
<company>
<symbol>AMGN</symbol>
<name>Amgen, Inc.</name>
<taxNumber>953540776</taxNumber>
<address>One Amgen Center Drive, Thousand Oaks, CA 91320</address>
<country>US</country>
</company>
<company>
<symbol>QCOM</symbol>
<name>QUALCOMM, Inc.</name>
<taxNumber>453157787</taxNumber>
<address>5775 Morehouse Drive, San Diego, CA 92121</address>
<country>US</country>
</company>
<company>
<symbol>SWCH</symbol>
<name>Switch Inc</name>
<taxNumber>821883953</taxNumber>
<address>7135 South Decatur Boulevard, Las Vegas, NV 89118</address>
<country>US</country>
</company>
<company>
<symbol>UGI</symbol>
<name>UGI Corporation</name>
<taxNumber>232668356</taxNumber>
<address>460 N Gulph Rd, P O Box 858, King Of Prussia, PA 19406</address>
<country>US</country>
</company>
<company>
<symbol>KMB</symbol>
<name>Kimberly Clark Corp</name>
<taxNumber>390394230</taxNumber>
<address>351 Phelps Drive, Irving, TX 75038</address>
<country>US</country>
</company>
<company>
<symbol>BMY</symbol>
<name>Bristol-Myers Squibb Co</name>
<taxNumber>220790350</taxNumber>
<address>430 E. 29th Street, 14 Floor, New York, NY 10016</address>
<country>US</country>
</company>
<company>
<symbol>OHI</symbol>
<name>Omega Healthcare Investors Inc</name>
<taxNumber>383041398</taxNumber>
<address>303 International Circle,, Suite 200, Hunt Valley, MD 21030</address>
<country>US</country>
</company>
<company>
<symbol>VTRS</symbol>
<name>Viatris Inc</name>
<taxNumber>83436429</taxNumber>
<address>1000 Mylan Blvd Canonsburg, PA 15317</address>
<country>US</country>
</company>
<company>
<symbol>TOT</symbol>
<name>Total SE</name>
<taxNumber>9542051180</taxNumber>
<address>Tour Coupole - 2, place Jean Millier - 92078 Paris La Défense Cedex – France</address>
<country>FR</country>
</company>
<company>
<symbol>TTE</symbol>
<name>TotalEnergies SE</name>
<taxNumber>9542051180</taxNumber>
<address>Tour Coupole - 2, place Jean Millier - 92078 Paris La Défense Cedex – France</address>
<country>FR</country>
</company>
<company>
<symbol>CI</symbol>
<name>Cigna Corp</name>
<taxNumber>824991898</taxNumber>
<address>900 Cottage Grove Road, Bloomfield, CT 06002</address>
<country>US</country>
</company>
<company>
<symbol>AQN</symbol>
<name>Algonquin Power & Utilities Corp</name>
<taxNumber>980406902</taxNumber>
<address>2845 Bristol Circle, Oakville, A6 L6H 7H7</address>
<country>CA</country>
</company>
<company>
<symbol>HRL</symbol>
<name>Hormel Foods Corp</name>
<taxNumber>132599675</taxNumber>
<address>1 Hormel Place, Austin, MN 55912</address>
<country>US</country>
</company>
<company>
<symbol>PNW</symbol>
<name>Pinnacle West Capital Corporation</name>
<taxNumber>860512431</taxNumber>
<address>400 North Fifth Street, Ms8695, Phoenix, AZ 85004</address>
<country>US</country>
</company>
<company>
<conid>NVDA</conid>
<symbol>NVDA</symbol>
<name>NVIDIA</name>
<taxNumber>943177549</taxNumber>
<address>2788 San Tomas Expy, Santa Clara, CA 95051, United States</address>
<country>US</country>
</company>
<company>
<conid>INTU</conid>
<symbol>INTU</symbol>
<name>INTUIT</name>
<taxNumber>770034661</taxNumber>
<address>2700 Coast Avenue Mountain View, CA 94043 USA</address>
<country>US</country>
</company>
<company>
<conid>MA</conid>
<symbol>MA</symbol>
<name>MASTERCARD</name>