diff --git a/.codex/skills/archivist/SKILL.md b/.codex/skills/archivist/SKILL.md index e2b83e1..d29a46c 100644 --- a/.codex/skills/archivist/SKILL.md +++ b/.codex/skills/archivist/SKILL.md @@ -115,6 +115,18 @@ The script discovers HKEXnews annual new listing report XLSX files, archives the By default, exclude report rows without a numeric IPO offer price because transfers, introductions, and de-SPAC transactions are not ordinary public subscription targets. +## HKEX Document Backfill + +Use the document archiver to fill detailed T0/T1 facts from official HKEXnews PDFs in small batches: + +```bash +.venv/bin/python scripts/archive_hkex_documents.py --limit 5 --as-of YYYY-MM-DDTHH:MM:SSZ +``` + +The script resolves HKEXnews stock IDs, archives prospectus and allotment-results PDFs under `data/raw/{ticker}/`, updates `source_refs`, parses high-confidence fields into `ipo_master`, `offering_terms`, and `ipo_demand`, exports snapshots, and refreshes sync state. + +Prefer small batches. After each batch, inspect a few tickers for date/source mismatches before continuing, because HKEXnews title search can include historical, postponed, or supplemental offering documents for the same stock code. + ## Quality Checks Before finishing, confirm: diff --git a/README.md b/README.md index bd50198..a74d3c4 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,18 @@ The updater archives the HKEXnews XLSX reports under `data/raw/hkex_new_listing_ Rows without an IPO offer price, such as transfers of listing, introductions, or de-SPAC transactions, are skipped by default because they are not ordinary public subscription targets. +## HKEX Document Backfill + +Use the HKEX document archiver to progressively fill detailed T0/T1 facts for open sync tasks: + +```bash +.venv/bin/python scripts/archive_hkex_documents.py --limit 5 --as-of 2026-06-15T08:30:00Z +``` + +The archiver maps stock codes to HKEXnews title-search stock IDs, downloads the selected prospectus and allotment-results PDFs under `data/raw/{ticker}/`, records `source_refs`, parses high-confidence T0/T1 fields into `ipo_master`, `offering_terms`, and `ipo_demand`, exports snapshots, and refreshes `sync_tasks`. + +Run in small batches because prospectus PDFs are large and title-search results can contain historical or postponed-offering documents. + ## Incremental Archive Sync The archivist keeps a per-ticker sync ledger so repeated updates can focus on missing stages: diff --git a/data/hk_ipo.sqlite b/data/hk_ipo.sqlite index 53d9621..b11516f 100644 Binary files a/data/hk_ipo.sqlite and b/data/hk_ipo.sqlite differ diff --git a/data/raw/00901/allotment_results_2026-05-27_2026052700001.pdf b/data/raw/00901/allotment_results_2026-05-27_2026052700001.pdf new file mode 100644 index 0000000..cb3a0d2 Binary files /dev/null and b/data/raw/00901/allotment_results_2026-05-27_2026052700001.pdf differ diff --git a/data/raw/00901/prospectus_2026-05-18_2026051800027.pdf b/data/raw/00901/prospectus_2026-05-18_2026051800027.pdf new file mode 100644 index 0000000..70eab48 Binary files /dev/null and b/data/raw/00901/prospectus_2026-05-18_2026051800027.pdf differ diff --git a/data/raw/01081/allotment_results_2026-06-04_2026060402919.pdf b/data/raw/01081/allotment_results_2026-06-04_2026060402919.pdf new file mode 100644 index 0000000..8fb7e63 Binary files /dev/null and b/data/raw/01081/allotment_results_2026-06-04_2026060402919.pdf differ diff --git a/data/raw/01081/prospectus_2026-05-28_2026052800019.pdf b/data/raw/01081/prospectus_2026-05-28_2026052800019.pdf new file mode 100644 index 0000000..69f6272 Binary files /dev/null and b/data/raw/01081/prospectus_2026-05-28_2026052800019.pdf differ diff --git a/data/raw/01779/allotment_results_2026-06-04_2026060402923.pdf b/data/raw/01779/allotment_results_2026-06-04_2026060402923.pdf new file mode 100644 index 0000000..4809950 Binary files /dev/null and b/data/raw/01779/allotment_results_2026-06-04_2026060402923.pdf differ diff --git a/data/raw/01779/prospectus_2026-05-28_2026052800023.pdf b/data/raw/01779/prospectus_2026-05-28_2026052800023.pdf new file mode 100644 index 0000000..d10bb1d Binary files /dev/null and b/data/raw/01779/prospectus_2026-05-28_2026052800023.pdf differ diff --git a/data/raw/02290/allotment_results_2026-06-04_2026060402521.pdf b/data/raw/02290/allotment_results_2026-06-04_2026060402521.pdf new file mode 100644 index 0000000..0634953 Binary files /dev/null and b/data/raw/02290/allotment_results_2026-06-04_2026060402521.pdf differ diff --git a/data/raw/02290/prospectus_2026-05-28_2026052800031.pdf b/data/raw/02290/prospectus_2026-05-28_2026052800031.pdf new file mode 100644 index 0000000..7baeb60 Binary files /dev/null and b/data/raw/02290/prospectus_2026-05-28_2026052800031.pdf differ diff --git a/data/raw/02553/allotment_results_2026-06-02_2026060202644.pdf b/data/raw/02553/allotment_results_2026-06-02_2026060202644.pdf new file mode 100644 index 0000000..5ec110d Binary files /dev/null and b/data/raw/02553/allotment_results_2026-06-02_2026060202644.pdf differ diff --git a/data/raw/02553/prospectus_2026-05-26_2026052600047.pdf b/data/raw/02553/prospectus_2026-05-26_2026052600047.pdf new file mode 100644 index 0000000..ada65f1 Binary files /dev/null and b/data/raw/02553/prospectus_2026-05-26_2026052600047.pdf differ diff --git a/data/raw/03388/allotment_results_2026-05-28_2026052802543.pdf b/data/raw/03388/allotment_results_2026-05-28_2026052802543.pdf new file mode 100644 index 0000000..4a05a12 Binary files /dev/null and b/data/raw/03388/allotment_results_2026-05-28_2026052802543.pdf differ diff --git a/data/raw/03388/prospectus_2026-05-20_2026052000023.pdf b/data/raw/03388/prospectus_2026-05-20_2026052000023.pdf new file mode 100644 index 0000000..43c3da3 Binary files /dev/null and b/data/raw/03388/prospectus_2026-05-20_2026052000023.pdf differ diff --git a/data/snapshots/ipo_demand.csv b/data/snapshots/ipo_demand.csv index d5f20c2..d69e999 100644 --- a/data/snapshots/ipo_demand.csv +++ b/data/snapshots/ipo_demand.csv @@ -1,2 +1,8 @@ demand_id,ticker,source_id,stage_date,valid_applications,successful_applications,public_oversubscription_times,international_placees,international_oversubscription_times,final_hk_offer_shares,final_international_offer_shares,data_as_of,notes +00901_allotment_2026_05_27_2026052700001,00901,00901_allotment_results_2026_05_27_2026052700001,2026-05-27,177196,17058,1971.99,215,2.23,1920800,17286500,2026-06-15T08:35:00Z,Parsed from HKEXnews allotment results announcement. +01081_allotment_2026_06_04_2026060402919,01081,01081_allotment_results_2026_06_04_2026060402919,2026-06-04,122627,28788,134.39,125,10.68,8696600,91314000,2026-06-15T08:35:00Z,Parsed from HKEXnews allotment results announcement. +01779_allotment_2026_06_04_2026060402923,01779,01779_allotment_results_2026_06_04_2026060402923,2026-06-04,266377,28057,4762.58,80,10.94,1419350,12773800,2026-06-15T08:35:00Z,Parsed from HKEXnews allotment results announcement. +02290_allotment_2026_06_04_2026060402521,02290,02290_allotment_results_2026_06_04_2026060402521,2026-06-04,133189,16359,664.92,78,3.18,12500000,112500000,2026-06-15T08:35:00Z,Parsed from HKEXnews allotment results announcement. +02553_allotment_2026_06_02_2026060202644,02553,02553_allotment_results_2026_06_02_2026060202644,2026-06-02,109125,21872,1421.54,97,0.95,6000000,34000000,2026-06-15T08:50:00Z,Parsed from HKEXnews allotment results announcement. +03388_allotment_2026_05_28_2026052802543,03388,03388_allotment_results_2026_05_28_2026052802543,2026-05-28,251375,44336,3829.42,183,26.8,7342800,66084750,2026-06-15T08:35:00Z,Parsed from HKEXnews allotment results announcement. 06658_allotment_2026_06_12,06658,06658_allotment_results_2026_06_12,2026-06-12,180507,11465,6586.73,64,2.64,1146500,10317600,2026-06-15T06:15:00Z,Claw-back shown as N/A in the HKEXnews allotment results. diff --git a/data/snapshots/ipo_master.csv b/data/snapshots/ipo_master.csv index 466ea44..3a3e841 100644 --- a/data/snapshots/ipo_master.csv +++ b/data/snapshots/ipo_master.csv @@ -12,11 +12,11 @@ ticker,company_name_en,company_name_zh,stock_short_name,exchange,board,status,li 00699,NINGBO JOYSON ELECTRONIC CORP.- H shares,,,HKEX,Main Board,listed,2025-11-06,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. 00800,WeRide Inc. - W,,,HKEX,Main Board,listed,2025-11-06,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. 00805,New Gonow Recreational Vehicles Inc.,,,HKEX,Main Board,listed,2025-01-13,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. -00901,"Shenzhen SDMC Technology Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-05-27,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. +00901,"Shenzhen SDMC Technology Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-05-27,2026-05-18,2026-05-21,2026-05-26,,2026-06-15T08:35:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 00917,Qunabox Group Limited,,,HKEX,Main Board,listed,2024-05-27,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. 00999,Xiaocaiyuan International Holding Ltd.,,,HKEX,Main Board,listed,2024-12-20,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. 01021,"Guangdong Huayan Robotics Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-03-30,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. -01081,"Dajin Heavy Industry Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-06-05,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. +01081,"Dajin Heavy Industry Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-06-05,2026-05-28,2026-06-02,2026-06-04,,2026-06-15T08:35:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 01111,Huashi Group Holdings Limited,,,HKEX,Main Board,listed,2023-11-10,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2023. 01187,"Cofoe Medical Technology Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-05-06,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 01236,"SHENZHEN LDROBOT CO., LTD - H Shares",,,HKEX,Main Board,listed,2026-05-11,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. @@ -38,7 +38,7 @@ ticker,company_name_en,company_name_zh,stock_short_name,exchange,board,status,li 01609,"Star Sports Medicine Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-05-05,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 01641,"Hongxing Coldchain (Hunan) Co., Ltd.- H shares",,,HKEX,Main Board,listed,2026-01-13,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 01768,"BUSY MING GROUP CO., LTD.- H shares",,,HKEX,Main Board,listed,2026-01-28,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. -01779,"LongBio Pharma (Suzhou) Co., Ltd. - B - H Shares",,,HKEX,Main Board,listed,2026-06-05,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. +01779,"LongBio Pharma (Suzhou) Co., Ltd. - B - H Shares",,,HKEX,Main Board,listed,2026-06-05,2026-05-28,2026-06-02,2026-06-04,,2026-06-15T08:35:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 01828,FWD Group Holdings Limited,,,HKEX,Main Board,listed,2025-07-07,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. 01879,"Shanghai Xizhi Technology Co., Ltd. - P - H Shares",,,HKEX,Main Board,listed,2026-04-28,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 01973,"Tian Tu Capital Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2023-10-06,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2023. @@ -52,7 +52,7 @@ ticker,company_name_en,company_name_zh,stock_short_name,exchange,board,status,li 02259,Zijin Gold International Company Limited,,,HKEX,Main Board,listed,2025-09-30,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. 02268,WuXi XDC Cayman Inc.,,,HKEX,Main Board,listed,2023-11-17,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2023. 02271,Zhong An Intelligent Living Service Limited,,,HKEX,Main Board,listed,2023-07-18,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2023. -02290,Lung Fung Group Holdings Limited,,,HKEX,Main Board,listed,2026-06-05,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. +02290,Lung Fung Group Holdings Limited,,,HKEX,Main Board,listed,2026-06-05,2026-05-28,2026-06-02,2026-06-04,,2026-06-15T08:35:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 02396,B&K CORPORATION LIMITED - B - H shares,,,HKEX,Main Board,listed,2025-12-22,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. 02408,"Guangzhou Xiao Noodles Catering Management Co., Ltd.- H shares",,,HKEX,Main Board,listed,2025-12-05,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. 02410,"TYK Medicines, Inc - B - H Shares",,,HKEX,Main Board,listed,2024-08-20,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. @@ -115,7 +115,7 @@ ticker,company_name_en,company_name_zh,stock_short_name,exchange,board,status,li 02549,Carote Ltd,,,HKEX,Main Board,listed,2024-10-02,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. 02550,Easou Technology Holdings Limited,,,HKEX,Main Board,listed,2024-06-07,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. 02551,"APT Electronics Co., Ltd. - H shares",,,HKEX,Main Board,listed,2024-11-08,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. -02553,"Beijing Shougang LanzaTech Technology Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-06-03,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. +02553,"Beijing Shougang LanzaTech Technology Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-06-03,2026-05-26,2026-05-29,2026-06-02,,2026-06-15T08:50:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 02555,"Sichuan Baicha Baidao Industrial Co., Ltd. - H shares",,,HKEX,Main Board,listed,2024-04-23,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. 02556,Marketingforce Management Ltd,,,HKEX,Main Board,listed,2024-05-16,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. 02559,Dida Inc.,,,HKEX,Main Board,listed,2024-06-28,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2024. @@ -213,7 +213,7 @@ ticker,company_name_en,company_name_zh,stock_short_name,exchange,board,status,li 03317,"Shenzhen Xunce Technology Co., Ltd.- H shares",,,HKEX,Main Board,listed,2025-12-30,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. 03355,FS.COM Ltd. - H Shares,,,HKEX,Main Board,listed,2026-03-23,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 03378,"Hanx Biopharmaceuticals (Wuhan) Co., Ltd. - B - H shares",,,HKEX,Main Board,listed,2025-12-23,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2025. -03388,"Shenzhen Creality 3D Technology Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-05-29,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. +03388,"Shenzhen Creality 3D Technology Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-05-29,2026-05-20,2026-05-26,2026-05-28,,2026-06-15T08:35:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 03625,"Shanghai FourSemi Semiconductor Co., Ltd. - H Shares",,,HKEX,Main Board,listed,2026-03-31,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 03636,"Yunnan Jinxun Resources Co., Ltd. - H shares",,,HKEX,Main Board,listed,2026-01-09,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2026. 03650,Keep Inc.,,,HKEX,Main Board,listed,2023-07-12,,,,,2026-06-15T07:30:00Z,Seeded from HKEXnews Main Board New Listing Report 2023. diff --git a/data/snapshots/offering_terms.csv b/data/snapshots/offering_terms.csv index c5e04ee..992daa6 100644 --- a/data/snapshots/offering_terms.csv +++ b/data/snapshots/offering_terms.csv @@ -12,11 +12,11 @@ ticker,source_id,prospectus_date,offer_price_hkd,board_lot,min_subscription_amou 00699,00699_new_listing_report_main_2025,2025-10-28,22.0,,,,,,,,,,3412.2,,,2026-06-15T07:30:00Z 00800,00800_new_listing_report_main_2025,2025-10-28,27.1,,,,,,,,,,2391.575,,,2026-06-15T07:30:00Z 00805,00805_new_listing_report_main_2025,2024-12-31,1.27,,,,,,,,,,304.8,,,2026-06-15T07:30:00Z -00901,00901_new_listing_report_main_2026,2026-05-18,32.8,,,,,,,,,,629.99944,,,2026-06-15T07:30:00Z +00901,00901_prospectus_2026_05_18_2026051800027,2026-05-18,32.8,100,3313.08,19207300,1920800,17286500,0.1,2881095,,,629.99944,,209540070,2026-06-15T08:35:00Z 00917,00917_new_listing_report_main_2024,2024-05-17,25.0,,,,,,,,,,492.6,,,2026-06-15T07:30:00Z 00999,00999_new_listing_report_main_2024,2024-12-12,8.5,,,,,,,,,,860.0368,,,2026-06-15T07:30:00Z 01021,01021_new_listing_report_main_2026,2026-03-20,17.0,,,,,,,,,,1808.3172,,,2026-06-15T07:30:00Z -01081,01081_new_listing_report_main_2026,2026-05-28,66.4,,,,,,,,,,6640.70384,,,2026-06-15T07:30:00Z +01081,01081_prospectus_2026_05_28_2026052800019,2026-05-28,66.4,100,6706.97,86965800,8696600,78269200,0.1,13044870,,,6640.70384,6465.48,737759949,2026-06-15T08:35:00Z 01111,01111_new_listing_report_main_2023,2023-10-31,1.04,,,,,,,,,,130.0,,,2026-06-15T07:30:00Z 01187,01187_new_listing_report_main_2026,2026-04-27,39.33,,,,,,,,,,1061.91,,,2026-06-15T07:30:00Z 01236,01236_new_listing_report_main_2026,2026-04-30,26.36,,,,,,,,,,878.668424,,,2026-06-15T07:30:00Z @@ -38,7 +38,7 @@ ticker,source_id,prospectus_date,offer_price_hkd,board_lot,min_subscription_amou 01609,01609_new_listing_report_main_2026,2026-04-24,98.5,,,,,,,,,,829.552225,,,2026-06-15T07:30:00Z 01641,01641_new_listing_report_main_2026,2025-12-31,12.26,,,,,,,,,,285.20438,,,2026-06-15T07:30:00Z 01768,01768_new_listing_report_main_2026,2026-01-20,236.6,,,,,,,,,,4220.42348,,,2026-06-15T07:30:00Z -01779,01779_new_listing_report_main_2026,2026-05-28,96.06,,,,,,,,,,1363.393989,,,2026-06-15T07:30:00Z +01779,01779_prospectus_2026_05_28_2026052800023,2026-05-28,96.06,50,4851.44,14193150,1419350,12773800,0.1,2128972,,,1363.393989,1254.9,74193150,2026-06-15T08:35:00Z 01828,01828_new_listing_report_main_2025,2025-06-26,38.0,,,,,,,,,,3661.053,,,2026-06-15T07:30:00Z 01879,01879_new_listing_report_main_2026,2026-04-20,183.2,,,,,,,,,,2906.375484,,,2026-06-15T07:30:00Z 01973,01973_new_listing_report_main_2023,2023-09-25,6.5,,,,,,,,,,1126.177,,,2026-06-15T07:30:00Z @@ -52,7 +52,7 @@ ticker,source_id,prospectus_date,offer_price_hkd,board_lot,min_subscription_amou 02259,02259_new_listing_report_main_2025,2025-09-19,71.59,,,,,,,,,,28731.880487,,,2026-06-15T07:30:00Z 02268,02268_new_listing_report_main_2023,2023-11-07,20.6,,,,,,,,,,4070.6527,,,2026-06-15T07:30:00Z 02271,02271_new_listing_report_main_2023,2023-06-30,1.18,,,,,,,,,,162.14852,,,2026-06-15T07:30:00Z -02290,02290_new_listing_report_main_2026,2026-05-28,5.18,,,,,,,,,,647.5,,,2026-06-15T07:30:00Z +02290,02290_prospectus_2026_05_28_2026052800031,2026-05-28,5.18,500,3222.17,125000000,12500000,112500000,0.1,18750000,,,647.5,,500000000,2026-06-15T08:35:00Z 02396,02396_new_listing_report_main_2025,2025-12-12,38.2,,,,,,,,,,674.18416,,,2026-06-15T07:30:00Z 02408,02408_new_listing_report_main_2025,2025-11-27,7.04,,,,,,,,,,685.44608,,,2026-06-15T07:30:00Z 02410,02410_new_listing_report_main_2024,2024-08-12,12.1,,,,,,,,,,579.348,,,2026-06-15T07:30:00Z @@ -115,7 +115,7 @@ ticker,source_id,prospectus_date,offer_price_hkd,board_lot,min_subscription_amou 02549,02549_new_listing_report_main_2024,2024-09-23,5.78,,,,,,,,,,863.20832,,,2026-06-15T07:30:00Z 02550,02550_new_listing_report_main_2024,2024-05-30,5.8,,,,,,,,,,85.8545,,,2026-06-15T07:30:00Z 02551,02551_new_listing_report_main_2024,2024-10-31,3.61,,,,,,,,,,139.4904,,,2026-06-15T07:30:00Z -02553,02553_new_listing_report_main_2026,2026-05-26,14.6,,,,,,,,,,584.0,,,2026-06-15T07:30:00Z +02553,02553_prospectus_2026_05_26_2026052600047,2026-05-26,14.6,200,3454.49,40000000,4000000,36000000,0.1,6000000,,,584.0,486.46,400000000,2026-06-15T08:50:00Z 02555,02555_new_listing_report_main_2024,2024-04-15,17.5,,,,,,,,,,2585.8595,,,2026-06-15T07:30:00Z 02556,02556_new_listing_report_main_2024,2024-05-07,43.6,,,,,,,,,,259.40692,,,2026-06-15T07:30:00Z 02559,02559_new_listing_report_main_2024,2024-06-20,6.0,,,,,,,,,,234.546,,,2026-06-15T07:30:00Z @@ -213,7 +213,7 @@ ticker,source_id,prospectus_date,offer_price_hkd,board_lot,min_subscription_amou 03317,03317_new_listing_report_main_2025,2025-12-18,48.0,,,,,,,,,,1089.3312,,,2026-06-15T07:30:00Z 03355,03355_new_listing_report_main_2026,2026-03-13,41.6,,,,,,,,,,1900.10912,,,2026-06-15T07:30:00Z 03378,03378_new_listing_report_main_2025,2025-12-15,32.0,,,,,,,,,,586.272,,,2026-06-15T07:30:00Z -03388,03388_new_listing_report_main_2026,2026-05-20,18.8,,,,,,,,,,1380.43794,,,2026-06-15T07:30:00Z +03388,03388_prospectus_2026_05_20_2026052000023,2026-05-20,18.8,150,2848.44,73427550,7342800,66084750,0.1,11014132,,,1380.43794,1272.32,466840101,2026-06-15T08:35:00Z 03625,03625_new_listing_report_main_2026,2026-03-23,40.0,,,,,,,,,,480.0,,,2026-06-15T07:30:00Z 03636,03636_new_listing_report_main_2026,2025-12-31,30.0,,,,,,,,,,1268.412,,,2026-06-15T07:30:00Z 03650,03650_new_listing_report_main_2023,2023-06-30,28.92,,,,,,,,,,313.452312,,,2026-06-15T07:30:00Z diff --git a/data/snapshots/source_refs.csv b/data/snapshots/source_refs.csv index 4da2281..d6a31ba 100644 --- a/data/snapshots/source_refs.csv +++ b/data/snapshots/source_refs.csv @@ -12,11 +12,15 @@ source_id,ticker,source_type,title,path_base,local_path,url,file_sha256,source_d 00699_new_listing_report_main_2025,00699,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 00800_new_listing_report_main_2025,00800,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 00805_new_listing_report_main_2025,00805,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +00901_allotment_results_2026_05_27_2026052700001,00901,allotment_results,ANNOUNCEMENT OF ALLOTMENT RESULTS,repo_root,data/raw/00901/allotment_results_2026-05-27_2026052700001.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0527/2026052700001.pdf,c2201438364d513cb92aa7f96be2ec10bc91296ad31720514562c4b76d2ec48d,2026-05-27,2026-06-15T08:35:00Z,HKEXnews Announcements and Notices - [Allotment Results]. 00901_new_listing_report_main_2026,00901,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +00901_prospectus_2026_05_18_2026051800027,00901,prospectus,GLOBAL OFFERING,repo_root,data/raw/00901/prospectus_2026-05-18_2026051800027.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0518/2026051800027.pdf,d4cb0a3be8a638791d62ab9262d9bfec1e8df110323dcd93fc45ae6ce672ecdb,2026-05-18,2026-06-15T08:35:00Z,HKEXnews Listing Documents - [Offer for Subscription]. 00917_new_listing_report_main_2024,00917,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 00999_new_listing_report_main_2024,00999,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 01021_new_listing_report_main_2026,01021,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +01081_allotment_results_2026_06_04_2026060402919,01081,allotment_results,Announcement of Allotment Results,repo_root,data/raw/01081/allotment_results_2026-06-04_2026060402919.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0604/2026060402919.pdf,d73aeb70ca4282c5c5c50a4a11f26a3f191a6d5bba4b7a865d091ebc85b614b2,2026-06-04,2026-06-15T08:35:00Z,HKEXnews Announcements and Notices - [Allotment Results]. 01081_new_listing_report_main_2026,01081,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +01081_prospectus_2026_05_28_2026052800019,01081,prospectus,GLOBAL OFFERING,repo_root,data/raw/01081/prospectus_2026-05-28_2026052800019.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0528/2026052800019.pdf,d09984648ea2e8b7c10788d585dd6281ad64e5a21eaad9a387f2c5c2966b37f3,2026-05-28,2026-06-15T08:35:00Z,HKEXnews Listing Documents - [Offer for Subscription]. 01111_new_listing_report_main_2023,01111,new_listing_report,HKEXnews Main Board New Listing Report 2023,repo_root,data/raw/hkex_new_listing_reports/main/NLR2023_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2023_Eng.xlsx,1ec5da84e5062a829907253c2458a9af2a028964aa0baf4c0a5c40ac4db43e57,2023-12-29,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 01187_new_listing_report_main_2026,01187,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 01236_new_listing_report_main_2026,01236,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. @@ -38,7 +42,9 @@ source_id,ticker,source_type,title,path_base,local_path,url,file_sha256,source_d 01609_new_listing_report_main_2026,01609,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 01641_new_listing_report_main_2026,01641,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 01768_new_listing_report_main_2026,01768,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +01779_allotment_results_2026_06_04_2026060402923,01779,allotment_results,Announcement of Allotment Results,repo_root,data/raw/01779/allotment_results_2026-06-04_2026060402923.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0604/2026060402923.pdf,7af48176c182598c438b84b2c41684297bb6e10978a2f742d2c07b8cc7319648,2026-06-04,2026-06-15T08:35:00Z,HKEXnews Announcements and Notices - [Allotment Results]. 01779_new_listing_report_main_2026,01779,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +01779_prospectus_2026_05_28_2026052800023,01779,prospectus,GLOBAL OFFERING,repo_root,data/raw/01779/prospectus_2026-05-28_2026052800023.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0528/2026052800023.pdf,7687422547c9aff6ec0301bf77cf83a2af5b53a13604bc557ae9c32ce5dc48da,2026-05-28,2026-06-15T08:35:00Z,HKEXnews Listing Documents - [Offer for Subscription]. 01828_new_listing_report_main_2025,01828,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 01879_new_listing_report_main_2026,01879,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 01973_new_listing_report_main_2023,01973,new_listing_report,HKEXnews Main Board New Listing Report 2023,repo_root,data/raw/hkex_new_listing_reports/main/NLR2023_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2023_Eng.xlsx,1ec5da84e5062a829907253c2458a9af2a028964aa0baf4c0a5c40ac4db43e57,2023-12-29,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. @@ -52,7 +58,9 @@ source_id,ticker,source_type,title,path_base,local_path,url,file_sha256,source_d 02259_new_listing_report_main_2025,02259,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 02268_new_listing_report_main_2023,02268,new_listing_report,HKEXnews Main Board New Listing Report 2023,repo_root,data/raw/hkex_new_listing_reports/main/NLR2023_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2023_Eng.xlsx,1ec5da84e5062a829907253c2458a9af2a028964aa0baf4c0a5c40ac4db43e57,2023-12-29,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 02271_new_listing_report_main_2023,02271,new_listing_report,HKEXnews Main Board New Listing Report 2023,repo_root,data/raw/hkex_new_listing_reports/main/NLR2023_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2023_Eng.xlsx,1ec5da84e5062a829907253c2458a9af2a028964aa0baf4c0a5c40ac4db43e57,2023-12-29,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +02290_allotment_results_2026_06_04_2026060402521,02290,allotment_results,ANNOUNCEMENT OF FINAL OFFER PRICE AND ALLOTMENT RESULTS,repo_root,data/raw/02290/allotment_results_2026-06-04_2026060402521.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0604/2026060402521.pdf,85190f97977be8dd38dfbdd252cb2145fdcc1eab907f19bb48fcd841caaa226f,2026-06-04,2026-06-15T08:35:00Z,HKEXnews Announcements and Notices - [Allotment Results]. 02290_new_listing_report_main_2026,02290,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +02290_prospectus_2026_05_28_2026052800031,02290,prospectus,GLOBAL OFFERING,repo_root,data/raw/02290/prospectus_2026-05-28_2026052800031.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0528/2026052800031.pdf,f84e9f37a1b3f66714a30aca66a3ea4868e306d159bfc4eafc2c0b0e76d5f936,2026-05-28,2026-06-15T08:35:00Z,HKEXnews Listing Documents - [Offer for Subscription]. 02396_new_listing_report_main_2025,02396,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 02408_new_listing_report_main_2025,02408,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 02410_new_listing_report_main_2024,02410,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. @@ -115,7 +123,9 @@ source_id,ticker,source_type,title,path_base,local_path,url,file_sha256,source_d 02549_new_listing_report_main_2024,02549,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 02550_new_listing_report_main_2024,02550,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 02551_new_listing_report_main_2024,02551,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +02553_allotment_results_2026_06_02_2026060202644,02553,allotment_results,ANNOUNCEMENT OF FINAL OFFER PRICE AND ALLOTMENT RESULTS,repo_root,data/raw/02553/allotment_results_2026-06-02_2026060202644.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0602/2026060202644.pdf,1176c14ac0a19de15fe09e6b8738b1a1777699b2ef31577cad9783507fbc8232,2026-06-02,2026-06-15T08:50:00Z,HKEXnews Announcements and Notices - [Allotment Results]. 02553_new_listing_report_main_2026,02553,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +02553_prospectus_2026_05_26_2026052600047,02553,prospectus,GLOBAL OFFERING,repo_root,data/raw/02553/prospectus_2026-05-26_2026052600047.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0526/2026052600047.pdf,0725adb1457af7bd6c5cd038c3b10ce176043f8c64a9fee9ebd86c42d9d01861,2026-05-26,2026-06-15T08:50:00Z,HKEXnews Listing Documents - [Offer for Subscription]. 02555_new_listing_report_main_2024,02555,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 02556_new_listing_report_main_2024,02556,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 02559_new_listing_report_main_2024,02559,new_listing_report,HKEXnews Main Board New Listing Report 2024,repo_root,data/raw/hkex_new_listing_reports/main/NLR2024_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2024_Eng.xlsx,8c456f5e8cc5326f68fe0d4da85006f018ccfe7a5282c4e3d6f7fed67090f60d,2024-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. @@ -213,7 +223,9 @@ source_id,ticker,source_type,title,path_base,local_path,url,file_sha256,source_d 03317_new_listing_report_main_2025,03317,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 03355_new_listing_report_main_2026,03355,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 03378_new_listing_report_main_2025,03378,new_listing_report,HKEXnews Main Board New Listing Report 2025,repo_root,data/raw/hkex_new_listing_reports/main/NLR2025_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2025_Eng.xlsx,a9ac4c349715eaeaf64666b6ef0a142b49895fb15342cd189514d66263a3a066,2025-12-30,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +03388_allotment_results_2026_05_28_2026052802543,03388,allotment_results,ANNOUNCEMENT OF ALLOTMENT RESULTS,repo_root,data/raw/03388/allotment_results_2026-05-28_2026052802543.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0528/2026052802543.pdf,9cb7df8ccd704f13591bf4c9a783bf7490da3fc7fed0183c9e4d431ce4d405b6,2026-05-28,2026-06-15T08:35:00Z,HKEXnews Announcements and Notices - [Allotment Results]. 03388_new_listing_report_main_2026,03388,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. +03388_prospectus_2026_05_20_2026052000023,03388,prospectus,GLOBAL OFFERING,repo_root,data/raw/03388/prospectus_2026-05-20_2026052000023.pdf,https://www1.hkexnews.hk/listedco/listconews/sehk/2026/0520/2026052000023.pdf,e9c03a103d92851176522aea43b2b5effbd2a249152577639b9ce42cb718d417,2026-05-20,2026-06-15T08:35:00Z,HKEXnews Listing Documents - [Offer for Subscription]. 03625_new_listing_report_main_2026,03625,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 03636_new_listing_report_main_2026,03636,new_listing_report,HKEXnews Main Board New Listing Report 2026,repo_root,data/raw/hkex_new_listing_reports/main/NLR2026_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2026_Eng.xlsx,72688c7edf7f28379a1b22cc4133cf201be69b19bef558d4b95c8da859cc4330,2026-06-09,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. 03650_new_listing_report_main_2023,03650,new_listing_report,HKEXnews Main Board New Listing Report 2023,repo_root,data/raw/hkex_new_listing_reports/main/NLR2023_Eng.xlsx,https://www2.hkexnews.hk/-/media/HKEXnews/Homepage/New-Listings/New-Listing-Information/New-Listing-Report/Main/NLR2023_Eng.xlsx,1ec5da84e5062a829907253c2458a9af2a028964aa0baf4c0a5c40ac4db43e57,2023-12-29,2026-06-15T07:30:00Z,Annual HKEXnews new listing report used to seed recent IPO target coverage. diff --git a/data/snapshots/sync_runs.csv b/data/snapshots/sync_runs.csv index 6011566..f3d94fe 100644 --- a/data/snapshots/sync_runs.csv +++ b/data/snapshots/sync_runs.csv @@ -1,3 +1,10 @@ sync_run_id,mode,as_of,started_at,finished_at,status,notes sync_state_20260615T073000Z,recent_ipo_list_refresh,2026-06-15T07:30:00Z,2026-06-15T07:30:00Z,2026-06-15T07:30:00Z,complete,Derived ticker sync state refreshed. +sync_state_20260615T081500Z,hkex_document_archive,2026-06-15T08:15:00Z,2026-06-15T08:15:00Z,2026-06-15T08:15:00Z,complete,Derived ticker sync state refreshed. +sync_state_20260615T082000Z,hkex_document_archive,2026-06-15T08:20:00Z,2026-06-15T08:20:00Z,2026-06-15T08:20:00Z,complete,Derived ticker sync state refreshed. +sync_state_20260615T082500Z,hkex_document_archive,2026-06-15T08:25:00Z,2026-06-15T08:25:00Z,2026-06-15T08:25:00Z,complete,Derived ticker sync state refreshed. +sync_state_20260615T083000Z,hkex_document_archive,2026-06-15T08:30:00Z,2026-06-15T08:30:00Z,2026-06-15T08:30:00Z,complete,Derived ticker sync state refreshed. +sync_state_20260615T083500Z,hkex_document_archive,2026-06-15T08:35:00Z,2026-06-15T08:35:00Z,2026-06-15T08:35:00Z,complete,Derived ticker sync state refreshed. +sync_state_20260615T084500Z,hkex_document_archive,2026-06-15T08:45:00Z,2026-06-15T08:45:00Z,2026-06-15T08:45:00Z,complete,Derived ticker sync state refreshed. +sync_state_20260615T085000Z,hkex_document_archive,2026-06-15T08:50:00Z,2026-06-15T08:50:00Z,2026-06-15T08:50:00Z,complete,Derived ticker sync state refreshed. sync_state_seed_2026_06_15,bootstrap_state_refresh,2026-06-15T06:30:00Z,2026-06-15T06:30:00Z,2026-06-15T06:30:00Z,complete,Derived ticker sync state refreshed. diff --git a/data/snapshots/sync_tasks.csv b/data/snapshots/sync_tasks.csv index ab3f20f..7edb9d4 100644 --- a/data/snapshots/sync_tasks.csv +++ b/data/snapshots/sync_tasks.csv @@ -1,2048 +1,2036 @@ task_id,ticker,stage,task_type,task_status,due_date,data_gap_id,last_sync_run_id,updated_at,notes -00068_T0_prospectus,00068,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00068_T1_allotment,00068,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00100_T0_prospectus,00100,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00100_T1_allotment,00100,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00300_T0_prospectus,00300,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00300_T1_allotment,00300,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00325_T0_prospectus,00325,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00325_T1_allotment,00325,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00470_T0_prospectus,00470,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00470_T1_allotment,00470,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00501_T0_prospectus,00501,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00501_T1_allotment,00501,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00600_T0_prospectus,00600,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00600_T1_allotment,00600,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00638_T0_prospectus,00638,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00638_T1_allotment,00638,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00664_T0_prospectus,00664,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00664_T1_allotment,00664,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00666_T0_prospectus,00666,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00666_T1_allotment,00666,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00699_T0_prospectus,00699,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00699_T1_allotment,00699,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00800_T0_prospectus,00800,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00800_T1_allotment,00800,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00805_T0_prospectus,00805,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00805_T1_allotment,00805,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00901_T0_prospectus,00901,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00901_T1_allotment,00901,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00917_T0_prospectus,00917,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00917_T1_allotment,00917,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00999_T0_prospectus,00999,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00999_T1_allotment,00999,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01021_T0_prospectus,01021,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01021_T1_allotment,01021,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01081_T0_prospectus,01081,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01081_T1_allotment,01081,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01111_T0_prospectus,01111,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01111_T1_allotment,01111,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01187_T0_prospectus,01187,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01187_T1_allotment,01187,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01236_T0_prospectus,01236,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01236_T1_allotment,01236,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01274_T0_prospectus,01274,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01274_T1_allotment,01274,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01276_T0_prospectus,01276,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01276_T1_allotment,01276,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01284_T0_prospectus,01284,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01284_T1_allotment,01284,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01304_T0_prospectus,01304,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01304_T1_allotment,01304,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01318_T0_prospectus,01318,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01318_T1_allotment,01318,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01333_T0_prospectus,01333,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01333_T1_allotment,01333,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01334_T0_prospectus,01334,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01334_T1_allotment,01334,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01354_T0_prospectus,01354,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01354_T1_allotment,01354,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01364_T0_prospectus,01364,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01364_T1_allotment,01364,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01384_T0_prospectus,01384,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01384_T1_allotment,01384,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01471_T0_prospectus,01471,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01471_T1_allotment,01471,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01497_T0_prospectus,01497,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01497_T1_allotment,01497,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01511_T0_prospectus,01511,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01511_T1_allotment,01511,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01519_T0_prospectus,01519,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01519_T1_allotment,01519,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01541_T0_prospectus,01541,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01541_T1_allotment,01541,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01609_T0_prospectus,01609,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01609_T1_allotment,01609,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01641_T0_prospectus,01641,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01641_T1_allotment,01641,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01768_T0_prospectus,01768,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01768_T1_allotment,01768,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01779_T0_prospectus,01779,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01779_T1_allotment,01779,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01828_T0_prospectus,01828,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01828_T1_allotment,01828,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01879_T0_prospectus,01879,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01879_T1_allotment,01879,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01973_T0_prospectus,01973,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01973_T1_allotment,01973,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01989_T0_prospectus,01989,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01989_T1_allotment,01989,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02026_T0_prospectus,02026,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02026_T1_allotment,02026,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02050_T0_prospectus,02050,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02050_T1_allotment,02050,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02097_T0_prospectus,02097,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02097_T1_allotment,02097,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02105_T0_prospectus,02105,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02105_T1_allotment,02105,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02149_T0_prospectus,02149,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02149_T1_allotment,02149,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02228_T0_prospectus,02228,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02228_T1_allotment,02228,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02259_T0_prospectus,02259,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02259_T1_allotment,02259,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02268_T0_prospectus,02268,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02268_T1_allotment,02268,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02271_T0_prospectus,02271,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02271_T1_allotment,02271,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02290_T0_prospectus,02290,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02290_T1_allotment,02290,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02396_T0_prospectus,02396,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02396_T1_allotment,02396,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02408_T0_prospectus,02408,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02408_T1_allotment,02408,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02410_T0_prospectus,02410,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02410_T1_allotment,02410,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02419_T0_prospectus,02419,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02419_T1_allotment,02419,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02429_T0_prospectus,02429,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02429_T1_allotment,02429,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02431_T0_prospectus,02431,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02431_T1_allotment,02431,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02432_T0_prospectus,02432,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02432_T1_allotment,02432,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02438_T0_prospectus,02438,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02438_T1_allotment,02438,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02443_T0_prospectus,02443,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02443_T1_allotment,02443,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02451_T0_prospectus,02451,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02451_T1_allotment,02451,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02453_T0_prospectus,02453,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02453_T1_allotment,02453,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02460_T0_prospectus,02460,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02460_T1_allotment,02460,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02465_T0_prospectus,02465,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02465_T1_allotment,02465,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02473_T0_prospectus,02473,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02473_T1_allotment,02473,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02476_T0_prospectus,02476,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02476_T1_allotment,02476,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02477_T0_prospectus,02477,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02477_T1_allotment,02477,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02479_T0_prospectus,02479,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02479_T1_allotment,02479,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02481_T0_prospectus,02481,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02481_T1_allotment,02481,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02483_T0_prospectus,02483,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02483_T1_allotment,02483,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02489_T0_prospectus,02489,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02489_T1_allotment,02489,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02490_T0_prospectus,02490,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02490_T1_allotment,02490,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02493_T0_prospectus,02493,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02493_T1_allotment,02493,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02495_T0_prospectus,02495,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02495_T1_allotment,02495,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02496_T0_prospectus,02496,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02496_T1_allotment,02496,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02497_T0_prospectus,02497,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02497_T1_allotment,02497,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02498_T0_prospectus,02498,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02498_T1_allotment,02498,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02499_T0_prospectus,02499,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02499_T1_allotment,02499,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02501_T0_prospectus,02501,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02501_T1_allotment,02501,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02502_T0_prospectus,02502,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02502_T1_allotment,02502,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02503_T0_prospectus,02503,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02503_T1_allotment,02503,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02505_T0_prospectus,02505,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02505_T1_allotment,02505,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02506_T0_prospectus,02506,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02506_T1_allotment,02506,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02507_T0_prospectus,02507,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02507_T1_allotment,02507,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02508_T0_prospectus,02508,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02508_T1_allotment,02508,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02509_T0_prospectus,02509,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02509_T1_allotment,02509,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02510_T0_prospectus,02510,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02510_T1_allotment,02510,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02511_T0_prospectus,02511,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02511_T1_allotment,02511,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02512_T0_prospectus,02512,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02512_T1_allotment,02512,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02513_T0_prospectus,02513,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02513_T1_allotment,02513,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02515_T0_prospectus,02515,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02515_T1_allotment,02515,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02516_T0_prospectus,02516,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02516_T1_allotment,02516,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02517_T0_prospectus,02517,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02517_T1_allotment,02517,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02519_T0_prospectus,02519,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02519_T1_allotment,02519,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02520_T0_prospectus,02520,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02520_T1_allotment,02520,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02521_T0_prospectus,02521,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02521_T1_allotment,02521,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02522_T0_prospectus,02522,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02522_T1_allotment,02522,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02525_T0_prospectus,02525,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02525_T1_allotment,02525,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02526_T0_prospectus,02526,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02526_T1_allotment,02526,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02529_T0_prospectus,02529,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02529_T1_allotment,02529,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02530_T0_prospectus,02530,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02530_T1_allotment,02530,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02531_T0_prospectus,02531,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02531_T1_allotment,02531,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02533_T0_prospectus,02533,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02533_T1_allotment,02533,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02535_T0_prospectus,02535,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02535_T1_allotment,02535,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02536_T0_prospectus,02536,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02536_T1_allotment,02536,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02539_T0_prospectus,02539,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02539_T1_allotment,02539,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02540_T0_prospectus,02540,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02540_T1_allotment,02540,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02543_T0_prospectus,02543,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02543_T1_allotment,02543,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02545_T0_prospectus,02545,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02545_T1_allotment,02545,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02546_T0_prospectus,02546,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02546_T1_allotment,02546,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02549_T0_prospectus,02549,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02549_T1_allotment,02549,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02550_T0_prospectus,02550,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02550_T1_allotment,02550,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02551_T0_prospectus,02551,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02551_T1_allotment,02551,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02553_T0_prospectus,02553,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02553_T1_allotment,02553,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02555_T0_prospectus,02555,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02555_T1_allotment,02555,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02556_T0_prospectus,02556,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02556_T1_allotment,02556,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02559_T0_prospectus,02559,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02559_T1_allotment,02559,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02560_T0_prospectus,02560,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02560_T1_allotment,02560,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02561_T0_prospectus,02561,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02561_T1_allotment,02561,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02563_T0_prospectus,02563,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02563_T1_allotment,02563,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02565_T0_prospectus,02565,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02565_T1_allotment,02565,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02566_T0_prospectus,02566,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02566_T1_allotment,02566,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02567_T0_prospectus,02567,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02567_T1_allotment,02567,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02569_T0_prospectus,02569,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02569_T1_allotment,02569,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02570_T0_prospectus,02570,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02570_T1_allotment,02570,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02571_T0_prospectus,02571,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02571_T1_allotment,02571,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02573_T0_prospectus,02573,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02573_T1_allotment,02573,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02575_T0_prospectus,02575,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02575_T1_allotment,02575,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02576_T0_prospectus,02576,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02576_T1_allotment,02576,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02577_T0_prospectus,02577,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02577_T1_allotment,02577,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02579_T0_prospectus,02579,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02579_T1_allotment,02579,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02580_T0_prospectus,02580,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02580_T1_allotment,02580,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02581_T0_prospectus,02581,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02581_T1_allotment,02581,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02582_T0_prospectus,02582,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02582_T1_allotment,02582,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02583_T0_prospectus,02583,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02583_T1_allotment,02583,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02585_T0_prospectus,02585,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02585_T1_allotment,02585,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02586_T0_prospectus,02586,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02586_T1_allotment,02586,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02587_T0_prospectus,02587,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02587_T1_allotment,02587,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02589_T0_prospectus,02589,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02589_T1_allotment,02589,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02590_T0_prospectus,02590,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02590_T1_allotment,02590,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02591_T0_prospectus,02591,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02591_T1_allotment,02591,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02592_T0_prospectus,02592,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02592_T1_allotment,02592,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02593_T0_prospectus,02593,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02593_T1_allotment,02593,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02595_T0_prospectus,02595,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02595_T1_allotment,02595,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02596_T0_prospectus,02596,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02596_T1_allotment,02596,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02597_T0_prospectus,02597,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02597_T1_allotment,02597,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02598_T0_prospectus,02598,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02598_T1_allotment,02598,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02603_T0_prospectus,02603,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02603_T1_allotment,02603,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02605_T0_prospectus,02605,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02605_T1_allotment,02605,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02609_T0_prospectus,02609,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02609_T1_allotment,02609,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02610_T0_prospectus,02610,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02610_T1_allotment,02610,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02613_T0_prospectus,02613,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02613_T1_allotment,02613,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02617_T0_prospectus,02617,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02617_T1_allotment,02617,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02619_T0_prospectus,02619,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02619_T1_allotment,02619,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02621_T0_prospectus,02621,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02621_T1_allotment,02621,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02625_T0_prospectus,02625,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02625_T1_allotment,02625,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02627_T0_prospectus,02627,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02627_T1_allotment,02627,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02629_T0_prospectus,02629,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02629_T1_allotment,02629,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02630_T0_prospectus,02630,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02630_T1_allotment,02630,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02631_T0_prospectus,02631,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02631_T1_allotment,02631,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02632_T0_prospectus,02632,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02632_T1_allotment,02632,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02635_T0_prospectus,02635,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02635_T1_allotment,02635,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02637_T0_prospectus,02637,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02637_T1_allotment,02637,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02643_T0_prospectus,02643,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02643_T1_allotment,02643,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02648_T0_prospectus,02648,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02648_T1_allotment,02648,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02649_T0_prospectus,02649,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02649_T1_allotment,02649,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02650_T0_prospectus,02650,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02650_T1_allotment,02650,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02651_T0_prospectus,02651,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02651_T1_allotment,02651,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02652_T0_prospectus,02652,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02652_T1_allotment,02652,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02655_T0_prospectus,02655,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02655_T1_allotment,02655,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02656_T0_prospectus,02656,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02656_T1_allotment,02656,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02657_T0_prospectus,02657,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02657_T1_allotment,02657,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02658_T0_prospectus,02658,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02658_T1_allotment,02658,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02659_T0_prospectus,02659,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02659_T1_allotment,02659,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02661_T0_prospectus,02661,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02661_T1_allotment,02661,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02670_T0_prospectus,02670,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02670_T1_allotment,02670,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02671_T0_prospectus,02671,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02671_T1_allotment,02671,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02675_T0_prospectus,02675,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02675_T1_allotment,02675,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02676_T0_prospectus,02676,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02676_T1_allotment,02676,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02677_T0_prospectus,02677,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02677_T1_allotment,02677,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02685_T0_prospectus,02685,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02685_T1_allotment,02685,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02687_T0_prospectus,02687,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02687_T1_allotment,02687,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02691_T0_prospectus,02691,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02691_T1_allotment,02691,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02692_T0_prospectus,02692,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02692_T1_allotment,02692,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02693_T0_prospectus,02693,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02693_T1_allotment,02693,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02695_T0_prospectus,02695,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02695_T1_allotment,02695,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02698_T0_prospectus,02698,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02698_T1_allotment,02698,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02701_T0_prospectus,02701,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02701_T1_allotment,02701,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02706_T0_prospectus,02706,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02706_T1_allotment,02706,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02714_T0_prospectus,02714,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02714_T1_allotment,02714,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02715_T0_prospectus,02715,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02715_T1_allotment,02715,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02718_T0_prospectus,02718,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02718_T1_allotment,02718,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02720_T0_prospectus,02720,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02720_T1_allotment,02720,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02723_T0_prospectus,02723,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02723_T1_allotment,02723,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02726_T0_prospectus,02726,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02726_T1_allotment,02726,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02729_T0_prospectus,02729,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02729_T1_allotment,02729,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02768_T0_prospectus,02768,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02768_T1_allotment,02768,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02788_T0_prospectus,02788,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02788_T1_allotment,02788,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02865_T0_prospectus,02865,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02865_T1_allotment,02865,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02881_T0_prospectus,02881,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02881_T1_allotment,02881,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02889_T0_prospectus,02889,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02889_T1_allotment,02889,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02898_T0_prospectus,02898,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02898_T1_allotment,02898,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03200_T0_prospectus,03200,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03200_T1_allotment,03200,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03268_T0_prospectus,03268,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03268_T1_allotment,03268,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03277_T0_prospectus,03277,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03277_T1_allotment,03277,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03288_T0_prospectus,03288,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03288_T1_allotment,03288,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03296_T0_prospectus,03296,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03296_T1_allotment,03296,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03310_T0_prospectus,03310,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03310_T1_allotment,03310,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03317_T0_prospectus,03317,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03317_T1_allotment,03317,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03355_T0_prospectus,03355,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03355_T1_allotment,03355,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03378_T0_prospectus,03378,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03378_T1_allotment,03378,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03388_T0_prospectus,03388,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03388_T1_allotment,03388,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03625_T0_prospectus,03625,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03625_T1_allotment,03625,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03636_T0_prospectus,03636,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03636_T1_allotment,03636,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03650_T0_prospectus,03650,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03650_T1_allotment,03650,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03677_T0_prospectus,03677,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03677_T1_allotment,03677,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03696_T0_prospectus,03696,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03696_T1_allotment,03696,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03750_T0_prospectus,03750,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03750_T1_allotment,03750,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03858_T0_prospectus,03858,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03858_T1_allotment,03858,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03880_T0_prospectus,03880,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03880_T1_allotment,03880,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03881_T0_prospectus,03881,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03881_T1_allotment,03881,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03887_T0_prospectus,03887,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03887_T1_allotment,03887,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03986_T0_prospectus,03986,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03986_T1_allotment,03986,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06031_T0_prospectus,06031,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06031_T1_allotment,06031,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06082_T0_prospectus,06082,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06082_T1_allotment,06082,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06086_T0_prospectus,06086,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06086_T1_allotment,06086,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06090_T0_prospectus,06090,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06090_T1_allotment,06090,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06166_T0_prospectus,06166,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06166_T1_allotment,06166,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06168_T0_prospectus,06168,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06168_T1_allotment,06168,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06181_T0_prospectus,06181,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06181_T1_allotment,06181,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06600_T0_prospectus,06600,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06600_T1_allotment,06600,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06603_T0_prospectus,06603,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06603_T1_allotment,06603,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06613_T0_prospectus,06613,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06613_T1_allotment,06613,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06636_T0_prospectus,06636,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06636_T1_allotment,06636,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06651_T0_prospectus,06651,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06651_T1_allotment,06651,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06656_T0_prospectus,06656,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06656_T1_allotment,06656,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06657_T0_prospectus,06657,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06657_T1_allotment,06657,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06681_T0_prospectus,06681,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06681_T1_allotment,06681,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06682_T0_prospectus,06682,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06682_T1_allotment,06682,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06683_T0_prospectus,06683,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06683_T1_allotment,06683,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06687_T0_prospectus,06687,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06687_T1_allotment,06687,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06693_T0_prospectus,06693,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06693_T1_allotment,06693,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06809_T0_prospectus,06809,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06809_T1_allotment,06809,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06810_T0_prospectus,06810,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06810_T1_allotment,06810,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06831_T0_prospectus,06831,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06831_T1_allotment,06831,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06871_T0_prospectus,06871,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06871_T1_allotment,06871,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06872_T0_prospectus,06872,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06872_T1_allotment,06872,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06883_T0_prospectus,06883,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06883_T1_allotment,06883,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06911_T0_prospectus,06911,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06911_T1_allotment,06911,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06936_T0_prospectus,06936,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06936_T1_allotment,06936,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06938_T0_prospectus,06938,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06938_T1_allotment,06938,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06959_T0_prospectus,06959,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06959_T1_allotment,06959,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06960_T0_prospectus,06960,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06960_T1_allotment,06960,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06980_T0_prospectus,06980,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06980_T1_allotment,06980,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06990_T0_prospectus,06990,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06990_T1_allotment,06990,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -07618_T0_prospectus,07618,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -07618_T1_allotment,07618,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -07630_T0_prospectus,07630,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -07630_T1_allotment,07630,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -07666_T0_prospectus,07666,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -07666_T1_allotment,07666,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -07688_T0_prospectus,07688,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -07688_T1_allotment,07688,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08529_T0_prospectus,08529,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08529_T1_allotment,08529,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08549_T0_prospectus,08549,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08549_T1_allotment,08549,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08610_T0_prospectus,08610,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08610_T1_allotment,08610,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08629_T0_prospectus,08629,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08629_T1_allotment,08629,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08637_T0_prospectus,08637,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08637_T1_allotment,08637,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09606_T0_prospectus,09606,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09606_T1_allotment,09606,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09609_T0_prospectus,09609,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09609_T1_allotment,09609,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09611_T0_prospectus,09611,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09611_T1_allotment,09611,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09639_T0_prospectus,09639,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09639_T1_allotment,09639,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09660_T0_prospectus,09660,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09660_T1_allotment,09660,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09663_T0_prospectus,09663,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09663_T1_allotment,09663,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09676_T0_prospectus,09676,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09676_T1_allotment,09676,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09678_T0_prospectus,09678,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09678_T1_allotment,09678,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09680_T0_prospectus,09680,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09680_T1_allotment,09680,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09686_T0_prospectus,09686,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09686_T1_allotment,09686,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09690_T0_prospectus,09690,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09690_T1_allotment,09690,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09860_T0_prospectus,09860,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09860_T1_allotment,09860,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09879_T0_prospectus,09879,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09879_T1_allotment,09879,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09880_T0_prospectus,09880,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09880_T1_allotment,09880,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09881_T0_prospectus,09881,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09881_T1_allotment,09881,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09885_T0_prospectus,09885,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09885_T1_allotment,09885,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09887_T0_prospectus,09887,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09887_T1_allotment,09887,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09890_T0_prospectus,09890,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09890_T1_allotment,09890,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09903_T0_prospectus,09903,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09903_T1_allotment,09903,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09927_T0_prospectus,09927,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09927_T1_allotment,09927,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09973_T0_prospectus,09973,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09973_T1_allotment,09973,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09980_T0_prospectus,09980,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09980_T1_allotment,09980,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09981_T0_prospectus,09981,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09981_T1_allotment,09981,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09885_D1,09885,D1,archive_price_performance,open,2023-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09885_T2_grey_market,09885,T2_grey_market,archive_grey_market_result,open,2023-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02105_D1,02105,D1,archive_price_performance,open,2023-06-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02105_T2_grey_market,02105,T2_grey_market,archive_grey_market_result,open,2023-06-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09860_D1,09860,D1,archive_price_performance,open,2023-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09860_T2_grey_market,09860,T2_grey_market,archive_grey_market_result,open,2023-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09885_D5,09885,D5,archive_price_performance,open,2023-07-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02105_D5,02105,D5,archive_price_performance,open,2023-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09860_D5,09860,D5,archive_price_performance,open,2023-07-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02481_D1,02481,D1,archive_price_performance,open,2023-07-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02481_T2_grey_market,02481,T2_grey_market,archive_grey_market_result,open,2023-07-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06990_D1,06990,D1,archive_price_performance,open,2023-07-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06990_T2_grey_market,06990,T2_grey_market,archive_grey_market_result,open,2023-07-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03650_D1,03650,D1,archive_price_performance,open,2023-07-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03650_T2_grey_market,03650,T2_grey_market,archive_grey_market_result,open,2023-07-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06683_D1,06683,D1,archive_price_performance,open,2023-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06683_T2_grey_market,06683,T2_grey_market,archive_grey_market_result,open,2023-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02481_D5,02481,D5,archive_price_performance,open,2023-07-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06990_D5,06990,D5,archive_price_performance,open,2023-07-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03650_D5,03650,D5,archive_price_performance,open,2023-07-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01284_D1,01284,D1,archive_price_performance,open,2023-07-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01284_T2_grey_market,01284,T2_grey_market,archive_grey_market_result,open,2023-07-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06683_D5,06683,D5,archive_price_performance,open,2023-07-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09885_D20,09885,D20,archive_price_performance,open,2023-07-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02105_D20,02105,D20,archive_price_performance,open,2023-07-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02271_D1,02271,D1,archive_price_performance,open,2023-07-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02271_T2_grey_market,02271,T2_grey_market,archive_grey_market_result,open,2023-07-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09860_D20,09860,D20,archive_price_performance,open,2023-07-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01284_D5,01284,D5,archive_price_performance,open,2023-07-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02271_D5,02271,D5,archive_price_performance,open,2023-07-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02481_D20,02481,D20,archive_price_performance,open,2023-07-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06990_D20,06990,D20,archive_price_performance,open,2023-07-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03650_D20,03650,D20,archive_price_performance,open,2023-07-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06683_D20,06683,D20,archive_price_performance,open,2023-08-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01284_D20,01284,D20,archive_price_performance,open,2023-08-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02271_D20,02271,D20,archive_price_performance,open,2023-08-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09885_D60,09885,D60,archive_price_performance,open,2023-08-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02105_D60,02105,D60,archive_price_performance,open,2023-08-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09860_D60,09860,D60,archive_price_performance,open,2023-08-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01541_D1,01541,D1,archive_price_performance,open,2023-09-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01541_T2_grey_market,01541,T2_grey_market,archive_grey_market_result,open,2023-09-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02481_D60,02481,D60,archive_price_performance,open,2023-09-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06990_D60,06990,D60,archive_price_performance,open,2023-09-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01541_D5,01541,D5,archive_price_performance,open,2023-09-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03650_D60,03650,D60,archive_price_performance,open,2023-09-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06683_D60,06683,D60,archive_price_performance,open,2023-09-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01284_D60,01284,D60,archive_price_performance,open,2023-09-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02271_D60,02271,D60,archive_price_performance,open,2023-09-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01541_D20,01541,D20,archive_price_performance,open,2023-09-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02490_D1,02490,D1,archive_price_performance,open,2023-09-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02490_T2_grey_market,02490,T2_grey_market,archive_grey_market_result,open,2023-09-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02496_D1,02496,D1,archive_price_performance,open,2023-09-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02496_T2_grey_market,02496,T2_grey_market,archive_grey_market_result,open,2023-09-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09690_D1,09690,D1,archive_price_performance,open,2023-09-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09690_T2_grey_market,09690,T2_grey_market,archive_grey_market_result,open,2023-09-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06682_D1,06682,D1,archive_price_performance,open,2023-09-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06682_T2_grey_market,06682,T2_grey_market,archive_grey_market_result,open,2023-09-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09686_D1,09686,D1,archive_price_performance,open,2023-09-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09686_T2_grey_market,09686,T2_grey_market,archive_grey_market_result,open,2023-09-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09890_D1,09890,D1,archive_price_performance,open,2023-09-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09890_T2_grey_market,09890,T2_grey_market,archive_grey_market_result,open,2023-09-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02490_D5,02490,D5,archive_price_performance,open,2023-09-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02496_D5,02496,D5,archive_price_performance,open,2023-09-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09690_D5,09690,D5,archive_price_performance,open,2023-09-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06682_D5,06682,D5,archive_price_performance,open,2023-10-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09686_D5,09686,D5,archive_price_performance,open,2023-10-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09890_D5,09890,D5,archive_price_performance,open,2023-10-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01973_D1,01973,D1,archive_price_performance,open,2023-10-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01973_T2_grey_market,01973,T2_grey_market,archive_grey_market_result,open,2023-10-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01973_D5,01973,D5,archive_price_performance,open,2023-10-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02501_D1,02501,D1,archive_price_performance,open,2023-10-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02501_T2_grey_market,02501,T2_grey_market,archive_grey_market_result,open,2023-10-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02451_D1,02451,D1,archive_price_performance,open,2023-10-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02451_T2_grey_market,02451,T2_grey_market,archive_grey_market_result,open,2023-10-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09676_D1,09676,D1,archive_price_performance,open,2023-10-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09676_T2_grey_market,09676,T2_grey_market,archive_grey_market_result,open,2023-10-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02490_D20,02490,D20,archive_price_performance,open,2023-10-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02496_D20,02496,D20,archive_price_performance,open,2023-10-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02501_D5,02501,D5,archive_price_performance,open,2023-10-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09690_D20,09690,D20,archive_price_performance,open,2023-10-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02451_D5,02451,D5,archive_price_performance,open,2023-10-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09676_D5,09676,D5,archive_price_performance,open,2023-10-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06682_D20,06682,D20,archive_price_performance,open,2023-10-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09686_D20,09686,D20,archive_price_performance,open,2023-10-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09890_D20,09890,D20,archive_price_performance,open,2023-10-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01973_D20,01973,D20,archive_price_performance,open,2023-10-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01519_D1,01519,D1,archive_price_performance,open,2023-10-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01519_T2_grey_market,01519,T2_grey_market,archive_grey_market_result,open,2023-10-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02501_D20,02501,D20,archive_price_performance,open,2023-10-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01519_D5,01519,D5,archive_price_performance,open,2023-10-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02451_D20,02451,D20,archive_price_performance,open,2023-10-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09676_D20,09676,D20,archive_price_performance,open,2023-10-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02517_D1,02517,D1,archive_price_performance,open,2023-11-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02517_T2_grey_market,02517,T2_grey_market,archive_grey_market_result,open,2023-11-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01541_D60,01541,D60,archive_price_performance,open,2023-11-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02429_D1,02429,D1,archive_price_performance,open,2023-11-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02429_T2_grey_market,02429,T2_grey_market,archive_grey_market_result,open,2023-11-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02517_D5,02517,D5,archive_price_performance,open,2023-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02429_D5,02429,D5,archive_price_performance,open,2023-11-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02473_D1,02473,D1,archive_price_performance,open,2023-11-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02473_T2_grey_market,02473,T2_grey_market,archive_grey_market_result,open,2023-11-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01111_D1,01111,D1,archive_price_performance,open,2023-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01111_T2_grey_market,01111,T2_grey_market,archive_grey_market_result,open,2023-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02499_D1,02499,D1,archive_price_performance,open,2023-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02499_T2_grey_market,02499,T2_grey_market,archive_grey_market_result,open,2023-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02473_D5,02473,D5,archive_price_performance,open,2023-11-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01111_D5,01111,D5,archive_price_performance,open,2023-11-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02499_D5,02499,D5,archive_price_performance,open,2023-11-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01519_D20,01519,D20,archive_price_performance,open,2023-11-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02268_D1,02268,D1,archive_price_performance,open,2023-11-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02268_T2_grey_market,02268,T2_grey_market,archive_grey_market_result,open,2023-11-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02268_D5,02268,D5,archive_price_performance,open,2023-11-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02517_D20,02517,D20,archive_price_performance,open,2023-11-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02429_D20,02429,D20,archive_price_performance,open,2023-11-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02520_D1,02520,D1,archive_price_performance,open,2023-11-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02520_T2_grey_market,02520,T2_grey_market,archive_grey_market_result,open,2023-11-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02490_D60,02490,D60,archive_price_performance,open,2023-11-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02496_D60,02496,D60,archive_price_performance,open,2023-11-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09690_D60,09690,D60,archive_price_performance,open,2023-11-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02520_D5,02520,D5,archive_price_performance,open,2023-11-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06682_D60,06682,D60,archive_price_performance,open,2023-11-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09686_D60,09686,D60,archive_price_performance,open,2023-11-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09890_D60,09890,D60,archive_price_performance,open,2023-11-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02473_D20,02473,D20,archive_price_performance,open,2023-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01111_D20,01111,D20,archive_price_performance,open,2023-11-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02499_D20,02499,D20,archive_price_performance,open,2023-11-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01973_D60,01973,D60,archive_price_performance,open,2023-12-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02483_D1,02483,D1,archive_price_performance,open,2023-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02483_T2_grey_market,02483,T2_grey_market,archive_grey_market_result,open,2023-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02521_D1,02521,D1,archive_price_performance,open,2023-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02521_T2_grey_market,02521,T2_grey_market,archive_grey_market_result,open,2023-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09663_D1,09663,D1,archive_price_performance,open,2023-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09663_T2_grey_market,09663,T2_grey_market,archive_grey_market_result,open,2023-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02268_D20,02268,D20,archive_price_performance,open,2023-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02419_D1,02419,D1,archive_price_performance,open,2023-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02419_T2_grey_market,02419,T2_grey_market,archive_grey_market_result,open,2023-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02483_D5,02483,D5,archive_price_performance,open,2023-12-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02501_D60,02501,D60,archive_price_performance,open,2023-12-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02521_D5,02521,D5,archive_price_performance,open,2023-12-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09663_D5,09663,D5,archive_price_performance,open,2023-12-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02419_D5,02419,D5,archive_price_performance,open,2023-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02451_D60,02451,D60,archive_price_performance,open,2023-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09676_D60,09676,D60,archive_price_performance,open,2023-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02520_D20,02520,D20,archive_price_performance,open,2023-12-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01497_D1,01497,D1,archive_price_performance,open,2023-12-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01497_T2_grey_market,01497,T2_grey_market,archive_grey_market_result,open,2023-12-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01497_D5,01497,D5,archive_price_performance,open,2023-12-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00666_D1,00666,D1,archive_price_performance,open,2023-12-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00666_T2_grey_market,00666,T2_grey_market,archive_grey_market_result,open,2023-12-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01274_D1,01274,D1,archive_price_performance,open,2023-12-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01274_T2_grey_market,01274,T2_grey_market,archive_grey_market_result,open,2023-12-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02502_D1,02502,D1,archive_price_performance,open,2023-12-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02502_T2_grey_market,02502,T2_grey_market,archive_grey_market_result,open,2023-12-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00666_D5,00666,D5,archive_price_performance,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02489_D1,02489,D1,archive_price_performance,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02489_T2_grey_market,02489,T2_grey_market,archive_grey_market_result,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02511_D1,02511,D1,archive_price_performance,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02511_T2_grey_market,02511,T2_grey_market,archive_grey_market_result,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02516_D1,02516,D1,archive_price_performance,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02516_T2_grey_market,02516,T2_grey_market,archive_grey_market_result,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06911_D1,06911,D1,archive_price_performance,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06911_T2_grey_market,06911,T2_grey_market,archive_grey_market_result,open,2023-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01274_D5,01274,D5,archive_price_performance,open,2023-12-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02483_D20,02483,D20,archive_price_performance,open,2023-12-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02502_D5,02502,D5,archive_price_performance,open,2023-12-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02521_D20,02521,D20,archive_price_performance,open,2023-12-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09663_D20,09663,D20,archive_price_performance,open,2023-12-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01519_D60,01519,D60,archive_price_performance,open,2023-12-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02419_D20,02419,D20,archive_price_performance,open,2023-12-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02489_D5,02489,D5,archive_price_performance,open,2023-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02511_D5,02511,D5,archive_price_performance,open,2023-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02516_D5,02516,D5,archive_price_performance,open,2023-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06911_D5,06911,D5,archive_price_performance,open,2023-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02149_D1,02149,D1,archive_price_performance,open,2023-12-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02149_T2_grey_market,02149,T2_grey_market,archive_grey_market_result,open,2023-12-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09880_D1,09880,D1,archive_price_performance,open,2023-12-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09880_T2_grey_market,09880,T2_grey_market,archive_grey_market_result,open,2023-12-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01497_D20,01497,D20,archive_price_performance,open,2023-12-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02517_D60,02517,D60,archive_price_performance,open,2023-12-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02149_D5,02149,D5,archive_price_performance,open,2024-01-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02429_D60,02429,D60,archive_price_performance,open,2024-01-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09880_D5,09880,D5,archive_price_performance,open,2024-01-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02498_D1,02498,D1,archive_price_performance,open,2024-01-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02498_T2_grey_market,02498,T2_grey_market,archive_grey_market_result,open,2024-01-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00666_D20,00666,D20,archive_price_performance,open,2024-01-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02473_D60,02473,D60,archive_price_performance,open,2024-01-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01111_D60,01111,D60,archive_price_performance,open,2024-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01274_D20,01274,D20,archive_price_performance,open,2024-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02499_D60,02499,D60,archive_price_performance,open,2024-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02502_D20,02502,D20,archive_price_performance,open,2024-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02453_D1,02453,D1,archive_price_performance,open,2024-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02453_T2_grey_market,02453,T2_grey_market,archive_grey_market_result,open,2024-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02498_D5,02498,D5,archive_price_performance,open,2024-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02503_D1,02503,D1,archive_price_performance,open,2024-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02503_T2_grey_market,02503,T2_grey_market,archive_grey_market_result,open,2024-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06959_D1,06959,D1,archive_price_performance,open,2024-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06959_T2_grey_market,06959,T2_grey_market,archive_grey_market_result,open,2024-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02489_D20,02489,D20,archive_price_performance,open,2024-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02511_D20,02511,D20,archive_price_performance,open,2024-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02516_D20,02516,D20,archive_price_performance,open,2024-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06911_D20,06911,D20,archive_price_performance,open,2024-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02477_D1,02477,D1,archive_price_performance,open,2024-01-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02477_T2_grey_market,02477,T2_grey_market,archive_grey_market_result,open,2024-01-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02453_D5,02453,D5,archive_price_performance,open,2024-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02503_D5,02503,D5,archive_price_performance,open,2024-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06959_D5,06959,D5,archive_price_performance,open,2024-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02268_D60,02268,D60,archive_price_performance,open,2024-01-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02149_D20,02149,D20,archive_price_performance,open,2024-01-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02477_D5,02477,D5,archive_price_performance,open,2024-01-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09880_D20,09880,D20,archive_price_performance,open,2024-01-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02520_D60,02520,D60,archive_price_performance,open,2024-01-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02498_D20,02498,D20,archive_price_performance,open,2024-01-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02453_D20,02453,D20,archive_price_performance,open,2024-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02503_D20,02503,D20,archive_price_performance,open,2024-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06959_D20,06959,D20,archive_price_performance,open,2024-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02477_D20,02477,D20,archive_price_performance,open,2024-01-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02483_D60,02483,D60,archive_price_performance,open,2024-02-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02521_D60,02521,D60,archive_price_performance,open,2024-02-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09663_D60,09663,D60,archive_price_performance,open,2024-02-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02419_D60,02419,D60,archive_price_performance,open,2024-02-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01497_D60,01497,D60,archive_price_performance,open,2024-02-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00666_D60,00666,D60,archive_price_performance,open,2024-02-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01274_D60,01274,D60,archive_price_performance,open,2024-02-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02502_D60,02502,D60,archive_price_performance,open,2024-02-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02489_D60,02489,D60,archive_price_performance,open,2024-02-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02511_D60,02511,D60,archive_price_performance,open,2024-02-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02516_D60,02516,D60,archive_price_performance,open,2024-02-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06911_D60,06911,D60,archive_price_performance,open,2024-02-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02149_D60,02149,D60,archive_price_performance,open,2024-02-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09880_D60,09880,D60,archive_price_performance,open,2024-02-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02498_D60,02498,D60,archive_price_performance,open,2024-03-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02453_D60,02453,D60,archive_price_performance,open,2024-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02503_D60,02503,D60,archive_price_performance,open,2024-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02535_D1,02535,D1,archive_price_performance,open,2024-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02535_T2_grey_market,02535,T2_grey_market,archive_grey_market_result,open,2024-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02540_D1,02540,D1,archive_price_performance,open,2024-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02540_T2_grey_market,02540,T2_grey_market,archive_grey_market_result,open,2024-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06959_D60,06959,D60,archive_price_performance,open,2024-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02477_D60,02477,D60,archive_price_performance,open,2024-03-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02535_D5,02535,D5,archive_price_performance,open,2024-03-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02540_D5,02540,D5,archive_price_performance,open,2024-03-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02509_D1,02509,D1,archive_price_performance,open,2024-03-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02509_T2_grey_market,02509,T2_grey_market,archive_grey_market_result,open,2024-03-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09879_D1,09879,D1,archive_price_performance,open,2024-03-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09879_T2_grey_market,09879,T2_grey_market,archive_grey_market_result,open,2024-03-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02509_D5,02509,D5,archive_price_performance,open,2024-03-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09879_D5,09879,D5,archive_price_performance,open,2024-03-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02536_D1,02536,D1,archive_price_performance,open,2024-03-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02536_T2_grey_market,02536,T2_grey_market,archive_grey_market_result,open,2024-03-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02535_D20,02535,D20,archive_price_performance,open,2024-03-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02540_D20,02540,D20,archive_price_performance,open,2024-03-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02497_D1,02497,D1,archive_price_performance,open,2024-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02497_T2_grey_market,02497,T2_grey_market,archive_grey_market_result,open,2024-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02598_D1,02598,D1,archive_price_performance,open,2024-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02598_T2_grey_market,02598,T2_grey_market,archive_grey_market_result,open,2024-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02536_D5,02536,D5,archive_price_performance,open,2024-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02497_D5,02497,D5,archive_price_performance,open,2024-04-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02598_D5,02598,D5,archive_price_performance,open,2024-04-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02509_D20,02509,D20,archive_price_performance,open,2024-04-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09879_D20,09879,D20,archive_price_performance,open,2024-04-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02536_D20,02536,D20,archive_price_performance,open,2024-04-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02497_D20,02497,D20,archive_price_performance,open,2024-04-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02598_D20,02598,D20,archive_price_performance,open,2024-04-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02515_D1,02515,D1,archive_price_performance,open,2024-04-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02515_T2_grey_market,02515,T2_grey_market,archive_grey_market_result,open,2024-04-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02555_D1,02555,D1,archive_price_performance,open,2024-04-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02555_T2_grey_market,02555,T2_grey_market,archive_grey_market_result,open,2024-04-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02438_D1,02438,D1,archive_price_performance,open,2024-04-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02438_T2_grey_market,02438,T2_grey_market,archive_grey_market_result,open,2024-04-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02515_D5,02515,D5,archive_price_performance,open,2024-04-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02555_D5,02555,D5,archive_price_performance,open,2024-04-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02438_D5,02438,D5,archive_price_performance,open,2024-04-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02535_D60,02535,D60,archive_price_performance,open,2024-05-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02540_D60,02540,D60,archive_price_performance,open,2024-05-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02515_D20,02515,D20,archive_price_performance,open,2024-05-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02555_D20,02555,D20,archive_price_performance,open,2024-05-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02438_D20,02438,D20,archive_price_performance,open,2024-05-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02556_D1,02556,D1,archive_price_performance,open,2024-05-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02556_T2_grey_market,02556,T2_grey_market,archive_grey_market_result,open,2024-05-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02529_D1,02529,D1,archive_price_performance,open,2024-05-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02529_T2_grey_market,02529,T2_grey_market,archive_grey_market_result,open,2024-05-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02509_D60,02509,D60,archive_price_performance,open,2024-05-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09879_D60,09879,D60,archive_price_performance,open,2024-05-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02556_D5,02556,D5,archive_price_performance,open,2024-05-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02529_D5,02529,D5,archive_price_performance,open,2024-05-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02536_D60,02536,D60,archive_price_performance,open,2024-05-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02898_D1,02898,D1,archive_price_performance,open,2024-05-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02898_T2_grey_market,02898,T2_grey_market,archive_grey_market_result,open,2024-05-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02497_D60,02497,D60,archive_price_performance,open,2024-05-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02598_D60,02598,D60,archive_price_performance,open,2024-05-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00917_D1,00917,D1,archive_price_performance,open,2024-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00917_T2_grey_market,00917,T2_grey_market,archive_grey_market_result,open,2024-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02505_D1,02505,D1,archive_price_performance,open,2024-05-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02505_T2_grey_market,02505,T2_grey_market,archive_grey_market_result,open,2024-05-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02898_D5,02898,D5,archive_price_performance,open,2024-05-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00917_D5,00917,D5,archive_price_performance,open,2024-05-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02443_D1,02443,D1,archive_price_performance,open,2024-05-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02443_T2_grey_market,02443,T2_grey_market,archive_grey_market_result,open,2024-05-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02505_D5,02505,D5,archive_price_performance,open,2024-06-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08529_D1,08529,D1,archive_price_performance,open,2024-06-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08529_T2_grey_market,08529,T2_grey_market,archive_grey_market_result,open,2024-06-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02443_D5,02443,D5,archive_price_performance,open,2024-06-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02556_D20,02556,D20,archive_price_performance,open,2024-06-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02529_D20,02529,D20,archive_price_performance,open,2024-06-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02522_D1,02522,D1,archive_price_performance,open,2024-06-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02522_T2_grey_market,02522,T2_grey_market,archive_grey_market_result,open,2024-06-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02550_D1,02550,D1,archive_price_performance,open,2024-06-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02550_T2_grey_market,02550,T2_grey_market,archive_grey_market_result,open,2024-06-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08529_D5,08529,D5,archive_price_performance,open,2024-06-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02522_D5,02522,D5,archive_price_performance,open,2024-06-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02550_D5,02550,D5,archive_price_performance,open,2024-06-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02898_D20,02898,D20,archive_price_performance,open,2024-06-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02228_D1,02228,D1,archive_price_performance,open,2024-06-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02228_T2_grey_market,02228,T2_grey_market,archive_grey_market_result,open,2024-06-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02512_D1,02512,D1,archive_price_performance,open,2024-06-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02512_T2_grey_market,02512,T2_grey_market,archive_grey_market_result,open,2024-06-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00917_D20,00917,D20,archive_price_performance,open,2024-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02505_D20,02505,D20,archive_price_performance,open,2024-06-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02228_D5,02228,D5,archive_price_performance,open,2024-06-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02512_D5,02512,D5,archive_price_performance,open,2024-06-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02881_D1,02881,D1,archive_price_performance,open,2024-06-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02881_T2_grey_market,02881,T2_grey_market,archive_grey_market_result,open,2024-06-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02443_D20,02443,D20,archive_price_performance,open,2024-06-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02515_D60,02515,D60,archive_price_performance,open,2024-06-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02555_D60,02555,D60,archive_price_performance,open,2024-06-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02438_D60,02438,D60,archive_price_performance,open,2024-06-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02881_D5,02881,D5,archive_price_performance,open,2024-06-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08529_D20,08529,D20,archive_price_performance,open,2024-06-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02522_D20,02522,D20,archive_price_performance,open,2024-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02550_D20,02550,D20,archive_price_performance,open,2024-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02479_D1,02479,D1,archive_price_performance,open,2024-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02479_T2_grey_market,02479,T2_grey_market,archive_grey_market_result,open,2024-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02559_D1,02559,D1,archive_price_performance,open,2024-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02559_T2_grey_market,02559,T2_grey_market,archive_grey_market_result,open,2024-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06181_D1,06181,D1,archive_price_performance,open,2024-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06181_T2_grey_market,06181,T2_grey_market,archive_grey_market_result,open,2024-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02228_D20,02228,D20,archive_price_performance,open,2024-07-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02479_D5,02479,D5,archive_price_performance,open,2024-07-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02559_D5,02559,D5,archive_price_performance,open,2024-07-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06181_D5,06181,D5,archive_price_performance,open,2024-07-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08637_D1,08637,D1,archive_price_performance,open,2024-07-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08637_T2_grey_market,08637,T2_grey_market,archive_grey_market_result,open,2024-07-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01354_D1,01354,D1,archive_price_performance,open,2024-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01354_T2_grey_market,01354,T2_grey_market,archive_grey_market_result,open,2024-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02512_D20,02512,D20,archive_price_performance,open,2024-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02545_D1,02545,D1,archive_price_performance,open,2024-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02545_T2_grey_market,02545,T2_grey_market,archive_grey_market_result,open,2024-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08637_D5,08637,D5,archive_price_performance,open,2024-07-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01354_D5,01354,D5,archive_price_performance,open,2024-07-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02545_D5,02545,D5,archive_price_performance,open,2024-07-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02881_D20,02881,D20,archive_price_performance,open,2024-07-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06086_D1,06086,D1,archive_price_performance,open,2024-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06086_T2_grey_market,06086,T2_grey_market,archive_grey_market_result,open,2024-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06657_D1,06657,D1,archive_price_performance,open,2024-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06657_T2_grey_market,06657,T2_grey_market,archive_grey_market_result,open,2024-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01334_D1,01334,D1,archive_price_performance,open,2024-07-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01334_T2_grey_market,01334,T2_grey_market,archive_grey_market_result,open,2024-07-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02495_D1,02495,D1,archive_price_performance,open,2024-07-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02495_T2_grey_market,02495,T2_grey_market,archive_grey_market_result,open,2024-07-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09680_D1,09680,D1,archive_price_performance,open,2024-07-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09680_T2_grey_market,09680,T2_grey_market,archive_grey_market_result,open,2024-07-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02507_D1,02507,D1,archive_price_performance,open,2024-07-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02507_T2_grey_market,02507,T2_grey_market,archive_grey_market_result,open,2024-07-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06086_D5,06086,D5,archive_price_performance,open,2024-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06657_D5,06657,D5,archive_price_performance,open,2024-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01334_D5,01334,D5,archive_price_performance,open,2024-07-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02495_D5,02495,D5,archive_price_performance,open,2024-07-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02556_D60,02556,D60,archive_price_performance,open,2024-07-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09680_D5,09680,D5,archive_price_performance,open,2024-07-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02529_D60,02529,D60,archive_price_performance,open,2024-07-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02531_D1,02531,D1,archive_price_performance,open,2024-07-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02531_T2_grey_market,02531,T2_grey_market,archive_grey_market_result,open,2024-07-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02507_D5,02507,D5,archive_price_performance,open,2024-07-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02479_D20,02479,D20,archive_price_performance,open,2024-07-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02559_D20,02559,D20,archive_price_performance,open,2024-07-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06181_D20,06181,D20,archive_price_performance,open,2024-07-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02531_D5,02531,D5,archive_price_performance,open,2024-07-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08637_D20,08637,D20,archive_price_performance,open,2024-07-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01354_D20,01354,D20,archive_price_performance,open,2024-07-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02545_D20,02545,D20,archive_price_performance,open,2024-07-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02898_D60,02898,D60,archive_price_performance,open,2024-07-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00917_D60,00917,D60,archive_price_performance,open,2024-07-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02505_D60,02505,D60,archive_price_performance,open,2024-07-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06086_D20,06086,D20,archive_price_performance,open,2024-07-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06657_D20,06657,D20,archive_price_performance,open,2024-07-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01334_D20,01334,D20,archive_price_performance,open,2024-07-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02443_D60,02443,D60,archive_price_performance,open,2024-07-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02495_D20,02495,D20,archive_price_performance,open,2024-07-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09680_D20,09680,D20,archive_price_performance,open,2024-07-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02507_D20,02507,D20,archive_price_performance,open,2024-07-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08529_D60,08529,D60,archive_price_performance,open,2024-08-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02531_D20,02531,D20,archive_price_performance,open,2024-08-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02522_D60,02522,D60,archive_price_performance,open,2024-08-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02550_D60,02550,D60,archive_price_performance,open,2024-08-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01471_D1,01471,D1,archive_price_performance,open,2024-08-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01471_T2_grey_market,01471,T2_grey_market,archive_grey_market_result,open,2024-08-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02533_D1,02533,D1,archive_price_performance,open,2024-08-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02533_T2_grey_market,02533,T2_grey_market,archive_grey_market_result,open,2024-08-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01471_D5,01471,D5,archive_price_performance,open,2024-08-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02228_D60,02228,D60,archive_price_performance,open,2024-08-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02512_D60,02512,D60,archive_price_performance,open,2024-08-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02533_D5,02533,D5,archive_price_performance,open,2024-08-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02881_D60,02881,D60,archive_price_performance,open,2024-08-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02410_D1,02410,D1,archive_price_performance,open,2024-08-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02410_T2_grey_market,02410,T2_grey_market,archive_grey_market_result,open,2024-08-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02410_D5,02410,D5,archive_price_performance,open,2024-08-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01471_D20,01471,D20,archive_price_performance,open,2024-08-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02479_D60,02479,D60,archive_price_performance,open,2024-08-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02559_D60,02559,D60,archive_price_performance,open,2024-08-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06181_D60,06181,D60,archive_price_performance,open,2024-08-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02533_D20,02533,D20,archive_price_performance,open,2024-08-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08637_D60,08637,D60,archive_price_performance,open,2024-08-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01354_D60,01354,D60,archive_price_performance,open,2024-08-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02545_D60,02545,D60,archive_price_performance,open,2024-08-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06086_D60,06086,D60,archive_price_performance,open,2024-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06657_D60,06657,D60,archive_price_performance,open,2024-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08629_D1,08629,D1,archive_price_performance,open,2024-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08629_T2_grey_market,08629,T2_grey_market,archive_grey_market_result,open,2024-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01334_D60,01334,D60,archive_price_performance,open,2024-09-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02495_D60,02495,D60,archive_price_performance,open,2024-09-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09680_D60,09680,D60,archive_price_performance,open,2024-09-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02410_D20,02410,D20,archive_price_performance,open,2024-09-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02507_D60,02507,D60,archive_price_performance,open,2024-09-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08629_D5,08629,D5,archive_price_performance,open,2024-09-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02531_D60,02531,D60,archive_price_performance,open,2024-09-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00300_D1,00300,D1,archive_price_performance,open,2024-09-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00300_T2_grey_market,00300,T2_grey_market,archive_grey_market_result,open,2024-09-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00300_D5,00300,D5,archive_price_performance,open,2024-09-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08629_D20,08629,D20,archive_price_performance,open,2024-09-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02549_D1,02549,D1,archive_price_performance,open,2024-10-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02549_T2_grey_market,02549,T2_grey_market,archive_grey_market_result,open,2024-10-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01471_D60,01471,D60,archive_price_performance,open,2024-10-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00300_D20,00300,D20,archive_price_performance,open,2024-10-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02533_D60,02533,D60,archive_price_performance,open,2024-10-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02549_D5,02549,D5,archive_price_performance,open,2024-10-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02576_D1,02576,D1,archive_price_performance,open,2024-10-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02576_T2_grey_market,02576,T2_grey_market,archive_grey_market_result,open,2024-10-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09639_D1,09639,D1,archive_price_performance,open,2024-10-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09639_T2_grey_market,09639,T2_grey_market,archive_grey_market_result,open,2024-10-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02576_D5,02576,D5,archive_price_performance,open,2024-10-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09639_D5,09639,D5,archive_price_performance,open,2024-10-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02567_D1,02567,D1,archive_price_performance,open,2024-10-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02567_T2_grey_market,02567,T2_grey_market,archive_grey_market_result,open,2024-10-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02410_D60,02410,D60,archive_price_performance,open,2024-10-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02567_D5,02567,D5,archive_price_performance,open,2024-10-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02549_D20,02549,D20,archive_price_performance,open,2024-10-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02460_D1,02460,D1,archive_price_performance,open,2024-10-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02460_T2_grey_market,02460,T2_grey_market,archive_grey_market_result,open,2024-10-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09660_D1,09660,D1,archive_price_performance,open,2024-10-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09660_T2_grey_market,09660,T2_grey_market,archive_grey_market_result,open,2024-10-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02460_D5,02460,D5,archive_price_performance,open,2024-10-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02576_D20,02576,D20,archive_price_performance,open,2024-10-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09639_D20,09639,D20,archive_price_performance,open,2024-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09660_D5,09660,D5,archive_price_performance,open,2024-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02465_D1,02465,D1,archive_price_performance,open,2024-10-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02465_T2_grey_market,02465,T2_grey_market,archive_grey_market_result,open,2024-10-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02563_D1,02563,D1,archive_price_performance,open,2024-10-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02563_T2_grey_market,02563,T2_grey_market,archive_grey_market_result,open,2024-10-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02510_D1,02510,D1,archive_price_performance,open,2024-11-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02510_T2_grey_market,02510,T2_grey_market,archive_grey_market_result,open,2024-11-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02465_D5,02465,D5,archive_price_performance,open,2024-11-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02563_D5,02563,D5,archive_price_performance,open,2024-11-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02567_D20,02567,D20,archive_price_performance,open,2024-11-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08629_D60,08629,D60,archive_price_performance,open,2024-11-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02510_D5,02510,D5,archive_price_performance,open,2024-11-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02519_D1,02519,D1,archive_price_performance,open,2024-11-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02519_T2_grey_market,02519,T2_grey_market,archive_grey_market_result,open,2024-11-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02551_D1,02551,D1,archive_price_performance,open,2024-11-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02551_T2_grey_market,02551,T2_grey_market,archive_grey_market_result,open,2024-11-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02460_D20,02460,D20,archive_price_performance,open,2024-11-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02519_D5,02519,D5,archive_price_performance,open,2024-11-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02551_D5,02551,D5,archive_price_performance,open,2024-11-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09660_D20,09660,D20,archive_price_performance,open,2024-11-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00300_D60,00300,D60,archive_price_performance,open,2024-11-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02582_D1,02582,D1,archive_price_performance,open,2024-11-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02582_T2_grey_market,02582,T2_grey_market,archive_grey_market_result,open,2024-11-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02465_D20,02465,D20,archive_price_performance,open,2024-11-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02563_D20,02563,D20,archive_price_performance,open,2024-11-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02582_D5,02582,D5,archive_price_performance,open,2024-11-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02510_D20,02510,D20,archive_price_performance,open,2024-11-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02519_D20,02519,D20,archive_price_performance,open,2024-11-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02551_D20,02551,D20,archive_price_performance,open,2024-11-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06936_D1,06936,D1,archive_price_performance,open,2024-11-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06936_T2_grey_market,06936,T2_grey_market,archive_grey_market_result,open,2024-11-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02566_D1,02566,D1,archive_price_performance,open,2024-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02566_T2_grey_market,02566,T2_grey_market,archive_grey_market_result,open,2024-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02585_D1,02585,D1,archive_price_performance,open,2024-11-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02585_T2_grey_market,02585,T2_grey_market,archive_grey_market_result,open,2024-11-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02549_D60,02549,D60,archive_price_performance,open,2024-11-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06936_D5,06936,D5,archive_price_performance,open,2024-12-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02566_D5,02566,D5,archive_price_performance,open,2024-12-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02585_D5,02585,D5,archive_price_performance,open,2024-12-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02582_D20,02582,D20,archive_price_performance,open,2024-12-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02570_D1,02570,D1,archive_price_performance,open,2024-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02570_T2_grey_market,02570,T2_grey_market,archive_grey_market_result,open,2024-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02576_D60,02576,D60,archive_price_performance,open,2024-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02586_D1,02586,D1,archive_price_performance,open,2024-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02586_T2_grey_market,02586,T2_grey_market,archive_grey_market_result,open,2024-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09639_D60,09639,D60,archive_price_performance,open,2024-12-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01318_D1,01318,D1,archive_price_performance,open,2024-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01318_T2_grey_market,01318,T2_grey_market,archive_grey_market_result,open,2024-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02570_D5,02570,D5,archive_price_performance,open,2024-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02586_D5,02586,D5,archive_price_performance,open,2024-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01318_D5,01318,D5,archive_price_performance,open,2024-12-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02567_D60,02567,D60,archive_price_performance,open,2024-12-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06936_D20,06936,D20,archive_price_performance,open,2024-12-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02566_D20,02566,D20,archive_price_performance,open,2024-12-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02585_D20,02585,D20,archive_price_performance,open,2024-12-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02593_D1,02593,D1,archive_price_performance,open,2024-12-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02593_T2_grey_market,02593,T2_grey_market,archive_grey_market_result,open,2024-12-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00999_D1,00999,D1,archive_price_performance,open,2024-12-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00999_T2_grey_market,00999,T2_grey_market,archive_grey_market_result,open,2024-12-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02460_D60,02460,D60,archive_price_performance,open,2024-12-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09660_D60,09660,D60,archive_price_performance,open,2024-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02432_D1,02432,D1,archive_price_performance,open,2024-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02432_T2_grey_market,02432,T2_grey_market,archive_grey_market_result,open,2024-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02593_D5,02593,D5,archive_price_performance,open,2024-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00999_D5,00999,D5,archive_price_performance,open,2024-12-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02570_D20,02570,D20,archive_price_performance,open,2024-12-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02586_D20,02586,D20,archive_price_performance,open,2024-12-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02431_D1,02431,D1,archive_price_performance,open,2024-12-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02431_T2_grey_market,02431,T2_grey_market,archive_grey_market_result,open,2024-12-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02432_D5,02432,D5,archive_price_performance,open,2024-12-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02465_D60,02465,D60,archive_price_performance,open,2024-12-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01318_D20,01318,D20,archive_price_performance,open,2024-12-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02563_D60,02563,D60,archive_price_performance,open,2024-12-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02506_D1,02506,D1,archive_price_performance,open,2024-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02506_T2_grey_market,02506,T2_grey_market,archive_grey_market_result,open,2024-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02510_D60,02510,D60,archive_price_performance,open,2024-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02577_D1,02577,D1,archive_price_performance,open,2024-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02577_T2_grey_market,02577,T2_grey_market,archive_grey_market_result,open,2024-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02587_D1,02587,D1,archive_price_performance,open,2024-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02587_T2_grey_market,02587,T2_grey_market,archive_grey_market_result,open,2024-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02431_D5,02431,D5,archive_price_performance,open,2024-12-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02506_D5,02506,D5,archive_price_performance,open,2025-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02577_D5,02577,D5,archive_price_performance,open,2025-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02587_D5,02587,D5,archive_price_performance,open,2025-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02519_D60,02519,D60,archive_price_performance,open,2025-01-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02551_D60,02551,D60,archive_price_performance,open,2025-01-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02593_D20,02593,D20,archive_price_performance,open,2025-01-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00999_D20,00999,D20,archive_price_performance,open,2025-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06681_D1,06681,D1,archive_price_performance,open,2025-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06681_T2_grey_market,06681,T2_grey_market,archive_grey_market_result,open,2025-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02560_D1,02560,D1,archive_price_performance,open,2025-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02560_T2_grey_market,02560,T2_grey_market,archive_grey_market_result,open,2025-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02613_D1,02613,D1,archive_price_performance,open,2025-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02613_T2_grey_market,02613,T2_grey_market,archive_grey_market_result,open,2025-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00325_D1,00325,D1,archive_price_performance,open,2025-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00325_T2_grey_market,00325,T2_grey_market,archive_grey_market_result,open,2025-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02530_D1,02530,D1,archive_price_performance,open,2025-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02530_T2_grey_market,02530,T2_grey_market,archive_grey_market_result,open,2025-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02432_D20,02432,D20,archive_price_performance,open,2025-01-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06681_D5,06681,D5,archive_price_performance,open,2025-01-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00805_D1,00805,D1,archive_price_performance,open,2025-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00805_T2_grey_market,00805,T2_grey_market,archive_grey_market_result,open,2025-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02560_D5,02560,D5,archive_price_performance,open,2025-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02582_D60,02582,D60,archive_price_performance,open,2025-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02596_D1,02596,D1,archive_price_performance,open,2025-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02596_T2_grey_market,02596,T2_grey_market,archive_grey_market_result,open,2025-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02613_D5,02613,D5,archive_price_performance,open,2025-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00325_D5,00325,D5,archive_price_performance,open,2025-01-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02530_D5,02530,D5,archive_price_performance,open,2025-01-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02431_D20,02431,D20,archive_price_performance,open,2025-01-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02571_D1,02571,D1,archive_price_performance,open,2025-01-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02571_T2_grey_market,02571,T2_grey_market,archive_grey_market_result,open,2025-01-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00805_D5,00805,D5,archive_price_performance,open,2025-01-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02596_D5,02596,D5,archive_price_performance,open,2025-01-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02506_D20,02506,D20,archive_price_performance,open,2025-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02577_D20,02577,D20,archive_price_performance,open,2025-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02587_D20,02587,D20,archive_price_performance,open,2025-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02571_D5,02571,D5,archive_price_performance,open,2025-01-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06936_D60,06936,D60,archive_price_performance,open,2025-01-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02566_D60,02566,D60,archive_price_performance,open,2025-01-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02585_D60,02585,D60,archive_price_performance,open,2025-01-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06681_D20,06681,D20,archive_price_performance,open,2025-01-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02560_D20,02560,D20,archive_price_performance,open,2025-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02613_D20,02613,D20,archive_price_performance,open,2025-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00325_D20,00325,D20,archive_price_performance,open,2025-01-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02530_D20,02530,D20,archive_price_performance,open,2025-01-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00805_D20,00805,D20,archive_price_performance,open,2025-02-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02596_D20,02596,D20,archive_price_performance,open,2025-02-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02570_D60,02570,D60,archive_price_performance,open,2025-02-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02571_D20,02571,D20,archive_price_performance,open,2025-02-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02586_D60,02586,D60,archive_price_performance,open,2025-02-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01318_D60,01318,D60,archive_price_performance,open,2025-02-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01364_D1,01364,D1,archive_price_performance,open,2025-02-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01364_T2_grey_market,01364,T2_grey_market,archive_grey_market_result,open,2025-02-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01364_D5,01364,D5,archive_price_performance,open,2025-02-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02593_D60,02593,D60,archive_price_performance,open,2025-02-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00999_D60,00999,D60,archive_price_performance,open,2025-02-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02432_D60,02432,D60,archive_price_performance,open,2025-02-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02431_D60,02431,D60,archive_price_performance,open,2025-02-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02506_D60,02506,D60,archive_price_performance,open,2025-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02577_D60,02577,D60,archive_price_performance,open,2025-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02587_D60,02587,D60,archive_price_performance,open,2025-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01364_D20,01364,D20,archive_price_performance,open,2025-03-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02097_D1,02097,D1,archive_price_performance,open,2025-03-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02097_T2_grey_market,02097,T2_grey_market,archive_grey_market_result,open,2025-03-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02097_D5,02097,D5,archive_price_performance,open,2025-03-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06681_D60,06681,D60,archive_price_performance,open,2025-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02560_D60,02560,D60,archive_price_performance,open,2025-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02613_D60,02613,D60,archive_price_performance,open,2025-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00325_D60,00325,D60,archive_price_performance,open,2025-03-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02530_D60,02530,D60,archive_price_performance,open,2025-03-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06693_D1,06693,D1,archive_price_performance,open,2025-03-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06693_T2_grey_market,06693,T2_grey_market,archive_grey_market_result,open,2025-03-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00805_D60,00805,D60,archive_price_performance,open,2025-03-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02596_D60,02596,D60,archive_price_performance,open,2025-03-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06693_D5,06693,D5,archive_price_performance,open,2025-03-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02571_D60,02571,D60,archive_price_performance,open,2025-03-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02561_D1,02561,D1,archive_price_performance,open,2025-03-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02561_T2_grey_market,02561,T2_grey_market,archive_grey_market_result,open,2025-03-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02097_D20,02097,D20,archive_price_performance,open,2025-03-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02561_D5,02561,D5,archive_price_performance,open,2025-03-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02610_D1,02610,D1,archive_price_performance,open,2025-03-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02610_T2_grey_market,02610,T2_grey_market,archive_grey_market_result,open,2025-03-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02569_D1,02569,D1,archive_price_performance,open,2025-03-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02569_T2_grey_market,02569,T2_grey_market,archive_grey_market_result,open,2025-03-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02610_D5,02610,D5,archive_price_performance,open,2025-03-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06693_D20,06693,D20,archive_price_performance,open,2025-03-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02569_D5,02569,D5,archive_price_performance,open,2025-03-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02625_D1,02625,D1,archive_price_performance,open,2025-03-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02625_T2_grey_market,02625,T2_grey_market,archive_grey_market_result,open,2025-03-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02625_D5,02625,D5,archive_price_performance,open,2025-04-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02561_D20,02561,D20,archive_price_performance,open,2025-04-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01364_D60,01364,D60,archive_price_performance,open,2025-04-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02610_D20,02610,D20,archive_price_performance,open,2025-04-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03677_D1,03677,D1,archive_price_performance,open,2025-04-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03677_T2_grey_market,03677,T2_grey_market,archive_grey_market_result,open,2025-04-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02569_D20,02569,D20,archive_price_performance,open,2025-04-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09606_D1,09606,D1,archive_price_performance,open,2025-04-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09606_T2_grey_market,09606,T2_grey_market,archive_grey_market_result,open,2025-04-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03677_D5,03677,D5,archive_price_performance,open,2025-04-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02625_D20,02625,D20,archive_price_performance,open,2025-04-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09606_D5,09606,D5,archive_price_performance,open,2025-04-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02097_D60,02097,D60,archive_price_performance,open,2025-05-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03677_D20,03677,D20,archive_price_performance,open,2025-05-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09606_D20,09606,D20,archive_price_performance,open,2025-05-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01333_D1,01333,D1,archive_price_performance,open,2025-05-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01333_T2_grey_market,01333,T2_grey_market,archive_grey_market_result,open,2025-05-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02589_D1,02589,D1,archive_price_performance,open,2025-05-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02589_T2_grey_market,02589,T2_grey_market,archive_grey_market_result,open,2025-05-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02865_D1,02865,D1,archive_price_performance,open,2025-05-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02865_T2_grey_market,02865,T2_grey_market,archive_grey_market_result,open,2025-05-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06693_D60,06693,D60,archive_price_performance,open,2025-05-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01333_D5,01333,D5,archive_price_performance,open,2025-05-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02589_D5,02589,D5,archive_price_performance,open,2025-05-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02865_D5,02865,D5,archive_price_performance,open,2025-05-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06831_D1,06831,D1,archive_price_performance,open,2025-05-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06831_T2_grey_market,06831,T2_grey_market,archive_grey_market_result,open,2025-05-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02561_D60,02561,D60,archive_price_performance,open,2025-05-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03750_D1,03750,D1,archive_price_performance,open,2025-05-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03750_T2_grey_market,03750,T2_grey_market,archive_grey_market_result,open,2025-05-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06831_D5,06831,D5,archive_price_performance,open,2025-05-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01276_D1,01276,D1,archive_price_performance,open,2025-05-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01276_T2_grey_market,01276,T2_grey_market,archive_grey_market_result,open,2025-05-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02610_D60,02610,D60,archive_price_performance,open,2025-05-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02629_D1,02629,D1,archive_price_performance,open,2025-05-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02629_T2_grey_market,02629,T2_grey_market,archive_grey_market_result,open,2025-05-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03750_D5,03750,D5,archive_price_performance,open,2025-05-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02569_D60,02569,D60,archive_price_performance,open,2025-05-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01333_D20,01333,D20,archive_price_performance,open,2025-05-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01276_D5,01276,D5,archive_price_performance,open,2025-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02565_D1,02565,D1,archive_price_performance,open,2025-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02565_T2_grey_market,02565,T2_grey_market,archive_grey_market_result,open,2025-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02589_D20,02589,D20,archive_price_performance,open,2025-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02603_D1,02603,D1,archive_price_performance,open,2025-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02603_T2_grey_market,02603,T2_grey_market,archive_grey_market_result,open,2025-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02629_D5,02629,D5,archive_price_performance,open,2025-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02865_D20,02865,D20,archive_price_performance,open,2025-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02625_D60,02625,D60,archive_price_performance,open,2025-05-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02621_D1,02621,D1,archive_price_performance,open,2025-05-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02621_T2_grey_market,02621,T2_grey_market,archive_grey_market_result,open,2025-05-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02565_D5,02565,D5,archive_price_performance,open,2025-05-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02603_D5,02603,D5,archive_price_performance,open,2025-05-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02621_D5,02621,D5,archive_price_performance,open,2025-06-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06831_D20,06831,D20,archive_price_performance,open,2025-06-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03750_D20,03750,D20,archive_price_performance,open,2025-06-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02573_D1,02573,D1,archive_price_performance,open,2025-06-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02573_T2_grey_market,02573,T2_grey_market,archive_grey_market_result,open,2025-06-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02605_D1,02605,D1,archive_price_performance,open,2025-06-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02605_T2_grey_market,02605,T2_grey_market,archive_grey_market_result,open,2025-06-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09881_D1,09881,D1,archive_price_performance,open,2025-06-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09881_T2_grey_market,09881,T2_grey_market,archive_grey_market_result,open,2025-06-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01276_D20,01276,D20,archive_price_performance,open,2025-06-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02629_D20,02629,D20,archive_price_performance,open,2025-06-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03677_D60,03677,D60,archive_price_performance,open,2025-06-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09606_D60,09606,D60,archive_price_performance,open,2025-06-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02573_D5,02573,D5,archive_price_performance,open,2025-06-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02605_D5,02605,D5,archive_price_performance,open,2025-06-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09881_D5,09881,D5,archive_price_performance,open,2025-06-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02565_D20,02565,D20,archive_price_performance,open,2025-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02603_D20,02603,D20,archive_price_performance,open,2025-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02621_D20,02621,D20,archive_price_performance,open,2025-06-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03288_D1,03288,D1,archive_price_performance,open,2025-06-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03288_T2_grey_market,03288,T2_grey_market,archive_grey_market_result,open,2025-06-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02050_D1,02050,D1,archive_price_performance,open,2025-06-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02050_T2_grey_market,02050,T2_grey_market,archive_grey_market_result,open,2025-06-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02609_D1,02609,D1,archive_price_performance,open,2025-06-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02609_T2_grey_market,02609,T2_grey_market,archive_grey_market_result,open,2025-06-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02617_D1,02617,D1,archive_price_performance,open,2025-06-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02617_T2_grey_market,02617,T2_grey_market,archive_grey_market_result,open,2025-06-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03288_D5,03288,D5,archive_price_performance,open,2025-06-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02619_D1,02619,D1,archive_price_performance,open,2025-06-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02619_T2_grey_market,02619,T2_grey_market,archive_grey_market_result,open,2025-06-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02643_D1,02643,D1,archive_price_performance,open,2025-06-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02643_T2_grey_market,02643,T2_grey_market,archive_grey_market_result,open,2025-06-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02508_D1,02508,D1,archive_price_performance,open,2025-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02508_T2_grey_market,02508,T2_grey_market,archive_grey_market_result,open,2025-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06168_D1,06168,D1,archive_price_performance,open,2025-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06168_T2_grey_market,06168,T2_grey_market,archive_grey_market_result,open,2025-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06883_D1,06883,D1,archive_price_performance,open,2025-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06883_T2_grey_market,06883,T2_grey_market,archive_grey_market_result,open,2025-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02050_D5,02050,D5,archive_price_performance,open,2025-06-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02609_D5,02609,D5,archive_price_performance,open,2025-06-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02617_D5,02617,D5,archive_price_performance,open,2025-06-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02573_D20,02573,D20,archive_price_performance,open,2025-06-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02605_D20,02605,D20,archive_price_performance,open,2025-06-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02619_D5,02619,D5,archive_price_performance,open,2025-06-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02643_D5,02643,D5,archive_price_performance,open,2025-06-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09881_D20,09881,D20,archive_price_performance,open,2025-06-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02508_D5,02508,D5,archive_price_performance,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03880_D1,03880,D1,archive_price_performance,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03880_T2_grey_market,03880,T2_grey_market,archive_grey_market_result,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06168_D5,06168,D5,archive_price_performance,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06603_D1,06603,D1,archive_price_performance,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06603_T2_grey_market,06603,T2_grey_market,archive_grey_market_result,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06883_D5,06883,D5,archive_price_performance,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09678_D1,09678,D1,archive_price_performance,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09678_T2_grey_market,09678,T2_grey_market,archive_grey_market_result,open,2025-06-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02592_D1,02592,D1,archive_price_performance,open,2025-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02592_T2_grey_market,02592,T2_grey_market,archive_grey_market_result,open,2025-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02648_D1,02648,D1,archive_price_performance,open,2025-07-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02648_T2_grey_market,02648,T2_grey_market,archive_grey_market_result,open,2025-07-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03880_D5,03880,D5,archive_price_performance,open,2025-07-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06603_D5,06603,D5,archive_price_performance,open,2025-07-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09678_D5,09678,D5,archive_price_performance,open,2025-07-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01333_D60,01333,D60,archive_price_performance,open,2025-07-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02589_D60,02589,D60,archive_price_performance,open,2025-07-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02865_D60,02865,D60,archive_price_performance,open,2025-07-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01828_D1,01828,D1,archive_price_performance,open,2025-07-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01828_T2_grey_market,01828,T2_grey_market,archive_grey_market_result,open,2025-07-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02592_D5,02592,D5,archive_price_performance,open,2025-07-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02648_D5,02648,D5,archive_price_performance,open,2025-07-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03288_D20,03288,D20,archive_price_performance,open,2025-07-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01304_D1,01304,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01304_T2_grey_market,01304,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02590_D1,02590,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02590_T2_grey_market,02590,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02597_D1,02597,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02597_T2_grey_market,02597,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02651_D1,02651,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02651_T2_grey_market,02651,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06613_D1,06613,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06613_T2_grey_market,06613,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01828_D5,01828,D5,archive_price_performance,open,2025-07-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02050_D20,02050,D20,archive_price_performance,open,2025-07-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02609_D20,02609,D20,archive_price_performance,open,2025-07-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02617_D20,02617,D20,archive_price_performance,open,2025-07-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01304_D5,01304,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02590_D5,02590,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02597_D5,02597,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02651_D5,02651,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06613_D5,06613,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02619_D20,02619,D20,archive_price_performance,open,2025-07-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02643_D20,02643,D20,archive_price_performance,open,2025-07-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06831_D60,06831,D60,archive_price_performance,open,2025-07-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02508_D20,02508,D20,archive_price_performance,open,2025-07-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06168_D20,06168,D20,archive_price_performance,open,2025-07-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06883_D20,06883,D20,archive_price_performance,open,2025-07-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03750_D60,03750,D60,archive_price_performance,open,2025-07-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03880_D20,03880,D20,archive_price_performance,open,2025-07-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06603_D20,06603,D20,archive_price_performance,open,2025-07-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09678_D20,09678,D20,archive_price_performance,open,2025-07-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01276_D60,01276,D60,archive_price_performance,open,2025-07-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02629_D60,02629,D60,archive_price_performance,open,2025-07-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02592_D20,02592,D20,archive_price_performance,open,2025-07-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02648_D20,02648,D20,archive_price_performance,open,2025-07-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02565_D60,02565,D60,archive_price_performance,open,2025-07-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02603_D60,02603,D60,archive_price_performance,open,2025-07-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09887_D1,09887,D1,archive_price_performance,open,2025-07-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09887_T2_grey_market,09887,T2_grey_market,archive_grey_market_result,open,2025-07-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01828_D20,01828,D20,archive_price_performance,open,2025-07-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01304_D20,01304,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02590_D20,02590,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02597_D20,02597,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02621_D60,02621,D60,archive_price_performance,open,2025-07-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02651_D20,02651,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06613_D20,06613,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09887_D5,09887,D5,archive_price_performance,open,2025-07-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02573_D60,02573,D60,archive_price_performance,open,2025-08-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02605_D60,02605,D60,archive_price_performance,open,2025-08-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09881_D60,09881,D60,archive_price_performance,open,2025-08-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02627_D1,02627,D1,archive_price_performance,open,2025-08-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02627_T2_grey_market,02627,T2_grey_market,archive_grey_market_result,open,2025-08-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09887_D20,09887,D20,archive_price_performance,open,2025-08-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02591_D1,02591,D1,archive_price_performance,open,2025-08-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02591_T2_grey_market,02591,T2_grey_market,archive_grey_market_result,open,2025-08-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02627_D5,02627,D5,archive_price_performance,open,2025-08-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03288_D60,03288,D60,archive_price_performance,open,2025-08-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02591_D5,02591,D5,archive_price_performance,open,2025-08-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02631_D1,02631,D1,archive_price_performance,open,2025-08-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02631_T2_grey_market,02631,T2_grey_market,archive_grey_market_result,open,2025-08-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02050_D60,02050,D60,archive_price_performance,open,2025-08-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02609_D60,02609,D60,archive_price_performance,open,2025-08-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02617_D60,02617,D60,archive_price_performance,open,2025-08-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02619_D60,02619,D60,archive_price_performance,open,2025-08-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02643_D60,02643,D60,archive_price_performance,open,2025-08-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02508_D60,02508,D60,archive_price_performance,open,2025-08-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02631_D5,02631,D5,archive_price_performance,open,2025-08-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06168_D60,06168,D60,archive_price_performance,open,2025-08-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06883_D60,06883,D60,archive_price_performance,open,2025-08-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06960_D1,06960,D1,archive_price_performance,open,2025-08-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06960_T2_grey_market,06960,T2_grey_market,archive_grey_market_result,open,2025-08-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03858_D1,03858,D1,archive_price_performance,open,2025-08-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03858_T2_grey_market,03858,T2_grey_market,archive_grey_market_result,open,2025-08-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03880_D60,03880,D60,archive_price_performance,open,2025-08-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06603_D60,06603,D60,archive_price_performance,open,2025-08-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09678_D60,09678,D60,archive_price_performance,open,2025-08-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02627_D20,02627,D20,archive_price_performance,open,2025-08-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06960_D5,06960,D5,archive_price_performance,open,2025-08-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02592_D60,02592,D60,archive_price_performance,open,2025-08-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02648_D60,02648,D60,archive_price_performance,open,2025-09-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03858_D5,03858,D5,archive_price_performance,open,2025-09-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02580_D1,02580,D1,archive_price_performance,open,2025-09-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02580_T2_grey_market,02580,T2_grey_market,archive_grey_market_result,open,2025-09-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02591_D20,02591,D20,archive_price_performance,open,2025-09-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01828_D60,01828,D60,archive_price_performance,open,2025-09-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01304_D60,01304,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02580_D5,02580,D5,archive_price_performance,open,2025-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02590_D60,02590,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02597_D60,02597,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02651_D60,02651,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06613_D60,06613,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02631_D20,02631,D20,archive_price_performance,open,2025-09-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02543_D1,02543,D1,archive_price_performance,open,2025-09-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02543_T2_grey_market,02543,T2_grey_market,archive_grey_market_result,open,2025-09-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02543_D5,02543,D5,archive_price_performance,open,2025-09-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06960_D20,06960,D20,archive_price_performance,open,2025-09-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02525_D1,02525,D1,archive_price_performance,open,2025-09-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02525_T2_grey_market,02525,T2_grey_market,archive_grey_market_result,open,2025-09-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03858_D20,03858,D20,archive_price_performance,open,2025-09-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02656_D1,02656,D1,archive_price_performance,open,2025-09-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02656_T2_grey_market,02656,T2_grey_market,archive_grey_market_result,open,2025-09-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02595_D1,02595,D1,archive_price_performance,open,2025-09-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02595_T2_grey_market,02595,T2_grey_market,archive_grey_market_result,open,2025-09-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02525_D5,02525,D5,archive_price_performance,open,2025-09-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02580_D20,02580,D20,archive_price_performance,open,2025-09-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02656_D5,02656,D5,archive_price_performance,open,2025-09-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09887_D60,09887,D60,archive_price_performance,open,2025-09-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02595_D5,02595,D5,archive_price_performance,open,2025-09-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06090_D1,06090,D1,archive_price_performance,open,2025-09-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06090_T2_grey_market,06090,T2_grey_market,archive_grey_market_result,open,2025-09-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09973_D1,09973,D1,archive_price_performance,open,2025-09-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09973_T2_grey_market,09973,T2_grey_market,archive_grey_market_result,open,2025-09-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06090_D5,06090,D5,archive_price_performance,open,2025-09-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02543_D20,02543,D20,archive_price_performance,open,2025-09-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09973_D5,09973,D5,archive_price_performance,open,2025-09-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02259_D1,02259,D1,archive_price_performance,open,2025-09-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02259_T2_grey_market,02259,T2_grey_market,archive_grey_market_result,open,2025-09-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02583_D1,02583,D1,archive_price_performance,open,2025-09-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02583_T2_grey_market,02583,T2_grey_market,archive_grey_market_result,open,2025-09-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02889_D1,02889,D1,archive_price_performance,open,2025-09-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02889_T2_grey_market,02889,T2_grey_market,archive_grey_market_result,open,2025-09-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02259_D5,02259,D5,archive_price_performance,open,2025-10-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02583_D5,02583,D5,archive_price_performance,open,2025-10-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02889_D5,02889,D5,archive_price_performance,open,2025-10-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02525_D20,02525,D20,archive_price_performance,open,2025-10-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02656_D20,02656,D20,archive_price_performance,open,2025-10-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02595_D20,02595,D20,archive_price_performance,open,2025-10-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02652_D1,02652,D1,archive_price_performance,open,2025-10-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02652_T2_grey_market,02652,T2_grey_market,archive_grey_market_result,open,2025-10-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02627_D60,02627,D60,archive_price_performance,open,2025-10-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02650_D1,02650,D1,archive_price_performance,open,2025-10-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02650_T2_grey_market,02650,T2_grey_market,archive_grey_market_result,open,2025-10-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08549_D1,08549,D1,archive_price_performance,open,2025-10-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08549_T2_grey_market,08549,T2_grey_market,archive_grey_market_result,open,2025-10-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02652_D5,02652,D5,archive_price_performance,open,2025-10-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06090_D20,06090,D20,archive_price_performance,open,2025-10-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02591_D60,02591,D60,archive_price_performance,open,2025-10-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02650_D5,02650,D5,archive_price_performance,open,2025-10-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08549_D5,08549,D5,archive_price_performance,open,2025-10-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09973_D20,09973,D20,archive_price_performance,open,2025-10-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02575_D1,02575,D1,archive_price_performance,open,2025-10-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02575_T2_grey_market,02575,T2_grey_market,archive_grey_market_result,open,2025-10-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02670_D1,02670,D1,archive_price_performance,open,2025-10-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02670_T2_grey_market,02670,T2_grey_market,archive_grey_market_result,open,2025-10-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02631_D60,02631,D60,archive_price_performance,open,2025-10-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02259_D20,02259,D20,archive_price_performance,open,2025-10-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02575_D5,02575,D5,archive_price_performance,open,2025-10-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02583_D20,02583,D20,archive_price_performance,open,2025-10-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02889_D20,02889,D20,archive_price_performance,open,2025-10-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02637_D1,02637,D1,archive_price_performance,open,2025-10-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02637_T2_grey_market,02637,T2_grey_market,archive_grey_market_result,open,2025-10-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02670_D5,02670,D5,archive_price_performance,open,2025-10-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06687_D1,06687,D1,archive_price_performance,open,2025-10-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06687_T2_grey_market,06687,T2_grey_market,archive_grey_market_result,open,2025-10-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00638_D1,00638,D1,archive_price_performance,open,2025-10-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00638_T2_grey_market,00638,T2_grey_market,archive_grey_market_result,open,2025-10-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02637_D5,02637,D5,archive_price_performance,open,2025-10-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06960_D60,06960,D60,archive_price_performance,open,2025-10-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06687_D5,06687,D5,archive_price_performance,open,2025-10-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00638_D5,00638,D5,archive_price_performance,open,2025-10-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03858_D60,03858,D60,archive_price_performance,open,2025-10-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02652_D20,02652,D20,archive_price_performance,open,2025-10-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01384_D1,01384,D1,archive_price_performance,open,2025-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01384_T2_grey_market,01384,T2_grey_market,archive_grey_market_result,open,2025-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06031_D1,06031,D1,archive_price_performance,open,2025-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06031_T2_grey_market,06031,T2_grey_market,archive_grey_market_result,open,2025-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06166_D1,06166,D1,archive_price_performance,open,2025-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06166_T2_grey_market,06166,T2_grey_market,archive_grey_market_result,open,2025-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06980_D1,06980,D1,archive_price_performance,open,2025-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06980_T2_grey_market,06980,T2_grey_market,archive_grey_market_result,open,2025-10-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02650_D20,02650,D20,archive_price_performance,open,2025-10-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08549_D20,08549,D20,archive_price_performance,open,2025-10-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02580_D60,02580,D60,archive_price_performance,open,2025-10-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01384_D5,01384,D5,archive_price_performance,open,2025-11-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06031_D5,06031,D5,archive_price_performance,open,2025-11-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06166_D5,06166,D5,archive_price_performance,open,2025-11-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06980_D5,06980,D5,archive_price_performance,open,2025-11-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02575_D20,02575,D20,archive_price_performance,open,2025-11-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02718_D1,02718,D1,archive_price_performance,open,2025-11-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02718_T2_grey_market,02718,T2_grey_market,archive_grey_market_result,open,2025-11-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02670_D20,02670,D20,archive_price_performance,open,2025-11-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09927_D1,09927,D1,archive_price_performance,open,2025-11-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09927_T2_grey_market,09927,T2_grey_market,archive_grey_market_result,open,2025-11-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00699_D1,00699,D1,archive_price_performance,open,2025-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00699_T2_grey_market,00699,T2_grey_market,archive_grey_market_result,open,2025-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00800_D1,00800,D1,archive_price_performance,open,2025-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00800_T2_grey_market,00800,T2_grey_market,archive_grey_market_result,open,2025-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02026_D1,02026,D1,archive_price_performance,open,2025-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02026_T2_grey_market,02026,T2_grey_market,archive_grey_market_result,open,2025-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02630_D1,02630,D1,archive_price_performance,open,2025-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02630_T2_grey_market,02630,T2_grey_market,archive_grey_market_result,open,2025-11-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02543_D60,02543,D60,archive_price_performance,open,2025-11-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02718_D5,02718,D5,archive_price_performance,open,2025-11-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02637_D20,02637,D20,archive_price_performance,open,2025-11-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06687_D20,06687,D20,archive_price_performance,open,2025-11-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09927_D5,09927,D5,archive_price_performance,open,2025-11-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00638_D20,00638,D20,archive_price_performance,open,2025-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00699_D5,00699,D5,archive_price_performance,open,2025-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00800_D5,00800,D5,archive_price_performance,open,2025-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02026_D5,02026,D5,archive_price_performance,open,2025-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02630_D5,02630,D5,archive_price_performance,open,2025-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02698_D1,02698,D1,archive_price_performance,open,2025-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02698_T2_grey_market,02698,T2_grey_market,archive_grey_market_result,open,2025-11-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02525_D60,02525,D60,archive_price_performance,open,2025-11-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02698_D5,02698,D5,archive_price_performance,open,2025-11-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02656_D60,02656,D60,archive_price_performance,open,2025-11-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01384_D20,01384,D20,archive_price_performance,open,2025-11-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06031_D20,06031,D20,archive_price_performance,open,2025-11-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06166_D20,06166,D20,archive_price_performance,open,2025-11-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06980_D20,06980,D20,archive_price_performance,open,2025-11-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02579_D1,02579,D1,archive_price_performance,open,2025-11-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02579_T2_grey_market,02579,T2_grey_market,archive_grey_market_result,open,2025-11-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02595_D60,02595,D60,archive_price_performance,open,2025-11-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02579_D5,02579,D5,archive_price_performance,open,2025-11-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06090_D60,06090,D60,archive_price_performance,open,2025-11-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02718_D20,02718,D20,archive_price_performance,open,2025-11-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09973_D60,09973,D60,archive_price_performance,open,2025-11-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02788_D1,02788,D1,archive_price_performance,open,2025-11-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02788_T2_grey_market,02788,T2_grey_market,archive_grey_market_result,open,2025-11-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09927_D20,09927,D20,archive_price_performance,open,2025-11-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00699_D20,00699,D20,archive_price_performance,open,2025-11-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00800_D20,00800,D20,archive_price_performance,open,2025-11-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02026_D20,02026,D20,archive_price_performance,open,2025-11-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02630_D20,02630,D20,archive_price_performance,open,2025-11-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02685_D1,02685,D1,archive_price_performance,open,2025-11-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02685_T2_grey_market,02685,T2_grey_market,archive_grey_market_result,open,2025-11-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02259_D60,02259,D60,archive_price_performance,open,2025-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02583_D60,02583,D60,archive_price_performance,open,2025-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02788_D5,02788,D5,archive_price_performance,open,2025-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02889_D60,02889,D60,archive_price_performance,open,2025-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09609_D1,09609,D1,archive_price_performance,open,2025-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09609_T2_grey_market,09609,T2_grey_market,archive_grey_market_result,open,2025-11-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02698_D20,02698,D20,archive_price_performance,open,2025-11-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02685_D5,02685,D5,archive_price_performance,open,2025-12-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09609_D5,09609,D5,archive_price_performance,open,2025-12-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02539_D1,02539,D1,archive_price_performance,open,2025-12-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02539_T2_grey_market,02539,T2_grey_market,archive_grey_market_result,open,2025-12-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02693_D1,02693,D1,archive_price_performance,open,2025-12-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02693_T2_grey_market,02693,T2_grey_market,archive_grey_market_result,open,2025-12-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02408_D1,02408,D1,archive_price_performance,open,2025-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02408_T2_grey_market,02408,T2_grey_market,archive_grey_market_result,open,2025-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02658_D1,02658,D1,archive_price_performance,open,2025-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02658_T2_grey_market,02658,T2_grey_market,archive_grey_market_result,open,2025-12-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02579_D20,02579,D20,archive_price_performance,open,2025-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02652_D60,02652,D60,archive_price_performance,open,2025-12-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02539_D5,02539,D5,archive_price_performance,open,2025-12-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02693_D5,02693,D5,archive_price_performance,open,2025-12-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02650_D60,02650,D60,archive_price_performance,open,2025-12-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02676_D1,02676,D1,archive_price_performance,open,2025-12-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02676_T2_grey_market,02676,T2_grey_market,archive_grey_market_result,open,2025-12-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02687_D1,02687,D1,archive_price_performance,open,2025-12-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02687_T2_grey_market,02687,T2_grey_market,archive_grey_market_result,open,2025-12-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08549_D60,08549,D60,archive_price_performance,open,2025-12-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02408_D5,02408,D5,archive_price_performance,open,2025-12-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02658_D5,02658,D5,archive_price_performance,open,2025-12-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02659_D1,02659,D1,archive_price_performance,open,2025-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02659_T2_grey_market,02659,T2_grey_market,archive_grey_market_result,open,2025-12-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07618_D1,07618,D1,archive_price_performance,open,2025-12-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07618_T2_grey_market,07618,T2_grey_market,archive_grey_market_result,open,2025-12-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02676_D5,02676,D5,archive_price_performance,open,2025-12-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02687_D5,02687,D5,archive_price_performance,open,2025-12-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02575_D60,02575,D60,archive_price_performance,open,2025-12-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02788_D20,02788,D20,archive_price_performance,open,2025-12-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02659_D5,02659,D5,archive_price_performance,open,2025-12-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02670_D60,02670,D60,archive_price_performance,open,2025-12-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07618_D5,07618,D5,archive_price_performance,open,2025-12-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02655_D1,02655,D1,archive_price_performance,open,2025-12-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02655_T2_grey_market,02655,T2_grey_market,archive_grey_market_result,open,2025-12-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02685_D20,02685,D20,archive_price_performance,open,2025-12-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03887_D1,03887,D1,archive_price_performance,open,2025-12-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03887_T2_grey_market,03887,T2_grey_market,archive_grey_market_result,open,2025-12-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09609_D20,09609,D20,archive_price_performance,open,2025-12-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02637_D60,02637,D60,archive_price_performance,open,2025-12-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02546_D1,02546,D1,archive_price_performance,open,2025-12-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02546_T2_grey_market,02546,T2_grey_market,archive_grey_market_result,open,2025-12-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03881_D1,03881,D1,archive_price_performance,open,2025-12-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03881_T2_grey_market,03881,T2_grey_market,archive_grey_market_result,open,2025-12-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06687_D60,06687,D60,archive_price_performance,open,2025-12-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00638_D60,00638,D60,archive_price_performance,open,2025-12-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02655_D5,02655,D5,archive_price_performance,open,2025-12-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03887_D5,03887,D5,archive_price_performance,open,2025-12-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02396_D1,02396,D1,archive_price_performance,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02396_T2_grey_market,02396,T2_grey_market,archive_grey_market_result,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02539_D20,02539,D20,archive_price_performance,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02581_D1,02581,D1,archive_price_performance,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02581_T2_grey_market,02581,T2_grey_market,archive_grey_market_result,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02691_D1,02691,D1,archive_price_performance,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02691_T2_grey_market,02691,T2_grey_market,archive_grey_market_result,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02693_D20,02693,D20,archive_price_performance,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02695_D1,02695,D1,archive_price_performance,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02695_T2_grey_market,02695,T2_grey_market,archive_grey_market_result,open,2025-12-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02546_D5,02546,D5,archive_price_performance,open,2025-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02635_D1,02635,D1,archive_price_performance,open,2025-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02635_T2_grey_market,02635,T2_grey_market,archive_grey_market_result,open,2025-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02661_D1,02661,D1,archive_price_performance,open,2025-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02661_T2_grey_market,02661,T2_grey_market,archive_grey_market_result,open,2025-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03378_D1,03378,D1,archive_price_performance,open,2025-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03378_T2_grey_market,03378,T2_grey_market,archive_grey_market_result,open,2025-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03881_D5,03881,D5,archive_price_performance,open,2025-12-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02408_D20,02408,D20,archive_price_performance,open,2025-12-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02658_D20,02658,D20,archive_price_performance,open,2025-12-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01384_D60,01384,D60,archive_price_performance,open,2025-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02396_D5,02396,D5,archive_price_performance,open,2025-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02581_D5,02581,D5,archive_price_performance,open,2025-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02691_D5,02691,D5,archive_price_performance,open,2025-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02695_D5,02695,D5,archive_price_performance,open,2025-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06031_D60,06031,D60,archive_price_performance,open,2025-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06166_D60,06166,D60,archive_price_performance,open,2025-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06980_D60,06980,D60,archive_price_performance,open,2025-12-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02635_D5,02635,D5,archive_price_performance,open,2025-12-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02661_D5,02661,D5,archive_price_performance,open,2025-12-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02676_D20,02676,D20,archive_price_performance,open,2025-12-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02687_D20,02687,D20,archive_price_performance,open,2025-12-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03378_D5,03378,D5,archive_price_performance,open,2025-12-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02659_D20,02659,D20,archive_price_performance,open,2025-12-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02657_D1,02657,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02657_T2_grey_market,02657,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02671_D1,02671,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02671_T2_grey_market,02671,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03317_D1,03317,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03317_T2_grey_market,03317,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03696_D1,03696,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03696_T2_grey_market,03696,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06600_D1,06600,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06600_T2_grey_market,06600,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06651_D1,06651,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06651_T2_grey_market,06651,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07618_D20,07618,D20,archive_price_performance,open,2025-12-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02718_D60,02718,D60,archive_price_performance,open,2026-01-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06082_D1,06082,D1,archive_price_performance,open,2026-01-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06082_T2_grey_market,06082,T2_grey_market,archive_grey_market_result,open,2026-01-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02657_D5,02657,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02671_D5,02671,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03317_D5,03317,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03696_D5,03696,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06600_D5,06600,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06651_D5,06651,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09927_D60,09927,D60,archive_price_performance,open,2026-01-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00699_D60,00699,D60,archive_price_performance,open,2026-01-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00800_D60,00800,D60,archive_price_performance,open,2026-01-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02026_D60,02026,D60,archive_price_performance,open,2026-01-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02630_D60,02630,D60,archive_price_performance,open,2026-01-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02655_D20,02655,D20,archive_price_performance,open,2026-01-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03887_D20,03887,D20,archive_price_performance,open,2026-01-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06082_D5,06082,D5,archive_price_performance,open,2026-01-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02546_D20,02546,D20,archive_price_performance,open,2026-01-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03881_D20,03881,D20,archive_price_performance,open,2026-01-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02513_D1,02513,D1,archive_price_performance,open,2026-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02513_T2_grey_market,02513,T2_grey_market,archive_grey_market_result,open,2026-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02675_D1,02675,D1,archive_price_performance,open,2026-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02675_T2_grey_market,02675,T2_grey_market,archive_grey_market_result,open,2026-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02698_D60,02698,D60,archive_price_performance,open,2026-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09903_D1,09903,D1,archive_price_performance,open,2026-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09903_T2_grey_market,09903,T2_grey_market,archive_grey_market_result,open,2026-01-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00100_D1,00100,D1,archive_price_performance,open,2026-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00100_T2_grey_market,00100,T2_grey_market,archive_grey_market_result,open,2026-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03636_D1,03636,D1,archive_price_performance,open,2026-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03636_T2_grey_market,03636,T2_grey_market,archive_grey_market_result,open,2026-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06938_D1,06938,D1,archive_price_performance,open,2026-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06938_T2_grey_market,06938,T2_grey_market,archive_grey_market_result,open,2026-01-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02396_D20,02396,D20,archive_price_performance,open,2026-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02581_D20,02581,D20,archive_price_performance,open,2026-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02691_D20,02691,D20,archive_price_performance,open,2026-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02695_D20,02695,D20,archive_price_performance,open,2026-01-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02635_D20,02635,D20,archive_price_performance,open,2026-01-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02661_D20,02661,D20,archive_price_performance,open,2026-01-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03378_D20,03378,D20,archive_price_performance,open,2026-01-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00501_D1,00501,D1,archive_price_performance,open,2026-01-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00501_T2_grey_market,00501,T2_grey_market,archive_grey_market_result,open,2026-01-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02513_D5,02513,D5,archive_price_performance,open,2026-01-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02675_D5,02675,D5,archive_price_performance,open,2026-01-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09903_D5,09903,D5,archive_price_performance,open,2026-01-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00100_D5,00100,D5,archive_price_performance,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01641_D1,01641,D1,archive_price_performance,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01641_T2_grey_market,01641,T2_grey_market,archive_grey_market_result,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03636_D5,03636,D5,archive_price_performance,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03986_D1,03986,D1,archive_price_performance,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03986_T2_grey_market,03986,T2_grey_market,archive_grey_market_result,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06938_D5,06938,D5,archive_price_performance,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08610_D1,08610,D1,archive_price_performance,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08610_T2_grey_market,08610,T2_grey_market,archive_grey_market_result,open,2026-01-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02579_D60,02579,D60,archive_price_performance,open,2026-01-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00501_D5,00501,D5,archive_price_performance,open,2026-01-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01641_D5,01641,D5,archive_price_performance,open,2026-01-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03986_D5,03986,D5,archive_price_performance,open,2026-01-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08610_D5,08610,D5,archive_price_performance,open,2026-01-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02657_D20,02657,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02671_D20,02671,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03317_D20,03317,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03696_D20,03696,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06600_D20,06600,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06651_D20,06651,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06082_D20,06082,D20,archive_price_performance,open,2026-01-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02788_D60,02788,D60,archive_price_performance,open,2026-01-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09611_D1,09611,D1,archive_price_performance,open,2026-01-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09611_T2_grey_market,09611,T2_grey_market,archive_grey_market_result,open,2026-01-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02685_D60,02685,D60,archive_price_performance,open,2026-01-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09609_D60,09609,D60,archive_price_performance,open,2026-01-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09611_D5,09611,D5,archive_price_performance,open,2026-01-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02513_D20,02513,D20,archive_price_performance,open,2026-01-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02675_D20,02675,D20,archive_price_performance,open,2026-01-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09903_D20,09903,D20,archive_price_performance,open,2026-01-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00100_D20,00100,D20,archive_price_performance,open,2026-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01768_D1,01768,D1,archive_price_performance,open,2026-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01768_T2_grey_market,01768,T2_grey_market,archive_grey_market_result,open,2026-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03636_D20,03636,D20,archive_price_performance,open,2026-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06938_D20,06938,D20,archive_price_performance,open,2026-01-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00501_D20,00501,D20,archive_price_performance,open,2026-01-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02539_D60,02539,D60,archive_price_performance,open,2026-01-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02693_D60,02693,D60,archive_price_performance,open,2026-01-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01641_D20,01641,D20,archive_price_performance,open,2026-02-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01768_D5,01768,D5,archive_price_performance,open,2026-02-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03986_D20,03986,D20,archive_price_performance,open,2026-02-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08610_D20,08610,D20,archive_price_performance,open,2026-02-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02408_D60,02408,D60,archive_price_performance,open,2026-02-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02658_D60,02658,D60,archive_price_performance,open,2026-02-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09980_D1,09980,D1,archive_price_performance,open,2026-02-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09980_T2_grey_market,09980,T2_grey_market,archive_grey_market_result,open,2026-02-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02768_D1,02768,D1,archive_price_performance,open,2026-02-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02768_T2_grey_market,02768,T2_grey_market,archive_grey_market_result,open,2026-02-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02676_D60,02676,D60,archive_price_performance,open,2026-02-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02687_D60,02687,D60,archive_price_performance,open,2026-02-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02677_D1,02677,D1,archive_price_performance,open,2026-02-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02677_T2_grey_market,02677,T2_grey_market,archive_grey_market_result,open,2026-02-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02714_D1,02714,D1,archive_price_performance,open,2026-02-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02714_T2_grey_market,02714,T2_grey_market,archive_grey_market_result,open,2026-02-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03200_D1,03200,D1,archive_price_performance,open,2026-02-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03200_T2_grey_market,03200,T2_grey_market,archive_grey_market_result,open,2026-02-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02659_D60,02659,D60,archive_price_performance,open,2026-02-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09980_D5,09980,D5,archive_price_performance,open,2026-02-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02768_D5,02768,D5,archive_price_performance,open,2026-02-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07618_D60,07618,D60,archive_price_performance,open,2026-02-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06809_D1,06809,D1,archive_price_performance,open,2026-02-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06809_T2_grey_market,06809,T2_grey_market,archive_grey_market_result,open,2026-02-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00600_D1,00600,D1,archive_price_performance,open,2026-02-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00600_T2_grey_market,00600,T2_grey_market,archive_grey_market_result,open,2026-02-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02677_D5,02677,D5,archive_price_performance,open,2026-02-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02714_D5,02714,D5,archive_price_performance,open,2026-02-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02720_D1,02720,D1,archive_price_performance,open,2026-02-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02720_T2_grey_market,02720,T2_grey_market,archive_grey_market_result,open,2026-02-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03200_D5,03200,D5,archive_price_performance,open,2026-02-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09611_D20,09611,D20,archive_price_performance,open,2026-02-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00470_D1,00470,D1,archive_price_performance,open,2026-02-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00470_T2_grey_market,00470,T2_grey_market,archive_grey_market_result,open,2026-02-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02655_D60,02655,D60,archive_price_performance,open,2026-02-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02706_D1,02706,D1,archive_price_performance,open,2026-02-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02706_T2_grey_market,02706,T2_grey_market,archive_grey_market_result,open,2026-02-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06809_D5,06809,D5,archive_price_performance,open,2026-02-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09981_D1,09981,D1,archive_price_performance,open,2026-02-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09981_T2_grey_market,09981,T2_grey_market,archive_grey_market_result,open,2026-02-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00600_D5,00600,D5,archive_price_performance,open,2026-02-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02720_D5,02720,D5,archive_price_performance,open,2026-02-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03887_D60,03887,D60,archive_price_performance,open,2026-02-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00470_D5,00470,D5,archive_price_performance,open,2026-02-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01768_D20,01768,D20,archive_price_performance,open,2026-02-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02546_D60,02546,D60,archive_price_performance,open,2026-02-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03881_D60,03881,D60,archive_price_performance,open,2026-02-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02706_D5,02706,D5,archive_price_performance,open,2026-02-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09981_D5,09981,D5,archive_price_performance,open,2026-02-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02396_D60,02396,D60,archive_price_performance,open,2026-02-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02581_D60,02581,D60,archive_price_performance,open,2026-02-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02691_D60,02691,D60,archive_price_performance,open,2026-02-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02695_D60,02695,D60,archive_price_performance,open,2026-02-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02635_D60,02635,D60,archive_price_performance,open,2026-02-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02661_D60,02661,D60,archive_price_performance,open,2026-02-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03378_D60,03378,D60,archive_price_performance,open,2026-02-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09980_D20,09980,D20,archive_price_performance,open,2026-02-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02768_D20,02768,D20,archive_price_performance,open,2026-02-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02677_D20,02677,D20,archive_price_performance,open,2026-02-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02714_D20,02714,D20,archive_price_performance,open,2026-02-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03200_D20,03200,D20,archive_price_performance,open,2026-02-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02657_D60,02657,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02671_D60,02671,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03317_D60,03317,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03696_D60,03696,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06600_D60,06600,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06651_D60,06651,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06809_D20,06809,D20,archive_price_performance,open,2026-02-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00600_D20,00600,D20,archive_price_performance,open,2026-03-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02720_D20,02720,D20,archive_price_performance,open,2026-03-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00470_D20,00470,D20,archive_price_performance,open,2026-03-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06082_D60,06082,D60,archive_price_performance,open,2026-03-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02706_D20,02706,D20,archive_price_performance,open,2026-03-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09981_D20,09981,D20,archive_price_performance,open,2026-03-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02513_D60,02513,D60,archive_price_performance,open,2026-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02675_D60,02675,D60,archive_price_performance,open,2026-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09903_D60,09903,D60,archive_price_performance,open,2026-03-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00100_D60,00100,D60,archive_price_performance,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02649_D1,02649,D1,archive_price_performance,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02649_T2_grey_market,02649,T2_grey_market,archive_grey_market_result,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02692_D1,02692,D1,archive_price_performance,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02692_T2_grey_market,02692,T2_grey_market,archive_grey_market_result,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02715_D1,02715,D1,archive_price_performance,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02715_T2_grey_market,02715,T2_grey_market,archive_grey_market_result,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03636_D60,03636,D60,archive_price_performance,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06938_D60,06938,D60,archive_price_performance,open,2026-03-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03268_D1,03268,D1,archive_price_performance,open,2026-03-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03268_T2_grey_market,03268,T2_grey_market,archive_grey_market_result,open,2026-03-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00501_D60,00501,D60,archive_price_performance,open,2026-03-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01641_D60,01641,D60,archive_price_performance,open,2026-03-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02649_D5,02649,D5,archive_price_performance,open,2026-03-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02692_D5,02692,D5,archive_price_performance,open,2026-03-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02715_D5,02715,D5,archive_price_performance,open,2026-03-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03986_D60,03986,D60,archive_price_performance,open,2026-03-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08610_D60,08610,D60,archive_price_performance,open,2026-03-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03268_D5,03268,D5,archive_price_performance,open,2026-03-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01989_D1,01989,D1,archive_price_performance,open,2026-03-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01989_T2_grey_market,01989,T2_grey_market,archive_grey_market_result,open,2026-03-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09611_D60,09611,D60,archive_price_performance,open,2026-03-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02701_D1,02701,D1,archive_price_performance,open,2026-03-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02701_T2_grey_market,02701,T2_grey_market,archive_grey_market_result,open,2026-03-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03355_D1,03355,D1,archive_price_performance,open,2026-03-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03355_T2_grey_market,03355,T2_grey_market,archive_grey_market_result,open,2026-03-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01989_D5,01989,D5,archive_price_performance,open,2026-03-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02632_D1,02632,D1,archive_price_performance,open,2026-03-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02632_T2_grey_market,02632,T2_grey_market,archive_grey_market_result,open,2026-03-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02729_D1,02729,D1,archive_price_performance,open,2026-03-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02729_T2_grey_market,02729,T2_grey_market,archive_grey_market_result,open,2026-03-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02701_D5,02701,D5,archive_price_performance,open,2026-03-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03355_D5,03355,D5,archive_price_performance,open,2026-03-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01768_D60,01768,D60,archive_price_performance,open,2026-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02632_D5,02632,D5,archive_price_performance,open,2026-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02649_D20,02649,D20,archive_price_performance,open,2026-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02692_D20,02692,D20,archive_price_performance,open,2026-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02715_D20,02715,D20,archive_price_performance,open,2026-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02729_D5,02729,D5,archive_price_performance,open,2026-03-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03268_D20,03268,D20,archive_price_performance,open,2026-03-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01021_D1,01021,D1,archive_price_performance,open,2026-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01021_T2_grey_market,01021,T2_grey_market,archive_grey_market_result,open,2026-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02526_D1,02526,D1,archive_price_performance,open,2026-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02526_T2_grey_market,02526,T2_grey_market,archive_grey_market_result,open,2026-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02726_D1,02726,D1,archive_price_performance,open,2026-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02726_T2_grey_market,02726,T2_grey_market,archive_grey_market_result,open,2026-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06636_D1,06636,D1,archive_price_performance,open,2026-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06636_T2_grey_market,06636,T2_grey_market,archive_grey_market_result,open,2026-03-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00664_D1,00664,D1,archive_price_performance,open,2026-03-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00664_T2_grey_market,00664,T2_grey_market,archive_grey_market_result,open,2026-03-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03625_D1,03625,D1,archive_price_performance,open,2026-03-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03625_T2_grey_market,03625,T2_grey_market,archive_grey_market_result,open,2026-03-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01021_D5,01021,D5,archive_price_performance,open,2026-04-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02526_D5,02526,D5,archive_price_performance,open,2026-04-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02726_D5,02726,D5,archive_price_performance,open,2026-04-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06636_D5,06636,D5,archive_price_performance,open,2026-04-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09980_D60,09980,D60,archive_price_performance,open,2026-04-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00664_D5,00664,D5,archive_price_performance,open,2026-04-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02768_D60,02768,D60,archive_price_performance,open,2026-04-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03625_D5,03625,D5,archive_price_performance,open,2026-04-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02677_D60,02677,D60,archive_price_performance,open,2026-04-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02714_D60,02714,D60,archive_price_performance,open,2026-04-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03200_D60,03200,D60,archive_price_performance,open,2026-04-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01989_D20,01989,D20,archive_price_performance,open,2026-04-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06809_D60,06809,D60,archive_price_performance,open,2026-04-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00600_D60,00600,D60,archive_price_performance,open,2026-04-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02720_D60,02720,D60,archive_price_performance,open,2026-04-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00470_D60,00470,D60,archive_price_performance,open,2026-04-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02701_D20,02701,D20,archive_price_performance,open,2026-04-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03355_D20,03355,D20,archive_price_performance,open,2026-04-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02632_D20,02632,D20,archive_price_performance,open,2026-04-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02729_D20,02729,D20,archive_price_performance,open,2026-04-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02706_D60,02706,D60,archive_price_performance,open,2026-04-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09981_D60,09981,D60,archive_price_performance,open,2026-04-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06656_D1,06656,D1,archive_price_performance,open,2026-04-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06656_T2_grey_market,06656,T2_grey_market,archive_grey_market_result,open,2026-04-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00068_D1,00068,D1,archive_price_performance,open,2026-04-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00068_T2_grey_market,00068,T2_grey_market,archive_grey_market_result,open,2026-04-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03277_D1,03277,D1,archive_price_performance,open,2026-04-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03277_T2_grey_market,03277,T2_grey_market,archive_grey_market_result,open,2026-04-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01021_D20,01021,D20,archive_price_performance,open,2026-04-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02526_D20,02526,D20,archive_price_performance,open,2026-04-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02726_D20,02726,D20,archive_price_performance,open,2026-04-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06636_D20,06636,D20,archive_price_performance,open,2026-04-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00664_D20,00664,D20,archive_price_performance,open,2026-04-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03625_D20,03625,D20,archive_price_performance,open,2026-04-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06656_D5,06656,D5,archive_price_performance,open,2026-04-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00068_D5,00068,D5,archive_price_performance,open,2026-04-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02476_D1,02476,D1,archive_price_performance,open,2026-04-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02476_T2_grey_market,02476,T2_grey_market,archive_grey_market_result,open,2026-04-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03277_D5,03277,D5,archive_price_performance,open,2026-04-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03296_D1,03296,D1,archive_price_performance,open,2026-04-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03296_T2_grey_market,03296,T2_grey_market,archive_grey_market_result,open,2026-04-23,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02476_D5,02476,D5,archive_price_performance,open,2026-04-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03296_D5,03296,D5,archive_price_performance,open,2026-04-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01879_D1,01879,D1,archive_price_performance,open,2026-04-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01879_T2_grey_market,01879,T2_grey_market,archive_grey_market_result,open,2026-04-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02493_D1,02493,D1,archive_price_performance,open,2026-04-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02493_T2_grey_market,02493,T2_grey_market,archive_grey_market_result,open,2026-04-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06810_D1,06810,D1,archive_price_performance,open,2026-04-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06810_T2_grey_market,06810,T2_grey_market,archive_grey_market_result,open,2026-04-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01879_D5,01879,D5,archive_price_performance,open,2026-05-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02493_D5,02493,D5,archive_price_performance,open,2026-05-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06810_D5,06810,D5,archive_price_performance,open,2026-05-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01609_D1,01609,D1,archive_price_performance,open,2026-05-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01609_T2_grey_market,01609,T2_grey_market,archive_grey_market_result,open,2026-05-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06656_D20,06656,D20,archive_price_performance,open,2026-05-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00068_D20,00068,D20,archive_price_performance,open,2026-05-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01187_D1,01187,D1,archive_price_performance,open,2026-05-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01187_T2_grey_market,01187,T2_grey_market,archive_grey_market_result,open,2026-05-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03277_D20,03277,D20,archive_price_performance,open,2026-05-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02649_D60,02649,D60,archive_price_performance,open,2026-05-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02692_D60,02692,D60,archive_price_performance,open,2026-05-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02715_D60,02715,D60,archive_price_performance,open,2026-05-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03268_D60,03268,D60,archive_price_performance,open,2026-05-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01609_D5,01609,D5,archive_price_performance,open,2026-05-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01187_D5,01187,D5,archive_price_performance,open,2026-05-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02476_D20,02476,D20,archive_price_performance,open,2026-05-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01236_D1,01236,D1,archive_price_performance,open,2026-05-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01236_T2_grey_market,01236,T2_grey_market,archive_grey_market_result,open,2026-05-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03296_D20,03296,D20,archive_price_performance,open,2026-05-12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07630_D1,07630,D1,archive_price_performance,open,2026-05-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07630_T2_grey_market,07630,T2_grey_market,archive_grey_market_result,open,2026-05-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07666_D1,07666,D1,archive_price_performance,open,2026-05-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07666_T2_grey_market,07666,T2_grey_market,archive_grey_market_result,open,2026-05-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01236_D5,01236,D5,archive_price_performance,open,2026-05-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01879_D20,01879,D20,archive_price_performance,open,2026-05-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02493_D20,02493,D20,archive_price_performance,open,2026-05-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07630_D5,07630,D5,archive_price_performance,open,2026-05-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07666_D5,07666,D5,archive_price_performance,open,2026-05-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01989_D60,01989,D60,archive_price_performance,open,2026-05-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06810_D20,06810,D20,archive_price_performance,open,2026-05-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06871_D1,06871,D1,archive_price_performance,open,2026-05-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06871_T2_grey_market,06871,T2_grey_market,archive_grey_market_result,open,2026-05-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01511_D1,01511,D1,archive_price_performance,open,2026-05-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01511_T2_grey_market,01511,T2_grey_market,archive_grey_market_result,open,2026-05-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07688_D1,07688,D1,archive_price_performance,open,2026-05-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07688_T2_grey_market,07688,T2_grey_market,archive_grey_market_result,open,2026-05-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02701_D60,02701,D60,archive_price_performance,open,2026-05-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03355_D60,03355,D60,archive_price_performance,open,2026-05-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02632_D60,02632,D60,archive_price_performance,open,2026-05-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02729_D60,02729,D60,archive_price_performance,open,2026-05-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06871_D5,06871,D5,archive_price_performance,open,2026-05-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06872_D1,06872,D1,archive_price_performance,open,2026-05-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06872_T2_grey_market,06872,T2_grey_market,archive_grey_market_result,open,2026-05-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01511_D5,01511,D5,archive_price_performance,open,2026-05-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01609_D20,01609,D20,archive_price_performance,open,2026-05-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07688_D5,07688,D5,archive_price_performance,open,2026-05-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01187_D20,01187,D20,archive_price_performance,open,2026-05-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06872_D5,06872,D5,archive_price_performance,open,2026-05-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00901_D1,00901,D1,archive_price_performance,open,2026-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00901_T2_grey_market,00901,T2_grey_market,archive_grey_market_result,open,2026-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02723_D1,02723,D1,archive_price_performance,open,2026-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02723_T2_grey_market,02723,T2_grey_market,archive_grey_market_result,open,2026-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03310_D1,03310,D1,archive_price_performance,open,2026-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03310_T2_grey_market,03310,T2_grey_market,archive_grey_market_result,open,2026-05-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01021_D60,01021,D60,archive_price_performance,open,2026-05-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02526_D60,02526,D60,archive_price_performance,open,2026-05-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02726_D60,02726,D60,archive_price_performance,open,2026-05-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06636_D60,06636,D60,archive_price_performance,open,2026-05-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00664_D60,00664,D60,archive_price_performance,open,2026-05-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03388_D1,03388,D1,archive_price_performance,open,2026-05-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03388_T2_grey_market,03388,T2_grey_market,archive_grey_market_result,open,2026-05-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03625_D60,03625,D60,archive_price_performance,open,2026-05-29,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01236_D20,01236,D20,archive_price_performance,open,2026-05-30,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00901_D5,00901,D5,archive_price_performance,open,2026-05-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02723_D5,02723,D5,archive_price_performance,open,2026-05-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03310_D5,03310,D5,archive_price_performance,open,2026-05-31,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07630_D20,07630,D20,archive_price_performance,open,2026-06-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07666_D20,07666,D20,archive_price_performance,open,2026-06-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03388_D5,03388,D5,archive_price_performance,open,2026-06-02,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02553_D1,02553,D1,archive_price_performance,open,2026-06-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02553_T2_grey_market,02553,T2_grey_market,archive_grey_market_result,open,2026-06-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01081_D1,01081,D1,archive_price_performance,open,2026-06-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01081_T2_grey_market,01081,T2_grey_market,archive_grey_market_result,open,2026-06-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01779_D1,01779,D1,archive_price_performance,open,2026-06-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01779_T2_grey_market,01779,T2_grey_market,archive_grey_market_result,open,2026-06-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02290_D1,02290,D1,archive_price_performance,open,2026-06-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02290_T2_grey_market,02290,T2_grey_market,archive_grey_market_result,open,2026-06-05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06871_D20,06871,D20,archive_price_performance,open,2026-06-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02553_D5,02553,D5,archive_price_performance,open,2026-06-07,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01511_D20,01511,D20,archive_price_performance,open,2026-06-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07688_D20,07688,D20,archive_price_performance,open,2026-06-08,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01081_D5,01081,D5,archive_price_performance,open,2026-06-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01779_D5,01779,D5,archive_price_performance,open,2026-06-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02290_D5,02290,D5,archive_price_performance,open,2026-06-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06872_D20,06872,D20,archive_price_performance,open,2026-06-10,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06656_D60,06656,D60,archive_price_performance,open,2026-06-14,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00068_D60,00068,D60,archive_price_performance,open,2026-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00901_D20,00901,D20,archive_price_performance,open,2026-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02723_D20,02723,D20,archive_price_performance,open,2026-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03277_D60,03277,D60,archive_price_performance,open,2026-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03310_D20,03310,D20,archive_price_performance,open,2026-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06658_D1,06658,D1,archive_price_performance,open,2026-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06658_T2_grey_market,06658,T2_grey_market,archive_grey_market_result,open,2026-06-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06675_T1_allotment,06675,T1_allotment,archive_allotment_results,waiting_until_due,2026-06-16,06675_allotment_results_pending_2026_06_15,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03388_D20,03388,D20,archive_price_performance,waiting_until_due,2026-06-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06675_D1,06675,D1,archive_price_performance,waiting_until_due,2026-06-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06675_T2_grey_market,06675,T2_grey_market,archive_grey_market_result,waiting_until_due,2026-06-17,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02476_D60,02476,D60,archive_price_performance,waiting_until_due,2026-06-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06658_D5,06658,D5,archive_price_performance,waiting_until_due,2026-06-19,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03296_D60,03296,D60,archive_price_performance,waiting_until_due,2026-06-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06675_D5,06675,D5,archive_price_performance,waiting_until_due,2026-06-21,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02553_D20,02553,D20,archive_price_performance,waiting_until_due,2026-06-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06106_T1_allotment,06106,T1_allotment,archive_allotment_results,waiting_until_due,2026-06-23,06106_allotment_results_pending_2026_06_15,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01081_D20,01081,D20,archive_price_performance,waiting_until_due,2026-06-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01779_D20,01779,D20,archive_price_performance,waiting_until_due,2026-06-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02290_D20,02290,D20,archive_price_performance,waiting_until_due,2026-06-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06106_D1,06106,D1,archive_price_performance,waiting_until_due,2026-06-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06106_T2_grey_market,06106,T2_grey_market,archive_grey_market_result,waiting_until_due,2026-06-24,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01879_D60,01879,D60,archive_price_performance,waiting_until_due,2026-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02493_D60,02493,D60,archive_price_performance,waiting_until_due,2026-06-26,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06810_D60,06810,D60,archive_price_performance,waiting_until_due,2026-06-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06106_D5,06106,D5,archive_price_performance,waiting_until_due,2026-06-28,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01609_D60,01609,D60,archive_price_performance,waiting_until_due,2026-07-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01187_D60,01187,D60,archive_price_performance,waiting_until_due,2026-07-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06658_D20,06658,D20,archive_price_performance,waiting_until_due,2026-07-04,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06675_D20,06675,D20,archive_price_performance,waiting_until_due,2026-07-06,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01236_D60,01236,D60,archive_price_performance,waiting_until_due,2026-07-09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07630_D60,07630,D60,archive_price_performance,waiting_until_due,2026-07-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07666_D60,07666,D60,archive_price_performance,waiting_until_due,2026-07-11,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06106_D20,06106,D20,archive_price_performance,waiting_until_due,2026-07-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06871_D60,06871,D60,archive_price_performance,waiting_until_due,2026-07-16,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01511_D60,01511,D60,archive_price_performance,waiting_until_due,2026-07-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07688_D60,07688,D60,archive_price_performance,waiting_until_due,2026-07-18,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06872_D60,06872,D60,archive_price_performance,waiting_until_due,2026-07-20,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00901_D60,00901,D60,archive_price_performance,waiting_until_due,2026-07-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02723_D60,02723,D60,archive_price_performance,waiting_until_due,2026-07-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03310_D60,03310,D60,archive_price_performance,waiting_until_due,2026-07-25,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03388_D60,03388,D60,archive_price_performance,waiting_until_due,2026-07-27,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02553_D60,02553,D60,archive_price_performance,waiting_until_due,2026-08-01,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01081_D60,01081,D60,archive_price_performance,waiting_until_due,2026-08-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01779_D60,01779,D60,archive_price_performance,waiting_until_due,2026-08-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02290_D60,02290,D60,archive_price_performance,waiting_until_due,2026-08-03,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06658_D60,06658,D60,archive_price_performance,waiting_until_due,2026-08-13,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06675_D60,06675,D60,archive_price_performance,waiting_until_due,2026-08-15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06106_D60,06106,D60,archive_price_performance,waiting_until_due,2026-08-22,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00068_T0_prospectus,00068,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00068_T1_allotment,00068,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00100_T0_prospectus,00100,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00100_T1_allotment,00100,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00300_T0_prospectus,00300,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00300_T1_allotment,00300,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00325_T0_prospectus,00325,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00325_T1_allotment,00325,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00470_T0_prospectus,00470,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00470_T1_allotment,00470,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00501_T0_prospectus,00501,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00501_T1_allotment,00501,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00600_T0_prospectus,00600,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00600_T1_allotment,00600,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00638_T0_prospectus,00638,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00638_T1_allotment,00638,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00664_T0_prospectus,00664,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00664_T1_allotment,00664,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00666_T0_prospectus,00666,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00666_T1_allotment,00666,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00699_T0_prospectus,00699,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00699_T1_allotment,00699,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00800_T0_prospectus,00800,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00800_T1_allotment,00800,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00805_T0_prospectus,00805,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00805_T1_allotment,00805,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00917_T0_prospectus,00917,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00917_T1_allotment,00917,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00999_T0_prospectus,00999,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00999_T1_allotment,00999,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01021_T0_prospectus,01021,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01021_T1_allotment,01021,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01111_T0_prospectus,01111,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01111_T1_allotment,01111,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01187_T0_prospectus,01187,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01187_T1_allotment,01187,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01236_T0_prospectus,01236,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01236_T1_allotment,01236,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01274_T0_prospectus,01274,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01274_T1_allotment,01274,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01276_T0_prospectus,01276,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01276_T1_allotment,01276,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01284_T0_prospectus,01284,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01284_T1_allotment,01284,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01304_T0_prospectus,01304,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01304_T1_allotment,01304,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01318_T0_prospectus,01318,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01318_T1_allotment,01318,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01333_T0_prospectus,01333,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01333_T1_allotment,01333,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01334_T0_prospectus,01334,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01334_T1_allotment,01334,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01354_T0_prospectus,01354,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01354_T1_allotment,01354,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01364_T0_prospectus,01364,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01364_T1_allotment,01364,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01384_T0_prospectus,01384,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01384_T1_allotment,01384,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01471_T0_prospectus,01471,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01471_T1_allotment,01471,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01497_T0_prospectus,01497,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01497_T1_allotment,01497,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01511_T0_prospectus,01511,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01511_T1_allotment,01511,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01519_T0_prospectus,01519,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01519_T1_allotment,01519,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01541_T0_prospectus,01541,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01541_T1_allotment,01541,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01609_T0_prospectus,01609,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01609_T1_allotment,01609,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01641_T0_prospectus,01641,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01641_T1_allotment,01641,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01768_T0_prospectus,01768,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01768_T1_allotment,01768,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01828_T0_prospectus,01828,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01828_T1_allotment,01828,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01879_T0_prospectus,01879,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01879_T1_allotment,01879,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01973_T0_prospectus,01973,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01973_T1_allotment,01973,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01989_T0_prospectus,01989,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01989_T1_allotment,01989,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02026_T0_prospectus,02026,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02026_T1_allotment,02026,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02050_T0_prospectus,02050,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02050_T1_allotment,02050,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02097_T0_prospectus,02097,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02097_T1_allotment,02097,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02105_T0_prospectus,02105,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02105_T1_allotment,02105,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02149_T0_prospectus,02149,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02149_T1_allotment,02149,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02228_T0_prospectus,02228,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02228_T1_allotment,02228,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02259_T0_prospectus,02259,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02259_T1_allotment,02259,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02268_T0_prospectus,02268,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02268_T1_allotment,02268,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02271_T0_prospectus,02271,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02271_T1_allotment,02271,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02396_T0_prospectus,02396,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02396_T1_allotment,02396,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02408_T0_prospectus,02408,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02408_T1_allotment,02408,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02410_T0_prospectus,02410,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02410_T1_allotment,02410,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02419_T0_prospectus,02419,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02419_T1_allotment,02419,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02429_T0_prospectus,02429,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02429_T1_allotment,02429,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02431_T0_prospectus,02431,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02431_T1_allotment,02431,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02432_T0_prospectus,02432,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02432_T1_allotment,02432,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02438_T0_prospectus,02438,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02438_T1_allotment,02438,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02443_T0_prospectus,02443,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02443_T1_allotment,02443,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02451_T0_prospectus,02451,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02451_T1_allotment,02451,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02453_T0_prospectus,02453,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02453_T1_allotment,02453,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02460_T0_prospectus,02460,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02460_T1_allotment,02460,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02465_T0_prospectus,02465,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02465_T1_allotment,02465,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02473_T0_prospectus,02473,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02473_T1_allotment,02473,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02476_T0_prospectus,02476,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02476_T1_allotment,02476,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02477_T0_prospectus,02477,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02477_T1_allotment,02477,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02479_T0_prospectus,02479,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02479_T1_allotment,02479,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02481_T0_prospectus,02481,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02481_T1_allotment,02481,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02483_T0_prospectus,02483,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02483_T1_allotment,02483,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02489_T0_prospectus,02489,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02489_T1_allotment,02489,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02490_T0_prospectus,02490,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02490_T1_allotment,02490,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02493_T0_prospectus,02493,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02493_T1_allotment,02493,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02495_T0_prospectus,02495,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02495_T1_allotment,02495,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02496_T0_prospectus,02496,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02496_T1_allotment,02496,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02497_T0_prospectus,02497,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02497_T1_allotment,02497,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02498_T0_prospectus,02498,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02498_T1_allotment,02498,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02499_T0_prospectus,02499,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02499_T1_allotment,02499,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02501_T0_prospectus,02501,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02501_T1_allotment,02501,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02502_T0_prospectus,02502,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02502_T1_allotment,02502,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02503_T0_prospectus,02503,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02503_T1_allotment,02503,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02505_T0_prospectus,02505,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02505_T1_allotment,02505,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02506_T0_prospectus,02506,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02506_T1_allotment,02506,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02507_T0_prospectus,02507,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02507_T1_allotment,02507,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02508_T0_prospectus,02508,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02508_T1_allotment,02508,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02509_T0_prospectus,02509,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02509_T1_allotment,02509,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02510_T0_prospectus,02510,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02510_T1_allotment,02510,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02511_T0_prospectus,02511,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02511_T1_allotment,02511,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02512_T0_prospectus,02512,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02512_T1_allotment,02512,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02513_T0_prospectus,02513,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02513_T1_allotment,02513,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02515_T0_prospectus,02515,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02515_T1_allotment,02515,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02516_T0_prospectus,02516,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02516_T1_allotment,02516,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02517_T0_prospectus,02517,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02517_T1_allotment,02517,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02519_T0_prospectus,02519,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02519_T1_allotment,02519,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02520_T0_prospectus,02520,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02520_T1_allotment,02520,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02521_T0_prospectus,02521,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02521_T1_allotment,02521,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02522_T0_prospectus,02522,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02522_T1_allotment,02522,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02525_T0_prospectus,02525,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02525_T1_allotment,02525,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02526_T0_prospectus,02526,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02526_T1_allotment,02526,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02529_T0_prospectus,02529,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02529_T1_allotment,02529,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02530_T0_prospectus,02530,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02530_T1_allotment,02530,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02531_T0_prospectus,02531,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02531_T1_allotment,02531,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02533_T0_prospectus,02533,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02533_T1_allotment,02533,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02535_T0_prospectus,02535,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02535_T1_allotment,02535,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02536_T0_prospectus,02536,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02536_T1_allotment,02536,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02539_T0_prospectus,02539,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02539_T1_allotment,02539,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02540_T0_prospectus,02540,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02540_T1_allotment,02540,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02543_T0_prospectus,02543,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02543_T1_allotment,02543,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02545_T0_prospectus,02545,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02545_T1_allotment,02545,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02546_T0_prospectus,02546,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02546_T1_allotment,02546,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02549_T0_prospectus,02549,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02549_T1_allotment,02549,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02550_T0_prospectus,02550,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02550_T1_allotment,02550,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02551_T0_prospectus,02551,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02551_T1_allotment,02551,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02555_T0_prospectus,02555,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02555_T1_allotment,02555,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02556_T0_prospectus,02556,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02556_T1_allotment,02556,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02559_T0_prospectus,02559,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02559_T1_allotment,02559,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02560_T0_prospectus,02560,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02560_T1_allotment,02560,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02561_T0_prospectus,02561,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02561_T1_allotment,02561,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02563_T0_prospectus,02563,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02563_T1_allotment,02563,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02565_T0_prospectus,02565,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02565_T1_allotment,02565,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02566_T0_prospectus,02566,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02566_T1_allotment,02566,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02567_T0_prospectus,02567,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02567_T1_allotment,02567,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02569_T0_prospectus,02569,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02569_T1_allotment,02569,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02570_T0_prospectus,02570,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02570_T1_allotment,02570,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02571_T0_prospectus,02571,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02571_T1_allotment,02571,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02573_T0_prospectus,02573,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02573_T1_allotment,02573,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02575_T0_prospectus,02575,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02575_T1_allotment,02575,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02576_T0_prospectus,02576,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02576_T1_allotment,02576,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02577_T0_prospectus,02577,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02577_T1_allotment,02577,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02579_T0_prospectus,02579,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02579_T1_allotment,02579,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02580_T0_prospectus,02580,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02580_T1_allotment,02580,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02581_T0_prospectus,02581,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02581_T1_allotment,02581,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02582_T0_prospectus,02582,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02582_T1_allotment,02582,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02583_T0_prospectus,02583,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02583_T1_allotment,02583,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02585_T0_prospectus,02585,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02585_T1_allotment,02585,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02586_T0_prospectus,02586,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02586_T1_allotment,02586,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02587_T0_prospectus,02587,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02587_T1_allotment,02587,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02589_T0_prospectus,02589,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02589_T1_allotment,02589,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02590_T0_prospectus,02590,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02590_T1_allotment,02590,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02591_T0_prospectus,02591,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02591_T1_allotment,02591,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02592_T0_prospectus,02592,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02592_T1_allotment,02592,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02593_T0_prospectus,02593,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02593_T1_allotment,02593,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02595_T0_prospectus,02595,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02595_T1_allotment,02595,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02596_T0_prospectus,02596,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02596_T1_allotment,02596,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02597_T0_prospectus,02597,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02597_T1_allotment,02597,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02598_T0_prospectus,02598,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02598_T1_allotment,02598,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02603_T0_prospectus,02603,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02603_T1_allotment,02603,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02605_T0_prospectus,02605,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02605_T1_allotment,02605,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02609_T0_prospectus,02609,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02609_T1_allotment,02609,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02610_T0_prospectus,02610,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02610_T1_allotment,02610,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02613_T0_prospectus,02613,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02613_T1_allotment,02613,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02617_T0_prospectus,02617,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02617_T1_allotment,02617,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02619_T0_prospectus,02619,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02619_T1_allotment,02619,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02621_T0_prospectus,02621,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02621_T1_allotment,02621,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02625_T0_prospectus,02625,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02625_T1_allotment,02625,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02627_T0_prospectus,02627,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02627_T1_allotment,02627,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02629_T0_prospectus,02629,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02629_T1_allotment,02629,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02630_T0_prospectus,02630,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02630_T1_allotment,02630,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02631_T0_prospectus,02631,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02631_T1_allotment,02631,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02632_T0_prospectus,02632,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02632_T1_allotment,02632,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02635_T0_prospectus,02635,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02635_T1_allotment,02635,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02637_T0_prospectus,02637,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02637_T1_allotment,02637,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02643_T0_prospectus,02643,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02643_T1_allotment,02643,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02648_T0_prospectus,02648,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02648_T1_allotment,02648,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02649_T0_prospectus,02649,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02649_T1_allotment,02649,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02650_T0_prospectus,02650,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02650_T1_allotment,02650,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02651_T0_prospectus,02651,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02651_T1_allotment,02651,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02652_T0_prospectus,02652,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02652_T1_allotment,02652,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02655_T0_prospectus,02655,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02655_T1_allotment,02655,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02656_T0_prospectus,02656,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02656_T1_allotment,02656,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02657_T0_prospectus,02657,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02657_T1_allotment,02657,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02658_T0_prospectus,02658,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02658_T1_allotment,02658,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02659_T0_prospectus,02659,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02659_T1_allotment,02659,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02661_T0_prospectus,02661,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02661_T1_allotment,02661,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02670_T0_prospectus,02670,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02670_T1_allotment,02670,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02671_T0_prospectus,02671,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02671_T1_allotment,02671,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02675_T0_prospectus,02675,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02675_T1_allotment,02675,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02676_T0_prospectus,02676,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02676_T1_allotment,02676,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02677_T0_prospectus,02677,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02677_T1_allotment,02677,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02685_T0_prospectus,02685,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02685_T1_allotment,02685,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02687_T0_prospectus,02687,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02687_T1_allotment,02687,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02691_T0_prospectus,02691,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02691_T1_allotment,02691,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02692_T0_prospectus,02692,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02692_T1_allotment,02692,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02693_T0_prospectus,02693,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02693_T1_allotment,02693,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02695_T0_prospectus,02695,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02695_T1_allotment,02695,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02698_T0_prospectus,02698,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02698_T1_allotment,02698,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02701_T0_prospectus,02701,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02701_T1_allotment,02701,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02706_T0_prospectus,02706,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02706_T1_allotment,02706,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02714_T0_prospectus,02714,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02714_T1_allotment,02714,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02715_T0_prospectus,02715,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02715_T1_allotment,02715,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02718_T0_prospectus,02718,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02718_T1_allotment,02718,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02720_T0_prospectus,02720,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02720_T1_allotment,02720,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02723_T0_prospectus,02723,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02723_T1_allotment,02723,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02726_T0_prospectus,02726,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02726_T1_allotment,02726,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02729_T0_prospectus,02729,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02729_T1_allotment,02729,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02768_T0_prospectus,02768,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02768_T1_allotment,02768,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02788_T0_prospectus,02788,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02788_T1_allotment,02788,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02865_T0_prospectus,02865,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02865_T1_allotment,02865,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02881_T0_prospectus,02881,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02881_T1_allotment,02881,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02889_T0_prospectus,02889,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02889_T1_allotment,02889,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02898_T0_prospectus,02898,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02898_T1_allotment,02898,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03200_T0_prospectus,03200,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03200_T1_allotment,03200,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03268_T0_prospectus,03268,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03268_T1_allotment,03268,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03277_T0_prospectus,03277,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03277_T1_allotment,03277,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03288_T0_prospectus,03288,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03288_T1_allotment,03288,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03296_T0_prospectus,03296,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03296_T1_allotment,03296,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03310_T0_prospectus,03310,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03310_T1_allotment,03310,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03317_T0_prospectus,03317,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03317_T1_allotment,03317,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03355_T0_prospectus,03355,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03355_T1_allotment,03355,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03378_T0_prospectus,03378,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03378_T1_allotment,03378,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03625_T0_prospectus,03625,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03625_T1_allotment,03625,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03636_T0_prospectus,03636,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03636_T1_allotment,03636,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03650_T0_prospectus,03650,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03650_T1_allotment,03650,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03677_T0_prospectus,03677,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03677_T1_allotment,03677,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03696_T0_prospectus,03696,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03696_T1_allotment,03696,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03750_T0_prospectus,03750,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03750_T1_allotment,03750,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03858_T0_prospectus,03858,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03858_T1_allotment,03858,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03880_T0_prospectus,03880,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03880_T1_allotment,03880,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03881_T0_prospectus,03881,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03881_T1_allotment,03881,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03887_T0_prospectus,03887,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03887_T1_allotment,03887,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03986_T0_prospectus,03986,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03986_T1_allotment,03986,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06031_T0_prospectus,06031,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06031_T1_allotment,06031,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06082_T0_prospectus,06082,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06082_T1_allotment,06082,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06086_T0_prospectus,06086,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06086_T1_allotment,06086,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06090_T0_prospectus,06090,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06090_T1_allotment,06090,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06166_T0_prospectus,06166,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06166_T1_allotment,06166,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06168_T0_prospectus,06168,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06168_T1_allotment,06168,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06181_T0_prospectus,06181,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06181_T1_allotment,06181,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06600_T0_prospectus,06600,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06600_T1_allotment,06600,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06603_T0_prospectus,06603,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06603_T1_allotment,06603,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06613_T0_prospectus,06613,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06613_T1_allotment,06613,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06636_T0_prospectus,06636,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06636_T1_allotment,06636,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06651_T0_prospectus,06651,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06651_T1_allotment,06651,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06656_T0_prospectus,06656,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06656_T1_allotment,06656,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06657_T0_prospectus,06657,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06657_T1_allotment,06657,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06681_T0_prospectus,06681,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06681_T1_allotment,06681,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06682_T0_prospectus,06682,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06682_T1_allotment,06682,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06683_T0_prospectus,06683,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06683_T1_allotment,06683,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06687_T0_prospectus,06687,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06687_T1_allotment,06687,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06693_T0_prospectus,06693,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06693_T1_allotment,06693,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06809_T0_prospectus,06809,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06809_T1_allotment,06809,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06810_T0_prospectus,06810,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06810_T1_allotment,06810,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06831_T0_prospectus,06831,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06831_T1_allotment,06831,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06871_T0_prospectus,06871,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06871_T1_allotment,06871,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06872_T0_prospectus,06872,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06872_T1_allotment,06872,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06883_T0_prospectus,06883,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06883_T1_allotment,06883,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06911_T0_prospectus,06911,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06911_T1_allotment,06911,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06936_T0_prospectus,06936,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06936_T1_allotment,06936,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06938_T0_prospectus,06938,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06938_T1_allotment,06938,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06959_T0_prospectus,06959,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06959_T1_allotment,06959,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06960_T0_prospectus,06960,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06960_T1_allotment,06960,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06980_T0_prospectus,06980,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06980_T1_allotment,06980,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06990_T0_prospectus,06990,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06990_T1_allotment,06990,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +07618_T0_prospectus,07618,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +07618_T1_allotment,07618,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +07630_T0_prospectus,07630,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +07630_T1_allotment,07630,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +07666_T0_prospectus,07666,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +07666_T1_allotment,07666,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +07688_T0_prospectus,07688,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +07688_T1_allotment,07688,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08529_T0_prospectus,08529,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08529_T1_allotment,08529,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08549_T0_prospectus,08549,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08549_T1_allotment,08549,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08610_T0_prospectus,08610,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08610_T1_allotment,08610,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08629_T0_prospectus,08629,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08629_T1_allotment,08629,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08637_T0_prospectus,08637,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08637_T1_allotment,08637,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09606_T0_prospectus,09606,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09606_T1_allotment,09606,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09609_T0_prospectus,09609,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09609_T1_allotment,09609,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09611_T0_prospectus,09611,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09611_T1_allotment,09611,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09639_T0_prospectus,09639,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09639_T1_allotment,09639,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09660_T0_prospectus,09660,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09660_T1_allotment,09660,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09663_T0_prospectus,09663,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09663_T1_allotment,09663,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09676_T0_prospectus,09676,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09676_T1_allotment,09676,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09678_T0_prospectus,09678,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09678_T1_allotment,09678,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09680_T0_prospectus,09680,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09680_T1_allotment,09680,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09686_T0_prospectus,09686,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09686_T1_allotment,09686,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09690_T0_prospectus,09690,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09690_T1_allotment,09690,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09860_T0_prospectus,09860,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09860_T1_allotment,09860,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09879_T0_prospectus,09879,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09879_T1_allotment,09879,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09880_T0_prospectus,09880,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09880_T1_allotment,09880,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09881_T0_prospectus,09881,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09881_T1_allotment,09881,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09885_T0_prospectus,09885,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09885_T1_allotment,09885,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09887_T0_prospectus,09887,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09887_T1_allotment,09887,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09890_T0_prospectus,09890,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09890_T1_allotment,09890,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09903_T0_prospectus,09903,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09903_T1_allotment,09903,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09927_T0_prospectus,09927,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09927_T1_allotment,09927,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09973_T0_prospectus,09973,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09973_T1_allotment,09973,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09980_T0_prospectus,09980,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09980_T1_allotment,09980,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09981_T0_prospectus,09981,T0_prospectus,archive_prospectus_and_terms,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09981_T1_allotment,09981,T1_allotment,archive_allotment_results,open,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09885_D1,09885,D1,archive_price_performance,open,2023-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09885_T2_grey_market,09885,T2_grey_market,archive_grey_market_result,open,2023-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02105_D1,02105,D1,archive_price_performance,open,2023-06-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02105_T2_grey_market,02105,T2_grey_market,archive_grey_market_result,open,2023-06-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09860_D1,09860,D1,archive_price_performance,open,2023-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09860_T2_grey_market,09860,T2_grey_market,archive_grey_market_result,open,2023-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09885_D5,09885,D5,archive_price_performance,open,2023-07-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02105_D5,02105,D5,archive_price_performance,open,2023-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09860_D5,09860,D5,archive_price_performance,open,2023-07-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02481_D1,02481,D1,archive_price_performance,open,2023-07-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02481_T2_grey_market,02481,T2_grey_market,archive_grey_market_result,open,2023-07-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06990_D1,06990,D1,archive_price_performance,open,2023-07-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06990_T2_grey_market,06990,T2_grey_market,archive_grey_market_result,open,2023-07-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03650_D1,03650,D1,archive_price_performance,open,2023-07-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03650_T2_grey_market,03650,T2_grey_market,archive_grey_market_result,open,2023-07-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06683_D1,06683,D1,archive_price_performance,open,2023-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06683_T2_grey_market,06683,T2_grey_market,archive_grey_market_result,open,2023-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02481_D5,02481,D5,archive_price_performance,open,2023-07-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06990_D5,06990,D5,archive_price_performance,open,2023-07-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03650_D5,03650,D5,archive_price_performance,open,2023-07-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01284_D1,01284,D1,archive_price_performance,open,2023-07-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01284_T2_grey_market,01284,T2_grey_market,archive_grey_market_result,open,2023-07-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06683_D5,06683,D5,archive_price_performance,open,2023-07-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09885_D20,09885,D20,archive_price_performance,open,2023-07-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02105_D20,02105,D20,archive_price_performance,open,2023-07-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02271_D1,02271,D1,archive_price_performance,open,2023-07-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02271_T2_grey_market,02271,T2_grey_market,archive_grey_market_result,open,2023-07-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09860_D20,09860,D20,archive_price_performance,open,2023-07-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01284_D5,01284,D5,archive_price_performance,open,2023-07-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02271_D5,02271,D5,archive_price_performance,open,2023-07-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02481_D20,02481,D20,archive_price_performance,open,2023-07-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06990_D20,06990,D20,archive_price_performance,open,2023-07-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03650_D20,03650,D20,archive_price_performance,open,2023-07-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06683_D20,06683,D20,archive_price_performance,open,2023-08-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01284_D20,01284,D20,archive_price_performance,open,2023-08-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02271_D20,02271,D20,archive_price_performance,open,2023-08-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09885_D60,09885,D60,archive_price_performance,open,2023-08-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02105_D60,02105,D60,archive_price_performance,open,2023-08-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09860_D60,09860,D60,archive_price_performance,open,2023-08-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01541_D1,01541,D1,archive_price_performance,open,2023-09-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01541_T2_grey_market,01541,T2_grey_market,archive_grey_market_result,open,2023-09-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02481_D60,02481,D60,archive_price_performance,open,2023-09-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06990_D60,06990,D60,archive_price_performance,open,2023-09-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01541_D5,01541,D5,archive_price_performance,open,2023-09-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03650_D60,03650,D60,archive_price_performance,open,2023-09-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06683_D60,06683,D60,archive_price_performance,open,2023-09-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01284_D60,01284,D60,archive_price_performance,open,2023-09-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02271_D60,02271,D60,archive_price_performance,open,2023-09-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01541_D20,01541,D20,archive_price_performance,open,2023-09-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02490_D1,02490,D1,archive_price_performance,open,2023-09-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02490_T2_grey_market,02490,T2_grey_market,archive_grey_market_result,open,2023-09-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02496_D1,02496,D1,archive_price_performance,open,2023-09-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02496_T2_grey_market,02496,T2_grey_market,archive_grey_market_result,open,2023-09-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09690_D1,09690,D1,archive_price_performance,open,2023-09-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09690_T2_grey_market,09690,T2_grey_market,archive_grey_market_result,open,2023-09-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06682_D1,06682,D1,archive_price_performance,open,2023-09-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06682_T2_grey_market,06682,T2_grey_market,archive_grey_market_result,open,2023-09-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09686_D1,09686,D1,archive_price_performance,open,2023-09-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09686_T2_grey_market,09686,T2_grey_market,archive_grey_market_result,open,2023-09-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09890_D1,09890,D1,archive_price_performance,open,2023-09-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09890_T2_grey_market,09890,T2_grey_market,archive_grey_market_result,open,2023-09-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02490_D5,02490,D5,archive_price_performance,open,2023-09-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02496_D5,02496,D5,archive_price_performance,open,2023-09-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09690_D5,09690,D5,archive_price_performance,open,2023-09-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06682_D5,06682,D5,archive_price_performance,open,2023-10-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09686_D5,09686,D5,archive_price_performance,open,2023-10-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09890_D5,09890,D5,archive_price_performance,open,2023-10-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01973_D1,01973,D1,archive_price_performance,open,2023-10-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01973_T2_grey_market,01973,T2_grey_market,archive_grey_market_result,open,2023-10-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01973_D5,01973,D5,archive_price_performance,open,2023-10-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02501_D1,02501,D1,archive_price_performance,open,2023-10-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02501_T2_grey_market,02501,T2_grey_market,archive_grey_market_result,open,2023-10-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02451_D1,02451,D1,archive_price_performance,open,2023-10-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02451_T2_grey_market,02451,T2_grey_market,archive_grey_market_result,open,2023-10-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09676_D1,09676,D1,archive_price_performance,open,2023-10-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09676_T2_grey_market,09676,T2_grey_market,archive_grey_market_result,open,2023-10-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02490_D20,02490,D20,archive_price_performance,open,2023-10-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02496_D20,02496,D20,archive_price_performance,open,2023-10-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02501_D5,02501,D5,archive_price_performance,open,2023-10-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09690_D20,09690,D20,archive_price_performance,open,2023-10-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02451_D5,02451,D5,archive_price_performance,open,2023-10-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09676_D5,09676,D5,archive_price_performance,open,2023-10-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06682_D20,06682,D20,archive_price_performance,open,2023-10-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09686_D20,09686,D20,archive_price_performance,open,2023-10-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09890_D20,09890,D20,archive_price_performance,open,2023-10-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01973_D20,01973,D20,archive_price_performance,open,2023-10-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01519_D1,01519,D1,archive_price_performance,open,2023-10-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01519_T2_grey_market,01519,T2_grey_market,archive_grey_market_result,open,2023-10-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02501_D20,02501,D20,archive_price_performance,open,2023-10-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01519_D5,01519,D5,archive_price_performance,open,2023-10-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02451_D20,02451,D20,archive_price_performance,open,2023-10-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09676_D20,09676,D20,archive_price_performance,open,2023-10-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02517_D1,02517,D1,archive_price_performance,open,2023-11-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02517_T2_grey_market,02517,T2_grey_market,archive_grey_market_result,open,2023-11-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01541_D60,01541,D60,archive_price_performance,open,2023-11-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02429_D1,02429,D1,archive_price_performance,open,2023-11-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02429_T2_grey_market,02429,T2_grey_market,archive_grey_market_result,open,2023-11-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02517_D5,02517,D5,archive_price_performance,open,2023-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02429_D5,02429,D5,archive_price_performance,open,2023-11-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02473_D1,02473,D1,archive_price_performance,open,2023-11-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02473_T2_grey_market,02473,T2_grey_market,archive_grey_market_result,open,2023-11-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01111_D1,01111,D1,archive_price_performance,open,2023-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01111_T2_grey_market,01111,T2_grey_market,archive_grey_market_result,open,2023-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02499_D1,02499,D1,archive_price_performance,open,2023-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02499_T2_grey_market,02499,T2_grey_market,archive_grey_market_result,open,2023-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02473_D5,02473,D5,archive_price_performance,open,2023-11-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01111_D5,01111,D5,archive_price_performance,open,2023-11-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02499_D5,02499,D5,archive_price_performance,open,2023-11-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01519_D20,01519,D20,archive_price_performance,open,2023-11-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02268_D1,02268,D1,archive_price_performance,open,2023-11-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02268_T2_grey_market,02268,T2_grey_market,archive_grey_market_result,open,2023-11-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02268_D5,02268,D5,archive_price_performance,open,2023-11-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02517_D20,02517,D20,archive_price_performance,open,2023-11-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02429_D20,02429,D20,archive_price_performance,open,2023-11-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02520_D1,02520,D1,archive_price_performance,open,2023-11-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02520_T2_grey_market,02520,T2_grey_market,archive_grey_market_result,open,2023-11-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02490_D60,02490,D60,archive_price_performance,open,2023-11-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02496_D60,02496,D60,archive_price_performance,open,2023-11-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09690_D60,09690,D60,archive_price_performance,open,2023-11-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02520_D5,02520,D5,archive_price_performance,open,2023-11-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06682_D60,06682,D60,archive_price_performance,open,2023-11-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09686_D60,09686,D60,archive_price_performance,open,2023-11-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09890_D60,09890,D60,archive_price_performance,open,2023-11-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02473_D20,02473,D20,archive_price_performance,open,2023-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01111_D20,01111,D20,archive_price_performance,open,2023-11-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02499_D20,02499,D20,archive_price_performance,open,2023-11-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01973_D60,01973,D60,archive_price_performance,open,2023-12-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02483_D1,02483,D1,archive_price_performance,open,2023-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02483_T2_grey_market,02483,T2_grey_market,archive_grey_market_result,open,2023-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02521_D1,02521,D1,archive_price_performance,open,2023-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02521_T2_grey_market,02521,T2_grey_market,archive_grey_market_result,open,2023-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09663_D1,09663,D1,archive_price_performance,open,2023-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09663_T2_grey_market,09663,T2_grey_market,archive_grey_market_result,open,2023-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02268_D20,02268,D20,archive_price_performance,open,2023-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02419_D1,02419,D1,archive_price_performance,open,2023-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02419_T2_grey_market,02419,T2_grey_market,archive_grey_market_result,open,2023-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02483_D5,02483,D5,archive_price_performance,open,2023-12-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02501_D60,02501,D60,archive_price_performance,open,2023-12-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02521_D5,02521,D5,archive_price_performance,open,2023-12-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09663_D5,09663,D5,archive_price_performance,open,2023-12-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02419_D5,02419,D5,archive_price_performance,open,2023-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02451_D60,02451,D60,archive_price_performance,open,2023-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09676_D60,09676,D60,archive_price_performance,open,2023-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02520_D20,02520,D20,archive_price_performance,open,2023-12-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01497_D1,01497,D1,archive_price_performance,open,2023-12-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01497_T2_grey_market,01497,T2_grey_market,archive_grey_market_result,open,2023-12-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01497_D5,01497,D5,archive_price_performance,open,2023-12-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00666_D1,00666,D1,archive_price_performance,open,2023-12-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00666_T2_grey_market,00666,T2_grey_market,archive_grey_market_result,open,2023-12-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01274_D1,01274,D1,archive_price_performance,open,2023-12-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01274_T2_grey_market,01274,T2_grey_market,archive_grey_market_result,open,2023-12-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02502_D1,02502,D1,archive_price_performance,open,2023-12-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02502_T2_grey_market,02502,T2_grey_market,archive_grey_market_result,open,2023-12-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00666_D5,00666,D5,archive_price_performance,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02489_D1,02489,D1,archive_price_performance,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02489_T2_grey_market,02489,T2_grey_market,archive_grey_market_result,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02511_D1,02511,D1,archive_price_performance,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02511_T2_grey_market,02511,T2_grey_market,archive_grey_market_result,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02516_D1,02516,D1,archive_price_performance,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02516_T2_grey_market,02516,T2_grey_market,archive_grey_market_result,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06911_D1,06911,D1,archive_price_performance,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06911_T2_grey_market,06911,T2_grey_market,archive_grey_market_result,open,2023-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01274_D5,01274,D5,archive_price_performance,open,2023-12-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02483_D20,02483,D20,archive_price_performance,open,2023-12-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02502_D5,02502,D5,archive_price_performance,open,2023-12-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02521_D20,02521,D20,archive_price_performance,open,2023-12-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09663_D20,09663,D20,archive_price_performance,open,2023-12-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01519_D60,01519,D60,archive_price_performance,open,2023-12-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02419_D20,02419,D20,archive_price_performance,open,2023-12-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02489_D5,02489,D5,archive_price_performance,open,2023-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02511_D5,02511,D5,archive_price_performance,open,2023-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02516_D5,02516,D5,archive_price_performance,open,2023-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06911_D5,06911,D5,archive_price_performance,open,2023-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02149_D1,02149,D1,archive_price_performance,open,2023-12-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02149_T2_grey_market,02149,T2_grey_market,archive_grey_market_result,open,2023-12-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09880_D1,09880,D1,archive_price_performance,open,2023-12-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09880_T2_grey_market,09880,T2_grey_market,archive_grey_market_result,open,2023-12-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01497_D20,01497,D20,archive_price_performance,open,2023-12-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02517_D60,02517,D60,archive_price_performance,open,2023-12-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02149_D5,02149,D5,archive_price_performance,open,2024-01-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02429_D60,02429,D60,archive_price_performance,open,2024-01-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09880_D5,09880,D5,archive_price_performance,open,2024-01-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02498_D1,02498,D1,archive_price_performance,open,2024-01-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02498_T2_grey_market,02498,T2_grey_market,archive_grey_market_result,open,2024-01-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00666_D20,00666,D20,archive_price_performance,open,2024-01-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02473_D60,02473,D60,archive_price_performance,open,2024-01-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01111_D60,01111,D60,archive_price_performance,open,2024-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01274_D20,01274,D20,archive_price_performance,open,2024-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02499_D60,02499,D60,archive_price_performance,open,2024-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02502_D20,02502,D20,archive_price_performance,open,2024-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02453_D1,02453,D1,archive_price_performance,open,2024-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02453_T2_grey_market,02453,T2_grey_market,archive_grey_market_result,open,2024-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02498_D5,02498,D5,archive_price_performance,open,2024-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02503_D1,02503,D1,archive_price_performance,open,2024-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02503_T2_grey_market,02503,T2_grey_market,archive_grey_market_result,open,2024-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06959_D1,06959,D1,archive_price_performance,open,2024-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06959_T2_grey_market,06959,T2_grey_market,archive_grey_market_result,open,2024-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02489_D20,02489,D20,archive_price_performance,open,2024-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02511_D20,02511,D20,archive_price_performance,open,2024-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02516_D20,02516,D20,archive_price_performance,open,2024-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06911_D20,06911,D20,archive_price_performance,open,2024-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02477_D1,02477,D1,archive_price_performance,open,2024-01-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02477_T2_grey_market,02477,T2_grey_market,archive_grey_market_result,open,2024-01-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02453_D5,02453,D5,archive_price_performance,open,2024-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02503_D5,02503,D5,archive_price_performance,open,2024-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06959_D5,06959,D5,archive_price_performance,open,2024-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02268_D60,02268,D60,archive_price_performance,open,2024-01-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02149_D20,02149,D20,archive_price_performance,open,2024-01-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02477_D5,02477,D5,archive_price_performance,open,2024-01-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09880_D20,09880,D20,archive_price_performance,open,2024-01-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02520_D60,02520,D60,archive_price_performance,open,2024-01-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02498_D20,02498,D20,archive_price_performance,open,2024-01-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02453_D20,02453,D20,archive_price_performance,open,2024-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02503_D20,02503,D20,archive_price_performance,open,2024-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06959_D20,06959,D20,archive_price_performance,open,2024-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02477_D20,02477,D20,archive_price_performance,open,2024-01-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02483_D60,02483,D60,archive_price_performance,open,2024-02-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02521_D60,02521,D60,archive_price_performance,open,2024-02-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09663_D60,09663,D60,archive_price_performance,open,2024-02-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02419_D60,02419,D60,archive_price_performance,open,2024-02-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01497_D60,01497,D60,archive_price_performance,open,2024-02-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00666_D60,00666,D60,archive_price_performance,open,2024-02-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01274_D60,01274,D60,archive_price_performance,open,2024-02-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02502_D60,02502,D60,archive_price_performance,open,2024-02-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02489_D60,02489,D60,archive_price_performance,open,2024-02-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02511_D60,02511,D60,archive_price_performance,open,2024-02-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02516_D60,02516,D60,archive_price_performance,open,2024-02-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06911_D60,06911,D60,archive_price_performance,open,2024-02-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02149_D60,02149,D60,archive_price_performance,open,2024-02-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09880_D60,09880,D60,archive_price_performance,open,2024-02-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02498_D60,02498,D60,archive_price_performance,open,2024-03-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02453_D60,02453,D60,archive_price_performance,open,2024-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02503_D60,02503,D60,archive_price_performance,open,2024-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02535_D1,02535,D1,archive_price_performance,open,2024-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02535_T2_grey_market,02535,T2_grey_market,archive_grey_market_result,open,2024-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02540_D1,02540,D1,archive_price_performance,open,2024-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02540_T2_grey_market,02540,T2_grey_market,archive_grey_market_result,open,2024-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06959_D60,06959,D60,archive_price_performance,open,2024-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02477_D60,02477,D60,archive_price_performance,open,2024-03-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02535_D5,02535,D5,archive_price_performance,open,2024-03-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02540_D5,02540,D5,archive_price_performance,open,2024-03-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02509_D1,02509,D1,archive_price_performance,open,2024-03-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02509_T2_grey_market,02509,T2_grey_market,archive_grey_market_result,open,2024-03-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09879_D1,09879,D1,archive_price_performance,open,2024-03-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09879_T2_grey_market,09879,T2_grey_market,archive_grey_market_result,open,2024-03-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02509_D5,02509,D5,archive_price_performance,open,2024-03-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09879_D5,09879,D5,archive_price_performance,open,2024-03-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02536_D1,02536,D1,archive_price_performance,open,2024-03-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02536_T2_grey_market,02536,T2_grey_market,archive_grey_market_result,open,2024-03-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02535_D20,02535,D20,archive_price_performance,open,2024-03-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02540_D20,02540,D20,archive_price_performance,open,2024-03-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02497_D1,02497,D1,archive_price_performance,open,2024-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02497_T2_grey_market,02497,T2_grey_market,archive_grey_market_result,open,2024-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02598_D1,02598,D1,archive_price_performance,open,2024-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02598_T2_grey_market,02598,T2_grey_market,archive_grey_market_result,open,2024-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02536_D5,02536,D5,archive_price_performance,open,2024-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02497_D5,02497,D5,archive_price_performance,open,2024-04-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02598_D5,02598,D5,archive_price_performance,open,2024-04-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02509_D20,02509,D20,archive_price_performance,open,2024-04-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09879_D20,09879,D20,archive_price_performance,open,2024-04-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02536_D20,02536,D20,archive_price_performance,open,2024-04-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02497_D20,02497,D20,archive_price_performance,open,2024-04-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02598_D20,02598,D20,archive_price_performance,open,2024-04-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02515_D1,02515,D1,archive_price_performance,open,2024-04-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02515_T2_grey_market,02515,T2_grey_market,archive_grey_market_result,open,2024-04-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02555_D1,02555,D1,archive_price_performance,open,2024-04-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02555_T2_grey_market,02555,T2_grey_market,archive_grey_market_result,open,2024-04-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02438_D1,02438,D1,archive_price_performance,open,2024-04-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02438_T2_grey_market,02438,T2_grey_market,archive_grey_market_result,open,2024-04-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02515_D5,02515,D5,archive_price_performance,open,2024-04-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02555_D5,02555,D5,archive_price_performance,open,2024-04-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02438_D5,02438,D5,archive_price_performance,open,2024-04-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02535_D60,02535,D60,archive_price_performance,open,2024-05-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02540_D60,02540,D60,archive_price_performance,open,2024-05-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02515_D20,02515,D20,archive_price_performance,open,2024-05-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02555_D20,02555,D20,archive_price_performance,open,2024-05-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02438_D20,02438,D20,archive_price_performance,open,2024-05-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02556_D1,02556,D1,archive_price_performance,open,2024-05-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02556_T2_grey_market,02556,T2_grey_market,archive_grey_market_result,open,2024-05-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02529_D1,02529,D1,archive_price_performance,open,2024-05-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02529_T2_grey_market,02529,T2_grey_market,archive_grey_market_result,open,2024-05-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02509_D60,02509,D60,archive_price_performance,open,2024-05-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09879_D60,09879,D60,archive_price_performance,open,2024-05-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02556_D5,02556,D5,archive_price_performance,open,2024-05-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02529_D5,02529,D5,archive_price_performance,open,2024-05-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02536_D60,02536,D60,archive_price_performance,open,2024-05-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02898_D1,02898,D1,archive_price_performance,open,2024-05-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02898_T2_grey_market,02898,T2_grey_market,archive_grey_market_result,open,2024-05-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02497_D60,02497,D60,archive_price_performance,open,2024-05-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02598_D60,02598,D60,archive_price_performance,open,2024-05-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00917_D1,00917,D1,archive_price_performance,open,2024-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00917_T2_grey_market,00917,T2_grey_market,archive_grey_market_result,open,2024-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02505_D1,02505,D1,archive_price_performance,open,2024-05-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02505_T2_grey_market,02505,T2_grey_market,archive_grey_market_result,open,2024-05-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02898_D5,02898,D5,archive_price_performance,open,2024-05-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00917_D5,00917,D5,archive_price_performance,open,2024-05-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02443_D1,02443,D1,archive_price_performance,open,2024-05-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02443_T2_grey_market,02443,T2_grey_market,archive_grey_market_result,open,2024-05-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02505_D5,02505,D5,archive_price_performance,open,2024-06-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08529_D1,08529,D1,archive_price_performance,open,2024-06-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08529_T2_grey_market,08529,T2_grey_market,archive_grey_market_result,open,2024-06-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02443_D5,02443,D5,archive_price_performance,open,2024-06-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02556_D20,02556,D20,archive_price_performance,open,2024-06-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02529_D20,02529,D20,archive_price_performance,open,2024-06-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02522_D1,02522,D1,archive_price_performance,open,2024-06-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02522_T2_grey_market,02522,T2_grey_market,archive_grey_market_result,open,2024-06-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02550_D1,02550,D1,archive_price_performance,open,2024-06-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02550_T2_grey_market,02550,T2_grey_market,archive_grey_market_result,open,2024-06-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08529_D5,08529,D5,archive_price_performance,open,2024-06-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02522_D5,02522,D5,archive_price_performance,open,2024-06-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02550_D5,02550,D5,archive_price_performance,open,2024-06-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02898_D20,02898,D20,archive_price_performance,open,2024-06-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02228_D1,02228,D1,archive_price_performance,open,2024-06-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02228_T2_grey_market,02228,T2_grey_market,archive_grey_market_result,open,2024-06-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02512_D1,02512,D1,archive_price_performance,open,2024-06-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02512_T2_grey_market,02512,T2_grey_market,archive_grey_market_result,open,2024-06-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00917_D20,00917,D20,archive_price_performance,open,2024-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02505_D20,02505,D20,archive_price_performance,open,2024-06-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02228_D5,02228,D5,archive_price_performance,open,2024-06-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02512_D5,02512,D5,archive_price_performance,open,2024-06-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02881_D1,02881,D1,archive_price_performance,open,2024-06-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02881_T2_grey_market,02881,T2_grey_market,archive_grey_market_result,open,2024-06-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02443_D20,02443,D20,archive_price_performance,open,2024-06-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02515_D60,02515,D60,archive_price_performance,open,2024-06-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02555_D60,02555,D60,archive_price_performance,open,2024-06-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02438_D60,02438,D60,archive_price_performance,open,2024-06-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02881_D5,02881,D5,archive_price_performance,open,2024-06-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08529_D20,08529,D20,archive_price_performance,open,2024-06-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02522_D20,02522,D20,archive_price_performance,open,2024-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02550_D20,02550,D20,archive_price_performance,open,2024-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02479_D1,02479,D1,archive_price_performance,open,2024-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02479_T2_grey_market,02479,T2_grey_market,archive_grey_market_result,open,2024-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02559_D1,02559,D1,archive_price_performance,open,2024-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02559_T2_grey_market,02559,T2_grey_market,archive_grey_market_result,open,2024-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06181_D1,06181,D1,archive_price_performance,open,2024-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06181_T2_grey_market,06181,T2_grey_market,archive_grey_market_result,open,2024-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02228_D20,02228,D20,archive_price_performance,open,2024-07-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02479_D5,02479,D5,archive_price_performance,open,2024-07-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02559_D5,02559,D5,archive_price_performance,open,2024-07-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06181_D5,06181,D5,archive_price_performance,open,2024-07-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08637_D1,08637,D1,archive_price_performance,open,2024-07-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08637_T2_grey_market,08637,T2_grey_market,archive_grey_market_result,open,2024-07-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01354_D1,01354,D1,archive_price_performance,open,2024-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01354_T2_grey_market,01354,T2_grey_market,archive_grey_market_result,open,2024-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02512_D20,02512,D20,archive_price_performance,open,2024-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02545_D1,02545,D1,archive_price_performance,open,2024-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02545_T2_grey_market,02545,T2_grey_market,archive_grey_market_result,open,2024-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08637_D5,08637,D5,archive_price_performance,open,2024-07-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01354_D5,01354,D5,archive_price_performance,open,2024-07-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02545_D5,02545,D5,archive_price_performance,open,2024-07-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02881_D20,02881,D20,archive_price_performance,open,2024-07-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06086_D1,06086,D1,archive_price_performance,open,2024-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06086_T2_grey_market,06086,T2_grey_market,archive_grey_market_result,open,2024-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06657_D1,06657,D1,archive_price_performance,open,2024-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06657_T2_grey_market,06657,T2_grey_market,archive_grey_market_result,open,2024-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01334_D1,01334,D1,archive_price_performance,open,2024-07-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01334_T2_grey_market,01334,T2_grey_market,archive_grey_market_result,open,2024-07-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02495_D1,02495,D1,archive_price_performance,open,2024-07-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02495_T2_grey_market,02495,T2_grey_market,archive_grey_market_result,open,2024-07-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09680_D1,09680,D1,archive_price_performance,open,2024-07-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09680_T2_grey_market,09680,T2_grey_market,archive_grey_market_result,open,2024-07-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02507_D1,02507,D1,archive_price_performance,open,2024-07-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02507_T2_grey_market,02507,T2_grey_market,archive_grey_market_result,open,2024-07-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06086_D5,06086,D5,archive_price_performance,open,2024-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06657_D5,06657,D5,archive_price_performance,open,2024-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01334_D5,01334,D5,archive_price_performance,open,2024-07-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02495_D5,02495,D5,archive_price_performance,open,2024-07-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02556_D60,02556,D60,archive_price_performance,open,2024-07-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09680_D5,09680,D5,archive_price_performance,open,2024-07-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02529_D60,02529,D60,archive_price_performance,open,2024-07-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02531_D1,02531,D1,archive_price_performance,open,2024-07-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02531_T2_grey_market,02531,T2_grey_market,archive_grey_market_result,open,2024-07-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02507_D5,02507,D5,archive_price_performance,open,2024-07-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02479_D20,02479,D20,archive_price_performance,open,2024-07-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02559_D20,02559,D20,archive_price_performance,open,2024-07-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06181_D20,06181,D20,archive_price_performance,open,2024-07-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02531_D5,02531,D5,archive_price_performance,open,2024-07-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08637_D20,08637,D20,archive_price_performance,open,2024-07-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01354_D20,01354,D20,archive_price_performance,open,2024-07-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02545_D20,02545,D20,archive_price_performance,open,2024-07-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02898_D60,02898,D60,archive_price_performance,open,2024-07-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00917_D60,00917,D60,archive_price_performance,open,2024-07-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02505_D60,02505,D60,archive_price_performance,open,2024-07-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06086_D20,06086,D20,archive_price_performance,open,2024-07-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06657_D20,06657,D20,archive_price_performance,open,2024-07-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01334_D20,01334,D20,archive_price_performance,open,2024-07-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02443_D60,02443,D60,archive_price_performance,open,2024-07-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02495_D20,02495,D20,archive_price_performance,open,2024-07-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09680_D20,09680,D20,archive_price_performance,open,2024-07-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02507_D20,02507,D20,archive_price_performance,open,2024-07-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08529_D60,08529,D60,archive_price_performance,open,2024-08-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02531_D20,02531,D20,archive_price_performance,open,2024-08-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02522_D60,02522,D60,archive_price_performance,open,2024-08-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02550_D60,02550,D60,archive_price_performance,open,2024-08-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01471_D1,01471,D1,archive_price_performance,open,2024-08-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01471_T2_grey_market,01471,T2_grey_market,archive_grey_market_result,open,2024-08-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02533_D1,02533,D1,archive_price_performance,open,2024-08-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02533_T2_grey_market,02533,T2_grey_market,archive_grey_market_result,open,2024-08-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01471_D5,01471,D5,archive_price_performance,open,2024-08-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02228_D60,02228,D60,archive_price_performance,open,2024-08-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02512_D60,02512,D60,archive_price_performance,open,2024-08-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02533_D5,02533,D5,archive_price_performance,open,2024-08-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02881_D60,02881,D60,archive_price_performance,open,2024-08-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02410_D1,02410,D1,archive_price_performance,open,2024-08-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02410_T2_grey_market,02410,T2_grey_market,archive_grey_market_result,open,2024-08-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02410_D5,02410,D5,archive_price_performance,open,2024-08-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01471_D20,01471,D20,archive_price_performance,open,2024-08-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02479_D60,02479,D60,archive_price_performance,open,2024-08-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02559_D60,02559,D60,archive_price_performance,open,2024-08-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06181_D60,06181,D60,archive_price_performance,open,2024-08-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02533_D20,02533,D20,archive_price_performance,open,2024-08-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08637_D60,08637,D60,archive_price_performance,open,2024-08-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01354_D60,01354,D60,archive_price_performance,open,2024-08-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02545_D60,02545,D60,archive_price_performance,open,2024-08-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06086_D60,06086,D60,archive_price_performance,open,2024-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06657_D60,06657,D60,archive_price_performance,open,2024-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08629_D1,08629,D1,archive_price_performance,open,2024-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08629_T2_grey_market,08629,T2_grey_market,archive_grey_market_result,open,2024-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01334_D60,01334,D60,archive_price_performance,open,2024-09-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02495_D60,02495,D60,archive_price_performance,open,2024-09-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09680_D60,09680,D60,archive_price_performance,open,2024-09-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02410_D20,02410,D20,archive_price_performance,open,2024-09-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02507_D60,02507,D60,archive_price_performance,open,2024-09-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08629_D5,08629,D5,archive_price_performance,open,2024-09-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02531_D60,02531,D60,archive_price_performance,open,2024-09-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00300_D1,00300,D1,archive_price_performance,open,2024-09-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00300_T2_grey_market,00300,T2_grey_market,archive_grey_market_result,open,2024-09-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00300_D5,00300,D5,archive_price_performance,open,2024-09-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08629_D20,08629,D20,archive_price_performance,open,2024-09-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02549_D1,02549,D1,archive_price_performance,open,2024-10-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02549_T2_grey_market,02549,T2_grey_market,archive_grey_market_result,open,2024-10-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01471_D60,01471,D60,archive_price_performance,open,2024-10-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00300_D20,00300,D20,archive_price_performance,open,2024-10-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02533_D60,02533,D60,archive_price_performance,open,2024-10-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02549_D5,02549,D5,archive_price_performance,open,2024-10-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02576_D1,02576,D1,archive_price_performance,open,2024-10-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02576_T2_grey_market,02576,T2_grey_market,archive_grey_market_result,open,2024-10-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09639_D1,09639,D1,archive_price_performance,open,2024-10-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09639_T2_grey_market,09639,T2_grey_market,archive_grey_market_result,open,2024-10-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02576_D5,02576,D5,archive_price_performance,open,2024-10-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09639_D5,09639,D5,archive_price_performance,open,2024-10-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02567_D1,02567,D1,archive_price_performance,open,2024-10-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02567_T2_grey_market,02567,T2_grey_market,archive_grey_market_result,open,2024-10-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02410_D60,02410,D60,archive_price_performance,open,2024-10-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02567_D5,02567,D5,archive_price_performance,open,2024-10-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02549_D20,02549,D20,archive_price_performance,open,2024-10-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02460_D1,02460,D1,archive_price_performance,open,2024-10-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02460_T2_grey_market,02460,T2_grey_market,archive_grey_market_result,open,2024-10-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09660_D1,09660,D1,archive_price_performance,open,2024-10-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09660_T2_grey_market,09660,T2_grey_market,archive_grey_market_result,open,2024-10-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02460_D5,02460,D5,archive_price_performance,open,2024-10-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02576_D20,02576,D20,archive_price_performance,open,2024-10-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09639_D20,09639,D20,archive_price_performance,open,2024-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09660_D5,09660,D5,archive_price_performance,open,2024-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02465_D1,02465,D1,archive_price_performance,open,2024-10-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02465_T2_grey_market,02465,T2_grey_market,archive_grey_market_result,open,2024-10-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02563_D1,02563,D1,archive_price_performance,open,2024-10-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02563_T2_grey_market,02563,T2_grey_market,archive_grey_market_result,open,2024-10-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02510_D1,02510,D1,archive_price_performance,open,2024-11-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02510_T2_grey_market,02510,T2_grey_market,archive_grey_market_result,open,2024-11-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02465_D5,02465,D5,archive_price_performance,open,2024-11-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02563_D5,02563,D5,archive_price_performance,open,2024-11-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02567_D20,02567,D20,archive_price_performance,open,2024-11-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08629_D60,08629,D60,archive_price_performance,open,2024-11-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02510_D5,02510,D5,archive_price_performance,open,2024-11-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02519_D1,02519,D1,archive_price_performance,open,2024-11-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02519_T2_grey_market,02519,T2_grey_market,archive_grey_market_result,open,2024-11-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02551_D1,02551,D1,archive_price_performance,open,2024-11-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02551_T2_grey_market,02551,T2_grey_market,archive_grey_market_result,open,2024-11-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02460_D20,02460,D20,archive_price_performance,open,2024-11-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02519_D5,02519,D5,archive_price_performance,open,2024-11-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02551_D5,02551,D5,archive_price_performance,open,2024-11-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09660_D20,09660,D20,archive_price_performance,open,2024-11-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00300_D60,00300,D60,archive_price_performance,open,2024-11-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02582_D1,02582,D1,archive_price_performance,open,2024-11-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02582_T2_grey_market,02582,T2_grey_market,archive_grey_market_result,open,2024-11-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02465_D20,02465,D20,archive_price_performance,open,2024-11-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02563_D20,02563,D20,archive_price_performance,open,2024-11-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02582_D5,02582,D5,archive_price_performance,open,2024-11-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02510_D20,02510,D20,archive_price_performance,open,2024-11-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02519_D20,02519,D20,archive_price_performance,open,2024-11-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02551_D20,02551,D20,archive_price_performance,open,2024-11-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06936_D1,06936,D1,archive_price_performance,open,2024-11-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06936_T2_grey_market,06936,T2_grey_market,archive_grey_market_result,open,2024-11-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02566_D1,02566,D1,archive_price_performance,open,2024-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02566_T2_grey_market,02566,T2_grey_market,archive_grey_market_result,open,2024-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02585_D1,02585,D1,archive_price_performance,open,2024-11-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02585_T2_grey_market,02585,T2_grey_market,archive_grey_market_result,open,2024-11-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02549_D60,02549,D60,archive_price_performance,open,2024-11-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06936_D5,06936,D5,archive_price_performance,open,2024-12-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02566_D5,02566,D5,archive_price_performance,open,2024-12-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02585_D5,02585,D5,archive_price_performance,open,2024-12-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02582_D20,02582,D20,archive_price_performance,open,2024-12-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02570_D1,02570,D1,archive_price_performance,open,2024-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02570_T2_grey_market,02570,T2_grey_market,archive_grey_market_result,open,2024-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02576_D60,02576,D60,archive_price_performance,open,2024-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02586_D1,02586,D1,archive_price_performance,open,2024-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02586_T2_grey_market,02586,T2_grey_market,archive_grey_market_result,open,2024-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09639_D60,09639,D60,archive_price_performance,open,2024-12-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01318_D1,01318,D1,archive_price_performance,open,2024-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01318_T2_grey_market,01318,T2_grey_market,archive_grey_market_result,open,2024-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02570_D5,02570,D5,archive_price_performance,open,2024-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02586_D5,02586,D5,archive_price_performance,open,2024-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01318_D5,01318,D5,archive_price_performance,open,2024-12-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02567_D60,02567,D60,archive_price_performance,open,2024-12-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06936_D20,06936,D20,archive_price_performance,open,2024-12-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02566_D20,02566,D20,archive_price_performance,open,2024-12-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02585_D20,02585,D20,archive_price_performance,open,2024-12-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02593_D1,02593,D1,archive_price_performance,open,2024-12-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02593_T2_grey_market,02593,T2_grey_market,archive_grey_market_result,open,2024-12-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00999_D1,00999,D1,archive_price_performance,open,2024-12-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00999_T2_grey_market,00999,T2_grey_market,archive_grey_market_result,open,2024-12-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02460_D60,02460,D60,archive_price_performance,open,2024-12-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09660_D60,09660,D60,archive_price_performance,open,2024-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02432_D1,02432,D1,archive_price_performance,open,2024-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02432_T2_grey_market,02432,T2_grey_market,archive_grey_market_result,open,2024-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02593_D5,02593,D5,archive_price_performance,open,2024-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00999_D5,00999,D5,archive_price_performance,open,2024-12-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02570_D20,02570,D20,archive_price_performance,open,2024-12-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02586_D20,02586,D20,archive_price_performance,open,2024-12-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02431_D1,02431,D1,archive_price_performance,open,2024-12-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02431_T2_grey_market,02431,T2_grey_market,archive_grey_market_result,open,2024-12-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02432_D5,02432,D5,archive_price_performance,open,2024-12-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02465_D60,02465,D60,archive_price_performance,open,2024-12-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01318_D20,01318,D20,archive_price_performance,open,2024-12-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02563_D60,02563,D60,archive_price_performance,open,2024-12-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02506_D1,02506,D1,archive_price_performance,open,2024-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02506_T2_grey_market,02506,T2_grey_market,archive_grey_market_result,open,2024-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02510_D60,02510,D60,archive_price_performance,open,2024-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02577_D1,02577,D1,archive_price_performance,open,2024-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02577_T2_grey_market,02577,T2_grey_market,archive_grey_market_result,open,2024-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02587_D1,02587,D1,archive_price_performance,open,2024-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02587_T2_grey_market,02587,T2_grey_market,archive_grey_market_result,open,2024-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02431_D5,02431,D5,archive_price_performance,open,2024-12-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02506_D5,02506,D5,archive_price_performance,open,2025-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02577_D5,02577,D5,archive_price_performance,open,2025-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02587_D5,02587,D5,archive_price_performance,open,2025-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02519_D60,02519,D60,archive_price_performance,open,2025-01-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02551_D60,02551,D60,archive_price_performance,open,2025-01-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02593_D20,02593,D20,archive_price_performance,open,2025-01-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00999_D20,00999,D20,archive_price_performance,open,2025-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06681_D1,06681,D1,archive_price_performance,open,2025-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06681_T2_grey_market,06681,T2_grey_market,archive_grey_market_result,open,2025-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02560_D1,02560,D1,archive_price_performance,open,2025-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02560_T2_grey_market,02560,T2_grey_market,archive_grey_market_result,open,2025-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02613_D1,02613,D1,archive_price_performance,open,2025-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02613_T2_grey_market,02613,T2_grey_market,archive_grey_market_result,open,2025-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00325_D1,00325,D1,archive_price_performance,open,2025-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00325_T2_grey_market,00325,T2_grey_market,archive_grey_market_result,open,2025-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02530_D1,02530,D1,archive_price_performance,open,2025-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02530_T2_grey_market,02530,T2_grey_market,archive_grey_market_result,open,2025-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02432_D20,02432,D20,archive_price_performance,open,2025-01-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06681_D5,06681,D5,archive_price_performance,open,2025-01-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00805_D1,00805,D1,archive_price_performance,open,2025-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00805_T2_grey_market,00805,T2_grey_market,archive_grey_market_result,open,2025-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02560_D5,02560,D5,archive_price_performance,open,2025-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02582_D60,02582,D60,archive_price_performance,open,2025-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02596_D1,02596,D1,archive_price_performance,open,2025-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02596_T2_grey_market,02596,T2_grey_market,archive_grey_market_result,open,2025-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02613_D5,02613,D5,archive_price_performance,open,2025-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00325_D5,00325,D5,archive_price_performance,open,2025-01-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02530_D5,02530,D5,archive_price_performance,open,2025-01-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02431_D20,02431,D20,archive_price_performance,open,2025-01-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02571_D1,02571,D1,archive_price_performance,open,2025-01-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02571_T2_grey_market,02571,T2_grey_market,archive_grey_market_result,open,2025-01-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00805_D5,00805,D5,archive_price_performance,open,2025-01-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02596_D5,02596,D5,archive_price_performance,open,2025-01-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02506_D20,02506,D20,archive_price_performance,open,2025-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02577_D20,02577,D20,archive_price_performance,open,2025-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02587_D20,02587,D20,archive_price_performance,open,2025-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02571_D5,02571,D5,archive_price_performance,open,2025-01-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06936_D60,06936,D60,archive_price_performance,open,2025-01-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02566_D60,02566,D60,archive_price_performance,open,2025-01-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02585_D60,02585,D60,archive_price_performance,open,2025-01-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06681_D20,06681,D20,archive_price_performance,open,2025-01-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02560_D20,02560,D20,archive_price_performance,open,2025-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02613_D20,02613,D20,archive_price_performance,open,2025-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00325_D20,00325,D20,archive_price_performance,open,2025-01-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02530_D20,02530,D20,archive_price_performance,open,2025-01-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00805_D20,00805,D20,archive_price_performance,open,2025-02-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02596_D20,02596,D20,archive_price_performance,open,2025-02-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02570_D60,02570,D60,archive_price_performance,open,2025-02-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02571_D20,02571,D20,archive_price_performance,open,2025-02-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02586_D60,02586,D60,archive_price_performance,open,2025-02-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01318_D60,01318,D60,archive_price_performance,open,2025-02-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01364_D1,01364,D1,archive_price_performance,open,2025-02-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01364_T2_grey_market,01364,T2_grey_market,archive_grey_market_result,open,2025-02-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01364_D5,01364,D5,archive_price_performance,open,2025-02-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02593_D60,02593,D60,archive_price_performance,open,2025-02-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00999_D60,00999,D60,archive_price_performance,open,2025-02-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02432_D60,02432,D60,archive_price_performance,open,2025-02-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02431_D60,02431,D60,archive_price_performance,open,2025-02-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02506_D60,02506,D60,archive_price_performance,open,2025-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02577_D60,02577,D60,archive_price_performance,open,2025-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02587_D60,02587,D60,archive_price_performance,open,2025-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01364_D20,01364,D20,archive_price_performance,open,2025-03-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02097_D1,02097,D1,archive_price_performance,open,2025-03-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02097_T2_grey_market,02097,T2_grey_market,archive_grey_market_result,open,2025-03-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02097_D5,02097,D5,archive_price_performance,open,2025-03-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06681_D60,06681,D60,archive_price_performance,open,2025-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02560_D60,02560,D60,archive_price_performance,open,2025-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02613_D60,02613,D60,archive_price_performance,open,2025-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00325_D60,00325,D60,archive_price_performance,open,2025-03-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02530_D60,02530,D60,archive_price_performance,open,2025-03-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06693_D1,06693,D1,archive_price_performance,open,2025-03-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06693_T2_grey_market,06693,T2_grey_market,archive_grey_market_result,open,2025-03-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00805_D60,00805,D60,archive_price_performance,open,2025-03-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02596_D60,02596,D60,archive_price_performance,open,2025-03-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06693_D5,06693,D5,archive_price_performance,open,2025-03-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02571_D60,02571,D60,archive_price_performance,open,2025-03-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02561_D1,02561,D1,archive_price_performance,open,2025-03-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02561_T2_grey_market,02561,T2_grey_market,archive_grey_market_result,open,2025-03-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02097_D20,02097,D20,archive_price_performance,open,2025-03-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02561_D5,02561,D5,archive_price_performance,open,2025-03-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02610_D1,02610,D1,archive_price_performance,open,2025-03-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02610_T2_grey_market,02610,T2_grey_market,archive_grey_market_result,open,2025-03-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02569_D1,02569,D1,archive_price_performance,open,2025-03-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02569_T2_grey_market,02569,T2_grey_market,archive_grey_market_result,open,2025-03-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02610_D5,02610,D5,archive_price_performance,open,2025-03-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06693_D20,06693,D20,archive_price_performance,open,2025-03-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02569_D5,02569,D5,archive_price_performance,open,2025-03-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02625_D1,02625,D1,archive_price_performance,open,2025-03-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02625_T2_grey_market,02625,T2_grey_market,archive_grey_market_result,open,2025-03-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02625_D5,02625,D5,archive_price_performance,open,2025-04-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02561_D20,02561,D20,archive_price_performance,open,2025-04-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01364_D60,01364,D60,archive_price_performance,open,2025-04-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02610_D20,02610,D20,archive_price_performance,open,2025-04-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03677_D1,03677,D1,archive_price_performance,open,2025-04-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03677_T2_grey_market,03677,T2_grey_market,archive_grey_market_result,open,2025-04-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02569_D20,02569,D20,archive_price_performance,open,2025-04-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09606_D1,09606,D1,archive_price_performance,open,2025-04-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09606_T2_grey_market,09606,T2_grey_market,archive_grey_market_result,open,2025-04-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03677_D5,03677,D5,archive_price_performance,open,2025-04-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02625_D20,02625,D20,archive_price_performance,open,2025-04-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09606_D5,09606,D5,archive_price_performance,open,2025-04-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02097_D60,02097,D60,archive_price_performance,open,2025-05-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03677_D20,03677,D20,archive_price_performance,open,2025-05-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09606_D20,09606,D20,archive_price_performance,open,2025-05-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01333_D1,01333,D1,archive_price_performance,open,2025-05-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01333_T2_grey_market,01333,T2_grey_market,archive_grey_market_result,open,2025-05-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02589_D1,02589,D1,archive_price_performance,open,2025-05-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02589_T2_grey_market,02589,T2_grey_market,archive_grey_market_result,open,2025-05-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02865_D1,02865,D1,archive_price_performance,open,2025-05-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02865_T2_grey_market,02865,T2_grey_market,archive_grey_market_result,open,2025-05-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06693_D60,06693,D60,archive_price_performance,open,2025-05-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01333_D5,01333,D5,archive_price_performance,open,2025-05-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02589_D5,02589,D5,archive_price_performance,open,2025-05-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02865_D5,02865,D5,archive_price_performance,open,2025-05-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06831_D1,06831,D1,archive_price_performance,open,2025-05-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06831_T2_grey_market,06831,T2_grey_market,archive_grey_market_result,open,2025-05-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02561_D60,02561,D60,archive_price_performance,open,2025-05-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03750_D1,03750,D1,archive_price_performance,open,2025-05-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03750_T2_grey_market,03750,T2_grey_market,archive_grey_market_result,open,2025-05-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06831_D5,06831,D5,archive_price_performance,open,2025-05-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01276_D1,01276,D1,archive_price_performance,open,2025-05-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01276_T2_grey_market,01276,T2_grey_market,archive_grey_market_result,open,2025-05-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02610_D60,02610,D60,archive_price_performance,open,2025-05-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02629_D1,02629,D1,archive_price_performance,open,2025-05-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02629_T2_grey_market,02629,T2_grey_market,archive_grey_market_result,open,2025-05-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03750_D5,03750,D5,archive_price_performance,open,2025-05-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02569_D60,02569,D60,archive_price_performance,open,2025-05-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01333_D20,01333,D20,archive_price_performance,open,2025-05-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01276_D5,01276,D5,archive_price_performance,open,2025-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02565_D1,02565,D1,archive_price_performance,open,2025-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02565_T2_grey_market,02565,T2_grey_market,archive_grey_market_result,open,2025-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02589_D20,02589,D20,archive_price_performance,open,2025-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02603_D1,02603,D1,archive_price_performance,open,2025-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02603_T2_grey_market,02603,T2_grey_market,archive_grey_market_result,open,2025-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02629_D5,02629,D5,archive_price_performance,open,2025-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02865_D20,02865,D20,archive_price_performance,open,2025-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02625_D60,02625,D60,archive_price_performance,open,2025-05-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02621_D1,02621,D1,archive_price_performance,open,2025-05-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02621_T2_grey_market,02621,T2_grey_market,archive_grey_market_result,open,2025-05-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02565_D5,02565,D5,archive_price_performance,open,2025-05-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02603_D5,02603,D5,archive_price_performance,open,2025-05-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02621_D5,02621,D5,archive_price_performance,open,2025-06-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06831_D20,06831,D20,archive_price_performance,open,2025-06-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03750_D20,03750,D20,archive_price_performance,open,2025-06-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02573_D1,02573,D1,archive_price_performance,open,2025-06-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02573_T2_grey_market,02573,T2_grey_market,archive_grey_market_result,open,2025-06-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02605_D1,02605,D1,archive_price_performance,open,2025-06-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02605_T2_grey_market,02605,T2_grey_market,archive_grey_market_result,open,2025-06-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09881_D1,09881,D1,archive_price_performance,open,2025-06-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09881_T2_grey_market,09881,T2_grey_market,archive_grey_market_result,open,2025-06-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01276_D20,01276,D20,archive_price_performance,open,2025-06-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02629_D20,02629,D20,archive_price_performance,open,2025-06-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03677_D60,03677,D60,archive_price_performance,open,2025-06-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09606_D60,09606,D60,archive_price_performance,open,2025-06-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02573_D5,02573,D5,archive_price_performance,open,2025-06-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02605_D5,02605,D5,archive_price_performance,open,2025-06-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09881_D5,09881,D5,archive_price_performance,open,2025-06-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02565_D20,02565,D20,archive_price_performance,open,2025-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02603_D20,02603,D20,archive_price_performance,open,2025-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02621_D20,02621,D20,archive_price_performance,open,2025-06-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03288_D1,03288,D1,archive_price_performance,open,2025-06-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03288_T2_grey_market,03288,T2_grey_market,archive_grey_market_result,open,2025-06-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02050_D1,02050,D1,archive_price_performance,open,2025-06-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02050_T2_grey_market,02050,T2_grey_market,archive_grey_market_result,open,2025-06-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02609_D1,02609,D1,archive_price_performance,open,2025-06-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02609_T2_grey_market,02609,T2_grey_market,archive_grey_market_result,open,2025-06-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02617_D1,02617,D1,archive_price_performance,open,2025-06-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02617_T2_grey_market,02617,T2_grey_market,archive_grey_market_result,open,2025-06-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03288_D5,03288,D5,archive_price_performance,open,2025-06-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02619_D1,02619,D1,archive_price_performance,open,2025-06-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02619_T2_grey_market,02619,T2_grey_market,archive_grey_market_result,open,2025-06-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02643_D1,02643,D1,archive_price_performance,open,2025-06-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02643_T2_grey_market,02643,T2_grey_market,archive_grey_market_result,open,2025-06-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02508_D1,02508,D1,archive_price_performance,open,2025-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02508_T2_grey_market,02508,T2_grey_market,archive_grey_market_result,open,2025-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06168_D1,06168,D1,archive_price_performance,open,2025-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06168_T2_grey_market,06168,T2_grey_market,archive_grey_market_result,open,2025-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06883_D1,06883,D1,archive_price_performance,open,2025-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06883_T2_grey_market,06883,T2_grey_market,archive_grey_market_result,open,2025-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02050_D5,02050,D5,archive_price_performance,open,2025-06-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02609_D5,02609,D5,archive_price_performance,open,2025-06-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02617_D5,02617,D5,archive_price_performance,open,2025-06-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02573_D20,02573,D20,archive_price_performance,open,2025-06-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02605_D20,02605,D20,archive_price_performance,open,2025-06-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02619_D5,02619,D5,archive_price_performance,open,2025-06-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02643_D5,02643,D5,archive_price_performance,open,2025-06-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09881_D20,09881,D20,archive_price_performance,open,2025-06-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02508_D5,02508,D5,archive_price_performance,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03880_D1,03880,D1,archive_price_performance,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03880_T2_grey_market,03880,T2_grey_market,archive_grey_market_result,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06168_D5,06168,D5,archive_price_performance,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06603_D1,06603,D1,archive_price_performance,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06603_T2_grey_market,06603,T2_grey_market,archive_grey_market_result,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06883_D5,06883,D5,archive_price_performance,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09678_D1,09678,D1,archive_price_performance,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09678_T2_grey_market,09678,T2_grey_market,archive_grey_market_result,open,2025-06-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02592_D1,02592,D1,archive_price_performance,open,2025-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02592_T2_grey_market,02592,T2_grey_market,archive_grey_market_result,open,2025-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02648_D1,02648,D1,archive_price_performance,open,2025-07-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02648_T2_grey_market,02648,T2_grey_market,archive_grey_market_result,open,2025-07-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03880_D5,03880,D5,archive_price_performance,open,2025-07-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06603_D5,06603,D5,archive_price_performance,open,2025-07-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09678_D5,09678,D5,archive_price_performance,open,2025-07-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01333_D60,01333,D60,archive_price_performance,open,2025-07-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02589_D60,02589,D60,archive_price_performance,open,2025-07-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02865_D60,02865,D60,archive_price_performance,open,2025-07-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01828_D1,01828,D1,archive_price_performance,open,2025-07-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01828_T2_grey_market,01828,T2_grey_market,archive_grey_market_result,open,2025-07-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02592_D5,02592,D5,archive_price_performance,open,2025-07-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02648_D5,02648,D5,archive_price_performance,open,2025-07-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03288_D20,03288,D20,archive_price_performance,open,2025-07-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01304_D1,01304,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01304_T2_grey_market,01304,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02590_D1,02590,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02590_T2_grey_market,02590,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02597_D1,02597,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02597_T2_grey_market,02597,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02651_D1,02651,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02651_T2_grey_market,02651,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06613_D1,06613,D1,archive_price_performance,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06613_T2_grey_market,06613,T2_grey_market,archive_grey_market_result,open,2025-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01828_D5,01828,D5,archive_price_performance,open,2025-07-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02050_D20,02050,D20,archive_price_performance,open,2025-07-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02609_D20,02609,D20,archive_price_performance,open,2025-07-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02617_D20,02617,D20,archive_price_performance,open,2025-07-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01304_D5,01304,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02590_D5,02590,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02597_D5,02597,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02651_D5,02651,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06613_D5,06613,D5,archive_price_performance,open,2025-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02619_D20,02619,D20,archive_price_performance,open,2025-07-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02643_D20,02643,D20,archive_price_performance,open,2025-07-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06831_D60,06831,D60,archive_price_performance,open,2025-07-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02508_D20,02508,D20,archive_price_performance,open,2025-07-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06168_D20,06168,D20,archive_price_performance,open,2025-07-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06883_D20,06883,D20,archive_price_performance,open,2025-07-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03750_D60,03750,D60,archive_price_performance,open,2025-07-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03880_D20,03880,D20,archive_price_performance,open,2025-07-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06603_D20,06603,D20,archive_price_performance,open,2025-07-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09678_D20,09678,D20,archive_price_performance,open,2025-07-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01276_D60,01276,D60,archive_price_performance,open,2025-07-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02629_D60,02629,D60,archive_price_performance,open,2025-07-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02592_D20,02592,D20,archive_price_performance,open,2025-07-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02648_D20,02648,D20,archive_price_performance,open,2025-07-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02565_D60,02565,D60,archive_price_performance,open,2025-07-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02603_D60,02603,D60,archive_price_performance,open,2025-07-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09887_D1,09887,D1,archive_price_performance,open,2025-07-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09887_T2_grey_market,09887,T2_grey_market,archive_grey_market_result,open,2025-07-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01828_D20,01828,D20,archive_price_performance,open,2025-07-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01304_D20,01304,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02590_D20,02590,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02597_D20,02597,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02621_D60,02621,D60,archive_price_performance,open,2025-07-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02651_D20,02651,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06613_D20,06613,D20,archive_price_performance,open,2025-07-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09887_D5,09887,D5,archive_price_performance,open,2025-07-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02573_D60,02573,D60,archive_price_performance,open,2025-08-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02605_D60,02605,D60,archive_price_performance,open,2025-08-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09881_D60,09881,D60,archive_price_performance,open,2025-08-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02627_D1,02627,D1,archive_price_performance,open,2025-08-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02627_T2_grey_market,02627,T2_grey_market,archive_grey_market_result,open,2025-08-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09887_D20,09887,D20,archive_price_performance,open,2025-08-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02591_D1,02591,D1,archive_price_performance,open,2025-08-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02591_T2_grey_market,02591,T2_grey_market,archive_grey_market_result,open,2025-08-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02627_D5,02627,D5,archive_price_performance,open,2025-08-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03288_D60,03288,D60,archive_price_performance,open,2025-08-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02591_D5,02591,D5,archive_price_performance,open,2025-08-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02631_D1,02631,D1,archive_price_performance,open,2025-08-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02631_T2_grey_market,02631,T2_grey_market,archive_grey_market_result,open,2025-08-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02050_D60,02050,D60,archive_price_performance,open,2025-08-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02609_D60,02609,D60,archive_price_performance,open,2025-08-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02617_D60,02617,D60,archive_price_performance,open,2025-08-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02619_D60,02619,D60,archive_price_performance,open,2025-08-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02643_D60,02643,D60,archive_price_performance,open,2025-08-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02508_D60,02508,D60,archive_price_performance,open,2025-08-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02631_D5,02631,D5,archive_price_performance,open,2025-08-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06168_D60,06168,D60,archive_price_performance,open,2025-08-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06883_D60,06883,D60,archive_price_performance,open,2025-08-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06960_D1,06960,D1,archive_price_performance,open,2025-08-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06960_T2_grey_market,06960,T2_grey_market,archive_grey_market_result,open,2025-08-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03858_D1,03858,D1,archive_price_performance,open,2025-08-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03858_T2_grey_market,03858,T2_grey_market,archive_grey_market_result,open,2025-08-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03880_D60,03880,D60,archive_price_performance,open,2025-08-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06603_D60,06603,D60,archive_price_performance,open,2025-08-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09678_D60,09678,D60,archive_price_performance,open,2025-08-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02627_D20,02627,D20,archive_price_performance,open,2025-08-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06960_D5,06960,D5,archive_price_performance,open,2025-08-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02592_D60,02592,D60,archive_price_performance,open,2025-08-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02648_D60,02648,D60,archive_price_performance,open,2025-09-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03858_D5,03858,D5,archive_price_performance,open,2025-09-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02580_D1,02580,D1,archive_price_performance,open,2025-09-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02580_T2_grey_market,02580,T2_grey_market,archive_grey_market_result,open,2025-09-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02591_D20,02591,D20,archive_price_performance,open,2025-09-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01828_D60,01828,D60,archive_price_performance,open,2025-09-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01304_D60,01304,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02580_D5,02580,D5,archive_price_performance,open,2025-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02590_D60,02590,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02597_D60,02597,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02651_D60,02651,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06613_D60,06613,D60,archive_price_performance,open,2025-09-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02631_D20,02631,D20,archive_price_performance,open,2025-09-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02543_D1,02543,D1,archive_price_performance,open,2025-09-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02543_T2_grey_market,02543,T2_grey_market,archive_grey_market_result,open,2025-09-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02543_D5,02543,D5,archive_price_performance,open,2025-09-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06960_D20,06960,D20,archive_price_performance,open,2025-09-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02525_D1,02525,D1,archive_price_performance,open,2025-09-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02525_T2_grey_market,02525,T2_grey_market,archive_grey_market_result,open,2025-09-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03858_D20,03858,D20,archive_price_performance,open,2025-09-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02656_D1,02656,D1,archive_price_performance,open,2025-09-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02656_T2_grey_market,02656,T2_grey_market,archive_grey_market_result,open,2025-09-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02595_D1,02595,D1,archive_price_performance,open,2025-09-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02595_T2_grey_market,02595,T2_grey_market,archive_grey_market_result,open,2025-09-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02525_D5,02525,D5,archive_price_performance,open,2025-09-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02580_D20,02580,D20,archive_price_performance,open,2025-09-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02656_D5,02656,D5,archive_price_performance,open,2025-09-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09887_D60,09887,D60,archive_price_performance,open,2025-09-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02595_D5,02595,D5,archive_price_performance,open,2025-09-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06090_D1,06090,D1,archive_price_performance,open,2025-09-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06090_T2_grey_market,06090,T2_grey_market,archive_grey_market_result,open,2025-09-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09973_D1,09973,D1,archive_price_performance,open,2025-09-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09973_T2_grey_market,09973,T2_grey_market,archive_grey_market_result,open,2025-09-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06090_D5,06090,D5,archive_price_performance,open,2025-09-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02543_D20,02543,D20,archive_price_performance,open,2025-09-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09973_D5,09973,D5,archive_price_performance,open,2025-09-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02259_D1,02259,D1,archive_price_performance,open,2025-09-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02259_T2_grey_market,02259,T2_grey_market,archive_grey_market_result,open,2025-09-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02583_D1,02583,D1,archive_price_performance,open,2025-09-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02583_T2_grey_market,02583,T2_grey_market,archive_grey_market_result,open,2025-09-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02889_D1,02889,D1,archive_price_performance,open,2025-09-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02889_T2_grey_market,02889,T2_grey_market,archive_grey_market_result,open,2025-09-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02259_D5,02259,D5,archive_price_performance,open,2025-10-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02583_D5,02583,D5,archive_price_performance,open,2025-10-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02889_D5,02889,D5,archive_price_performance,open,2025-10-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02525_D20,02525,D20,archive_price_performance,open,2025-10-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02656_D20,02656,D20,archive_price_performance,open,2025-10-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02595_D20,02595,D20,archive_price_performance,open,2025-10-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02652_D1,02652,D1,archive_price_performance,open,2025-10-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02652_T2_grey_market,02652,T2_grey_market,archive_grey_market_result,open,2025-10-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02627_D60,02627,D60,archive_price_performance,open,2025-10-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02650_D1,02650,D1,archive_price_performance,open,2025-10-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02650_T2_grey_market,02650,T2_grey_market,archive_grey_market_result,open,2025-10-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08549_D1,08549,D1,archive_price_performance,open,2025-10-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08549_T2_grey_market,08549,T2_grey_market,archive_grey_market_result,open,2025-10-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02652_D5,02652,D5,archive_price_performance,open,2025-10-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06090_D20,06090,D20,archive_price_performance,open,2025-10-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02591_D60,02591,D60,archive_price_performance,open,2025-10-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02650_D5,02650,D5,archive_price_performance,open,2025-10-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08549_D5,08549,D5,archive_price_performance,open,2025-10-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09973_D20,09973,D20,archive_price_performance,open,2025-10-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02575_D1,02575,D1,archive_price_performance,open,2025-10-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02575_T2_grey_market,02575,T2_grey_market,archive_grey_market_result,open,2025-10-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02670_D1,02670,D1,archive_price_performance,open,2025-10-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02670_T2_grey_market,02670,T2_grey_market,archive_grey_market_result,open,2025-10-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02631_D60,02631,D60,archive_price_performance,open,2025-10-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02259_D20,02259,D20,archive_price_performance,open,2025-10-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02575_D5,02575,D5,archive_price_performance,open,2025-10-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02583_D20,02583,D20,archive_price_performance,open,2025-10-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02889_D20,02889,D20,archive_price_performance,open,2025-10-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02637_D1,02637,D1,archive_price_performance,open,2025-10-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02637_T2_grey_market,02637,T2_grey_market,archive_grey_market_result,open,2025-10-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02670_D5,02670,D5,archive_price_performance,open,2025-10-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06687_D1,06687,D1,archive_price_performance,open,2025-10-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06687_T2_grey_market,06687,T2_grey_market,archive_grey_market_result,open,2025-10-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00638_D1,00638,D1,archive_price_performance,open,2025-10-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00638_T2_grey_market,00638,T2_grey_market,archive_grey_market_result,open,2025-10-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02637_D5,02637,D5,archive_price_performance,open,2025-10-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06960_D60,06960,D60,archive_price_performance,open,2025-10-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06687_D5,06687,D5,archive_price_performance,open,2025-10-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00638_D5,00638,D5,archive_price_performance,open,2025-10-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03858_D60,03858,D60,archive_price_performance,open,2025-10-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02652_D20,02652,D20,archive_price_performance,open,2025-10-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01384_D1,01384,D1,archive_price_performance,open,2025-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01384_T2_grey_market,01384,T2_grey_market,archive_grey_market_result,open,2025-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06031_D1,06031,D1,archive_price_performance,open,2025-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06031_T2_grey_market,06031,T2_grey_market,archive_grey_market_result,open,2025-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06166_D1,06166,D1,archive_price_performance,open,2025-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06166_T2_grey_market,06166,T2_grey_market,archive_grey_market_result,open,2025-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06980_D1,06980,D1,archive_price_performance,open,2025-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06980_T2_grey_market,06980,T2_grey_market,archive_grey_market_result,open,2025-10-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02650_D20,02650,D20,archive_price_performance,open,2025-10-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08549_D20,08549,D20,archive_price_performance,open,2025-10-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02580_D60,02580,D60,archive_price_performance,open,2025-10-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01384_D5,01384,D5,archive_price_performance,open,2025-11-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06031_D5,06031,D5,archive_price_performance,open,2025-11-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06166_D5,06166,D5,archive_price_performance,open,2025-11-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06980_D5,06980,D5,archive_price_performance,open,2025-11-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02575_D20,02575,D20,archive_price_performance,open,2025-11-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02718_D1,02718,D1,archive_price_performance,open,2025-11-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02718_T2_grey_market,02718,T2_grey_market,archive_grey_market_result,open,2025-11-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02670_D20,02670,D20,archive_price_performance,open,2025-11-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09927_D1,09927,D1,archive_price_performance,open,2025-11-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09927_T2_grey_market,09927,T2_grey_market,archive_grey_market_result,open,2025-11-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00699_D1,00699,D1,archive_price_performance,open,2025-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00699_T2_grey_market,00699,T2_grey_market,archive_grey_market_result,open,2025-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00800_D1,00800,D1,archive_price_performance,open,2025-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00800_T2_grey_market,00800,T2_grey_market,archive_grey_market_result,open,2025-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02026_D1,02026,D1,archive_price_performance,open,2025-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02026_T2_grey_market,02026,T2_grey_market,archive_grey_market_result,open,2025-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02630_D1,02630,D1,archive_price_performance,open,2025-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02630_T2_grey_market,02630,T2_grey_market,archive_grey_market_result,open,2025-11-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02543_D60,02543,D60,archive_price_performance,open,2025-11-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02718_D5,02718,D5,archive_price_performance,open,2025-11-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02637_D20,02637,D20,archive_price_performance,open,2025-11-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06687_D20,06687,D20,archive_price_performance,open,2025-11-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09927_D5,09927,D5,archive_price_performance,open,2025-11-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00638_D20,00638,D20,archive_price_performance,open,2025-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00699_D5,00699,D5,archive_price_performance,open,2025-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00800_D5,00800,D5,archive_price_performance,open,2025-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02026_D5,02026,D5,archive_price_performance,open,2025-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02630_D5,02630,D5,archive_price_performance,open,2025-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02698_D1,02698,D1,archive_price_performance,open,2025-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02698_T2_grey_market,02698,T2_grey_market,archive_grey_market_result,open,2025-11-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02525_D60,02525,D60,archive_price_performance,open,2025-11-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02698_D5,02698,D5,archive_price_performance,open,2025-11-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02656_D60,02656,D60,archive_price_performance,open,2025-11-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01384_D20,01384,D20,archive_price_performance,open,2025-11-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06031_D20,06031,D20,archive_price_performance,open,2025-11-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06166_D20,06166,D20,archive_price_performance,open,2025-11-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06980_D20,06980,D20,archive_price_performance,open,2025-11-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02579_D1,02579,D1,archive_price_performance,open,2025-11-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02579_T2_grey_market,02579,T2_grey_market,archive_grey_market_result,open,2025-11-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02595_D60,02595,D60,archive_price_performance,open,2025-11-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02579_D5,02579,D5,archive_price_performance,open,2025-11-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06090_D60,06090,D60,archive_price_performance,open,2025-11-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02718_D20,02718,D20,archive_price_performance,open,2025-11-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09973_D60,09973,D60,archive_price_performance,open,2025-11-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02788_D1,02788,D1,archive_price_performance,open,2025-11-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02788_T2_grey_market,02788,T2_grey_market,archive_grey_market_result,open,2025-11-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09927_D20,09927,D20,archive_price_performance,open,2025-11-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00699_D20,00699,D20,archive_price_performance,open,2025-11-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00800_D20,00800,D20,archive_price_performance,open,2025-11-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02026_D20,02026,D20,archive_price_performance,open,2025-11-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02630_D20,02630,D20,archive_price_performance,open,2025-11-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02685_D1,02685,D1,archive_price_performance,open,2025-11-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02685_T2_grey_market,02685,T2_grey_market,archive_grey_market_result,open,2025-11-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02259_D60,02259,D60,archive_price_performance,open,2025-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02583_D60,02583,D60,archive_price_performance,open,2025-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02788_D5,02788,D5,archive_price_performance,open,2025-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02889_D60,02889,D60,archive_price_performance,open,2025-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09609_D1,09609,D1,archive_price_performance,open,2025-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09609_T2_grey_market,09609,T2_grey_market,archive_grey_market_result,open,2025-11-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02698_D20,02698,D20,archive_price_performance,open,2025-11-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02685_D5,02685,D5,archive_price_performance,open,2025-12-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09609_D5,09609,D5,archive_price_performance,open,2025-12-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02539_D1,02539,D1,archive_price_performance,open,2025-12-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02539_T2_grey_market,02539,T2_grey_market,archive_grey_market_result,open,2025-12-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02693_D1,02693,D1,archive_price_performance,open,2025-12-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02693_T2_grey_market,02693,T2_grey_market,archive_grey_market_result,open,2025-12-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02408_D1,02408,D1,archive_price_performance,open,2025-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02408_T2_grey_market,02408,T2_grey_market,archive_grey_market_result,open,2025-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02658_D1,02658,D1,archive_price_performance,open,2025-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02658_T2_grey_market,02658,T2_grey_market,archive_grey_market_result,open,2025-12-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02579_D20,02579,D20,archive_price_performance,open,2025-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02652_D60,02652,D60,archive_price_performance,open,2025-12-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02539_D5,02539,D5,archive_price_performance,open,2025-12-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02693_D5,02693,D5,archive_price_performance,open,2025-12-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02650_D60,02650,D60,archive_price_performance,open,2025-12-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02676_D1,02676,D1,archive_price_performance,open,2025-12-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02676_T2_grey_market,02676,T2_grey_market,archive_grey_market_result,open,2025-12-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02687_D1,02687,D1,archive_price_performance,open,2025-12-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02687_T2_grey_market,02687,T2_grey_market,archive_grey_market_result,open,2025-12-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08549_D60,08549,D60,archive_price_performance,open,2025-12-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02408_D5,02408,D5,archive_price_performance,open,2025-12-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02658_D5,02658,D5,archive_price_performance,open,2025-12-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02659_D1,02659,D1,archive_price_performance,open,2025-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02659_T2_grey_market,02659,T2_grey_market,archive_grey_market_result,open,2025-12-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07618_D1,07618,D1,archive_price_performance,open,2025-12-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07618_T2_grey_market,07618,T2_grey_market,archive_grey_market_result,open,2025-12-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02676_D5,02676,D5,archive_price_performance,open,2025-12-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02687_D5,02687,D5,archive_price_performance,open,2025-12-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02575_D60,02575,D60,archive_price_performance,open,2025-12-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02788_D20,02788,D20,archive_price_performance,open,2025-12-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02659_D5,02659,D5,archive_price_performance,open,2025-12-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02670_D60,02670,D60,archive_price_performance,open,2025-12-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07618_D5,07618,D5,archive_price_performance,open,2025-12-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02655_D1,02655,D1,archive_price_performance,open,2025-12-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02655_T2_grey_market,02655,T2_grey_market,archive_grey_market_result,open,2025-12-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02685_D20,02685,D20,archive_price_performance,open,2025-12-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03887_D1,03887,D1,archive_price_performance,open,2025-12-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03887_T2_grey_market,03887,T2_grey_market,archive_grey_market_result,open,2025-12-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09609_D20,09609,D20,archive_price_performance,open,2025-12-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02637_D60,02637,D60,archive_price_performance,open,2025-12-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02546_D1,02546,D1,archive_price_performance,open,2025-12-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02546_T2_grey_market,02546,T2_grey_market,archive_grey_market_result,open,2025-12-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03881_D1,03881,D1,archive_price_performance,open,2025-12-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03881_T2_grey_market,03881,T2_grey_market,archive_grey_market_result,open,2025-12-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06687_D60,06687,D60,archive_price_performance,open,2025-12-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00638_D60,00638,D60,archive_price_performance,open,2025-12-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02655_D5,02655,D5,archive_price_performance,open,2025-12-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03887_D5,03887,D5,archive_price_performance,open,2025-12-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02396_D1,02396,D1,archive_price_performance,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02396_T2_grey_market,02396,T2_grey_market,archive_grey_market_result,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02539_D20,02539,D20,archive_price_performance,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02581_D1,02581,D1,archive_price_performance,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02581_T2_grey_market,02581,T2_grey_market,archive_grey_market_result,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02691_D1,02691,D1,archive_price_performance,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02691_T2_grey_market,02691,T2_grey_market,archive_grey_market_result,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02693_D20,02693,D20,archive_price_performance,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02695_D1,02695,D1,archive_price_performance,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02695_T2_grey_market,02695,T2_grey_market,archive_grey_market_result,open,2025-12-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02546_D5,02546,D5,archive_price_performance,open,2025-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02635_D1,02635,D1,archive_price_performance,open,2025-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02635_T2_grey_market,02635,T2_grey_market,archive_grey_market_result,open,2025-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02661_D1,02661,D1,archive_price_performance,open,2025-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02661_T2_grey_market,02661,T2_grey_market,archive_grey_market_result,open,2025-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03378_D1,03378,D1,archive_price_performance,open,2025-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03378_T2_grey_market,03378,T2_grey_market,archive_grey_market_result,open,2025-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03881_D5,03881,D5,archive_price_performance,open,2025-12-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02408_D20,02408,D20,archive_price_performance,open,2025-12-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02658_D20,02658,D20,archive_price_performance,open,2025-12-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01384_D60,01384,D60,archive_price_performance,open,2025-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02396_D5,02396,D5,archive_price_performance,open,2025-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02581_D5,02581,D5,archive_price_performance,open,2025-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02691_D5,02691,D5,archive_price_performance,open,2025-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02695_D5,02695,D5,archive_price_performance,open,2025-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06031_D60,06031,D60,archive_price_performance,open,2025-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06166_D60,06166,D60,archive_price_performance,open,2025-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06980_D60,06980,D60,archive_price_performance,open,2025-12-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02635_D5,02635,D5,archive_price_performance,open,2025-12-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02661_D5,02661,D5,archive_price_performance,open,2025-12-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02676_D20,02676,D20,archive_price_performance,open,2025-12-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02687_D20,02687,D20,archive_price_performance,open,2025-12-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03378_D5,03378,D5,archive_price_performance,open,2025-12-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02659_D20,02659,D20,archive_price_performance,open,2025-12-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02657_D1,02657,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02657_T2_grey_market,02657,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02671_D1,02671,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02671_T2_grey_market,02671,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03317_D1,03317,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03317_T2_grey_market,03317,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03696_D1,03696,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03696_T2_grey_market,03696,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06600_D1,06600,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06600_T2_grey_market,06600,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06651_D1,06651,D1,archive_price_performance,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06651_T2_grey_market,06651,T2_grey_market,archive_grey_market_result,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07618_D20,07618,D20,archive_price_performance,open,2025-12-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02718_D60,02718,D60,archive_price_performance,open,2026-01-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06082_D1,06082,D1,archive_price_performance,open,2026-01-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06082_T2_grey_market,06082,T2_grey_market,archive_grey_market_result,open,2026-01-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02657_D5,02657,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02671_D5,02671,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03317_D5,03317,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03696_D5,03696,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06600_D5,06600,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06651_D5,06651,D5,archive_price_performance,open,2026-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09927_D60,09927,D60,archive_price_performance,open,2026-01-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00699_D60,00699,D60,archive_price_performance,open,2026-01-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00800_D60,00800,D60,archive_price_performance,open,2026-01-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02026_D60,02026,D60,archive_price_performance,open,2026-01-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02630_D60,02630,D60,archive_price_performance,open,2026-01-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02655_D20,02655,D20,archive_price_performance,open,2026-01-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03887_D20,03887,D20,archive_price_performance,open,2026-01-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06082_D5,06082,D5,archive_price_performance,open,2026-01-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02546_D20,02546,D20,archive_price_performance,open,2026-01-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03881_D20,03881,D20,archive_price_performance,open,2026-01-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02513_D1,02513,D1,archive_price_performance,open,2026-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02513_T2_grey_market,02513,T2_grey_market,archive_grey_market_result,open,2026-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02675_D1,02675,D1,archive_price_performance,open,2026-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02675_T2_grey_market,02675,T2_grey_market,archive_grey_market_result,open,2026-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02698_D60,02698,D60,archive_price_performance,open,2026-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09903_D1,09903,D1,archive_price_performance,open,2026-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09903_T2_grey_market,09903,T2_grey_market,archive_grey_market_result,open,2026-01-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00100_D1,00100,D1,archive_price_performance,open,2026-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00100_T2_grey_market,00100,T2_grey_market,archive_grey_market_result,open,2026-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03636_D1,03636,D1,archive_price_performance,open,2026-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03636_T2_grey_market,03636,T2_grey_market,archive_grey_market_result,open,2026-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06938_D1,06938,D1,archive_price_performance,open,2026-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06938_T2_grey_market,06938,T2_grey_market,archive_grey_market_result,open,2026-01-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02396_D20,02396,D20,archive_price_performance,open,2026-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02581_D20,02581,D20,archive_price_performance,open,2026-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02691_D20,02691,D20,archive_price_performance,open,2026-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02695_D20,02695,D20,archive_price_performance,open,2026-01-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02635_D20,02635,D20,archive_price_performance,open,2026-01-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02661_D20,02661,D20,archive_price_performance,open,2026-01-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03378_D20,03378,D20,archive_price_performance,open,2026-01-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00501_D1,00501,D1,archive_price_performance,open,2026-01-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00501_T2_grey_market,00501,T2_grey_market,archive_grey_market_result,open,2026-01-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02513_D5,02513,D5,archive_price_performance,open,2026-01-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02675_D5,02675,D5,archive_price_performance,open,2026-01-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09903_D5,09903,D5,archive_price_performance,open,2026-01-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00100_D5,00100,D5,archive_price_performance,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01641_D1,01641,D1,archive_price_performance,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01641_T2_grey_market,01641,T2_grey_market,archive_grey_market_result,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03636_D5,03636,D5,archive_price_performance,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03986_D1,03986,D1,archive_price_performance,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03986_T2_grey_market,03986,T2_grey_market,archive_grey_market_result,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06938_D5,06938,D5,archive_price_performance,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08610_D1,08610,D1,archive_price_performance,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08610_T2_grey_market,08610,T2_grey_market,archive_grey_market_result,open,2026-01-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02579_D60,02579,D60,archive_price_performance,open,2026-01-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00501_D5,00501,D5,archive_price_performance,open,2026-01-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01641_D5,01641,D5,archive_price_performance,open,2026-01-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03986_D5,03986,D5,archive_price_performance,open,2026-01-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08610_D5,08610,D5,archive_price_performance,open,2026-01-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02657_D20,02657,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02671_D20,02671,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03317_D20,03317,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03696_D20,03696,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06600_D20,06600,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06651_D20,06651,D20,archive_price_performance,open,2026-01-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06082_D20,06082,D20,archive_price_performance,open,2026-01-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02788_D60,02788,D60,archive_price_performance,open,2026-01-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09611_D1,09611,D1,archive_price_performance,open,2026-01-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09611_T2_grey_market,09611,T2_grey_market,archive_grey_market_result,open,2026-01-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02685_D60,02685,D60,archive_price_performance,open,2026-01-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09609_D60,09609,D60,archive_price_performance,open,2026-01-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09611_D5,09611,D5,archive_price_performance,open,2026-01-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02513_D20,02513,D20,archive_price_performance,open,2026-01-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02675_D20,02675,D20,archive_price_performance,open,2026-01-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09903_D20,09903,D20,archive_price_performance,open,2026-01-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00100_D20,00100,D20,archive_price_performance,open,2026-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01768_D1,01768,D1,archive_price_performance,open,2026-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01768_T2_grey_market,01768,T2_grey_market,archive_grey_market_result,open,2026-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03636_D20,03636,D20,archive_price_performance,open,2026-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06938_D20,06938,D20,archive_price_performance,open,2026-01-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00501_D20,00501,D20,archive_price_performance,open,2026-01-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02539_D60,02539,D60,archive_price_performance,open,2026-01-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02693_D60,02693,D60,archive_price_performance,open,2026-01-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01641_D20,01641,D20,archive_price_performance,open,2026-02-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01768_D5,01768,D5,archive_price_performance,open,2026-02-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03986_D20,03986,D20,archive_price_performance,open,2026-02-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08610_D20,08610,D20,archive_price_performance,open,2026-02-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02408_D60,02408,D60,archive_price_performance,open,2026-02-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02658_D60,02658,D60,archive_price_performance,open,2026-02-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09980_D1,09980,D1,archive_price_performance,open,2026-02-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09980_T2_grey_market,09980,T2_grey_market,archive_grey_market_result,open,2026-02-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02768_D1,02768,D1,archive_price_performance,open,2026-02-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02768_T2_grey_market,02768,T2_grey_market,archive_grey_market_result,open,2026-02-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02676_D60,02676,D60,archive_price_performance,open,2026-02-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02687_D60,02687,D60,archive_price_performance,open,2026-02-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02677_D1,02677,D1,archive_price_performance,open,2026-02-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02677_T2_grey_market,02677,T2_grey_market,archive_grey_market_result,open,2026-02-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02714_D1,02714,D1,archive_price_performance,open,2026-02-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02714_T2_grey_market,02714,T2_grey_market,archive_grey_market_result,open,2026-02-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03200_D1,03200,D1,archive_price_performance,open,2026-02-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03200_T2_grey_market,03200,T2_grey_market,archive_grey_market_result,open,2026-02-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02659_D60,02659,D60,archive_price_performance,open,2026-02-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09980_D5,09980,D5,archive_price_performance,open,2026-02-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02768_D5,02768,D5,archive_price_performance,open,2026-02-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07618_D60,07618,D60,archive_price_performance,open,2026-02-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06809_D1,06809,D1,archive_price_performance,open,2026-02-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06809_T2_grey_market,06809,T2_grey_market,archive_grey_market_result,open,2026-02-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00600_D1,00600,D1,archive_price_performance,open,2026-02-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00600_T2_grey_market,00600,T2_grey_market,archive_grey_market_result,open,2026-02-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02677_D5,02677,D5,archive_price_performance,open,2026-02-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02714_D5,02714,D5,archive_price_performance,open,2026-02-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02720_D1,02720,D1,archive_price_performance,open,2026-02-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02720_T2_grey_market,02720,T2_grey_market,archive_grey_market_result,open,2026-02-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03200_D5,03200,D5,archive_price_performance,open,2026-02-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09611_D20,09611,D20,archive_price_performance,open,2026-02-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00470_D1,00470,D1,archive_price_performance,open,2026-02-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00470_T2_grey_market,00470,T2_grey_market,archive_grey_market_result,open,2026-02-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02655_D60,02655,D60,archive_price_performance,open,2026-02-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02706_D1,02706,D1,archive_price_performance,open,2026-02-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02706_T2_grey_market,02706,T2_grey_market,archive_grey_market_result,open,2026-02-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06809_D5,06809,D5,archive_price_performance,open,2026-02-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09981_D1,09981,D1,archive_price_performance,open,2026-02-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09981_T2_grey_market,09981,T2_grey_market,archive_grey_market_result,open,2026-02-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00600_D5,00600,D5,archive_price_performance,open,2026-02-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02720_D5,02720,D5,archive_price_performance,open,2026-02-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03887_D60,03887,D60,archive_price_performance,open,2026-02-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00470_D5,00470,D5,archive_price_performance,open,2026-02-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01768_D20,01768,D20,archive_price_performance,open,2026-02-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02546_D60,02546,D60,archive_price_performance,open,2026-02-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03881_D60,03881,D60,archive_price_performance,open,2026-02-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02706_D5,02706,D5,archive_price_performance,open,2026-02-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09981_D5,09981,D5,archive_price_performance,open,2026-02-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02396_D60,02396,D60,archive_price_performance,open,2026-02-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02581_D60,02581,D60,archive_price_performance,open,2026-02-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02691_D60,02691,D60,archive_price_performance,open,2026-02-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02695_D60,02695,D60,archive_price_performance,open,2026-02-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02635_D60,02635,D60,archive_price_performance,open,2026-02-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02661_D60,02661,D60,archive_price_performance,open,2026-02-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03378_D60,03378,D60,archive_price_performance,open,2026-02-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09980_D20,09980,D20,archive_price_performance,open,2026-02-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02768_D20,02768,D20,archive_price_performance,open,2026-02-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02677_D20,02677,D20,archive_price_performance,open,2026-02-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02714_D20,02714,D20,archive_price_performance,open,2026-02-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03200_D20,03200,D20,archive_price_performance,open,2026-02-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02657_D60,02657,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02671_D60,02671,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03317_D60,03317,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03696_D60,03696,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06600_D60,06600,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06651_D60,06651,D60,archive_price_performance,open,2026-02-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06809_D20,06809,D20,archive_price_performance,open,2026-02-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00600_D20,00600,D20,archive_price_performance,open,2026-03-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02720_D20,02720,D20,archive_price_performance,open,2026-03-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00470_D20,00470,D20,archive_price_performance,open,2026-03-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06082_D60,06082,D60,archive_price_performance,open,2026-03-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02706_D20,02706,D20,archive_price_performance,open,2026-03-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09981_D20,09981,D20,archive_price_performance,open,2026-03-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02513_D60,02513,D60,archive_price_performance,open,2026-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02675_D60,02675,D60,archive_price_performance,open,2026-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09903_D60,09903,D60,archive_price_performance,open,2026-03-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00100_D60,00100,D60,archive_price_performance,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02649_D1,02649,D1,archive_price_performance,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02649_T2_grey_market,02649,T2_grey_market,archive_grey_market_result,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02692_D1,02692,D1,archive_price_performance,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02692_T2_grey_market,02692,T2_grey_market,archive_grey_market_result,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02715_D1,02715,D1,archive_price_performance,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02715_T2_grey_market,02715,T2_grey_market,archive_grey_market_result,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03636_D60,03636,D60,archive_price_performance,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06938_D60,06938,D60,archive_price_performance,open,2026-03-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03268_D1,03268,D1,archive_price_performance,open,2026-03-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03268_T2_grey_market,03268,T2_grey_market,archive_grey_market_result,open,2026-03-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00501_D60,00501,D60,archive_price_performance,open,2026-03-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01641_D60,01641,D60,archive_price_performance,open,2026-03-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02649_D5,02649,D5,archive_price_performance,open,2026-03-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02692_D5,02692,D5,archive_price_performance,open,2026-03-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02715_D5,02715,D5,archive_price_performance,open,2026-03-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03986_D60,03986,D60,archive_price_performance,open,2026-03-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08610_D60,08610,D60,archive_price_performance,open,2026-03-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03268_D5,03268,D5,archive_price_performance,open,2026-03-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01989_D1,01989,D1,archive_price_performance,open,2026-03-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01989_T2_grey_market,01989,T2_grey_market,archive_grey_market_result,open,2026-03-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09611_D60,09611,D60,archive_price_performance,open,2026-03-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02701_D1,02701,D1,archive_price_performance,open,2026-03-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02701_T2_grey_market,02701,T2_grey_market,archive_grey_market_result,open,2026-03-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03355_D1,03355,D1,archive_price_performance,open,2026-03-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03355_T2_grey_market,03355,T2_grey_market,archive_grey_market_result,open,2026-03-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01989_D5,01989,D5,archive_price_performance,open,2026-03-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02632_D1,02632,D1,archive_price_performance,open,2026-03-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02632_T2_grey_market,02632,T2_grey_market,archive_grey_market_result,open,2026-03-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02729_D1,02729,D1,archive_price_performance,open,2026-03-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02729_T2_grey_market,02729,T2_grey_market,archive_grey_market_result,open,2026-03-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02701_D5,02701,D5,archive_price_performance,open,2026-03-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03355_D5,03355,D5,archive_price_performance,open,2026-03-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01768_D60,01768,D60,archive_price_performance,open,2026-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02632_D5,02632,D5,archive_price_performance,open,2026-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02649_D20,02649,D20,archive_price_performance,open,2026-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02692_D20,02692,D20,archive_price_performance,open,2026-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02715_D20,02715,D20,archive_price_performance,open,2026-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02729_D5,02729,D5,archive_price_performance,open,2026-03-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03268_D20,03268,D20,archive_price_performance,open,2026-03-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01021_D1,01021,D1,archive_price_performance,open,2026-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01021_T2_grey_market,01021,T2_grey_market,archive_grey_market_result,open,2026-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02526_D1,02526,D1,archive_price_performance,open,2026-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02526_T2_grey_market,02526,T2_grey_market,archive_grey_market_result,open,2026-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02726_D1,02726,D1,archive_price_performance,open,2026-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02726_T2_grey_market,02726,T2_grey_market,archive_grey_market_result,open,2026-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06636_D1,06636,D1,archive_price_performance,open,2026-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06636_T2_grey_market,06636,T2_grey_market,archive_grey_market_result,open,2026-03-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00664_D1,00664,D1,archive_price_performance,open,2026-03-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00664_T2_grey_market,00664,T2_grey_market,archive_grey_market_result,open,2026-03-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03625_D1,03625,D1,archive_price_performance,open,2026-03-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03625_T2_grey_market,03625,T2_grey_market,archive_grey_market_result,open,2026-03-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01021_D5,01021,D5,archive_price_performance,open,2026-04-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02526_D5,02526,D5,archive_price_performance,open,2026-04-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02726_D5,02726,D5,archive_price_performance,open,2026-04-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06636_D5,06636,D5,archive_price_performance,open,2026-04-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09980_D60,09980,D60,archive_price_performance,open,2026-04-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00664_D5,00664,D5,archive_price_performance,open,2026-04-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02768_D60,02768,D60,archive_price_performance,open,2026-04-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03625_D5,03625,D5,archive_price_performance,open,2026-04-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02677_D60,02677,D60,archive_price_performance,open,2026-04-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02714_D60,02714,D60,archive_price_performance,open,2026-04-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03200_D60,03200,D60,archive_price_performance,open,2026-04-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01989_D20,01989,D20,archive_price_performance,open,2026-04-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06809_D60,06809,D60,archive_price_performance,open,2026-04-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00600_D60,00600,D60,archive_price_performance,open,2026-04-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02720_D60,02720,D60,archive_price_performance,open,2026-04-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00470_D60,00470,D60,archive_price_performance,open,2026-04-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02701_D20,02701,D20,archive_price_performance,open,2026-04-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03355_D20,03355,D20,archive_price_performance,open,2026-04-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02632_D20,02632,D20,archive_price_performance,open,2026-04-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02729_D20,02729,D20,archive_price_performance,open,2026-04-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02706_D60,02706,D60,archive_price_performance,open,2026-04-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09981_D60,09981,D60,archive_price_performance,open,2026-04-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06656_D1,06656,D1,archive_price_performance,open,2026-04-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06656_T2_grey_market,06656,T2_grey_market,archive_grey_market_result,open,2026-04-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00068_D1,00068,D1,archive_price_performance,open,2026-04-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00068_T2_grey_market,00068,T2_grey_market,archive_grey_market_result,open,2026-04-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03277_D1,03277,D1,archive_price_performance,open,2026-04-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03277_T2_grey_market,03277,T2_grey_market,archive_grey_market_result,open,2026-04-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01021_D20,01021,D20,archive_price_performance,open,2026-04-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02526_D20,02526,D20,archive_price_performance,open,2026-04-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02726_D20,02726,D20,archive_price_performance,open,2026-04-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06636_D20,06636,D20,archive_price_performance,open,2026-04-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00664_D20,00664,D20,archive_price_performance,open,2026-04-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03625_D20,03625,D20,archive_price_performance,open,2026-04-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06656_D5,06656,D5,archive_price_performance,open,2026-04-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00068_D5,00068,D5,archive_price_performance,open,2026-04-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02476_D1,02476,D1,archive_price_performance,open,2026-04-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02476_T2_grey_market,02476,T2_grey_market,archive_grey_market_result,open,2026-04-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03277_D5,03277,D5,archive_price_performance,open,2026-04-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03296_D1,03296,D1,archive_price_performance,open,2026-04-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03296_T2_grey_market,03296,T2_grey_market,archive_grey_market_result,open,2026-04-23,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02476_D5,02476,D5,archive_price_performance,open,2026-04-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03296_D5,03296,D5,archive_price_performance,open,2026-04-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01879_D1,01879,D1,archive_price_performance,open,2026-04-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01879_T2_grey_market,01879,T2_grey_market,archive_grey_market_result,open,2026-04-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02493_D1,02493,D1,archive_price_performance,open,2026-04-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02493_T2_grey_market,02493,T2_grey_market,archive_grey_market_result,open,2026-04-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06810_D1,06810,D1,archive_price_performance,open,2026-04-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06810_T2_grey_market,06810,T2_grey_market,archive_grey_market_result,open,2026-04-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01879_D5,01879,D5,archive_price_performance,open,2026-05-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02493_D5,02493,D5,archive_price_performance,open,2026-05-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06810_D5,06810,D5,archive_price_performance,open,2026-05-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01609_D1,01609,D1,archive_price_performance,open,2026-05-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01609_T2_grey_market,01609,T2_grey_market,archive_grey_market_result,open,2026-05-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06656_D20,06656,D20,archive_price_performance,open,2026-05-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00068_D20,00068,D20,archive_price_performance,open,2026-05-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01187_D1,01187,D1,archive_price_performance,open,2026-05-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01187_T2_grey_market,01187,T2_grey_market,archive_grey_market_result,open,2026-05-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03277_D20,03277,D20,archive_price_performance,open,2026-05-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02649_D60,02649,D60,archive_price_performance,open,2026-05-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02692_D60,02692,D60,archive_price_performance,open,2026-05-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02715_D60,02715,D60,archive_price_performance,open,2026-05-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03268_D60,03268,D60,archive_price_performance,open,2026-05-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01609_D5,01609,D5,archive_price_performance,open,2026-05-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01187_D5,01187,D5,archive_price_performance,open,2026-05-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02476_D20,02476,D20,archive_price_performance,open,2026-05-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01236_D1,01236,D1,archive_price_performance,open,2026-05-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01236_T2_grey_market,01236,T2_grey_market,archive_grey_market_result,open,2026-05-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03296_D20,03296,D20,archive_price_performance,open,2026-05-12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07630_D1,07630,D1,archive_price_performance,open,2026-05-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07630_T2_grey_market,07630,T2_grey_market,archive_grey_market_result,open,2026-05-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07666_D1,07666,D1,archive_price_performance,open,2026-05-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07666_T2_grey_market,07666,T2_grey_market,archive_grey_market_result,open,2026-05-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01236_D5,01236,D5,archive_price_performance,open,2026-05-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01879_D20,01879,D20,archive_price_performance,open,2026-05-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02493_D20,02493,D20,archive_price_performance,open,2026-05-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07630_D5,07630,D5,archive_price_performance,open,2026-05-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07666_D5,07666,D5,archive_price_performance,open,2026-05-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01989_D60,01989,D60,archive_price_performance,open,2026-05-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06810_D20,06810,D20,archive_price_performance,open,2026-05-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06871_D1,06871,D1,archive_price_performance,open,2026-05-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06871_T2_grey_market,06871,T2_grey_market,archive_grey_market_result,open,2026-05-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01511_D1,01511,D1,archive_price_performance,open,2026-05-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01511_T2_grey_market,01511,T2_grey_market,archive_grey_market_result,open,2026-05-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07688_D1,07688,D1,archive_price_performance,open,2026-05-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07688_T2_grey_market,07688,T2_grey_market,archive_grey_market_result,open,2026-05-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02701_D60,02701,D60,archive_price_performance,open,2026-05-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03355_D60,03355,D60,archive_price_performance,open,2026-05-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02632_D60,02632,D60,archive_price_performance,open,2026-05-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02729_D60,02729,D60,archive_price_performance,open,2026-05-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06871_D5,06871,D5,archive_price_performance,open,2026-05-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06872_D1,06872,D1,archive_price_performance,open,2026-05-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06872_T2_grey_market,06872,T2_grey_market,archive_grey_market_result,open,2026-05-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01511_D5,01511,D5,archive_price_performance,open,2026-05-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01609_D20,01609,D20,archive_price_performance,open,2026-05-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07688_D5,07688,D5,archive_price_performance,open,2026-05-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01187_D20,01187,D20,archive_price_performance,open,2026-05-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06872_D5,06872,D5,archive_price_performance,open,2026-05-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00901_D1,00901,D1,archive_price_performance,open,2026-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00901_T2_grey_market,00901,T2_grey_market,archive_grey_market_result,open,2026-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02723_D1,02723,D1,archive_price_performance,open,2026-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02723_T2_grey_market,02723,T2_grey_market,archive_grey_market_result,open,2026-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03310_D1,03310,D1,archive_price_performance,open,2026-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03310_T2_grey_market,03310,T2_grey_market,archive_grey_market_result,open,2026-05-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01021_D60,01021,D60,archive_price_performance,open,2026-05-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02526_D60,02526,D60,archive_price_performance,open,2026-05-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02726_D60,02726,D60,archive_price_performance,open,2026-05-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06636_D60,06636,D60,archive_price_performance,open,2026-05-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00664_D60,00664,D60,archive_price_performance,open,2026-05-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03388_D1,03388,D1,archive_price_performance,open,2026-05-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03388_T2_grey_market,03388,T2_grey_market,archive_grey_market_result,open,2026-05-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03625_D60,03625,D60,archive_price_performance,open,2026-05-29,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01236_D20,01236,D20,archive_price_performance,open,2026-05-30,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00901_D5,00901,D5,archive_price_performance,open,2026-05-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02723_D5,02723,D5,archive_price_performance,open,2026-05-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03310_D5,03310,D5,archive_price_performance,open,2026-05-31,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07630_D20,07630,D20,archive_price_performance,open,2026-06-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07666_D20,07666,D20,archive_price_performance,open,2026-06-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03388_D5,03388,D5,archive_price_performance,open,2026-06-02,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02553_D1,02553,D1,archive_price_performance,open,2026-06-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02553_T2_grey_market,02553,T2_grey_market,archive_grey_market_result,open,2026-06-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01081_D1,01081,D1,archive_price_performance,open,2026-06-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01081_T2_grey_market,01081,T2_grey_market,archive_grey_market_result,open,2026-06-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01779_D1,01779,D1,archive_price_performance,open,2026-06-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01779_T2_grey_market,01779,T2_grey_market,archive_grey_market_result,open,2026-06-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02290_D1,02290,D1,archive_price_performance,open,2026-06-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02290_T2_grey_market,02290,T2_grey_market,archive_grey_market_result,open,2026-06-05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06871_D20,06871,D20,archive_price_performance,open,2026-06-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02553_D5,02553,D5,archive_price_performance,open,2026-06-07,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01511_D20,01511,D20,archive_price_performance,open,2026-06-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07688_D20,07688,D20,archive_price_performance,open,2026-06-08,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01081_D5,01081,D5,archive_price_performance,open,2026-06-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01779_D5,01779,D5,archive_price_performance,open,2026-06-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02290_D5,02290,D5,archive_price_performance,open,2026-06-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06872_D20,06872,D20,archive_price_performance,open,2026-06-10,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06656_D60,06656,D60,archive_price_performance,open,2026-06-14,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00068_D60,00068,D60,archive_price_performance,open,2026-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00901_D20,00901,D20,archive_price_performance,open,2026-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02723_D20,02723,D20,archive_price_performance,open,2026-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03277_D60,03277,D60,archive_price_performance,open,2026-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03310_D20,03310,D20,archive_price_performance,open,2026-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06658_D1,06658,D1,archive_price_performance,open,2026-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06658_T2_grey_market,06658,T2_grey_market,archive_grey_market_result,open,2026-06-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06675_T1_allotment,06675,T1_allotment,archive_allotment_results,waiting_until_due,2026-06-16,06675_allotment_results_pending_2026_06_15,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03388_D20,03388,D20,archive_price_performance,waiting_until_due,2026-06-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06675_D1,06675,D1,archive_price_performance,waiting_until_due,2026-06-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06675_T2_grey_market,06675,T2_grey_market,archive_grey_market_result,waiting_until_due,2026-06-17,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02476_D60,02476,D60,archive_price_performance,waiting_until_due,2026-06-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06658_D5,06658,D5,archive_price_performance,waiting_until_due,2026-06-19,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03296_D60,03296,D60,archive_price_performance,waiting_until_due,2026-06-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06675_D5,06675,D5,archive_price_performance,waiting_until_due,2026-06-21,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02553_D20,02553,D20,archive_price_performance,waiting_until_due,2026-06-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06106_T1_allotment,06106,T1_allotment,archive_allotment_results,waiting_until_due,2026-06-23,06106_allotment_results_pending_2026_06_15,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01081_D20,01081,D20,archive_price_performance,waiting_until_due,2026-06-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01779_D20,01779,D20,archive_price_performance,waiting_until_due,2026-06-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02290_D20,02290,D20,archive_price_performance,waiting_until_due,2026-06-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06106_D1,06106,D1,archive_price_performance,waiting_until_due,2026-06-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06106_T2_grey_market,06106,T2_grey_market,archive_grey_market_result,waiting_until_due,2026-06-24,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01879_D60,01879,D60,archive_price_performance,waiting_until_due,2026-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02493_D60,02493,D60,archive_price_performance,waiting_until_due,2026-06-26,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06810_D60,06810,D60,archive_price_performance,waiting_until_due,2026-06-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06106_D5,06106,D5,archive_price_performance,waiting_until_due,2026-06-28,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01609_D60,01609,D60,archive_price_performance,waiting_until_due,2026-07-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01187_D60,01187,D60,archive_price_performance,waiting_until_due,2026-07-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06658_D20,06658,D20,archive_price_performance,waiting_until_due,2026-07-04,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06675_D20,06675,D20,archive_price_performance,waiting_until_due,2026-07-06,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01236_D60,01236,D60,archive_price_performance,waiting_until_due,2026-07-09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07630_D60,07630,D60,archive_price_performance,waiting_until_due,2026-07-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07666_D60,07666,D60,archive_price_performance,waiting_until_due,2026-07-11,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06106_D20,06106,D20,archive_price_performance,waiting_until_due,2026-07-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06871_D60,06871,D60,archive_price_performance,waiting_until_due,2026-07-16,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01511_D60,01511,D60,archive_price_performance,waiting_until_due,2026-07-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07688_D60,07688,D60,archive_price_performance,waiting_until_due,2026-07-18,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06872_D60,06872,D60,archive_price_performance,waiting_until_due,2026-07-20,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00901_D60,00901,D60,archive_price_performance,waiting_until_due,2026-07-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02723_D60,02723,D60,archive_price_performance,waiting_until_due,2026-07-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03310_D60,03310,D60,archive_price_performance,waiting_until_due,2026-07-25,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03388_D60,03388,D60,archive_price_performance,waiting_until_due,2026-07-27,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02553_D60,02553,D60,archive_price_performance,waiting_until_due,2026-08-01,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01081_D60,01081,D60,archive_price_performance,waiting_until_due,2026-08-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01779_D60,01779,D60,archive_price_performance,waiting_until_due,2026-08-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02290_D60,02290,D60,archive_price_performance,waiting_until_due,2026-08-03,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06658_D60,06658,D60,archive_price_performance,waiting_until_due,2026-08-13,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06675_D60,06675,D60,archive_price_performance,waiting_until_due,2026-08-15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06106_D60,06106,D60,archive_price_performance,waiting_until_due,2026-08-22,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. diff --git a/data/snapshots/ticker_sync_state.csv b/data/snapshots/ticker_sync_state.csv index 436e6ba..43ad808 100644 --- a/data/snapshots/ticker_sync_state.csv +++ b/data/snapshots/ticker_sync_state.csv @@ -1,2052 +1,2052 @@ ticker,stage,status,required,due_date,completed_at,last_source_id,data_gap_id,last_sync_run_id,updated_at,notes -00068,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00068,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00068,T2_grey_market,pending_due,1,2026-04-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00068,D1,pending_due,1,2026-04-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00068,D5,pending_due,1,2026-04-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00068,D20,pending_due,1,2026-05-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00068,D60,pending_due,1,2026-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00100,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00100,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00100,T2_grey_market,pending_due,1,2026-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00100,D1,pending_due,1,2026-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00100,D5,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00100,D20,pending_due,1,2026-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00100,D60,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00300,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00300,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00300,T2_grey_market,pending_due,1,2024-09-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00300,D1,pending_due,1,2024-09-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00300,D5,pending_due,1,2024-09-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00300,D20,pending_due,1,2024-10-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00300,D60,pending_due,1,2024-11-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00325,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00325,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00325,T2_grey_market,pending_due,1,2025-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00325,D1,pending_due,1,2025-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00325,D5,pending_due,1,2025-01-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00325,D20,pending_due,1,2025-01-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00325,D60,pending_due,1,2025-03-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00470,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00470,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00470,T2_grey_market,pending_due,1,2026-02-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00470,D1,pending_due,1,2026-02-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00470,D5,pending_due,1,2026-02-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00470,D20,pending_due,1,2026-03-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00470,D60,pending_due,1,2026-04-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00501,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00501,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00501,T2_grey_market,pending_due,1,2026-01-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00501,D1,pending_due,1,2026-01-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00501,D5,pending_due,1,2026-01-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00501,D20,pending_due,1,2026-01-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00501,D60,pending_due,1,2026-03-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00600,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00600,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00600,T2_grey_market,pending_due,1,2026-02-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00600,D1,pending_due,1,2026-02-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00600,D5,pending_due,1,2026-02-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00600,D20,pending_due,1,2026-03-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00600,D60,pending_due,1,2026-04-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00638,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00638,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00638,T2_grey_market,pending_due,1,2025-10-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00638,D1,pending_due,1,2025-10-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00638,D5,pending_due,1,2025-10-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00638,D20,pending_due,1,2025-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00638,D60,pending_due,1,2025-12-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00664,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00664,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00664,T2_grey_market,pending_due,1,2026-03-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00664,D1,pending_due,1,2026-03-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00664,D5,pending_due,1,2026-04-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00664,D20,pending_due,1,2026-04-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00664,D60,pending_due,1,2026-05-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00666,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00666,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00666,T2_grey_market,pending_due,1,2023-12-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00666,D1,pending_due,1,2023-12-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00666,D5,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00666,D20,pending_due,1,2024-01-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00666,D60,pending_due,1,2024-02-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00699,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00699,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00699,T2_grey_market,pending_due,1,2025-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00699,D1,pending_due,1,2025-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00699,D5,pending_due,1,2025-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00699,D20,pending_due,1,2025-11-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00699,D60,pending_due,1,2026-01-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00800,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00800,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00800,T2_grey_market,pending_due,1,2025-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00800,D1,pending_due,1,2025-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00800,D5,pending_due,1,2025-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00800,D20,pending_due,1,2025-11-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00800,D60,pending_due,1,2026-01-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00805,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00805,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00805,T2_grey_market,pending_due,1,2025-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00805,D1,pending_due,1,2025-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00805,D5,pending_due,1,2025-01-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00805,D20,pending_due,1,2025-02-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00805,D60,pending_due,1,2025-03-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00901,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00901,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00901,T2_grey_market,pending_due,1,2026-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00901,D1,pending_due,1,2026-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00901,D5,pending_due,1,2026-05-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00901,D20,pending_due,1,2026-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00901,D60,pending_not_due,1,2026-07-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00917,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00917,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00917,T2_grey_market,pending_due,1,2024-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00917,D1,pending_due,1,2024-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00917,D5,pending_due,1,2024-05-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00917,D20,pending_due,1,2024-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00917,D60,pending_due,1,2024-07-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00999,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -00999,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -00999,T2_grey_market,pending_due,1,2024-12-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00999,D1,pending_due,1,2024-12-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -00999,D5,pending_due,1,2024-12-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00999,D20,pending_due,1,2025-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -00999,D60,pending_due,1,2025-02-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01021,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01021,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01021,T2_grey_market,pending_due,1,2026-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01021,D1,pending_due,1,2026-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01021,D5,pending_due,1,2026-04-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01021,D20,pending_due,1,2026-04-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01021,D60,pending_due,1,2026-05-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01081,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01081,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01081,T2_grey_market,pending_due,1,2026-06-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01081,D1,pending_due,1,2026-06-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01081,D5,pending_due,1,2026-06-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01081,D20,pending_not_due,1,2026-06-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01081,D60,pending_not_due,1,2026-08-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01111,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01111,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01111,T2_grey_market,pending_due,1,2023-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01111,D1,pending_due,1,2023-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01111,D5,pending_due,1,2023-11-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01111,D20,pending_due,1,2023-11-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01111,D60,pending_due,1,2024-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01187,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01187,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01187,T2_grey_market,pending_due,1,2026-05-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01187,D1,pending_due,1,2026-05-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01187,D5,pending_due,1,2026-05-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01187,D20,pending_due,1,2026-05-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01187,D60,pending_not_due,1,2026-07-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01236,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01236,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01236,T2_grey_market,pending_due,1,2026-05-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01236,D1,pending_due,1,2026-05-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01236,D5,pending_due,1,2026-05-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01236,D20,pending_due,1,2026-05-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01236,D60,pending_not_due,1,2026-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01274,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01274,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01274,T2_grey_market,pending_due,1,2023-12-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01274,D1,pending_due,1,2023-12-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01274,D5,pending_due,1,2023-12-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01274,D20,pending_due,1,2024-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01274,D60,pending_due,1,2024-02-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01276,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01276,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01276,T2_grey_market,pending_due,1,2025-05-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01276,D1,pending_due,1,2025-05-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01276,D5,pending_due,1,2025-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01276,D20,pending_due,1,2025-06-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01276,D60,pending_due,1,2025-07-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01284,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01284,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01284,T2_grey_market,pending_due,1,2023-07-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01284,D1,pending_due,1,2023-07-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01284,D5,pending_due,1,2023-07-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01284,D20,pending_due,1,2023-08-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01284,D60,pending_due,1,2023-09-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01304,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01304,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01304,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01304,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01304,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01304,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01304,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01318,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01318,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01318,T2_grey_market,pending_due,1,2024-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01318,D1,pending_due,1,2024-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01318,D5,pending_due,1,2024-12-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01318,D20,pending_due,1,2024-12-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01318,D60,pending_due,1,2025-02-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01333,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01333,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01333,T2_grey_market,pending_due,1,2025-05-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01333,D1,pending_due,1,2025-05-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01333,D5,pending_due,1,2025-05-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01333,D20,pending_due,1,2025-05-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01333,D60,pending_due,1,2025-07-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01334,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01334,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01334,T2_grey_market,pending_due,1,2024-07-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01334,D1,pending_due,1,2024-07-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01334,D5,pending_due,1,2024-07-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01334,D20,pending_due,1,2024-07-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01334,D60,pending_due,1,2024-09-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01354,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01354,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01354,T2_grey_market,pending_due,1,2024-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01354,D1,pending_due,1,2024-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01354,D5,pending_due,1,2024-07-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01354,D20,pending_due,1,2024-07-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01354,D60,pending_due,1,2024-08-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01364,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01364,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01364,T2_grey_market,pending_due,1,2025-02-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01364,D1,pending_due,1,2025-02-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01364,D5,pending_due,1,2025-02-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01364,D20,pending_due,1,2025-03-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01364,D60,pending_due,1,2025-04-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01384,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01384,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01384,T2_grey_market,pending_due,1,2025-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01384,D1,pending_due,1,2025-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01384,D5,pending_due,1,2025-11-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01384,D20,pending_due,1,2025-11-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01384,D60,pending_due,1,2025-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01471,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01471,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01471,T2_grey_market,pending_due,1,2024-08-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01471,D1,pending_due,1,2024-08-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01471,D5,pending_due,1,2024-08-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01471,D20,pending_due,1,2024-08-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01471,D60,pending_due,1,2024-10-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01497,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01497,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01497,T2_grey_market,pending_due,1,2023-12-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01497,D1,pending_due,1,2023-12-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01497,D5,pending_due,1,2023-12-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01497,D20,pending_due,1,2023-12-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01497,D60,pending_due,1,2024-02-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01511,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01511,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01511,T2_grey_market,pending_due,1,2026-05-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01511,D1,pending_due,1,2026-05-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01511,D5,pending_due,1,2026-05-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01511,D20,pending_due,1,2026-06-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01511,D60,pending_not_due,1,2026-07-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01519,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01519,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01519,T2_grey_market,pending_due,1,2023-10-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01519,D1,pending_due,1,2023-10-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01519,D5,pending_due,1,2023-10-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01519,D20,pending_due,1,2023-11-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01519,D60,pending_due,1,2023-12-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01541,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01541,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01541,T2_grey_market,pending_due,1,2023-09-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01541,D1,pending_due,1,2023-09-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01541,D5,pending_due,1,2023-09-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01541,D20,pending_due,1,2023-09-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01541,D60,pending_due,1,2023-11-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01609,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01609,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01609,T2_grey_market,pending_due,1,2026-05-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01609,D1,pending_due,1,2026-05-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01609,D5,pending_due,1,2026-05-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01609,D20,pending_due,1,2026-05-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01609,D60,pending_not_due,1,2026-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01641,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01641,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01641,T2_grey_market,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01641,D1,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01641,D5,pending_due,1,2026-01-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01641,D20,pending_due,1,2026-02-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01641,D60,pending_due,1,2026-03-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01768,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01768,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01768,T2_grey_market,pending_due,1,2026-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01768,D1,pending_due,1,2026-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01768,D5,pending_due,1,2026-02-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01768,D20,pending_due,1,2026-02-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01768,D60,pending_due,1,2026-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01779,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01779,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01779,T2_grey_market,pending_due,1,2026-06-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01779,D1,pending_due,1,2026-06-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01779,D5,pending_due,1,2026-06-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01779,D20,pending_not_due,1,2026-06-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01779,D60,pending_not_due,1,2026-08-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01828,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01828,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01828,T2_grey_market,pending_due,1,2025-07-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01828,D1,pending_due,1,2025-07-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01828,D5,pending_due,1,2025-07-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01828,D20,pending_due,1,2025-07-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01828,D60,pending_due,1,2025-09-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01879,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01879,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01879,T2_grey_market,pending_due,1,2026-04-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01879,D1,pending_due,1,2026-04-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01879,D5,pending_due,1,2026-05-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01879,D20,pending_due,1,2026-05-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01879,D60,pending_not_due,1,2026-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01973,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01973,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01973,T2_grey_market,pending_due,1,2023-10-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01973,D1,pending_due,1,2023-10-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01973,D5,pending_due,1,2023-10-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01973,D20,pending_due,1,2023-10-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01973,D60,pending_due,1,2023-12-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01989,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -01989,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -01989,T2_grey_market,pending_due,1,2026-03-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01989,D1,pending_due,1,2026-03-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -01989,D5,pending_due,1,2026-03-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01989,D20,pending_due,1,2026-04-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -01989,D60,pending_due,1,2026-05-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02026,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02026,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02026,T2_grey_market,pending_due,1,2025-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02026,D1,pending_due,1,2025-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02026,D5,pending_due,1,2025-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02026,D20,pending_due,1,2025-11-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02026,D60,pending_due,1,2026-01-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02050,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02050,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02050,T2_grey_market,pending_due,1,2025-06-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02050,D1,pending_due,1,2025-06-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02050,D5,pending_due,1,2025-06-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02050,D20,pending_due,1,2025-07-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02050,D60,pending_due,1,2025-08-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02097,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02097,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02097,T2_grey_market,pending_due,1,2025-03-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02097,D1,pending_due,1,2025-03-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02097,D5,pending_due,1,2025-03-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02097,D20,pending_due,1,2025-03-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02097,D60,pending_due,1,2025-05-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02105,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02105,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02105,T2_grey_market,pending_due,1,2023-06-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02105,D1,pending_due,1,2023-06-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02105,D5,pending_due,1,2023-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02105,D20,pending_due,1,2023-07-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02105,D60,pending_due,1,2023-08-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02149,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02149,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02149,T2_grey_market,pending_due,1,2023-12-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02149,D1,pending_due,1,2023-12-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02149,D5,pending_due,1,2024-01-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02149,D20,pending_due,1,2024-01-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02149,D60,pending_due,1,2024-02-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02228,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02228,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02228,T2_grey_market,pending_due,1,2024-06-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02228,D1,pending_due,1,2024-06-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02228,D5,pending_due,1,2024-06-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02228,D20,pending_due,1,2024-07-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02228,D60,pending_due,1,2024-08-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02259,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02259,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02259,T2_grey_market,pending_due,1,2025-09-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02259,D1,pending_due,1,2025-09-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02259,D5,pending_due,1,2025-10-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02259,D20,pending_due,1,2025-10-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02259,D60,pending_due,1,2025-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02268,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02268,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02268,T2_grey_market,pending_due,1,2023-11-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02268,D1,pending_due,1,2023-11-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02268,D5,pending_due,1,2023-11-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02268,D20,pending_due,1,2023-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02268,D60,pending_due,1,2024-01-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02271,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02271,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02271,T2_grey_market,pending_due,1,2023-07-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02271,D1,pending_due,1,2023-07-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02271,D5,pending_due,1,2023-07-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02271,D20,pending_due,1,2023-08-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02271,D60,pending_due,1,2023-09-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02290,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02290,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02290,T2_grey_market,pending_due,1,2026-06-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02290,D1,pending_due,1,2026-06-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02290,D5,pending_due,1,2026-06-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02290,D20,pending_not_due,1,2026-06-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02290,D60,pending_not_due,1,2026-08-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02396,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02396,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02396,T2_grey_market,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02396,D1,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02396,D5,pending_due,1,2025-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02396,D20,pending_due,1,2026-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02396,D60,pending_due,1,2026-02-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02408,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02408,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02408,T2_grey_market,pending_due,1,2025-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02408,D1,pending_due,1,2025-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02408,D5,pending_due,1,2025-12-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02408,D20,pending_due,1,2025-12-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02408,D60,pending_due,1,2026-02-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02410,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02410,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02410,T2_grey_market,pending_due,1,2024-08-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02410,D1,pending_due,1,2024-08-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02410,D5,pending_due,1,2024-08-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02410,D20,pending_due,1,2024-09-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02410,D60,pending_due,1,2024-10-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02419,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02419,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02419,T2_grey_market,pending_due,1,2023-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02419,D1,pending_due,1,2023-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02419,D5,pending_due,1,2023-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02419,D20,pending_due,1,2023-12-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02419,D60,pending_due,1,2024-02-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02429,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02429,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02429,T2_grey_market,pending_due,1,2023-11-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02429,D1,pending_due,1,2023-11-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02429,D5,pending_due,1,2023-11-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02429,D20,pending_due,1,2023-11-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02429,D60,pending_due,1,2024-01-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02431,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02431,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02431,T2_grey_market,pending_due,1,2024-12-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02431,D1,pending_due,1,2024-12-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02431,D5,pending_due,1,2024-12-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02431,D20,pending_due,1,2025-01-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02431,D60,pending_due,1,2025-02-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02432,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02432,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02432,T2_grey_market,pending_due,1,2024-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02432,D1,pending_due,1,2024-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02432,D5,pending_due,1,2024-12-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02432,D20,pending_due,1,2025-01-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02432,D60,pending_due,1,2025-02-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02438,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02438,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02438,T2_grey_market,pending_due,1,2024-04-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02438,D1,pending_due,1,2024-04-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02438,D5,pending_due,1,2024-04-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02438,D20,pending_due,1,2024-05-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02438,D60,pending_due,1,2024-06-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02443,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02443,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02443,T2_grey_market,pending_due,1,2024-05-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02443,D1,pending_due,1,2024-05-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02443,D5,pending_due,1,2024-06-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02443,D20,pending_due,1,2024-06-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02443,D60,pending_due,1,2024-07-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02451,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02451,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02451,T2_grey_market,pending_due,1,2023-10-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02451,D1,pending_due,1,2023-10-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02451,D5,pending_due,1,2023-10-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02451,D20,pending_due,1,2023-10-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02451,D60,pending_due,1,2023-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02453,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02453,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02453,T2_grey_market,pending_due,1,2024-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02453,D1,pending_due,1,2024-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02453,D5,pending_due,1,2024-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02453,D20,pending_due,1,2024-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02453,D60,pending_due,1,2024-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02460,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02460,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02460,T2_grey_market,pending_due,1,2024-10-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02460,D1,pending_due,1,2024-10-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02460,D5,pending_due,1,2024-10-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02460,D20,pending_due,1,2024-11-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02460,D60,pending_due,1,2024-12-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02465,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02465,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02465,T2_grey_market,pending_due,1,2024-10-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02465,D1,pending_due,1,2024-10-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02465,D5,pending_due,1,2024-11-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02465,D20,pending_due,1,2024-11-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02465,D60,pending_due,1,2024-12-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02473,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02473,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02473,T2_grey_market,pending_due,1,2023-11-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02473,D1,pending_due,1,2023-11-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02473,D5,pending_due,1,2023-11-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02473,D20,pending_due,1,2023-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02473,D60,pending_due,1,2024-01-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02476,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02476,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02476,T2_grey_market,pending_due,1,2026-04-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02476,D1,pending_due,1,2026-04-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02476,D5,pending_due,1,2026-04-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02476,D20,pending_due,1,2026-05-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02476,D60,pending_not_due,1,2026-06-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02477,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02477,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02477,T2_grey_market,pending_due,1,2024-01-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02477,D1,pending_due,1,2024-01-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02477,D5,pending_due,1,2024-01-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02477,D20,pending_due,1,2024-01-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02477,D60,pending_due,1,2024-03-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02479,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02479,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02479,T2_grey_market,pending_due,1,2024-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02479,D1,pending_due,1,2024-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02479,D5,pending_due,1,2024-07-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02479,D20,pending_due,1,2024-07-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02479,D60,pending_due,1,2024-08-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02481,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02481,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02481,T2_grey_market,pending_due,1,2023-07-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02481,D1,pending_due,1,2023-07-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02481,D5,pending_due,1,2023-07-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02481,D20,pending_due,1,2023-07-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02481,D60,pending_due,1,2023-09-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02483,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02483,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02483,T2_grey_market,pending_due,1,2023-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02483,D1,pending_due,1,2023-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02483,D5,pending_due,1,2023-12-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02483,D20,pending_due,1,2023-12-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02483,D60,pending_due,1,2024-02-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02489,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02489,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02489,T2_grey_market,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02489,D1,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02489,D5,pending_due,1,2023-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02489,D20,pending_due,1,2024-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02489,D60,pending_due,1,2024-02-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02490,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02490,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02490,T2_grey_market,pending_due,1,2023-09-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02490,D1,pending_due,1,2023-09-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02490,D5,pending_due,1,2023-09-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02490,D20,pending_due,1,2023-10-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02490,D60,pending_due,1,2023-11-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02493,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02493,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02493,T2_grey_market,pending_due,1,2026-04-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02493,D1,pending_due,1,2026-04-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02493,D5,pending_due,1,2026-05-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02493,D20,pending_due,1,2026-05-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02493,D60,pending_not_due,1,2026-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02495,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02495,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02495,T2_grey_market,pending_due,1,2024-07-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02495,D1,pending_due,1,2024-07-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02495,D5,pending_due,1,2024-07-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02495,D20,pending_due,1,2024-07-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02495,D60,pending_due,1,2024-09-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02496,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02496,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02496,T2_grey_market,pending_due,1,2023-09-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02496,D1,pending_due,1,2023-09-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02496,D5,pending_due,1,2023-09-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02496,D20,pending_due,1,2023-10-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02496,D60,pending_due,1,2023-11-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02497,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02497,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02497,T2_grey_market,pending_due,1,2024-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02497,D1,pending_due,1,2024-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02497,D5,pending_due,1,2024-04-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02497,D20,pending_due,1,2024-04-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02497,D60,pending_due,1,2024-05-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02498,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02498,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02498,T2_grey_market,pending_due,1,2024-01-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02498,D1,pending_due,1,2024-01-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02498,D5,pending_due,1,2024-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02498,D20,pending_due,1,2024-01-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02498,D60,pending_due,1,2024-03-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02499,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02499,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02499,T2_grey_market,pending_due,1,2023-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02499,D1,pending_due,1,2023-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02499,D5,pending_due,1,2023-11-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02499,D20,pending_due,1,2023-11-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02499,D60,pending_due,1,2024-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02501,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02501,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02501,T2_grey_market,pending_due,1,2023-10-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02501,D1,pending_due,1,2023-10-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02501,D5,pending_due,1,2023-10-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02501,D20,pending_due,1,2023-10-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02501,D60,pending_due,1,2023-12-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02502,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02502,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02502,T2_grey_market,pending_due,1,2023-12-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02502,D1,pending_due,1,2023-12-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02502,D5,pending_due,1,2023-12-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02502,D20,pending_due,1,2024-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02502,D60,pending_due,1,2024-02-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02503,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02503,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02503,T2_grey_market,pending_due,1,2024-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02503,D1,pending_due,1,2024-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02503,D5,pending_due,1,2024-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02503,D20,pending_due,1,2024-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02503,D60,pending_due,1,2024-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02505,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02505,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02505,T2_grey_market,pending_due,1,2024-05-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02505,D1,pending_due,1,2024-05-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02505,D5,pending_due,1,2024-06-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02505,D20,pending_due,1,2024-06-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02505,D60,pending_due,1,2024-07-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02506,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02506,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02506,T2_grey_market,pending_due,1,2024-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02506,D1,pending_due,1,2024-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02506,D5,pending_due,1,2025-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02506,D20,pending_due,1,2025-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02506,D60,pending_due,1,2025-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02507,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02507,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02507,T2_grey_market,pending_due,1,2024-07-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02507,D1,pending_due,1,2024-07-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02507,D5,pending_due,1,2024-07-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02507,D20,pending_due,1,2024-07-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02507,D60,pending_due,1,2024-09-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02508,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02508,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02508,T2_grey_market,pending_due,1,2025-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02508,D1,pending_due,1,2025-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02508,D5,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02508,D20,pending_due,1,2025-07-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02508,D60,pending_due,1,2025-08-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02509,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02509,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02509,T2_grey_market,pending_due,1,2024-03-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02509,D1,pending_due,1,2024-03-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02509,D5,pending_due,1,2024-03-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02509,D20,pending_due,1,2024-04-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02509,D60,pending_due,1,2024-05-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02510,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02510,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02510,T2_grey_market,pending_due,1,2024-11-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02510,D1,pending_due,1,2024-11-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02510,D5,pending_due,1,2024-11-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02510,D20,pending_due,1,2024-11-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02510,D60,pending_due,1,2024-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02511,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02511,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02511,T2_grey_market,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02511,D1,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02511,D5,pending_due,1,2023-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02511,D20,pending_due,1,2024-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02511,D60,pending_due,1,2024-02-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02512,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02512,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02512,T2_grey_market,pending_due,1,2024-06-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02512,D1,pending_due,1,2024-06-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02512,D5,pending_due,1,2024-06-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02512,D20,pending_due,1,2024-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02512,D60,pending_due,1,2024-08-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02513,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02513,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02513,T2_grey_market,pending_due,1,2026-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02513,D1,pending_due,1,2026-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02513,D5,pending_due,1,2026-01-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02513,D20,pending_due,1,2026-01-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02513,D60,pending_due,1,2026-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02515,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02515,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02515,T2_grey_market,pending_due,1,2024-04-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02515,D1,pending_due,1,2024-04-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02515,D5,pending_due,1,2024-04-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02515,D20,pending_due,1,2024-05-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02515,D60,pending_due,1,2024-06-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02516,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02516,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02516,T2_grey_market,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02516,D1,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02516,D5,pending_due,1,2023-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02516,D20,pending_due,1,2024-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02516,D60,pending_due,1,2024-02-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02517,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02517,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02517,T2_grey_market,pending_due,1,2023-11-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02517,D1,pending_due,1,2023-11-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02517,D5,pending_due,1,2023-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02517,D20,pending_due,1,2023-11-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02517,D60,pending_due,1,2023-12-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02519,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02519,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02519,T2_grey_market,pending_due,1,2024-11-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02519,D1,pending_due,1,2024-11-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02519,D5,pending_due,1,2024-11-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02519,D20,pending_due,1,2024-11-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02519,D60,pending_due,1,2025-01-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02520,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02520,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02520,T2_grey_market,pending_due,1,2023-11-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02520,D1,pending_due,1,2023-11-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02520,D5,pending_due,1,2023-11-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02520,D20,pending_due,1,2023-12-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02520,D60,pending_due,1,2024-01-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02521,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02521,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02521,T2_grey_market,pending_due,1,2023-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02521,D1,pending_due,1,2023-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02521,D5,pending_due,1,2023-12-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02521,D20,pending_due,1,2023-12-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02521,D60,pending_due,1,2024-02-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02522,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02522,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02522,T2_grey_market,pending_due,1,2024-06-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02522,D1,pending_due,1,2024-06-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02522,D5,pending_due,1,2024-06-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02522,D20,pending_due,1,2024-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02522,D60,pending_due,1,2024-08-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02525,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02525,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02525,T2_grey_market,pending_due,1,2025-09-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02525,D1,pending_due,1,2025-09-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02525,D5,pending_due,1,2025-09-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02525,D20,pending_due,1,2025-10-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02525,D60,pending_due,1,2025-11-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02526,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02526,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02526,T2_grey_market,pending_due,1,2026-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02526,D1,pending_due,1,2026-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02526,D5,pending_due,1,2026-04-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02526,D20,pending_due,1,2026-04-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02526,D60,pending_due,1,2026-05-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02529,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02529,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02529,T2_grey_market,pending_due,1,2024-05-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02529,D1,pending_due,1,2024-05-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02529,D5,pending_due,1,2024-05-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02529,D20,pending_due,1,2024-06-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02529,D60,pending_due,1,2024-07-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02530,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02530,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02530,T2_grey_market,pending_due,1,2025-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02530,D1,pending_due,1,2025-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02530,D5,pending_due,1,2025-01-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02530,D20,pending_due,1,2025-01-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02530,D60,pending_due,1,2025-03-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02531,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02531,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02531,T2_grey_market,pending_due,1,2024-07-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02531,D1,pending_due,1,2024-07-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02531,D5,pending_due,1,2024-07-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02531,D20,pending_due,1,2024-08-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02531,D60,pending_due,1,2024-09-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02533,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02533,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02533,T2_grey_market,pending_due,1,2024-08-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02533,D1,pending_due,1,2024-08-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02533,D5,pending_due,1,2024-08-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02533,D20,pending_due,1,2024-08-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02533,D60,pending_due,1,2024-10-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02535,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02535,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02535,T2_grey_market,pending_due,1,2024-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02535,D1,pending_due,1,2024-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02535,D5,pending_due,1,2024-03-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02535,D20,pending_due,1,2024-03-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02535,D60,pending_due,1,2024-05-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02536,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02536,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02536,T2_grey_market,pending_due,1,2024-03-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02536,D1,pending_due,1,2024-03-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02536,D5,pending_due,1,2024-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02536,D20,pending_due,1,2024-04-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02536,D60,pending_due,1,2024-05-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02539,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02539,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02539,T2_grey_market,pending_due,1,2025-12-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02539,D1,pending_due,1,2025-12-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02539,D5,pending_due,1,2025-12-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02539,D20,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02539,D60,pending_due,1,2026-01-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02540,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02540,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02540,T2_grey_market,pending_due,1,2024-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02540,D1,pending_due,1,2024-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02540,D5,pending_due,1,2024-03-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02540,D20,pending_due,1,2024-03-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02540,D60,pending_due,1,2024-05-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02543,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02543,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02543,T2_grey_market,pending_due,1,2025-09-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02543,D1,pending_due,1,2025-09-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02543,D5,pending_due,1,2025-09-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02543,D20,pending_due,1,2025-09-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02543,D60,pending_due,1,2025-11-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02545,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02545,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02545,T2_grey_market,pending_due,1,2024-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02545,D1,pending_due,1,2024-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02545,D5,pending_due,1,2024-07-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02545,D20,pending_due,1,2024-07-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02545,D60,pending_due,1,2024-08-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02546,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02546,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02546,T2_grey_market,pending_due,1,2025-12-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02546,D1,pending_due,1,2025-12-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02546,D5,pending_due,1,2025-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02546,D20,pending_due,1,2026-01-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02546,D60,pending_due,1,2026-02-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02549,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02549,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02549,T2_grey_market,pending_due,1,2024-10-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02549,D1,pending_due,1,2024-10-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02549,D5,pending_due,1,2024-10-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02549,D20,pending_due,1,2024-10-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02549,D60,pending_due,1,2024-11-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02550,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02550,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02550,T2_grey_market,pending_due,1,2024-06-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02550,D1,pending_due,1,2024-06-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02550,D5,pending_due,1,2024-06-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02550,D20,pending_due,1,2024-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02550,D60,pending_due,1,2024-08-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02551,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02551,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02551,T2_grey_market,pending_due,1,2024-11-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02551,D1,pending_due,1,2024-11-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02551,D5,pending_due,1,2024-11-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02551,D20,pending_due,1,2024-11-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02551,D60,pending_due,1,2025-01-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02553,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02553,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02553,T2_grey_market,pending_due,1,2026-06-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02553,D1,pending_due,1,2026-06-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02553,D5,pending_due,1,2026-06-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02553,D20,pending_not_due,1,2026-06-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02553,D60,pending_not_due,1,2026-08-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02555,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02555,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02555,T2_grey_market,pending_due,1,2024-04-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02555,D1,pending_due,1,2024-04-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02555,D5,pending_due,1,2024-04-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02555,D20,pending_due,1,2024-05-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02555,D60,pending_due,1,2024-06-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02556,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02556,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02556,T2_grey_market,pending_due,1,2024-05-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02556,D1,pending_due,1,2024-05-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02556,D5,pending_due,1,2024-05-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02556,D20,pending_due,1,2024-06-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02556,D60,pending_due,1,2024-07-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02559,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02559,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02559,T2_grey_market,pending_due,1,2024-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02559,D1,pending_due,1,2024-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02559,D5,pending_due,1,2024-07-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02559,D20,pending_due,1,2024-07-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02559,D60,pending_due,1,2024-08-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02560,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02560,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02560,T2_grey_market,pending_due,1,2025-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02560,D1,pending_due,1,2025-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02560,D5,pending_due,1,2025-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02560,D20,pending_due,1,2025-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02560,D60,pending_due,1,2025-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02561,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02561,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02561,T2_grey_market,pending_due,1,2025-03-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02561,D1,pending_due,1,2025-03-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02561,D5,pending_due,1,2025-03-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02561,D20,pending_due,1,2025-04-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02561,D60,pending_due,1,2025-05-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02563,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02563,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02563,T2_grey_market,pending_due,1,2024-10-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02563,D1,pending_due,1,2024-10-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02563,D5,pending_due,1,2024-11-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02563,D20,pending_due,1,2024-11-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02563,D60,pending_due,1,2024-12-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02565,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02565,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02565,T2_grey_market,pending_due,1,2025-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02565,D1,pending_due,1,2025-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02565,D5,pending_due,1,2025-05-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02565,D20,pending_due,1,2025-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02565,D60,pending_due,1,2025-07-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02566,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02566,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02566,T2_grey_market,pending_due,1,2024-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02566,D1,pending_due,1,2024-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02566,D5,pending_due,1,2024-12-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02566,D20,pending_due,1,2024-12-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02566,D60,pending_due,1,2025-01-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02567,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02567,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02567,T2_grey_market,pending_due,1,2024-10-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02567,D1,pending_due,1,2024-10-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02567,D5,pending_due,1,2024-10-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02567,D20,pending_due,1,2024-11-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02567,D60,pending_due,1,2024-12-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02569,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02569,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02569,T2_grey_market,pending_due,1,2025-03-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02569,D1,pending_due,1,2025-03-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02569,D5,pending_due,1,2025-03-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02569,D20,pending_due,1,2025-04-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02569,D60,pending_due,1,2025-05-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02570,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02570,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02570,T2_grey_market,pending_due,1,2024-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02570,D1,pending_due,1,2024-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02570,D5,pending_due,1,2024-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02570,D20,pending_due,1,2024-12-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02570,D60,pending_due,1,2025-02-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02571,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02571,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02571,T2_grey_market,pending_due,1,2025-01-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02571,D1,pending_due,1,2025-01-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02571,D5,pending_due,1,2025-01-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02571,D20,pending_due,1,2025-02-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02571,D60,pending_due,1,2025-03-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02573,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02573,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02573,T2_grey_market,pending_due,1,2025-06-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02573,D1,pending_due,1,2025-06-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02573,D5,pending_due,1,2025-06-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02573,D20,pending_due,1,2025-06-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02573,D60,pending_due,1,2025-08-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02575,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02575,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02575,T2_grey_market,pending_due,1,2025-10-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02575,D1,pending_due,1,2025-10-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02575,D5,pending_due,1,2025-10-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02575,D20,pending_due,1,2025-11-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02575,D60,pending_due,1,2025-12-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02576,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02576,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02576,T2_grey_market,pending_due,1,2024-10-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02576,D1,pending_due,1,2024-10-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02576,D5,pending_due,1,2024-10-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02576,D20,pending_due,1,2024-10-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02576,D60,pending_due,1,2024-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02577,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02577,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02577,T2_grey_market,pending_due,1,2024-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02577,D1,pending_due,1,2024-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02577,D5,pending_due,1,2025-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02577,D20,pending_due,1,2025-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02577,D60,pending_due,1,2025-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02579,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02579,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02579,T2_grey_market,pending_due,1,2025-11-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02579,D1,pending_due,1,2025-11-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02579,D5,pending_due,1,2025-11-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02579,D20,pending_due,1,2025-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02579,D60,pending_due,1,2026-01-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02580,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02580,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02580,T2_grey_market,pending_due,1,2025-09-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02580,D1,pending_due,1,2025-09-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02580,D5,pending_due,1,2025-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02580,D20,pending_due,1,2025-09-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02580,D60,pending_due,1,2025-10-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02581,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02581,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02581,T2_grey_market,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02581,D1,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02581,D5,pending_due,1,2025-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02581,D20,pending_due,1,2026-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02581,D60,pending_due,1,2026-02-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02582,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02582,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02582,T2_grey_market,pending_due,1,2024-11-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02582,D1,pending_due,1,2024-11-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02582,D5,pending_due,1,2024-11-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02582,D20,pending_due,1,2024-12-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02582,D60,pending_due,1,2025-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02583,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02583,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02583,T2_grey_market,pending_due,1,2025-09-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02583,D1,pending_due,1,2025-09-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02583,D5,pending_due,1,2025-10-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02583,D20,pending_due,1,2025-10-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02583,D60,pending_due,1,2025-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02585,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02585,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02585,T2_grey_market,pending_due,1,2024-11-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02585,D1,pending_due,1,2024-11-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02585,D5,pending_due,1,2024-12-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02585,D20,pending_due,1,2024-12-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02585,D60,pending_due,1,2025-01-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02586,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02586,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02586,T2_grey_market,pending_due,1,2024-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02586,D1,pending_due,1,2024-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02586,D5,pending_due,1,2024-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02586,D20,pending_due,1,2024-12-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02586,D60,pending_due,1,2025-02-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02587,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02587,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02587,T2_grey_market,pending_due,1,2024-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02587,D1,pending_due,1,2024-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02587,D5,pending_due,1,2025-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02587,D20,pending_due,1,2025-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02587,D60,pending_due,1,2025-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02589,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02589,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02589,T2_grey_market,pending_due,1,2025-05-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02589,D1,pending_due,1,2025-05-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02589,D5,pending_due,1,2025-05-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02589,D20,pending_due,1,2025-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02589,D60,pending_due,1,2025-07-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02590,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02590,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02590,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02590,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02590,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02590,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02590,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02591,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02591,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02591,T2_grey_market,pending_due,1,2025-08-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02591,D1,pending_due,1,2025-08-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02591,D5,pending_due,1,2025-08-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02591,D20,pending_due,1,2025-09-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02591,D60,pending_due,1,2025-10-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02592,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02592,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02592,T2_grey_market,pending_due,1,2025-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02592,D1,pending_due,1,2025-07-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02592,D5,pending_due,1,2025-07-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02592,D20,pending_due,1,2025-07-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02592,D60,pending_due,1,2025-08-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02593,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02593,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02593,T2_grey_market,pending_due,1,2024-12-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02593,D1,pending_due,1,2024-12-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02593,D5,pending_due,1,2024-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02593,D20,pending_due,1,2025-01-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02593,D60,pending_due,1,2025-02-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02595,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02595,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02595,T2_grey_market,pending_due,1,2025-09-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02595,D1,pending_due,1,2025-09-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02595,D5,pending_due,1,2025-09-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02595,D20,pending_due,1,2025-10-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02595,D60,pending_due,1,2025-11-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02596,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02596,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02596,T2_grey_market,pending_due,1,2025-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02596,D1,pending_due,1,2025-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02596,D5,pending_due,1,2025-01-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02596,D20,pending_due,1,2025-02-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02596,D60,pending_due,1,2025-03-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02597,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02597,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02597,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02597,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02597,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02597,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02597,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02598,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02598,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02598,T2_grey_market,pending_due,1,2024-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02598,D1,pending_due,1,2024-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02598,D5,pending_due,1,2024-04-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02598,D20,pending_due,1,2024-04-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02598,D60,pending_due,1,2024-05-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02603,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02603,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02603,T2_grey_market,pending_due,1,2025-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02603,D1,pending_due,1,2025-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02603,D5,pending_due,1,2025-05-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02603,D20,pending_due,1,2025-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02603,D60,pending_due,1,2025-07-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02605,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02605,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02605,T2_grey_market,pending_due,1,2025-06-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02605,D1,pending_due,1,2025-06-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02605,D5,pending_due,1,2025-06-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02605,D20,pending_due,1,2025-06-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02605,D60,pending_due,1,2025-08-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02609,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02609,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02609,T2_grey_market,pending_due,1,2025-06-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02609,D1,pending_due,1,2025-06-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02609,D5,pending_due,1,2025-06-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02609,D20,pending_due,1,2025-07-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02609,D60,pending_due,1,2025-08-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02610,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02610,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02610,T2_grey_market,pending_due,1,2025-03-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02610,D1,pending_due,1,2025-03-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02610,D5,pending_due,1,2025-03-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02610,D20,pending_due,1,2025-04-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02610,D60,pending_due,1,2025-05-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02613,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02613,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02613,T2_grey_market,pending_due,1,2025-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02613,D1,pending_due,1,2025-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02613,D5,pending_due,1,2025-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02613,D20,pending_due,1,2025-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02613,D60,pending_due,1,2025-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02617,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02617,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02617,T2_grey_market,pending_due,1,2025-06-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02617,D1,pending_due,1,2025-06-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02617,D5,pending_due,1,2025-06-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02617,D20,pending_due,1,2025-07-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02617,D60,pending_due,1,2025-08-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02619,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02619,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02619,T2_grey_market,pending_due,1,2025-06-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02619,D1,pending_due,1,2025-06-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02619,D5,pending_due,1,2025-06-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02619,D20,pending_due,1,2025-07-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02619,D60,pending_due,1,2025-08-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02621,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02621,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02621,T2_grey_market,pending_due,1,2025-05-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02621,D1,pending_due,1,2025-05-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02621,D5,pending_due,1,2025-06-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02621,D20,pending_due,1,2025-06-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02621,D60,pending_due,1,2025-07-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02625,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02625,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02625,T2_grey_market,pending_due,1,2025-03-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02625,D1,pending_due,1,2025-03-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02625,D5,pending_due,1,2025-04-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02625,D20,pending_due,1,2025-04-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02625,D60,pending_due,1,2025-05-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02627,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02627,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02627,T2_grey_market,pending_due,1,2025-08-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02627,D1,pending_due,1,2025-08-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02627,D5,pending_due,1,2025-08-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02627,D20,pending_due,1,2025-08-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02627,D60,pending_due,1,2025-10-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02629,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02629,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02629,T2_grey_market,pending_due,1,2025-05-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02629,D1,pending_due,1,2025-05-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02629,D5,pending_due,1,2025-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02629,D20,pending_due,1,2025-06-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02629,D60,pending_due,1,2025-07-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02630,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02630,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02630,T2_grey_market,pending_due,1,2025-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02630,D1,pending_due,1,2025-11-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02630,D5,pending_due,1,2025-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02630,D20,pending_due,1,2025-11-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02630,D60,pending_due,1,2026-01-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02631,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02631,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02631,T2_grey_market,pending_due,1,2025-08-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02631,D1,pending_due,1,2025-08-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02631,D5,pending_due,1,2025-08-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02631,D20,pending_due,1,2025-09-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02631,D60,pending_due,1,2025-10-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02632,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02632,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02632,T2_grey_market,pending_due,1,2026-03-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02632,D1,pending_due,1,2026-03-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02632,D5,pending_due,1,2026-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02632,D20,pending_due,1,2026-04-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02632,D60,pending_due,1,2026-05-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02635,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02635,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02635,T2_grey_market,pending_due,1,2025-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02635,D1,pending_due,1,2025-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02635,D5,pending_due,1,2025-12-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02635,D20,pending_due,1,2026-01-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02635,D60,pending_due,1,2026-02-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02637,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02637,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02637,T2_grey_market,pending_due,1,2025-10-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02637,D1,pending_due,1,2025-10-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02637,D5,pending_due,1,2025-10-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02637,D20,pending_due,1,2025-11-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02637,D60,pending_due,1,2025-12-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02643,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02643,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02643,T2_grey_market,pending_due,1,2025-06-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02643,D1,pending_due,1,2025-06-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02643,D5,pending_due,1,2025-06-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02643,D20,pending_due,1,2025-07-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02643,D60,pending_due,1,2025-08-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02648,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02648,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02648,T2_grey_market,pending_due,1,2025-07-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02648,D1,pending_due,1,2025-07-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02648,D5,pending_due,1,2025-07-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02648,D20,pending_due,1,2025-07-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02648,D60,pending_due,1,2025-09-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02649,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02649,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02649,T2_grey_market,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02649,D1,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02649,D5,pending_due,1,2026-03-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02649,D20,pending_due,1,2026-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02649,D60,pending_due,1,2026-05-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02650,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02650,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02650,T2_grey_market,pending_due,1,2025-10-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02650,D1,pending_due,1,2025-10-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02650,D5,pending_due,1,2025-10-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02650,D20,pending_due,1,2025-10-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02650,D60,pending_due,1,2025-12-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02651,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02651,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02651,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02651,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02651,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02651,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02651,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02652,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02652,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02652,T2_grey_market,pending_due,1,2025-10-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02652,D1,pending_due,1,2025-10-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02652,D5,pending_due,1,2025-10-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02652,D20,pending_due,1,2025-10-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02652,D60,pending_due,1,2025-12-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02655,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02655,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02655,T2_grey_market,pending_due,1,2025-12-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02655,D1,pending_due,1,2025-12-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02655,D5,pending_due,1,2025-12-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02655,D20,pending_due,1,2026-01-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02655,D60,pending_due,1,2026-02-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02656,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02656,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02656,T2_grey_market,pending_due,1,2025-09-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02656,D1,pending_due,1,2025-09-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02656,D5,pending_due,1,2025-09-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02656,D20,pending_due,1,2025-10-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02656,D60,pending_due,1,2025-11-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02657,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02657,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02657,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02657,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02657,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02657,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02657,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02658,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02658,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02658,T2_grey_market,pending_due,1,2025-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02658,D1,pending_due,1,2025-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02658,D5,pending_due,1,2025-12-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02658,D20,pending_due,1,2025-12-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02658,D60,pending_due,1,2026-02-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02659,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02659,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02659,T2_grey_market,pending_due,1,2025-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02659,D1,pending_due,1,2025-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02659,D5,pending_due,1,2025-12-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02659,D20,pending_due,1,2025-12-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02659,D60,pending_due,1,2026-02-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02661,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02661,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02661,T2_grey_market,pending_due,1,2025-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02661,D1,pending_due,1,2025-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02661,D5,pending_due,1,2025-12-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02661,D20,pending_due,1,2026-01-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02661,D60,pending_due,1,2026-02-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02670,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02670,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02670,T2_grey_market,pending_due,1,2025-10-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02670,D1,pending_due,1,2025-10-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02670,D5,pending_due,1,2025-10-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02670,D20,pending_due,1,2025-11-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02670,D60,pending_due,1,2025-12-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02671,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02671,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02671,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02671,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02671,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02671,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02671,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02675,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02675,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02675,T2_grey_market,pending_due,1,2026-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02675,D1,pending_due,1,2026-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02675,D5,pending_due,1,2026-01-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02675,D20,pending_due,1,2026-01-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02675,D60,pending_due,1,2026-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02676,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02676,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02676,T2_grey_market,pending_due,1,2025-12-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02676,D1,pending_due,1,2025-12-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02676,D5,pending_due,1,2025-12-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02676,D20,pending_due,1,2025-12-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02676,D60,pending_due,1,2026-02-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02677,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02677,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02677,T2_grey_market,pending_due,1,2026-02-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02677,D1,pending_due,1,2026-02-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02677,D5,pending_due,1,2026-02-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02677,D20,pending_due,1,2026-02-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02677,D60,pending_due,1,2026-04-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02685,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02685,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02685,T2_grey_market,pending_due,1,2025-11-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02685,D1,pending_due,1,2025-11-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02685,D5,pending_due,1,2025-12-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02685,D20,pending_due,1,2025-12-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02685,D60,pending_due,1,2026-01-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02687,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02687,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02687,T2_grey_market,pending_due,1,2025-12-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02687,D1,pending_due,1,2025-12-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02687,D5,pending_due,1,2025-12-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02687,D20,pending_due,1,2025-12-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02687,D60,pending_due,1,2026-02-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02691,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02691,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02691,T2_grey_market,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02691,D1,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02691,D5,pending_due,1,2025-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02691,D20,pending_due,1,2026-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02691,D60,pending_due,1,2026-02-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02692,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02692,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02692,T2_grey_market,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02692,D1,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02692,D5,pending_due,1,2026-03-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02692,D20,pending_due,1,2026-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02692,D60,pending_due,1,2026-05-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02693,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02693,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02693,T2_grey_market,pending_due,1,2025-12-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02693,D1,pending_due,1,2025-12-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02693,D5,pending_due,1,2025-12-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02693,D20,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02693,D60,pending_due,1,2026-01-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02695,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02695,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02695,T2_grey_market,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02695,D1,pending_due,1,2025-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02695,D5,pending_due,1,2025-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02695,D20,pending_due,1,2026-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02695,D60,pending_due,1,2026-02-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02698,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02698,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02698,T2_grey_market,pending_due,1,2025-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02698,D1,pending_due,1,2025-11-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02698,D5,pending_due,1,2025-11-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02698,D20,pending_due,1,2025-11-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02698,D60,pending_due,1,2026-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02701,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02701,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02701,T2_grey_market,pending_due,1,2026-03-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02701,D1,pending_due,1,2026-03-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02701,D5,pending_due,1,2026-03-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02701,D20,pending_due,1,2026-04-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02701,D60,pending_due,1,2026-05-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02706,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02706,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02706,T2_grey_market,pending_due,1,2026-02-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02706,D1,pending_due,1,2026-02-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02706,D5,pending_due,1,2026-02-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02706,D20,pending_due,1,2026-03-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02706,D60,pending_due,1,2026-04-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02714,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02714,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02714,T2_grey_market,pending_due,1,2026-02-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02714,D1,pending_due,1,2026-02-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02714,D5,pending_due,1,2026-02-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02714,D20,pending_due,1,2026-02-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02714,D60,pending_due,1,2026-04-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02715,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02715,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02715,T2_grey_market,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02715,D1,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02715,D5,pending_due,1,2026-03-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02715,D20,pending_due,1,2026-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02715,D60,pending_due,1,2026-05-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02718,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02718,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02718,T2_grey_market,pending_due,1,2025-11-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02718,D1,pending_due,1,2025-11-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02718,D5,pending_due,1,2025-11-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02718,D20,pending_due,1,2025-11-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02718,D60,pending_due,1,2026-01-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02720,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02720,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02720,T2_grey_market,pending_due,1,2026-02-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02720,D1,pending_due,1,2026-02-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02720,D5,pending_due,1,2026-02-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02720,D20,pending_due,1,2026-03-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02720,D60,pending_due,1,2026-04-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02723,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02723,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02723,T2_grey_market,pending_due,1,2026-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02723,D1,pending_due,1,2026-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02723,D5,pending_due,1,2026-05-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02723,D20,pending_due,1,2026-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02723,D60,pending_not_due,1,2026-07-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02726,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02726,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02726,T2_grey_market,pending_due,1,2026-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02726,D1,pending_due,1,2026-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02726,D5,pending_due,1,2026-04-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02726,D20,pending_due,1,2026-04-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02726,D60,pending_due,1,2026-05-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02729,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02729,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02729,T2_grey_market,pending_due,1,2026-03-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02729,D1,pending_due,1,2026-03-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02729,D5,pending_due,1,2026-03-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02729,D20,pending_due,1,2026-04-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02729,D60,pending_due,1,2026-05-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02768,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02768,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02768,T2_grey_market,pending_due,1,2026-02-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02768,D1,pending_due,1,2026-02-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02768,D5,pending_due,1,2026-02-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02768,D20,pending_due,1,2026-02-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02768,D60,pending_due,1,2026-04-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02788,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02788,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02788,T2_grey_market,pending_due,1,2025-11-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02788,D1,pending_due,1,2025-11-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02788,D5,pending_due,1,2025-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02788,D20,pending_due,1,2025-12-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02788,D60,pending_due,1,2026-01-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02865,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02865,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02865,T2_grey_market,pending_due,1,2025-05-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02865,D1,pending_due,1,2025-05-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02865,D5,pending_due,1,2025-05-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02865,D20,pending_due,1,2025-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02865,D60,pending_due,1,2025-07-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02881,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02881,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02881,T2_grey_market,pending_due,1,2024-06-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02881,D1,pending_due,1,2024-06-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02881,D5,pending_due,1,2024-06-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02881,D20,pending_due,1,2024-07-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02881,D60,pending_due,1,2024-08-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02889,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02889,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02889,T2_grey_market,pending_due,1,2025-09-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02889,D1,pending_due,1,2025-09-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02889,D5,pending_due,1,2025-10-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02889,D20,pending_due,1,2025-10-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02889,D60,pending_due,1,2025-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02898,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -02898,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -02898,T2_grey_market,pending_due,1,2024-05-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02898,D1,pending_due,1,2024-05-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -02898,D5,pending_due,1,2024-05-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02898,D20,pending_due,1,2024-06-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -02898,D60,pending_due,1,2024-07-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03200,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03200,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03200,T2_grey_market,pending_due,1,2026-02-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03200,D1,pending_due,1,2026-02-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03200,D5,pending_due,1,2026-02-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03200,D20,pending_due,1,2026-02-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03200,D60,pending_due,1,2026-04-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03268,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03268,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03268,T2_grey_market,pending_due,1,2026-03-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03268,D1,pending_due,1,2026-03-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03268,D5,pending_due,1,2026-03-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03268,D20,pending_due,1,2026-03-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03268,D60,pending_due,1,2026-05-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03277,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03277,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03277,T2_grey_market,pending_due,1,2026-04-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03277,D1,pending_due,1,2026-04-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03277,D5,pending_due,1,2026-04-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03277,D20,pending_due,1,2026-05-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03277,D60,pending_due,1,2026-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03288,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03288,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03288,T2_grey_market,pending_due,1,2025-06-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03288,D1,pending_due,1,2025-06-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03288,D5,pending_due,1,2025-06-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03288,D20,pending_due,1,2025-07-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03288,D60,pending_due,1,2025-08-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03296,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03296,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03296,T2_grey_market,pending_due,1,2026-04-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03296,D1,pending_due,1,2026-04-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03296,D5,pending_due,1,2026-04-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03296,D20,pending_due,1,2026-05-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03296,D60,pending_not_due,1,2026-06-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03310,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03310,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03310,T2_grey_market,pending_due,1,2026-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03310,D1,pending_due,1,2026-05-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03310,D5,pending_due,1,2026-05-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03310,D20,pending_due,1,2026-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03310,D60,pending_not_due,1,2026-07-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03317,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03317,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03317,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03317,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03317,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03317,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03317,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03355,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03355,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03355,T2_grey_market,pending_due,1,2026-03-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03355,D1,pending_due,1,2026-03-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03355,D5,pending_due,1,2026-03-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03355,D20,pending_due,1,2026-04-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03355,D60,pending_due,1,2026-05-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03378,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03378,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03378,T2_grey_market,pending_due,1,2025-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03378,D1,pending_due,1,2025-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03378,D5,pending_due,1,2025-12-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03378,D20,pending_due,1,2026-01-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03378,D60,pending_due,1,2026-02-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03388,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03388,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03388,T2_grey_market,pending_due,1,2026-05-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03388,D1,pending_due,1,2026-05-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03388,D5,pending_due,1,2026-06-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03388,D20,pending_not_due,1,2026-06-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03388,D60,pending_not_due,1,2026-07-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03625,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03625,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03625,T2_grey_market,pending_due,1,2026-03-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03625,D1,pending_due,1,2026-03-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03625,D5,pending_due,1,2026-04-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03625,D20,pending_due,1,2026-04-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03625,D60,pending_due,1,2026-05-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03636,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03636,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03636,T2_grey_market,pending_due,1,2026-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03636,D1,pending_due,1,2026-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03636,D5,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03636,D20,pending_due,1,2026-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03636,D60,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03650,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03650,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03650,T2_grey_market,pending_due,1,2023-07-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03650,D1,pending_due,1,2023-07-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03650,D5,pending_due,1,2023-07-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03650,D20,pending_due,1,2023-07-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03650,D60,pending_due,1,2023-09-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03677,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03677,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03677,T2_grey_market,pending_due,1,2025-04-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03677,D1,pending_due,1,2025-04-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03677,D5,pending_due,1,2025-04-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03677,D20,pending_due,1,2025-05-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03677,D60,pending_due,1,2025-06-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03696,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03696,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03696,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03696,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03696,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03696,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03696,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03750,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03750,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03750,T2_grey_market,pending_due,1,2025-05-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03750,D1,pending_due,1,2025-05-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03750,D5,pending_due,1,2025-05-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03750,D20,pending_due,1,2025-06-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03750,D60,pending_due,1,2025-07-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03858,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03858,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03858,T2_grey_market,pending_due,1,2025-08-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03858,D1,pending_due,1,2025-08-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03858,D5,pending_due,1,2025-09-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03858,D20,pending_due,1,2025-09-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03858,D60,pending_due,1,2025-10-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03880,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03880,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03880,T2_grey_market,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03880,D1,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03880,D5,pending_due,1,2025-07-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03880,D20,pending_due,1,2025-07-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03880,D60,pending_due,1,2025-08-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03881,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03881,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03881,T2_grey_market,pending_due,1,2025-12-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03881,D1,pending_due,1,2025-12-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03881,D5,pending_due,1,2025-12-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03881,D20,pending_due,1,2026-01-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03881,D60,pending_due,1,2026-02-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03887,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03887,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03887,T2_grey_market,pending_due,1,2025-12-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03887,D1,pending_due,1,2025-12-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03887,D5,pending_due,1,2025-12-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03887,D20,pending_due,1,2026-01-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03887,D60,pending_due,1,2026-02-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03986,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -03986,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -03986,T2_grey_market,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03986,D1,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -03986,D5,pending_due,1,2026-01-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03986,D20,pending_due,1,2026-02-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -03986,D60,pending_due,1,2026-03-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06031,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06031,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06031,T2_grey_market,pending_due,1,2025-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06031,D1,pending_due,1,2025-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06031,D5,pending_due,1,2025-11-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06031,D20,pending_due,1,2025-11-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06031,D60,pending_due,1,2025-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06082,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06082,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06082,T2_grey_market,pending_due,1,2026-01-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06082,D1,pending_due,1,2026-01-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06082,D5,pending_due,1,2026-01-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06082,D20,pending_due,1,2026-01-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06082,D60,pending_due,1,2026-03-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06086,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06086,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06086,T2_grey_market,pending_due,1,2024-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06086,D1,pending_due,1,2024-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06086,D5,pending_due,1,2024-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06086,D20,pending_due,1,2024-07-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06086,D60,pending_due,1,2024-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06090,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06090,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06090,T2_grey_market,pending_due,1,2025-09-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06090,D1,pending_due,1,2025-09-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06090,D5,pending_due,1,2025-09-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06090,D20,pending_due,1,2025-10-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06090,D60,pending_due,1,2025-11-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06106,T0_prospectus,complete,1,2026-06-15,2026-06-15,06106_prospectus_candidate_2026_06_15,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Prospectus source and offering terms are archived. -06106,T1_allotment,pending_not_due,1,2026-06-23,,,06106_allotment_results_pending_2026_06_15,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06106,T2_grey_market,pending_not_due,1,2026-06-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06106,D1,pending_not_due,1,2026-06-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06106,D5,pending_not_due,1,2026-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06106,D20,pending_not_due,1,2026-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06106,D60,pending_not_due,1,2026-08-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06166,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06166,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06166,T2_grey_market,pending_due,1,2025-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06166,D1,pending_due,1,2025-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06166,D5,pending_due,1,2025-11-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06166,D20,pending_due,1,2025-11-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06166,D60,pending_due,1,2025-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06168,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06168,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06168,T2_grey_market,pending_due,1,2025-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06168,D1,pending_due,1,2025-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06168,D5,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06168,D20,pending_due,1,2025-07-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06168,D60,pending_due,1,2025-08-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06181,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06181,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06181,T2_grey_market,pending_due,1,2024-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06181,D1,pending_due,1,2024-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06181,D5,pending_due,1,2024-07-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06181,D20,pending_due,1,2024-07-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06181,D60,pending_due,1,2024-08-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06600,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06600,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06600,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06600,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06600,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06600,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06600,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06603,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06603,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06603,T2_grey_market,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06603,D1,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06603,D5,pending_due,1,2025-07-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06603,D20,pending_due,1,2025-07-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06603,D60,pending_due,1,2025-08-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06613,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06613,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06613,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06613,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06613,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06613,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06613,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06636,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06636,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06636,T2_grey_market,pending_due,1,2026-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06636,D1,pending_due,1,2026-03-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06636,D5,pending_due,1,2026-04-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06636,D20,pending_due,1,2026-04-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06636,D60,pending_due,1,2026-05-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06651,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06651,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06651,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06651,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06651,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06651,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06651,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06656,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06656,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06656,T2_grey_market,pending_due,1,2026-04-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06656,D1,pending_due,1,2026-04-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06656,D5,pending_due,1,2026-04-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06656,D20,pending_due,1,2026-05-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06656,D60,pending_due,1,2026-06-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06657,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06657,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06657,T2_grey_market,pending_due,1,2024-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06657,D1,pending_due,1,2024-07-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06657,D5,pending_due,1,2024-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06657,D20,pending_due,1,2024-07-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06657,D60,pending_due,1,2024-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06658,T0_prospectus,complete,1,2026-06-05,2026-06-05,06658_prospectus_2026_06_05,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Prospectus source and offering terms are archived. -06658,T1_allotment,complete,1,2026-06-12,2026-06-12,06658_allotment_results_2026_06_12,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are archived. -06658,T2_grey_market,pending_due,1,2026-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06658,D1,pending_due,1,2026-06-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06658,D5,pending_not_due,1,2026-06-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06658,D20,pending_not_due,1,2026-07-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06658,D60,pending_not_due,1,2026-08-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06675,T0_prospectus,complete,1,2026-06-09,2026-06-09,06675_prospectus_2026_06_09,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Prospectus source and offering terms are archived. -06675,T1_allotment,pending_not_due,1,2026-06-16,,,06675_allotment_results_pending_2026_06_15,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06675,T2_grey_market,pending_not_due,1,2026-06-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06675,D1,pending_not_due,1,2026-06-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06675,D5,pending_not_due,1,2026-06-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06675,D20,pending_not_due,1,2026-07-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06675,D60,pending_not_due,1,2026-08-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06681,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06681,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06681,T2_grey_market,pending_due,1,2025-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06681,D1,pending_due,1,2025-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06681,D5,pending_due,1,2025-01-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06681,D20,pending_due,1,2025-01-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06681,D60,pending_due,1,2025-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06682,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06682,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06682,T2_grey_market,pending_due,1,2023-09-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06682,D1,pending_due,1,2023-09-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06682,D5,pending_due,1,2023-10-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06682,D20,pending_due,1,2023-10-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06682,D60,pending_due,1,2023-11-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06683,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06683,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06683,T2_grey_market,pending_due,1,2023-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06683,D1,pending_due,1,2023-07-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06683,D5,pending_due,1,2023-07-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06683,D20,pending_due,1,2023-08-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06683,D60,pending_due,1,2023-09-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06687,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06687,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06687,T2_grey_market,pending_due,1,2025-10-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06687,D1,pending_due,1,2025-10-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06687,D5,pending_due,1,2025-10-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06687,D20,pending_due,1,2025-11-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06687,D60,pending_due,1,2025-12-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06693,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06693,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06693,T2_grey_market,pending_due,1,2025-03-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06693,D1,pending_due,1,2025-03-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06693,D5,pending_due,1,2025-03-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06693,D20,pending_due,1,2025-03-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06693,D60,pending_due,1,2025-05-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06809,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06809,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06809,T2_grey_market,pending_due,1,2026-02-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06809,D1,pending_due,1,2026-02-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06809,D5,pending_due,1,2026-02-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06809,D20,pending_due,1,2026-02-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06809,D60,pending_due,1,2026-04-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06810,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06810,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06810,T2_grey_market,pending_due,1,2026-04-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06810,D1,pending_due,1,2026-04-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06810,D5,pending_due,1,2026-05-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06810,D20,pending_due,1,2026-05-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06810,D60,pending_not_due,1,2026-06-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06831,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06831,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06831,T2_grey_market,pending_due,1,2025-05-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06831,D1,pending_due,1,2025-05-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06831,D5,pending_due,1,2025-05-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06831,D20,pending_due,1,2025-06-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06831,D60,pending_due,1,2025-07-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06871,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06871,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06871,T2_grey_market,pending_due,1,2026-05-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06871,D1,pending_due,1,2026-05-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06871,D5,pending_due,1,2026-05-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06871,D20,pending_due,1,2026-06-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06871,D60,pending_not_due,1,2026-07-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06872,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06872,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06872,T2_grey_market,pending_due,1,2026-05-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06872,D1,pending_due,1,2026-05-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06872,D5,pending_due,1,2026-05-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06872,D20,pending_due,1,2026-06-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06872,D60,pending_not_due,1,2026-07-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06883,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06883,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06883,T2_grey_market,pending_due,1,2025-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06883,D1,pending_due,1,2025-06-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06883,D5,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06883,D20,pending_due,1,2025-07-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06883,D60,pending_due,1,2025-08-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06911,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06911,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06911,T2_grey_market,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06911,D1,pending_due,1,2023-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06911,D5,pending_due,1,2023-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06911,D20,pending_due,1,2024-01-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06911,D60,pending_due,1,2024-02-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06936,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06936,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06936,T2_grey_market,pending_due,1,2024-11-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06936,D1,pending_due,1,2024-11-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06936,D5,pending_due,1,2024-12-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06936,D20,pending_due,1,2024-12-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06936,D60,pending_due,1,2025-01-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06938,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06938,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06938,T2_grey_market,pending_due,1,2026-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06938,D1,pending_due,1,2026-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06938,D5,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06938,D20,pending_due,1,2026-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06938,D60,pending_due,1,2026-03-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06959,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06959,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06959,T2_grey_market,pending_due,1,2024-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06959,D1,pending_due,1,2024-01-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06959,D5,pending_due,1,2024-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06959,D20,pending_due,1,2024-01-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06959,D60,pending_due,1,2024-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06960,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06960,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06960,T2_grey_market,pending_due,1,2025-08-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06960,D1,pending_due,1,2025-08-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06960,D5,pending_due,1,2025-08-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06960,D20,pending_due,1,2025-09-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06960,D60,pending_due,1,2025-10-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06980,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06980,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06980,T2_grey_market,pending_due,1,2025-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06980,D1,pending_due,1,2025-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06980,D5,pending_due,1,2025-11-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06980,D20,pending_due,1,2025-11-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06980,D60,pending_due,1,2025-12-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06990,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -06990,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -06990,T2_grey_market,pending_due,1,2023-07-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06990,D1,pending_due,1,2023-07-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -06990,D5,pending_due,1,2023-07-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06990,D20,pending_due,1,2023-07-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -06990,D60,pending_due,1,2023-09-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07618,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -07618,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -07618,T2_grey_market,pending_due,1,2025-12-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07618,D1,pending_due,1,2025-12-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07618,D5,pending_due,1,2025-12-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07618,D20,pending_due,1,2025-12-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07618,D60,pending_due,1,2026-02-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07630,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -07630,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -07630,T2_grey_market,pending_due,1,2026-05-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07630,D1,pending_due,1,2026-05-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07630,D5,pending_due,1,2026-05-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07630,D20,pending_due,1,2026-06-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07630,D60,pending_not_due,1,2026-07-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07666,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -07666,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -07666,T2_grey_market,pending_due,1,2026-05-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07666,D1,pending_due,1,2026-05-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07666,D5,pending_due,1,2026-05-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07666,D20,pending_due,1,2026-06-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07666,D60,pending_not_due,1,2026-07-11,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07688,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -07688,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -07688,T2_grey_market,pending_due,1,2026-05-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07688,D1,pending_due,1,2026-05-20,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -07688,D5,pending_due,1,2026-05-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07688,D20,pending_due,1,2026-06-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -07688,D60,pending_not_due,1,2026-07-18,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08529,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08529,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08529,T2_grey_market,pending_due,1,2024-06-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08529,D1,pending_due,1,2024-06-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08529,D5,pending_due,1,2024-06-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08529,D20,pending_due,1,2024-06-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08529,D60,pending_due,1,2024-08-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08549,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08549,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08549,T2_grey_market,pending_due,1,2025-10-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08549,D1,pending_due,1,2025-10-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08549,D5,pending_due,1,2025-10-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08549,D20,pending_due,1,2025-10-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08549,D60,pending_due,1,2025-12-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08610,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08610,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08610,T2_grey_market,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08610,D1,pending_due,1,2026-01-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08610,D5,pending_due,1,2026-01-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08610,D20,pending_due,1,2026-02-01,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08610,D60,pending_due,1,2026-03-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08629,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08629,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08629,T2_grey_market,pending_due,1,2024-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08629,D1,pending_due,1,2024-09-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08629,D5,pending_due,1,2024-09-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08629,D20,pending_due,1,2024-09-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08629,D60,pending_due,1,2024-11-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08637,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -08637,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -08637,T2_grey_market,pending_due,1,2024-07-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08637,D1,pending_due,1,2024-07-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -08637,D5,pending_due,1,2024-07-06,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08637,D20,pending_due,1,2024-07-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -08637,D60,pending_due,1,2024-08-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09606,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09606,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09606,T2_grey_market,pending_due,1,2025-04-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09606,D1,pending_due,1,2025-04-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09606,D5,pending_due,1,2025-04-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09606,D20,pending_due,1,2025-05-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09606,D60,pending_due,1,2025-06-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09609,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09609,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09609,T2_grey_market,pending_due,1,2025-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09609,D1,pending_due,1,2025-11-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09609,D5,pending_due,1,2025-12-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09609,D20,pending_due,1,2025-12-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09609,D60,pending_due,1,2026-01-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09611,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09611,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09611,T2_grey_market,pending_due,1,2026-01-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09611,D1,pending_due,1,2026-01-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09611,D5,pending_due,1,2026-01-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09611,D20,pending_due,1,2026-02-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09611,D60,pending_due,1,2026-03-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09639,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09639,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09639,T2_grey_market,pending_due,1,2024-10-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09639,D1,pending_due,1,2024-10-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09639,D5,pending_due,1,2024-10-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09639,D20,pending_due,1,2024-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09639,D60,pending_due,1,2024-12-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09660,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09660,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09660,T2_grey_market,pending_due,1,2024-10-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09660,D1,pending_due,1,2024-10-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09660,D5,pending_due,1,2024-10-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09660,D20,pending_due,1,2024-11-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09660,D60,pending_due,1,2024-12-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09663,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09663,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09663,T2_grey_market,pending_due,1,2023-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09663,D1,pending_due,1,2023-12-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09663,D5,pending_due,1,2023-12-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09663,D20,pending_due,1,2023-12-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09663,D60,pending_due,1,2024-02-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09676,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09676,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09676,T2_grey_market,pending_due,1,2023-10-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09676,D1,pending_due,1,2023-10-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09676,D5,pending_due,1,2023-10-16,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09676,D20,pending_due,1,2023-10-31,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09676,D60,pending_due,1,2023-12-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09678,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09678,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09678,T2_grey_market,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09678,D1,pending_due,1,2025-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09678,D5,pending_due,1,2025-07-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09678,D20,pending_due,1,2025-07-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09678,D60,pending_due,1,2025-08-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09680,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09680,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09680,T2_grey_market,pending_due,1,2024-07-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09680,D1,pending_due,1,2024-07-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09680,D5,pending_due,1,2024-07-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09680,D20,pending_due,1,2024-07-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09680,D60,pending_due,1,2024-09-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09686,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09686,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09686,T2_grey_market,pending_due,1,2023-09-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09686,D1,pending_due,1,2023-09-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09686,D5,pending_due,1,2023-10-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09686,D20,pending_due,1,2023-10-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09686,D60,pending_due,1,2023-11-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09690,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09690,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09690,T2_grey_market,pending_due,1,2023-09-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09690,D1,pending_due,1,2023-09-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09690,D5,pending_due,1,2023-09-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09690,D20,pending_due,1,2023-10-15,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09690,D60,pending_due,1,2023-11-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09860,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09860,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09860,T2_grey_market,pending_due,1,2023-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09860,D1,pending_due,1,2023-06-30,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09860,D5,pending_due,1,2023-07-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09860,D20,pending_due,1,2023-07-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09860,D60,pending_due,1,2023-08-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09879,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09879,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09879,T2_grey_market,pending_due,1,2024-03-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09879,D1,pending_due,1,2024-03-21,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09879,D5,pending_due,1,2024-03-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09879,D20,pending_due,1,2024-04-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09879,D60,pending_due,1,2024-05-19,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09880,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09880,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09880,T2_grey_market,pending_due,1,2023-12-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09880,D1,pending_due,1,2023-12-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09880,D5,pending_due,1,2024-01-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09880,D20,pending_due,1,2024-01-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09880,D60,pending_due,1,2024-02-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09881,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09881,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09881,T2_grey_market,pending_due,1,2025-06-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09881,D1,pending_due,1,2025-06-10,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09881,D5,pending_due,1,2025-06-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09881,D20,pending_due,1,2025-06-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09881,D60,pending_due,1,2025-08-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09885,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09885,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09885,T2_grey_market,pending_due,1,2023-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09885,D1,pending_due,1,2023-06-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09885,D5,pending_due,1,2023-07-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09885,D20,pending_due,1,2023-07-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09885,D60,pending_due,1,2023-08-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09887,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09887,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09887,T2_grey_market,pending_due,1,2025-07-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09887,D1,pending_due,1,2025-07-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09887,D5,pending_due,1,2025-07-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09887,D20,pending_due,1,2025-08-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09887,D60,pending_due,1,2025-09-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09890,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09890,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09890,T2_grey_market,pending_due,1,2023-09-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09890,D1,pending_due,1,2023-09-28,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09890,D5,pending_due,1,2023-10-02,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09890,D20,pending_due,1,2023-10-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09890,D60,pending_due,1,2023-11-26,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09903,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09903,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09903,T2_grey_market,pending_due,1,2026-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09903,D1,pending_due,1,2026-01-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09903,D5,pending_due,1,2026-01-12,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09903,D20,pending_due,1,2026-01-27,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09903,D60,pending_due,1,2026-03-08,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09927,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09927,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09927,T2_grey_market,pending_due,1,2025-11-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09927,D1,pending_due,1,2025-11-05,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09927,D5,pending_due,1,2025-11-09,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09927,D20,pending_due,1,2025-11-24,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09927,D60,pending_due,1,2026-01-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09973,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09973,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09973,T2_grey_market,pending_due,1,2025-09-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09973,D1,pending_due,1,2025-09-25,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09973,D5,pending_due,1,2025-09-29,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09973,D20,pending_due,1,2025-10-14,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09973,D60,pending_due,1,2025-11-23,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09980,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09980,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09980,T2_grey_market,pending_due,1,2026-02-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09980,D1,pending_due,1,2026-02-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09980,D5,pending_due,1,2026-02-07,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09980,D20,pending_due,1,2026-02-22,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09980,D60,pending_due,1,2026-04-03,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09981,T0_prospectus,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Missing prospectus source or offering terms. -09981,T1_allotment,pending_due,1,,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Allotment result facts are not archived yet. -09981,T2_grey_market,pending_due,1,2026-02-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09981,D1,pending_due,1,2026-02-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. -09981,D5,pending_due,1,2026-02-17,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09981,D20,pending_due,1,2026-03-04,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. -09981,D60,pending_due,1,2026-04-13,,,,sync_state_20260615T073000Z,2026-06-15T07:30:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00068,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00068,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00068,T2_grey_market,pending_due,1,2026-04-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00068,D1,pending_due,1,2026-04-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00068,D5,pending_due,1,2026-04-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00068,D20,pending_due,1,2026-05-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00068,D60,pending_due,1,2026-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00100,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00100,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00100,T2_grey_market,pending_due,1,2026-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00100,D1,pending_due,1,2026-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00100,D5,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00100,D20,pending_due,1,2026-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00100,D60,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00300,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00300,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00300,T2_grey_market,pending_due,1,2024-09-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00300,D1,pending_due,1,2024-09-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00300,D5,pending_due,1,2024-09-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00300,D20,pending_due,1,2024-10-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00300,D60,pending_due,1,2024-11-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00325,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00325,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00325,T2_grey_market,pending_due,1,2025-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00325,D1,pending_due,1,2025-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00325,D5,pending_due,1,2025-01-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00325,D20,pending_due,1,2025-01-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00325,D60,pending_due,1,2025-03-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00470,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00470,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00470,T2_grey_market,pending_due,1,2026-02-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00470,D1,pending_due,1,2026-02-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00470,D5,pending_due,1,2026-02-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00470,D20,pending_due,1,2026-03-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00470,D60,pending_due,1,2026-04-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00501,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00501,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00501,T2_grey_market,pending_due,1,2026-01-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00501,D1,pending_due,1,2026-01-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00501,D5,pending_due,1,2026-01-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00501,D20,pending_due,1,2026-01-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00501,D60,pending_due,1,2026-03-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00600,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00600,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00600,T2_grey_market,pending_due,1,2026-02-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00600,D1,pending_due,1,2026-02-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00600,D5,pending_due,1,2026-02-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00600,D20,pending_due,1,2026-03-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00600,D60,pending_due,1,2026-04-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00638,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00638,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00638,T2_grey_market,pending_due,1,2025-10-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00638,D1,pending_due,1,2025-10-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00638,D5,pending_due,1,2025-10-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00638,D20,pending_due,1,2025-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00638,D60,pending_due,1,2025-12-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00664,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00664,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00664,T2_grey_market,pending_due,1,2026-03-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00664,D1,pending_due,1,2026-03-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00664,D5,pending_due,1,2026-04-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00664,D20,pending_due,1,2026-04-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00664,D60,pending_due,1,2026-05-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00666,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00666,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00666,T2_grey_market,pending_due,1,2023-12-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00666,D1,pending_due,1,2023-12-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00666,D5,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00666,D20,pending_due,1,2024-01-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00666,D60,pending_due,1,2024-02-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00699,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00699,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00699,T2_grey_market,pending_due,1,2025-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00699,D1,pending_due,1,2025-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00699,D5,pending_due,1,2025-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00699,D20,pending_due,1,2025-11-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00699,D60,pending_due,1,2026-01-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00800,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00800,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00800,T2_grey_market,pending_due,1,2025-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00800,D1,pending_due,1,2025-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00800,D5,pending_due,1,2025-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00800,D20,pending_due,1,2025-11-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00800,D60,pending_due,1,2026-01-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00805,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00805,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00805,T2_grey_market,pending_due,1,2025-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00805,D1,pending_due,1,2025-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00805,D5,pending_due,1,2025-01-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00805,D20,pending_due,1,2025-02-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00805,D60,pending_due,1,2025-03-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00901,T0_prospectus,complete,1,2026-05-18,2026-05-18,00901_prospectus_2026_05_18_2026051800027,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +00901,T1_allotment,complete,1,2026-05-26,2026-05-27,00901_allotment_results_2026_05_27_2026052700001,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are archived. +00901,T2_grey_market,pending_due,1,2026-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00901,D1,pending_due,1,2026-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00901,D5,pending_due,1,2026-05-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00901,D20,pending_due,1,2026-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00901,D60,pending_not_due,1,2026-07-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00917,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00917,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00917,T2_grey_market,pending_due,1,2024-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00917,D1,pending_due,1,2024-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00917,D5,pending_due,1,2024-05-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00917,D20,pending_due,1,2024-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00917,D60,pending_due,1,2024-07-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00999,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +00999,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +00999,T2_grey_market,pending_due,1,2024-12-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00999,D1,pending_due,1,2024-12-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +00999,D5,pending_due,1,2024-12-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00999,D20,pending_due,1,2025-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +00999,D60,pending_due,1,2025-02-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01021,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01021,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01021,T2_grey_market,pending_due,1,2026-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01021,D1,pending_due,1,2026-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01021,D5,pending_due,1,2026-04-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01021,D20,pending_due,1,2026-04-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01021,D60,pending_due,1,2026-05-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01081,T0_prospectus,complete,1,2026-05-28,2026-05-28,01081_prospectus_2026_05_28_2026052800019,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +01081,T1_allotment,complete,1,2026-06-04,2026-06-04,01081_allotment_results_2026_06_04_2026060402919,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are archived. +01081,T2_grey_market,pending_due,1,2026-06-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01081,D1,pending_due,1,2026-06-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01081,D5,pending_due,1,2026-06-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01081,D20,pending_not_due,1,2026-06-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01081,D60,pending_not_due,1,2026-08-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01111,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01111,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01111,T2_grey_market,pending_due,1,2023-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01111,D1,pending_due,1,2023-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01111,D5,pending_due,1,2023-11-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01111,D20,pending_due,1,2023-11-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01111,D60,pending_due,1,2024-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01187,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01187,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01187,T2_grey_market,pending_due,1,2026-05-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01187,D1,pending_due,1,2026-05-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01187,D5,pending_due,1,2026-05-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01187,D20,pending_due,1,2026-05-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01187,D60,pending_not_due,1,2026-07-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01236,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01236,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01236,T2_grey_market,pending_due,1,2026-05-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01236,D1,pending_due,1,2026-05-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01236,D5,pending_due,1,2026-05-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01236,D20,pending_due,1,2026-05-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01236,D60,pending_not_due,1,2026-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01274,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01274,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01274,T2_grey_market,pending_due,1,2023-12-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01274,D1,pending_due,1,2023-12-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01274,D5,pending_due,1,2023-12-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01274,D20,pending_due,1,2024-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01274,D60,pending_due,1,2024-02-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01276,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01276,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01276,T2_grey_market,pending_due,1,2025-05-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01276,D1,pending_due,1,2025-05-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01276,D5,pending_due,1,2025-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01276,D20,pending_due,1,2025-06-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01276,D60,pending_due,1,2025-07-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01284,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01284,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01284,T2_grey_market,pending_due,1,2023-07-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01284,D1,pending_due,1,2023-07-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01284,D5,pending_due,1,2023-07-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01284,D20,pending_due,1,2023-08-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01284,D60,pending_due,1,2023-09-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01304,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01304,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01304,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01304,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01304,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01304,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01304,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01318,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01318,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01318,T2_grey_market,pending_due,1,2024-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01318,D1,pending_due,1,2024-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01318,D5,pending_due,1,2024-12-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01318,D20,pending_due,1,2024-12-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01318,D60,pending_due,1,2025-02-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01333,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01333,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01333,T2_grey_market,pending_due,1,2025-05-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01333,D1,pending_due,1,2025-05-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01333,D5,pending_due,1,2025-05-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01333,D20,pending_due,1,2025-05-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01333,D60,pending_due,1,2025-07-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01334,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01334,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01334,T2_grey_market,pending_due,1,2024-07-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01334,D1,pending_due,1,2024-07-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01334,D5,pending_due,1,2024-07-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01334,D20,pending_due,1,2024-07-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01334,D60,pending_due,1,2024-09-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01354,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01354,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01354,T2_grey_market,pending_due,1,2024-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01354,D1,pending_due,1,2024-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01354,D5,pending_due,1,2024-07-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01354,D20,pending_due,1,2024-07-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01354,D60,pending_due,1,2024-08-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01364,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01364,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01364,T2_grey_market,pending_due,1,2025-02-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01364,D1,pending_due,1,2025-02-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01364,D5,pending_due,1,2025-02-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01364,D20,pending_due,1,2025-03-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01364,D60,pending_due,1,2025-04-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01384,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01384,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01384,T2_grey_market,pending_due,1,2025-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01384,D1,pending_due,1,2025-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01384,D5,pending_due,1,2025-11-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01384,D20,pending_due,1,2025-11-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01384,D60,pending_due,1,2025-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01471,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01471,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01471,T2_grey_market,pending_due,1,2024-08-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01471,D1,pending_due,1,2024-08-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01471,D5,pending_due,1,2024-08-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01471,D20,pending_due,1,2024-08-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01471,D60,pending_due,1,2024-10-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01497,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01497,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01497,T2_grey_market,pending_due,1,2023-12-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01497,D1,pending_due,1,2023-12-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01497,D5,pending_due,1,2023-12-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01497,D20,pending_due,1,2023-12-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01497,D60,pending_due,1,2024-02-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01511,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01511,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01511,T2_grey_market,pending_due,1,2026-05-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01511,D1,pending_due,1,2026-05-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01511,D5,pending_due,1,2026-05-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01511,D20,pending_due,1,2026-06-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01511,D60,pending_not_due,1,2026-07-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01519,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01519,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01519,T2_grey_market,pending_due,1,2023-10-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01519,D1,pending_due,1,2023-10-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01519,D5,pending_due,1,2023-10-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01519,D20,pending_due,1,2023-11-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01519,D60,pending_due,1,2023-12-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01541,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01541,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01541,T2_grey_market,pending_due,1,2023-09-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01541,D1,pending_due,1,2023-09-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01541,D5,pending_due,1,2023-09-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01541,D20,pending_due,1,2023-09-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01541,D60,pending_due,1,2023-11-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01609,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01609,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01609,T2_grey_market,pending_due,1,2026-05-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01609,D1,pending_due,1,2026-05-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01609,D5,pending_due,1,2026-05-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01609,D20,pending_due,1,2026-05-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01609,D60,pending_not_due,1,2026-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01641,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01641,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01641,T2_grey_market,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01641,D1,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01641,D5,pending_due,1,2026-01-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01641,D20,pending_due,1,2026-02-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01641,D60,pending_due,1,2026-03-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01768,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01768,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01768,T2_grey_market,pending_due,1,2026-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01768,D1,pending_due,1,2026-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01768,D5,pending_due,1,2026-02-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01768,D20,pending_due,1,2026-02-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01768,D60,pending_due,1,2026-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01779,T0_prospectus,complete,1,2026-05-28,2026-05-28,01779_prospectus_2026_05_28_2026052800023,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +01779,T1_allotment,complete,1,2026-06-04,2026-06-04,01779_allotment_results_2026_06_04_2026060402923,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are archived. +01779,T2_grey_market,pending_due,1,2026-06-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01779,D1,pending_due,1,2026-06-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01779,D5,pending_due,1,2026-06-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01779,D20,pending_not_due,1,2026-06-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01779,D60,pending_not_due,1,2026-08-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01828,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01828,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01828,T2_grey_market,pending_due,1,2025-07-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01828,D1,pending_due,1,2025-07-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01828,D5,pending_due,1,2025-07-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01828,D20,pending_due,1,2025-07-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01828,D60,pending_due,1,2025-09-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01879,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01879,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01879,T2_grey_market,pending_due,1,2026-04-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01879,D1,pending_due,1,2026-04-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01879,D5,pending_due,1,2026-05-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01879,D20,pending_due,1,2026-05-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01879,D60,pending_not_due,1,2026-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01973,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01973,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01973,T2_grey_market,pending_due,1,2023-10-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01973,D1,pending_due,1,2023-10-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01973,D5,pending_due,1,2023-10-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01973,D20,pending_due,1,2023-10-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01973,D60,pending_due,1,2023-12-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01989,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +01989,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +01989,T2_grey_market,pending_due,1,2026-03-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01989,D1,pending_due,1,2026-03-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +01989,D5,pending_due,1,2026-03-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01989,D20,pending_due,1,2026-04-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +01989,D60,pending_due,1,2026-05-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02026,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02026,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02026,T2_grey_market,pending_due,1,2025-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02026,D1,pending_due,1,2025-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02026,D5,pending_due,1,2025-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02026,D20,pending_due,1,2025-11-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02026,D60,pending_due,1,2026-01-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02050,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02050,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02050,T2_grey_market,pending_due,1,2025-06-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02050,D1,pending_due,1,2025-06-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02050,D5,pending_due,1,2025-06-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02050,D20,pending_due,1,2025-07-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02050,D60,pending_due,1,2025-08-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02097,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02097,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02097,T2_grey_market,pending_due,1,2025-03-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02097,D1,pending_due,1,2025-03-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02097,D5,pending_due,1,2025-03-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02097,D20,pending_due,1,2025-03-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02097,D60,pending_due,1,2025-05-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02105,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02105,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02105,T2_grey_market,pending_due,1,2023-06-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02105,D1,pending_due,1,2023-06-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02105,D5,pending_due,1,2023-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02105,D20,pending_due,1,2023-07-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02105,D60,pending_due,1,2023-08-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02149,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02149,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02149,T2_grey_market,pending_due,1,2023-12-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02149,D1,pending_due,1,2023-12-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02149,D5,pending_due,1,2024-01-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02149,D20,pending_due,1,2024-01-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02149,D60,pending_due,1,2024-02-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02228,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02228,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02228,T2_grey_market,pending_due,1,2024-06-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02228,D1,pending_due,1,2024-06-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02228,D5,pending_due,1,2024-06-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02228,D20,pending_due,1,2024-07-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02228,D60,pending_due,1,2024-08-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02259,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02259,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02259,T2_grey_market,pending_due,1,2025-09-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02259,D1,pending_due,1,2025-09-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02259,D5,pending_due,1,2025-10-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02259,D20,pending_due,1,2025-10-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02259,D60,pending_due,1,2025-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02268,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02268,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02268,T2_grey_market,pending_due,1,2023-11-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02268,D1,pending_due,1,2023-11-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02268,D5,pending_due,1,2023-11-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02268,D20,pending_due,1,2023-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02268,D60,pending_due,1,2024-01-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02271,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02271,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02271,T2_grey_market,pending_due,1,2023-07-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02271,D1,pending_due,1,2023-07-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02271,D5,pending_due,1,2023-07-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02271,D20,pending_due,1,2023-08-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02271,D60,pending_due,1,2023-09-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02290,T0_prospectus,complete,1,2026-05-28,2026-05-28,02290_prospectus_2026_05_28_2026052800031,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +02290,T1_allotment,complete,1,2026-06-04,2026-06-04,02290_allotment_results_2026_06_04_2026060402521,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are archived. +02290,T2_grey_market,pending_due,1,2026-06-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02290,D1,pending_due,1,2026-06-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02290,D5,pending_due,1,2026-06-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02290,D20,pending_not_due,1,2026-06-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02290,D60,pending_not_due,1,2026-08-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02396,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02396,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02396,T2_grey_market,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02396,D1,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02396,D5,pending_due,1,2025-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02396,D20,pending_due,1,2026-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02396,D60,pending_due,1,2026-02-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02408,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02408,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02408,T2_grey_market,pending_due,1,2025-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02408,D1,pending_due,1,2025-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02408,D5,pending_due,1,2025-12-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02408,D20,pending_due,1,2025-12-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02408,D60,pending_due,1,2026-02-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02410,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02410,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02410,T2_grey_market,pending_due,1,2024-08-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02410,D1,pending_due,1,2024-08-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02410,D5,pending_due,1,2024-08-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02410,D20,pending_due,1,2024-09-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02410,D60,pending_due,1,2024-10-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02419,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02419,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02419,T2_grey_market,pending_due,1,2023-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02419,D1,pending_due,1,2023-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02419,D5,pending_due,1,2023-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02419,D20,pending_due,1,2023-12-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02419,D60,pending_due,1,2024-02-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02429,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02429,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02429,T2_grey_market,pending_due,1,2023-11-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02429,D1,pending_due,1,2023-11-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02429,D5,pending_due,1,2023-11-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02429,D20,pending_due,1,2023-11-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02429,D60,pending_due,1,2024-01-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02431,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02431,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02431,T2_grey_market,pending_due,1,2024-12-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02431,D1,pending_due,1,2024-12-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02431,D5,pending_due,1,2024-12-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02431,D20,pending_due,1,2025-01-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02431,D60,pending_due,1,2025-02-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02432,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02432,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02432,T2_grey_market,pending_due,1,2024-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02432,D1,pending_due,1,2024-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02432,D5,pending_due,1,2024-12-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02432,D20,pending_due,1,2025-01-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02432,D60,pending_due,1,2025-02-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02438,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02438,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02438,T2_grey_market,pending_due,1,2024-04-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02438,D1,pending_due,1,2024-04-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02438,D5,pending_due,1,2024-04-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02438,D20,pending_due,1,2024-05-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02438,D60,pending_due,1,2024-06-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02443,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02443,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02443,T2_grey_market,pending_due,1,2024-05-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02443,D1,pending_due,1,2024-05-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02443,D5,pending_due,1,2024-06-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02443,D20,pending_due,1,2024-06-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02443,D60,pending_due,1,2024-07-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02451,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02451,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02451,T2_grey_market,pending_due,1,2023-10-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02451,D1,pending_due,1,2023-10-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02451,D5,pending_due,1,2023-10-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02451,D20,pending_due,1,2023-10-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02451,D60,pending_due,1,2023-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02453,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02453,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02453,T2_grey_market,pending_due,1,2024-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02453,D1,pending_due,1,2024-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02453,D5,pending_due,1,2024-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02453,D20,pending_due,1,2024-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02453,D60,pending_due,1,2024-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02460,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02460,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02460,T2_grey_market,pending_due,1,2024-10-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02460,D1,pending_due,1,2024-10-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02460,D5,pending_due,1,2024-10-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02460,D20,pending_due,1,2024-11-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02460,D60,pending_due,1,2024-12-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02465,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02465,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02465,T2_grey_market,pending_due,1,2024-10-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02465,D1,pending_due,1,2024-10-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02465,D5,pending_due,1,2024-11-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02465,D20,pending_due,1,2024-11-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02465,D60,pending_due,1,2024-12-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02473,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02473,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02473,T2_grey_market,pending_due,1,2023-11-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02473,D1,pending_due,1,2023-11-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02473,D5,pending_due,1,2023-11-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02473,D20,pending_due,1,2023-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02473,D60,pending_due,1,2024-01-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02476,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02476,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02476,T2_grey_market,pending_due,1,2026-04-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02476,D1,pending_due,1,2026-04-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02476,D5,pending_due,1,2026-04-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02476,D20,pending_due,1,2026-05-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02476,D60,pending_not_due,1,2026-06-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02477,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02477,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02477,T2_grey_market,pending_due,1,2024-01-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02477,D1,pending_due,1,2024-01-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02477,D5,pending_due,1,2024-01-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02477,D20,pending_due,1,2024-01-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02477,D60,pending_due,1,2024-03-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02479,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02479,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02479,T2_grey_market,pending_due,1,2024-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02479,D1,pending_due,1,2024-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02479,D5,pending_due,1,2024-07-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02479,D20,pending_due,1,2024-07-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02479,D60,pending_due,1,2024-08-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02481,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02481,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02481,T2_grey_market,pending_due,1,2023-07-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02481,D1,pending_due,1,2023-07-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02481,D5,pending_due,1,2023-07-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02481,D20,pending_due,1,2023-07-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02481,D60,pending_due,1,2023-09-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02483,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02483,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02483,T2_grey_market,pending_due,1,2023-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02483,D1,pending_due,1,2023-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02483,D5,pending_due,1,2023-12-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02483,D20,pending_due,1,2023-12-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02483,D60,pending_due,1,2024-02-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02489,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02489,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02489,T2_grey_market,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02489,D1,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02489,D5,pending_due,1,2023-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02489,D20,pending_due,1,2024-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02489,D60,pending_due,1,2024-02-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02490,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02490,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02490,T2_grey_market,pending_due,1,2023-09-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02490,D1,pending_due,1,2023-09-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02490,D5,pending_due,1,2023-09-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02490,D20,pending_due,1,2023-10-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02490,D60,pending_due,1,2023-11-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02493,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02493,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02493,T2_grey_market,pending_due,1,2026-04-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02493,D1,pending_due,1,2026-04-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02493,D5,pending_due,1,2026-05-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02493,D20,pending_due,1,2026-05-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02493,D60,pending_not_due,1,2026-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02495,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02495,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02495,T2_grey_market,pending_due,1,2024-07-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02495,D1,pending_due,1,2024-07-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02495,D5,pending_due,1,2024-07-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02495,D20,pending_due,1,2024-07-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02495,D60,pending_due,1,2024-09-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02496,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02496,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02496,T2_grey_market,pending_due,1,2023-09-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02496,D1,pending_due,1,2023-09-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02496,D5,pending_due,1,2023-09-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02496,D20,pending_due,1,2023-10-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02496,D60,pending_due,1,2023-11-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02497,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02497,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02497,T2_grey_market,pending_due,1,2024-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02497,D1,pending_due,1,2024-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02497,D5,pending_due,1,2024-04-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02497,D20,pending_due,1,2024-04-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02497,D60,pending_due,1,2024-05-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02498,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02498,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02498,T2_grey_market,pending_due,1,2024-01-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02498,D1,pending_due,1,2024-01-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02498,D5,pending_due,1,2024-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02498,D20,pending_due,1,2024-01-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02498,D60,pending_due,1,2024-03-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02499,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02499,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02499,T2_grey_market,pending_due,1,2023-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02499,D1,pending_due,1,2023-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02499,D5,pending_due,1,2023-11-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02499,D20,pending_due,1,2023-11-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02499,D60,pending_due,1,2024-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02501,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02501,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02501,T2_grey_market,pending_due,1,2023-10-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02501,D1,pending_due,1,2023-10-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02501,D5,pending_due,1,2023-10-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02501,D20,pending_due,1,2023-10-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02501,D60,pending_due,1,2023-12-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02502,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02502,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02502,T2_grey_market,pending_due,1,2023-12-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02502,D1,pending_due,1,2023-12-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02502,D5,pending_due,1,2023-12-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02502,D20,pending_due,1,2024-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02502,D60,pending_due,1,2024-02-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02503,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02503,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02503,T2_grey_market,pending_due,1,2024-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02503,D1,pending_due,1,2024-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02503,D5,pending_due,1,2024-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02503,D20,pending_due,1,2024-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02503,D60,pending_due,1,2024-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02505,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02505,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02505,T2_grey_market,pending_due,1,2024-05-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02505,D1,pending_due,1,2024-05-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02505,D5,pending_due,1,2024-06-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02505,D20,pending_due,1,2024-06-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02505,D60,pending_due,1,2024-07-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02506,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02506,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02506,T2_grey_market,pending_due,1,2024-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02506,D1,pending_due,1,2024-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02506,D5,pending_due,1,2025-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02506,D20,pending_due,1,2025-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02506,D60,pending_due,1,2025-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02507,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02507,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02507,T2_grey_market,pending_due,1,2024-07-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02507,D1,pending_due,1,2024-07-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02507,D5,pending_due,1,2024-07-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02507,D20,pending_due,1,2024-07-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02507,D60,pending_due,1,2024-09-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02508,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02508,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02508,T2_grey_market,pending_due,1,2025-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02508,D1,pending_due,1,2025-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02508,D5,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02508,D20,pending_due,1,2025-07-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02508,D60,pending_due,1,2025-08-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02509,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02509,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02509,T2_grey_market,pending_due,1,2024-03-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02509,D1,pending_due,1,2024-03-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02509,D5,pending_due,1,2024-03-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02509,D20,pending_due,1,2024-04-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02509,D60,pending_due,1,2024-05-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02510,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02510,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02510,T2_grey_market,pending_due,1,2024-11-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02510,D1,pending_due,1,2024-11-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02510,D5,pending_due,1,2024-11-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02510,D20,pending_due,1,2024-11-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02510,D60,pending_due,1,2024-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02511,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02511,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02511,T2_grey_market,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02511,D1,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02511,D5,pending_due,1,2023-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02511,D20,pending_due,1,2024-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02511,D60,pending_due,1,2024-02-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02512,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02512,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02512,T2_grey_market,pending_due,1,2024-06-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02512,D1,pending_due,1,2024-06-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02512,D5,pending_due,1,2024-06-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02512,D20,pending_due,1,2024-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02512,D60,pending_due,1,2024-08-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02513,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02513,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02513,T2_grey_market,pending_due,1,2026-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02513,D1,pending_due,1,2026-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02513,D5,pending_due,1,2026-01-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02513,D20,pending_due,1,2026-01-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02513,D60,pending_due,1,2026-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02515,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02515,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02515,T2_grey_market,pending_due,1,2024-04-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02515,D1,pending_due,1,2024-04-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02515,D5,pending_due,1,2024-04-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02515,D20,pending_due,1,2024-05-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02515,D60,pending_due,1,2024-06-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02516,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02516,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02516,T2_grey_market,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02516,D1,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02516,D5,pending_due,1,2023-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02516,D20,pending_due,1,2024-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02516,D60,pending_due,1,2024-02-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02517,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02517,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02517,T2_grey_market,pending_due,1,2023-11-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02517,D1,pending_due,1,2023-11-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02517,D5,pending_due,1,2023-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02517,D20,pending_due,1,2023-11-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02517,D60,pending_due,1,2023-12-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02519,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02519,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02519,T2_grey_market,pending_due,1,2024-11-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02519,D1,pending_due,1,2024-11-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02519,D5,pending_due,1,2024-11-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02519,D20,pending_due,1,2024-11-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02519,D60,pending_due,1,2025-01-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02520,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02520,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02520,T2_grey_market,pending_due,1,2023-11-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02520,D1,pending_due,1,2023-11-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02520,D5,pending_due,1,2023-11-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02520,D20,pending_due,1,2023-12-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02520,D60,pending_due,1,2024-01-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02521,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02521,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02521,T2_grey_market,pending_due,1,2023-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02521,D1,pending_due,1,2023-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02521,D5,pending_due,1,2023-12-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02521,D20,pending_due,1,2023-12-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02521,D60,pending_due,1,2024-02-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02522,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02522,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02522,T2_grey_market,pending_due,1,2024-06-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02522,D1,pending_due,1,2024-06-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02522,D5,pending_due,1,2024-06-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02522,D20,pending_due,1,2024-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02522,D60,pending_due,1,2024-08-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02525,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02525,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02525,T2_grey_market,pending_due,1,2025-09-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02525,D1,pending_due,1,2025-09-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02525,D5,pending_due,1,2025-09-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02525,D20,pending_due,1,2025-10-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02525,D60,pending_due,1,2025-11-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02526,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02526,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02526,T2_grey_market,pending_due,1,2026-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02526,D1,pending_due,1,2026-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02526,D5,pending_due,1,2026-04-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02526,D20,pending_due,1,2026-04-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02526,D60,pending_due,1,2026-05-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02529,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02529,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02529,T2_grey_market,pending_due,1,2024-05-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02529,D1,pending_due,1,2024-05-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02529,D5,pending_due,1,2024-05-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02529,D20,pending_due,1,2024-06-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02529,D60,pending_due,1,2024-07-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02530,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02530,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02530,T2_grey_market,pending_due,1,2025-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02530,D1,pending_due,1,2025-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02530,D5,pending_due,1,2025-01-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02530,D20,pending_due,1,2025-01-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02530,D60,pending_due,1,2025-03-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02531,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02531,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02531,T2_grey_market,pending_due,1,2024-07-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02531,D1,pending_due,1,2024-07-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02531,D5,pending_due,1,2024-07-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02531,D20,pending_due,1,2024-08-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02531,D60,pending_due,1,2024-09-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02533,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02533,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02533,T2_grey_market,pending_due,1,2024-08-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02533,D1,pending_due,1,2024-08-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02533,D5,pending_due,1,2024-08-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02533,D20,pending_due,1,2024-08-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02533,D60,pending_due,1,2024-10-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02535,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02535,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02535,T2_grey_market,pending_due,1,2024-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02535,D1,pending_due,1,2024-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02535,D5,pending_due,1,2024-03-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02535,D20,pending_due,1,2024-03-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02535,D60,pending_due,1,2024-05-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02536,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02536,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02536,T2_grey_market,pending_due,1,2024-03-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02536,D1,pending_due,1,2024-03-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02536,D5,pending_due,1,2024-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02536,D20,pending_due,1,2024-04-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02536,D60,pending_due,1,2024-05-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02539,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02539,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02539,T2_grey_market,pending_due,1,2025-12-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02539,D1,pending_due,1,2025-12-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02539,D5,pending_due,1,2025-12-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02539,D20,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02539,D60,pending_due,1,2026-01-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02540,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02540,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02540,T2_grey_market,pending_due,1,2024-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02540,D1,pending_due,1,2024-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02540,D5,pending_due,1,2024-03-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02540,D20,pending_due,1,2024-03-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02540,D60,pending_due,1,2024-05-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02543,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02543,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02543,T2_grey_market,pending_due,1,2025-09-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02543,D1,pending_due,1,2025-09-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02543,D5,pending_due,1,2025-09-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02543,D20,pending_due,1,2025-09-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02543,D60,pending_due,1,2025-11-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02545,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02545,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02545,T2_grey_market,pending_due,1,2024-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02545,D1,pending_due,1,2024-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02545,D5,pending_due,1,2024-07-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02545,D20,pending_due,1,2024-07-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02545,D60,pending_due,1,2024-08-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02546,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02546,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02546,T2_grey_market,pending_due,1,2025-12-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02546,D1,pending_due,1,2025-12-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02546,D5,pending_due,1,2025-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02546,D20,pending_due,1,2026-01-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02546,D60,pending_due,1,2026-02-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02549,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02549,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02549,T2_grey_market,pending_due,1,2024-10-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02549,D1,pending_due,1,2024-10-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02549,D5,pending_due,1,2024-10-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02549,D20,pending_due,1,2024-10-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02549,D60,pending_due,1,2024-11-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02550,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02550,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02550,T2_grey_market,pending_due,1,2024-06-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02550,D1,pending_due,1,2024-06-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02550,D5,pending_due,1,2024-06-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02550,D20,pending_due,1,2024-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02550,D60,pending_due,1,2024-08-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02551,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02551,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02551,T2_grey_market,pending_due,1,2024-11-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02551,D1,pending_due,1,2024-11-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02551,D5,pending_due,1,2024-11-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02551,D20,pending_due,1,2024-11-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02551,D60,pending_due,1,2025-01-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02553,T0_prospectus,complete,1,2026-05-26,2026-05-26,02553_prospectus_2026_05_26_2026052600047,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +02553,T1_allotment,complete,1,2026-06-02,2026-06-02,02553_allotment_results_2026_06_02_2026060202644,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are archived. +02553,T2_grey_market,pending_due,1,2026-06-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02553,D1,pending_due,1,2026-06-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02553,D5,pending_due,1,2026-06-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02553,D20,pending_not_due,1,2026-06-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02553,D60,pending_not_due,1,2026-08-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02555,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02555,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02555,T2_grey_market,pending_due,1,2024-04-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02555,D1,pending_due,1,2024-04-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02555,D5,pending_due,1,2024-04-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02555,D20,pending_due,1,2024-05-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02555,D60,pending_due,1,2024-06-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02556,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02556,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02556,T2_grey_market,pending_due,1,2024-05-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02556,D1,pending_due,1,2024-05-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02556,D5,pending_due,1,2024-05-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02556,D20,pending_due,1,2024-06-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02556,D60,pending_due,1,2024-07-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02559,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02559,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02559,T2_grey_market,pending_due,1,2024-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02559,D1,pending_due,1,2024-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02559,D5,pending_due,1,2024-07-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02559,D20,pending_due,1,2024-07-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02559,D60,pending_due,1,2024-08-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02560,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02560,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02560,T2_grey_market,pending_due,1,2025-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02560,D1,pending_due,1,2025-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02560,D5,pending_due,1,2025-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02560,D20,pending_due,1,2025-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02560,D60,pending_due,1,2025-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02561,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02561,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02561,T2_grey_market,pending_due,1,2025-03-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02561,D1,pending_due,1,2025-03-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02561,D5,pending_due,1,2025-03-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02561,D20,pending_due,1,2025-04-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02561,D60,pending_due,1,2025-05-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02563,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02563,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02563,T2_grey_market,pending_due,1,2024-10-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02563,D1,pending_due,1,2024-10-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02563,D5,pending_due,1,2024-11-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02563,D20,pending_due,1,2024-11-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02563,D60,pending_due,1,2024-12-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02565,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02565,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02565,T2_grey_market,pending_due,1,2025-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02565,D1,pending_due,1,2025-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02565,D5,pending_due,1,2025-05-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02565,D20,pending_due,1,2025-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02565,D60,pending_due,1,2025-07-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02566,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02566,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02566,T2_grey_market,pending_due,1,2024-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02566,D1,pending_due,1,2024-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02566,D5,pending_due,1,2024-12-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02566,D20,pending_due,1,2024-12-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02566,D60,pending_due,1,2025-01-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02567,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02567,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02567,T2_grey_market,pending_due,1,2024-10-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02567,D1,pending_due,1,2024-10-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02567,D5,pending_due,1,2024-10-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02567,D20,pending_due,1,2024-11-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02567,D60,pending_due,1,2024-12-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02569,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02569,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02569,T2_grey_market,pending_due,1,2025-03-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02569,D1,pending_due,1,2025-03-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02569,D5,pending_due,1,2025-03-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02569,D20,pending_due,1,2025-04-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02569,D60,pending_due,1,2025-05-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02570,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02570,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02570,T2_grey_market,pending_due,1,2024-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02570,D1,pending_due,1,2024-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02570,D5,pending_due,1,2024-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02570,D20,pending_due,1,2024-12-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02570,D60,pending_due,1,2025-02-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02571,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02571,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02571,T2_grey_market,pending_due,1,2025-01-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02571,D1,pending_due,1,2025-01-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02571,D5,pending_due,1,2025-01-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02571,D20,pending_due,1,2025-02-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02571,D60,pending_due,1,2025-03-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02573,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02573,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02573,T2_grey_market,pending_due,1,2025-06-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02573,D1,pending_due,1,2025-06-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02573,D5,pending_due,1,2025-06-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02573,D20,pending_due,1,2025-06-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02573,D60,pending_due,1,2025-08-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02575,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02575,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02575,T2_grey_market,pending_due,1,2025-10-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02575,D1,pending_due,1,2025-10-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02575,D5,pending_due,1,2025-10-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02575,D20,pending_due,1,2025-11-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02575,D60,pending_due,1,2025-12-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02576,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02576,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02576,T2_grey_market,pending_due,1,2024-10-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02576,D1,pending_due,1,2024-10-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02576,D5,pending_due,1,2024-10-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02576,D20,pending_due,1,2024-10-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02576,D60,pending_due,1,2024-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02577,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02577,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02577,T2_grey_market,pending_due,1,2024-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02577,D1,pending_due,1,2024-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02577,D5,pending_due,1,2025-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02577,D20,pending_due,1,2025-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02577,D60,pending_due,1,2025-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02579,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02579,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02579,T2_grey_market,pending_due,1,2025-11-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02579,D1,pending_due,1,2025-11-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02579,D5,pending_due,1,2025-11-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02579,D20,pending_due,1,2025-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02579,D60,pending_due,1,2026-01-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02580,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02580,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02580,T2_grey_market,pending_due,1,2025-09-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02580,D1,pending_due,1,2025-09-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02580,D5,pending_due,1,2025-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02580,D20,pending_due,1,2025-09-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02580,D60,pending_due,1,2025-10-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02581,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02581,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02581,T2_grey_market,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02581,D1,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02581,D5,pending_due,1,2025-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02581,D20,pending_due,1,2026-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02581,D60,pending_due,1,2026-02-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02582,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02582,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02582,T2_grey_market,pending_due,1,2024-11-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02582,D1,pending_due,1,2024-11-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02582,D5,pending_due,1,2024-11-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02582,D20,pending_due,1,2024-12-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02582,D60,pending_due,1,2025-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02583,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02583,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02583,T2_grey_market,pending_due,1,2025-09-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02583,D1,pending_due,1,2025-09-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02583,D5,pending_due,1,2025-10-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02583,D20,pending_due,1,2025-10-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02583,D60,pending_due,1,2025-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02585,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02585,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02585,T2_grey_market,pending_due,1,2024-11-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02585,D1,pending_due,1,2024-11-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02585,D5,pending_due,1,2024-12-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02585,D20,pending_due,1,2024-12-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02585,D60,pending_due,1,2025-01-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02586,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02586,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02586,T2_grey_market,pending_due,1,2024-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02586,D1,pending_due,1,2024-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02586,D5,pending_due,1,2024-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02586,D20,pending_due,1,2024-12-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02586,D60,pending_due,1,2025-02-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02587,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02587,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02587,T2_grey_market,pending_due,1,2024-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02587,D1,pending_due,1,2024-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02587,D5,pending_due,1,2025-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02587,D20,pending_due,1,2025-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02587,D60,pending_due,1,2025-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02589,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02589,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02589,T2_grey_market,pending_due,1,2025-05-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02589,D1,pending_due,1,2025-05-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02589,D5,pending_due,1,2025-05-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02589,D20,pending_due,1,2025-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02589,D60,pending_due,1,2025-07-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02590,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02590,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02590,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02590,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02590,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02590,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02590,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02591,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02591,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02591,T2_grey_market,pending_due,1,2025-08-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02591,D1,pending_due,1,2025-08-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02591,D5,pending_due,1,2025-08-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02591,D20,pending_due,1,2025-09-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02591,D60,pending_due,1,2025-10-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02592,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02592,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02592,T2_grey_market,pending_due,1,2025-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02592,D1,pending_due,1,2025-07-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02592,D5,pending_due,1,2025-07-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02592,D20,pending_due,1,2025-07-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02592,D60,pending_due,1,2025-08-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02593,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02593,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02593,T2_grey_market,pending_due,1,2024-12-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02593,D1,pending_due,1,2024-12-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02593,D5,pending_due,1,2024-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02593,D20,pending_due,1,2025-01-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02593,D60,pending_due,1,2025-02-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02595,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02595,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02595,T2_grey_market,pending_due,1,2025-09-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02595,D1,pending_due,1,2025-09-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02595,D5,pending_due,1,2025-09-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02595,D20,pending_due,1,2025-10-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02595,D60,pending_due,1,2025-11-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02596,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02596,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02596,T2_grey_market,pending_due,1,2025-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02596,D1,pending_due,1,2025-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02596,D5,pending_due,1,2025-01-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02596,D20,pending_due,1,2025-02-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02596,D60,pending_due,1,2025-03-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02597,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02597,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02597,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02597,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02597,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02597,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02597,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02598,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02598,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02598,T2_grey_market,pending_due,1,2024-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02598,D1,pending_due,1,2024-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02598,D5,pending_due,1,2024-04-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02598,D20,pending_due,1,2024-04-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02598,D60,pending_due,1,2024-05-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02603,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02603,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02603,T2_grey_market,pending_due,1,2025-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02603,D1,pending_due,1,2025-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02603,D5,pending_due,1,2025-05-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02603,D20,pending_due,1,2025-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02603,D60,pending_due,1,2025-07-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02605,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02605,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02605,T2_grey_market,pending_due,1,2025-06-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02605,D1,pending_due,1,2025-06-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02605,D5,pending_due,1,2025-06-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02605,D20,pending_due,1,2025-06-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02605,D60,pending_due,1,2025-08-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02609,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02609,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02609,T2_grey_market,pending_due,1,2025-06-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02609,D1,pending_due,1,2025-06-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02609,D5,pending_due,1,2025-06-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02609,D20,pending_due,1,2025-07-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02609,D60,pending_due,1,2025-08-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02610,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02610,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02610,T2_grey_market,pending_due,1,2025-03-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02610,D1,pending_due,1,2025-03-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02610,D5,pending_due,1,2025-03-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02610,D20,pending_due,1,2025-04-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02610,D60,pending_due,1,2025-05-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02613,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02613,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02613,T2_grey_market,pending_due,1,2025-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02613,D1,pending_due,1,2025-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02613,D5,pending_due,1,2025-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02613,D20,pending_due,1,2025-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02613,D60,pending_due,1,2025-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02617,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02617,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02617,T2_grey_market,pending_due,1,2025-06-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02617,D1,pending_due,1,2025-06-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02617,D5,pending_due,1,2025-06-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02617,D20,pending_due,1,2025-07-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02617,D60,pending_due,1,2025-08-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02619,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02619,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02619,T2_grey_market,pending_due,1,2025-06-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02619,D1,pending_due,1,2025-06-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02619,D5,pending_due,1,2025-06-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02619,D20,pending_due,1,2025-07-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02619,D60,pending_due,1,2025-08-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02621,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02621,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02621,T2_grey_market,pending_due,1,2025-05-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02621,D1,pending_due,1,2025-05-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02621,D5,pending_due,1,2025-06-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02621,D20,pending_due,1,2025-06-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02621,D60,pending_due,1,2025-07-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02625,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02625,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02625,T2_grey_market,pending_due,1,2025-03-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02625,D1,pending_due,1,2025-03-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02625,D5,pending_due,1,2025-04-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02625,D20,pending_due,1,2025-04-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02625,D60,pending_due,1,2025-05-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02627,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02627,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02627,T2_grey_market,pending_due,1,2025-08-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02627,D1,pending_due,1,2025-08-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02627,D5,pending_due,1,2025-08-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02627,D20,pending_due,1,2025-08-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02627,D60,pending_due,1,2025-10-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02629,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02629,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02629,T2_grey_market,pending_due,1,2025-05-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02629,D1,pending_due,1,2025-05-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02629,D5,pending_due,1,2025-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02629,D20,pending_due,1,2025-06-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02629,D60,pending_due,1,2025-07-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02630,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02630,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02630,T2_grey_market,pending_due,1,2025-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02630,D1,pending_due,1,2025-11-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02630,D5,pending_due,1,2025-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02630,D20,pending_due,1,2025-11-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02630,D60,pending_due,1,2026-01-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02631,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02631,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02631,T2_grey_market,pending_due,1,2025-08-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02631,D1,pending_due,1,2025-08-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02631,D5,pending_due,1,2025-08-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02631,D20,pending_due,1,2025-09-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02631,D60,pending_due,1,2025-10-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02632,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02632,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02632,T2_grey_market,pending_due,1,2026-03-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02632,D1,pending_due,1,2026-03-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02632,D5,pending_due,1,2026-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02632,D20,pending_due,1,2026-04-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02632,D60,pending_due,1,2026-05-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02635,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02635,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02635,T2_grey_market,pending_due,1,2025-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02635,D1,pending_due,1,2025-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02635,D5,pending_due,1,2025-12-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02635,D20,pending_due,1,2026-01-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02635,D60,pending_due,1,2026-02-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02637,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02637,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02637,T2_grey_market,pending_due,1,2025-10-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02637,D1,pending_due,1,2025-10-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02637,D5,pending_due,1,2025-10-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02637,D20,pending_due,1,2025-11-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02637,D60,pending_due,1,2025-12-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02643,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02643,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02643,T2_grey_market,pending_due,1,2025-06-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02643,D1,pending_due,1,2025-06-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02643,D5,pending_due,1,2025-06-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02643,D20,pending_due,1,2025-07-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02643,D60,pending_due,1,2025-08-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02648,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02648,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02648,T2_grey_market,pending_due,1,2025-07-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02648,D1,pending_due,1,2025-07-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02648,D5,pending_due,1,2025-07-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02648,D20,pending_due,1,2025-07-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02648,D60,pending_due,1,2025-09-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02649,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02649,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02649,T2_grey_market,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02649,D1,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02649,D5,pending_due,1,2026-03-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02649,D20,pending_due,1,2026-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02649,D60,pending_due,1,2026-05-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02650,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02650,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02650,T2_grey_market,pending_due,1,2025-10-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02650,D1,pending_due,1,2025-10-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02650,D5,pending_due,1,2025-10-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02650,D20,pending_due,1,2025-10-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02650,D60,pending_due,1,2025-12-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02651,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02651,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02651,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02651,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02651,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02651,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02651,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02652,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02652,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02652,T2_grey_market,pending_due,1,2025-10-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02652,D1,pending_due,1,2025-10-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02652,D5,pending_due,1,2025-10-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02652,D20,pending_due,1,2025-10-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02652,D60,pending_due,1,2025-12-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02655,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02655,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02655,T2_grey_market,pending_due,1,2025-12-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02655,D1,pending_due,1,2025-12-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02655,D5,pending_due,1,2025-12-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02655,D20,pending_due,1,2026-01-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02655,D60,pending_due,1,2026-02-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02656,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02656,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02656,T2_grey_market,pending_due,1,2025-09-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02656,D1,pending_due,1,2025-09-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02656,D5,pending_due,1,2025-09-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02656,D20,pending_due,1,2025-10-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02656,D60,pending_due,1,2025-11-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02657,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02657,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02657,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02657,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02657,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02657,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02657,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02658,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02658,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02658,T2_grey_market,pending_due,1,2025-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02658,D1,pending_due,1,2025-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02658,D5,pending_due,1,2025-12-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02658,D20,pending_due,1,2025-12-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02658,D60,pending_due,1,2026-02-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02659,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02659,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02659,T2_grey_market,pending_due,1,2025-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02659,D1,pending_due,1,2025-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02659,D5,pending_due,1,2025-12-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02659,D20,pending_due,1,2025-12-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02659,D60,pending_due,1,2026-02-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02661,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02661,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02661,T2_grey_market,pending_due,1,2025-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02661,D1,pending_due,1,2025-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02661,D5,pending_due,1,2025-12-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02661,D20,pending_due,1,2026-01-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02661,D60,pending_due,1,2026-02-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02670,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02670,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02670,T2_grey_market,pending_due,1,2025-10-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02670,D1,pending_due,1,2025-10-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02670,D5,pending_due,1,2025-10-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02670,D20,pending_due,1,2025-11-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02670,D60,pending_due,1,2025-12-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02671,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02671,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02671,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02671,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02671,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02671,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02671,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02675,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02675,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02675,T2_grey_market,pending_due,1,2026-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02675,D1,pending_due,1,2026-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02675,D5,pending_due,1,2026-01-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02675,D20,pending_due,1,2026-01-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02675,D60,pending_due,1,2026-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02676,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02676,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02676,T2_grey_market,pending_due,1,2025-12-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02676,D1,pending_due,1,2025-12-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02676,D5,pending_due,1,2025-12-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02676,D20,pending_due,1,2025-12-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02676,D60,pending_due,1,2026-02-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02677,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02677,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02677,T2_grey_market,pending_due,1,2026-02-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02677,D1,pending_due,1,2026-02-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02677,D5,pending_due,1,2026-02-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02677,D20,pending_due,1,2026-02-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02677,D60,pending_due,1,2026-04-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02685,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02685,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02685,T2_grey_market,pending_due,1,2025-11-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02685,D1,pending_due,1,2025-11-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02685,D5,pending_due,1,2025-12-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02685,D20,pending_due,1,2025-12-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02685,D60,pending_due,1,2026-01-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02687,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02687,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02687,T2_grey_market,pending_due,1,2025-12-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02687,D1,pending_due,1,2025-12-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02687,D5,pending_due,1,2025-12-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02687,D20,pending_due,1,2025-12-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02687,D60,pending_due,1,2026-02-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02691,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02691,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02691,T2_grey_market,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02691,D1,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02691,D5,pending_due,1,2025-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02691,D20,pending_due,1,2026-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02691,D60,pending_due,1,2026-02-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02692,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02692,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02692,T2_grey_market,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02692,D1,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02692,D5,pending_due,1,2026-03-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02692,D20,pending_due,1,2026-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02692,D60,pending_due,1,2026-05-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02693,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02693,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02693,T2_grey_market,pending_due,1,2025-12-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02693,D1,pending_due,1,2025-12-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02693,D5,pending_due,1,2025-12-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02693,D20,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02693,D60,pending_due,1,2026-01-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02695,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02695,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02695,T2_grey_market,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02695,D1,pending_due,1,2025-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02695,D5,pending_due,1,2025-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02695,D20,pending_due,1,2026-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02695,D60,pending_due,1,2026-02-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02698,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02698,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02698,T2_grey_market,pending_due,1,2025-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02698,D1,pending_due,1,2025-11-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02698,D5,pending_due,1,2025-11-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02698,D20,pending_due,1,2025-11-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02698,D60,pending_due,1,2026-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02701,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02701,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02701,T2_grey_market,pending_due,1,2026-03-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02701,D1,pending_due,1,2026-03-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02701,D5,pending_due,1,2026-03-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02701,D20,pending_due,1,2026-04-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02701,D60,pending_due,1,2026-05-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02706,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02706,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02706,T2_grey_market,pending_due,1,2026-02-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02706,D1,pending_due,1,2026-02-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02706,D5,pending_due,1,2026-02-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02706,D20,pending_due,1,2026-03-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02706,D60,pending_due,1,2026-04-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02714,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02714,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02714,T2_grey_market,pending_due,1,2026-02-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02714,D1,pending_due,1,2026-02-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02714,D5,pending_due,1,2026-02-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02714,D20,pending_due,1,2026-02-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02714,D60,pending_due,1,2026-04-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02715,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02715,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02715,T2_grey_market,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02715,D1,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02715,D5,pending_due,1,2026-03-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02715,D20,pending_due,1,2026-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02715,D60,pending_due,1,2026-05-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02718,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02718,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02718,T2_grey_market,pending_due,1,2025-11-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02718,D1,pending_due,1,2025-11-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02718,D5,pending_due,1,2025-11-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02718,D20,pending_due,1,2025-11-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02718,D60,pending_due,1,2026-01-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02720,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02720,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02720,T2_grey_market,pending_due,1,2026-02-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02720,D1,pending_due,1,2026-02-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02720,D5,pending_due,1,2026-02-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02720,D20,pending_due,1,2026-03-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02720,D60,pending_due,1,2026-04-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02723,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02723,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02723,T2_grey_market,pending_due,1,2026-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02723,D1,pending_due,1,2026-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02723,D5,pending_due,1,2026-05-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02723,D20,pending_due,1,2026-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02723,D60,pending_not_due,1,2026-07-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02726,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02726,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02726,T2_grey_market,pending_due,1,2026-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02726,D1,pending_due,1,2026-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02726,D5,pending_due,1,2026-04-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02726,D20,pending_due,1,2026-04-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02726,D60,pending_due,1,2026-05-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02729,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02729,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02729,T2_grey_market,pending_due,1,2026-03-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02729,D1,pending_due,1,2026-03-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02729,D5,pending_due,1,2026-03-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02729,D20,pending_due,1,2026-04-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02729,D60,pending_due,1,2026-05-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02768,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02768,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02768,T2_grey_market,pending_due,1,2026-02-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02768,D1,pending_due,1,2026-02-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02768,D5,pending_due,1,2026-02-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02768,D20,pending_due,1,2026-02-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02768,D60,pending_due,1,2026-04-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02788,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02788,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02788,T2_grey_market,pending_due,1,2025-11-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02788,D1,pending_due,1,2025-11-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02788,D5,pending_due,1,2025-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02788,D20,pending_due,1,2025-12-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02788,D60,pending_due,1,2026-01-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02865,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02865,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02865,T2_grey_market,pending_due,1,2025-05-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02865,D1,pending_due,1,2025-05-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02865,D5,pending_due,1,2025-05-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02865,D20,pending_due,1,2025-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02865,D60,pending_due,1,2025-07-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02881,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02881,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02881,T2_grey_market,pending_due,1,2024-06-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02881,D1,pending_due,1,2024-06-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02881,D5,pending_due,1,2024-06-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02881,D20,pending_due,1,2024-07-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02881,D60,pending_due,1,2024-08-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02889,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02889,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02889,T2_grey_market,pending_due,1,2025-09-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02889,D1,pending_due,1,2025-09-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02889,D5,pending_due,1,2025-10-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02889,D20,pending_due,1,2025-10-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02889,D60,pending_due,1,2025-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02898,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +02898,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +02898,T2_grey_market,pending_due,1,2024-05-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02898,D1,pending_due,1,2024-05-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +02898,D5,pending_due,1,2024-05-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02898,D20,pending_due,1,2024-06-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +02898,D60,pending_due,1,2024-07-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03200,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03200,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03200,T2_grey_market,pending_due,1,2026-02-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03200,D1,pending_due,1,2026-02-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03200,D5,pending_due,1,2026-02-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03200,D20,pending_due,1,2026-02-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03200,D60,pending_due,1,2026-04-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03268,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03268,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03268,T2_grey_market,pending_due,1,2026-03-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03268,D1,pending_due,1,2026-03-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03268,D5,pending_due,1,2026-03-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03268,D20,pending_due,1,2026-03-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03268,D60,pending_due,1,2026-05-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03277,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03277,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03277,T2_grey_market,pending_due,1,2026-04-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03277,D1,pending_due,1,2026-04-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03277,D5,pending_due,1,2026-04-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03277,D20,pending_due,1,2026-05-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03277,D60,pending_due,1,2026-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03288,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03288,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03288,T2_grey_market,pending_due,1,2025-06-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03288,D1,pending_due,1,2025-06-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03288,D5,pending_due,1,2025-06-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03288,D20,pending_due,1,2025-07-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03288,D60,pending_due,1,2025-08-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03296,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03296,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03296,T2_grey_market,pending_due,1,2026-04-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03296,D1,pending_due,1,2026-04-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03296,D5,pending_due,1,2026-04-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03296,D20,pending_due,1,2026-05-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03296,D60,pending_not_due,1,2026-06-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03310,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03310,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03310,T2_grey_market,pending_due,1,2026-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03310,D1,pending_due,1,2026-05-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03310,D5,pending_due,1,2026-05-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03310,D20,pending_due,1,2026-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03310,D60,pending_not_due,1,2026-07-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03317,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03317,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03317,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03317,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03317,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03317,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03317,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03355,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03355,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03355,T2_grey_market,pending_due,1,2026-03-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03355,D1,pending_due,1,2026-03-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03355,D5,pending_due,1,2026-03-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03355,D20,pending_due,1,2026-04-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03355,D60,pending_due,1,2026-05-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03378,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03378,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03378,T2_grey_market,pending_due,1,2025-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03378,D1,pending_due,1,2025-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03378,D5,pending_due,1,2025-12-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03378,D20,pending_due,1,2026-01-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03378,D60,pending_due,1,2026-02-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03388,T0_prospectus,complete,1,2026-05-20,2026-05-20,03388_prospectus_2026_05_20_2026052000023,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +03388,T1_allotment,complete,1,2026-05-28,2026-05-28,03388_allotment_results_2026_05_28_2026052802543,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are archived. +03388,T2_grey_market,pending_due,1,2026-05-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03388,D1,pending_due,1,2026-05-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03388,D5,pending_due,1,2026-06-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03388,D20,pending_not_due,1,2026-06-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03388,D60,pending_not_due,1,2026-07-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03625,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03625,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03625,T2_grey_market,pending_due,1,2026-03-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03625,D1,pending_due,1,2026-03-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03625,D5,pending_due,1,2026-04-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03625,D20,pending_due,1,2026-04-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03625,D60,pending_due,1,2026-05-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03636,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03636,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03636,T2_grey_market,pending_due,1,2026-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03636,D1,pending_due,1,2026-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03636,D5,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03636,D20,pending_due,1,2026-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03636,D60,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03650,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03650,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03650,T2_grey_market,pending_due,1,2023-07-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03650,D1,pending_due,1,2023-07-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03650,D5,pending_due,1,2023-07-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03650,D20,pending_due,1,2023-07-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03650,D60,pending_due,1,2023-09-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03677,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03677,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03677,T2_grey_market,pending_due,1,2025-04-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03677,D1,pending_due,1,2025-04-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03677,D5,pending_due,1,2025-04-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03677,D20,pending_due,1,2025-05-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03677,D60,pending_due,1,2025-06-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03696,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03696,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03696,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03696,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03696,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03696,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03696,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03750,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03750,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03750,T2_grey_market,pending_due,1,2025-05-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03750,D1,pending_due,1,2025-05-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03750,D5,pending_due,1,2025-05-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03750,D20,pending_due,1,2025-06-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03750,D60,pending_due,1,2025-07-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03858,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03858,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03858,T2_grey_market,pending_due,1,2025-08-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03858,D1,pending_due,1,2025-08-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03858,D5,pending_due,1,2025-09-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03858,D20,pending_due,1,2025-09-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03858,D60,pending_due,1,2025-10-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03880,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03880,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03880,T2_grey_market,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03880,D1,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03880,D5,pending_due,1,2025-07-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03880,D20,pending_due,1,2025-07-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03880,D60,pending_due,1,2025-08-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03881,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03881,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03881,T2_grey_market,pending_due,1,2025-12-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03881,D1,pending_due,1,2025-12-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03881,D5,pending_due,1,2025-12-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03881,D20,pending_due,1,2026-01-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03881,D60,pending_due,1,2026-02-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03887,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03887,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03887,T2_grey_market,pending_due,1,2025-12-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03887,D1,pending_due,1,2025-12-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03887,D5,pending_due,1,2025-12-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03887,D20,pending_due,1,2026-01-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03887,D60,pending_due,1,2026-02-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03986,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +03986,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +03986,T2_grey_market,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03986,D1,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +03986,D5,pending_due,1,2026-01-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03986,D20,pending_due,1,2026-02-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +03986,D60,pending_due,1,2026-03-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06031,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06031,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06031,T2_grey_market,pending_due,1,2025-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06031,D1,pending_due,1,2025-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06031,D5,pending_due,1,2025-11-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06031,D20,pending_due,1,2025-11-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06031,D60,pending_due,1,2025-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06082,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06082,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06082,T2_grey_market,pending_due,1,2026-01-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06082,D1,pending_due,1,2026-01-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06082,D5,pending_due,1,2026-01-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06082,D20,pending_due,1,2026-01-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06082,D60,pending_due,1,2026-03-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06086,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06086,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06086,T2_grey_market,pending_due,1,2024-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06086,D1,pending_due,1,2024-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06086,D5,pending_due,1,2024-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06086,D20,pending_due,1,2024-07-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06086,D60,pending_due,1,2024-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06090,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06090,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06090,T2_grey_market,pending_due,1,2025-09-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06090,D1,pending_due,1,2025-09-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06090,D5,pending_due,1,2025-09-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06090,D20,pending_due,1,2025-10-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06090,D60,pending_due,1,2025-11-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06106,T0_prospectus,complete,1,2026-06-15,2026-06-15,06106_prospectus_candidate_2026_06_15,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +06106,T1_allotment,pending_not_due,1,2026-06-23,,,06106_allotment_results_pending_2026_06_15,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06106,T2_grey_market,pending_not_due,1,2026-06-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06106,D1,pending_not_due,1,2026-06-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06106,D5,pending_not_due,1,2026-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06106,D20,pending_not_due,1,2026-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06106,D60,pending_not_due,1,2026-08-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06166,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06166,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06166,T2_grey_market,pending_due,1,2025-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06166,D1,pending_due,1,2025-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06166,D5,pending_due,1,2025-11-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06166,D20,pending_due,1,2025-11-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06166,D60,pending_due,1,2025-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06168,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06168,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06168,T2_grey_market,pending_due,1,2025-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06168,D1,pending_due,1,2025-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06168,D5,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06168,D20,pending_due,1,2025-07-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06168,D60,pending_due,1,2025-08-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06181,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06181,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06181,T2_grey_market,pending_due,1,2024-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06181,D1,pending_due,1,2024-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06181,D5,pending_due,1,2024-07-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06181,D20,pending_due,1,2024-07-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06181,D60,pending_due,1,2024-08-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06600,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06600,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06600,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06600,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06600,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06600,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06600,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06603,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06603,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06603,T2_grey_market,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06603,D1,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06603,D5,pending_due,1,2025-07-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06603,D20,pending_due,1,2025-07-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06603,D60,pending_due,1,2025-08-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06613,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06613,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06613,T2_grey_market,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06613,D1,pending_due,1,2025-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06613,D5,pending_due,1,2025-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06613,D20,pending_due,1,2025-07-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06613,D60,pending_due,1,2025-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06636,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06636,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06636,T2_grey_market,pending_due,1,2026-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06636,D1,pending_due,1,2026-03-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06636,D5,pending_due,1,2026-04-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06636,D20,pending_due,1,2026-04-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06636,D60,pending_due,1,2026-05-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06651,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06651,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06651,T2_grey_market,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06651,D1,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06651,D5,pending_due,1,2026-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06651,D20,pending_due,1,2026-01-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06651,D60,pending_due,1,2026-02-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06656,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06656,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06656,T2_grey_market,pending_due,1,2026-04-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06656,D1,pending_due,1,2026-04-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06656,D5,pending_due,1,2026-04-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06656,D20,pending_due,1,2026-05-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06656,D60,pending_due,1,2026-06-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06657,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06657,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06657,T2_grey_market,pending_due,1,2024-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06657,D1,pending_due,1,2024-07-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06657,D5,pending_due,1,2024-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06657,D20,pending_due,1,2024-07-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06657,D60,pending_due,1,2024-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06658,T0_prospectus,complete,1,2026-06-05,2026-06-05,06658_prospectus_2026_06_05,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +06658,T1_allotment,complete,1,2026-06-12,2026-06-12,06658_allotment_results_2026_06_12,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are archived. +06658,T2_grey_market,pending_due,1,2026-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06658,D1,pending_due,1,2026-06-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06658,D5,pending_not_due,1,2026-06-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06658,D20,pending_not_due,1,2026-07-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06658,D60,pending_not_due,1,2026-08-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06675,T0_prospectus,complete,1,2026-06-09,2026-06-09,06675_prospectus_2026_06_09,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Prospectus source and offering terms are archived. +06675,T1_allotment,pending_not_due,1,2026-06-16,,,06675_allotment_results_pending_2026_06_15,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06675,T2_grey_market,pending_not_due,1,2026-06-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06675,D1,pending_not_due,1,2026-06-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06675,D5,pending_not_due,1,2026-06-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06675,D20,pending_not_due,1,2026-07-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06675,D60,pending_not_due,1,2026-08-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06681,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06681,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06681,T2_grey_market,pending_due,1,2025-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06681,D1,pending_due,1,2025-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06681,D5,pending_due,1,2025-01-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06681,D20,pending_due,1,2025-01-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06681,D60,pending_due,1,2025-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06682,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06682,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06682,T2_grey_market,pending_due,1,2023-09-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06682,D1,pending_due,1,2023-09-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06682,D5,pending_due,1,2023-10-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06682,D20,pending_due,1,2023-10-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06682,D60,pending_due,1,2023-11-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06683,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06683,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06683,T2_grey_market,pending_due,1,2023-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06683,D1,pending_due,1,2023-07-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06683,D5,pending_due,1,2023-07-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06683,D20,pending_due,1,2023-08-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06683,D60,pending_due,1,2023-09-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06687,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06687,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06687,T2_grey_market,pending_due,1,2025-10-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06687,D1,pending_due,1,2025-10-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06687,D5,pending_due,1,2025-10-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06687,D20,pending_due,1,2025-11-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06687,D60,pending_due,1,2025-12-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06693,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06693,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06693,T2_grey_market,pending_due,1,2025-03-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06693,D1,pending_due,1,2025-03-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06693,D5,pending_due,1,2025-03-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06693,D20,pending_due,1,2025-03-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06693,D60,pending_due,1,2025-05-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06809,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06809,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06809,T2_grey_market,pending_due,1,2026-02-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06809,D1,pending_due,1,2026-02-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06809,D5,pending_due,1,2026-02-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06809,D20,pending_due,1,2026-02-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06809,D60,pending_due,1,2026-04-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06810,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06810,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06810,T2_grey_market,pending_due,1,2026-04-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06810,D1,pending_due,1,2026-04-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06810,D5,pending_due,1,2026-05-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06810,D20,pending_due,1,2026-05-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06810,D60,pending_not_due,1,2026-06-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06831,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06831,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06831,T2_grey_market,pending_due,1,2025-05-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06831,D1,pending_due,1,2025-05-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06831,D5,pending_due,1,2025-05-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06831,D20,pending_due,1,2025-06-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06831,D60,pending_due,1,2025-07-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06871,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06871,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06871,T2_grey_market,pending_due,1,2026-05-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06871,D1,pending_due,1,2026-05-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06871,D5,pending_due,1,2026-05-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06871,D20,pending_due,1,2026-06-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06871,D60,pending_not_due,1,2026-07-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06872,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06872,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06872,T2_grey_market,pending_due,1,2026-05-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06872,D1,pending_due,1,2026-05-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06872,D5,pending_due,1,2026-05-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06872,D20,pending_due,1,2026-06-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06872,D60,pending_not_due,1,2026-07-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06883,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06883,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06883,T2_grey_market,pending_due,1,2025-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06883,D1,pending_due,1,2025-06-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06883,D5,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06883,D20,pending_due,1,2025-07-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06883,D60,pending_due,1,2025-08-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06911,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06911,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06911,T2_grey_market,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06911,D1,pending_due,1,2023-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06911,D5,pending_due,1,2023-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06911,D20,pending_due,1,2024-01-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06911,D60,pending_due,1,2024-02-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06936,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06936,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06936,T2_grey_market,pending_due,1,2024-11-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06936,D1,pending_due,1,2024-11-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06936,D5,pending_due,1,2024-12-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06936,D20,pending_due,1,2024-12-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06936,D60,pending_due,1,2025-01-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06938,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06938,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06938,T2_grey_market,pending_due,1,2026-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06938,D1,pending_due,1,2026-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06938,D5,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06938,D20,pending_due,1,2026-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06938,D60,pending_due,1,2026-03-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06959,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06959,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06959,T2_grey_market,pending_due,1,2024-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06959,D1,pending_due,1,2024-01-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06959,D5,pending_due,1,2024-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06959,D20,pending_due,1,2024-01-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06959,D60,pending_due,1,2024-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06960,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06960,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06960,T2_grey_market,pending_due,1,2025-08-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06960,D1,pending_due,1,2025-08-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06960,D5,pending_due,1,2025-08-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06960,D20,pending_due,1,2025-09-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06960,D60,pending_due,1,2025-10-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06980,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06980,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06980,T2_grey_market,pending_due,1,2025-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06980,D1,pending_due,1,2025-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06980,D5,pending_due,1,2025-11-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06980,D20,pending_due,1,2025-11-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06980,D60,pending_due,1,2025-12-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06990,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +06990,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +06990,T2_grey_market,pending_due,1,2023-07-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06990,D1,pending_due,1,2023-07-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +06990,D5,pending_due,1,2023-07-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06990,D20,pending_due,1,2023-07-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +06990,D60,pending_due,1,2023-09-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07618,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +07618,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +07618,T2_grey_market,pending_due,1,2025-12-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07618,D1,pending_due,1,2025-12-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07618,D5,pending_due,1,2025-12-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07618,D20,pending_due,1,2025-12-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07618,D60,pending_due,1,2026-02-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07630,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +07630,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +07630,T2_grey_market,pending_due,1,2026-05-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07630,D1,pending_due,1,2026-05-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07630,D5,pending_due,1,2026-05-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07630,D20,pending_due,1,2026-06-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07630,D60,pending_not_due,1,2026-07-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07666,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +07666,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +07666,T2_grey_market,pending_due,1,2026-05-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07666,D1,pending_due,1,2026-05-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07666,D5,pending_due,1,2026-05-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07666,D20,pending_due,1,2026-06-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07666,D60,pending_not_due,1,2026-07-11,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07688,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +07688,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +07688,T2_grey_market,pending_due,1,2026-05-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07688,D1,pending_due,1,2026-05-20,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +07688,D5,pending_due,1,2026-05-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07688,D20,pending_due,1,2026-06-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +07688,D60,pending_not_due,1,2026-07-18,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08529,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08529,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08529,T2_grey_market,pending_due,1,2024-06-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08529,D1,pending_due,1,2024-06-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08529,D5,pending_due,1,2024-06-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08529,D20,pending_due,1,2024-06-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08529,D60,pending_due,1,2024-08-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08549,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08549,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08549,T2_grey_market,pending_due,1,2025-10-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08549,D1,pending_due,1,2025-10-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08549,D5,pending_due,1,2025-10-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08549,D20,pending_due,1,2025-10-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08549,D60,pending_due,1,2025-12-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08610,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08610,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08610,T2_grey_market,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08610,D1,pending_due,1,2026-01-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08610,D5,pending_due,1,2026-01-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08610,D20,pending_due,1,2026-02-01,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08610,D60,pending_due,1,2026-03-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08629,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08629,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08629,T2_grey_market,pending_due,1,2024-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08629,D1,pending_due,1,2024-09-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08629,D5,pending_due,1,2024-09-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08629,D20,pending_due,1,2024-09-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08629,D60,pending_due,1,2024-11-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08637,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +08637,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +08637,T2_grey_market,pending_due,1,2024-07-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08637,D1,pending_due,1,2024-07-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +08637,D5,pending_due,1,2024-07-06,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08637,D20,pending_due,1,2024-07-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +08637,D60,pending_due,1,2024-08-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09606,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09606,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09606,T2_grey_market,pending_due,1,2025-04-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09606,D1,pending_due,1,2025-04-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09606,D5,pending_due,1,2025-04-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09606,D20,pending_due,1,2025-05-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09606,D60,pending_due,1,2025-06-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09609,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09609,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09609,T2_grey_market,pending_due,1,2025-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09609,D1,pending_due,1,2025-11-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09609,D5,pending_due,1,2025-12-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09609,D20,pending_due,1,2025-12-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09609,D60,pending_due,1,2026-01-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09611,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09611,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09611,T2_grey_market,pending_due,1,2026-01-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09611,D1,pending_due,1,2026-01-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09611,D5,pending_due,1,2026-01-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09611,D20,pending_due,1,2026-02-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09611,D60,pending_due,1,2026-03-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09639,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09639,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09639,T2_grey_market,pending_due,1,2024-10-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09639,D1,pending_due,1,2024-10-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09639,D5,pending_due,1,2024-10-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09639,D20,pending_due,1,2024-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09639,D60,pending_due,1,2024-12-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09660,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09660,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09660,T2_grey_market,pending_due,1,2024-10-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09660,D1,pending_due,1,2024-10-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09660,D5,pending_due,1,2024-10-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09660,D20,pending_due,1,2024-11-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09660,D60,pending_due,1,2024-12-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09663,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09663,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09663,T2_grey_market,pending_due,1,2023-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09663,D1,pending_due,1,2023-12-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09663,D5,pending_due,1,2023-12-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09663,D20,pending_due,1,2023-12-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09663,D60,pending_due,1,2024-02-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09676,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09676,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09676,T2_grey_market,pending_due,1,2023-10-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09676,D1,pending_due,1,2023-10-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09676,D5,pending_due,1,2023-10-16,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09676,D20,pending_due,1,2023-10-31,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09676,D60,pending_due,1,2023-12-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09678,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09678,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09678,T2_grey_market,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09678,D1,pending_due,1,2025-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09678,D5,pending_due,1,2025-07-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09678,D20,pending_due,1,2025-07-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09678,D60,pending_due,1,2025-08-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09680,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09680,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09680,T2_grey_market,pending_due,1,2024-07-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09680,D1,pending_due,1,2024-07-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09680,D5,pending_due,1,2024-07-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09680,D20,pending_due,1,2024-07-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09680,D60,pending_due,1,2024-09-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09686,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09686,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09686,T2_grey_market,pending_due,1,2023-09-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09686,D1,pending_due,1,2023-09-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09686,D5,pending_due,1,2023-10-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09686,D20,pending_due,1,2023-10-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09686,D60,pending_due,1,2023-11-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09690,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09690,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09690,T2_grey_market,pending_due,1,2023-09-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09690,D1,pending_due,1,2023-09-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09690,D5,pending_due,1,2023-09-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09690,D20,pending_due,1,2023-10-15,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09690,D60,pending_due,1,2023-11-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09860,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09860,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09860,T2_grey_market,pending_due,1,2023-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09860,D1,pending_due,1,2023-06-30,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09860,D5,pending_due,1,2023-07-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09860,D20,pending_due,1,2023-07-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09860,D60,pending_due,1,2023-08-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09879,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09879,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09879,T2_grey_market,pending_due,1,2024-03-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09879,D1,pending_due,1,2024-03-21,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09879,D5,pending_due,1,2024-03-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09879,D20,pending_due,1,2024-04-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09879,D60,pending_due,1,2024-05-19,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09880,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09880,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09880,T2_grey_market,pending_due,1,2023-12-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09880,D1,pending_due,1,2023-12-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09880,D5,pending_due,1,2024-01-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09880,D20,pending_due,1,2024-01-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09880,D60,pending_due,1,2024-02-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09881,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09881,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09881,T2_grey_market,pending_due,1,2025-06-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09881,D1,pending_due,1,2025-06-10,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09881,D5,pending_due,1,2025-06-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09881,D20,pending_due,1,2025-06-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09881,D60,pending_due,1,2025-08-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09885,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09885,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09885,T2_grey_market,pending_due,1,2023-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09885,D1,pending_due,1,2023-06-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09885,D5,pending_due,1,2023-07-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09885,D20,pending_due,1,2023-07-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09885,D60,pending_due,1,2023-08-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09887,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09887,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09887,T2_grey_market,pending_due,1,2025-07-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09887,D1,pending_due,1,2025-07-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09887,D5,pending_due,1,2025-07-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09887,D20,pending_due,1,2025-08-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09887,D60,pending_due,1,2025-09-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09890,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09890,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09890,T2_grey_market,pending_due,1,2023-09-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09890,D1,pending_due,1,2023-09-28,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09890,D5,pending_due,1,2023-10-02,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09890,D20,pending_due,1,2023-10-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09890,D60,pending_due,1,2023-11-26,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09903,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09903,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09903,T2_grey_market,pending_due,1,2026-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09903,D1,pending_due,1,2026-01-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09903,D5,pending_due,1,2026-01-12,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09903,D20,pending_due,1,2026-01-27,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09903,D60,pending_due,1,2026-03-08,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09927,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09927,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09927,T2_grey_market,pending_due,1,2025-11-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09927,D1,pending_due,1,2025-11-05,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09927,D5,pending_due,1,2025-11-09,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09927,D20,pending_due,1,2025-11-24,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09927,D60,pending_due,1,2026-01-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09973,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09973,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09973,T2_grey_market,pending_due,1,2025-09-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09973,D1,pending_due,1,2025-09-25,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09973,D5,pending_due,1,2025-09-29,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09973,D20,pending_due,1,2025-10-14,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09973,D60,pending_due,1,2025-11-23,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09980,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09980,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09980,T2_grey_market,pending_due,1,2026-02-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09980,D1,pending_due,1,2026-02-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09980,D5,pending_due,1,2026-02-07,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09980,D20,pending_due,1,2026-02-22,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09980,D60,pending_due,1,2026-04-03,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09981,T0_prospectus,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Missing prospectus source or offering terms. +09981,T1_allotment,pending_due,1,,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Allotment result facts are not archived yet. +09981,T2_grey_market,pending_due,1,2026-02-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09981,D1,pending_due,1,2026-02-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. +09981,D5,pending_due,1,2026-02-17,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09981,D20,pending_due,1,2026-03-04,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. +09981,D60,pending_due,1,2026-04-13,,,,sync_state_20260615T085000Z,2026-06-15T08:50:00Z,Price/performance source is not archived yet. Due date uses calendar days until trading-calendar support is added. diff --git a/scripts/archive_hkex_documents.py b/scripts/archive_hkex_documents.py new file mode 100644 index 0000000..d2fe35f --- /dev/null +++ b/scripts/archive_hkex_documents.py @@ -0,0 +1,761 @@ +#!/usr/bin/env python3 +"""Archive HKEXnews prospectus and allotment-result documents for open sync tasks.""" + +from __future__ import annotations + +import argparse +import csv +import hashlib +import html +import json +import re +import sqlite3 +import subprocess +import sys +from dataclasses import dataclass +from datetime import date, datetime, timezone +from pathlib import Path +from urllib.parse import urljoin +from urllib.request import Request, urlopen + +from pypdf import PdfReader + + +BASE_URL = "https://www1.hkexnews.hk" +ACTIVE_STOCK_URL = f"{BASE_URL}/ncms/script/eds/activestock_sehk_e.json" +INACTIVE_STOCK_URL = f"{BASE_URL}/ncms/script/eds/inactivestock_sehk_e.json" +TITLE_SEARCH_URL = f"{BASE_URL}/search/titlesearch.xhtml" +DB_PATH = Path("data/hk_ipo.sqlite") +SCHEMA_PATH = Path("schema/hk_ipo.schema.sql") +SNAPSHOT_DIR = Path("data/snapshots") + + +@dataclass(frozen=True) +class DocumentRow: + release_time: str + release_date: str + headline: str + title: str + href: str + url: str + + +@dataclass(frozen=True) +class ArchivedSource: + source_id: str + ticker: str + source_type: str + title: str + local_path: str + url: str + file_sha256: str + source_date: str + notes: str + + +@dataclass(frozen=True) +class ProspectusFacts: + application_start_date: str | None = None + application_end_date: str | None = None + allotment_results_expected_date: str | None = None + listing_date: str | None = None + board_lot: int | None = None + min_subscription_amount_hkd: float | None = None + global_offer_shares: int | None = None + hk_offer_shares_initial: int | None = None + international_offer_shares_initial: int | None = None + public_offer_pct_initial: float | None = None + over_allotment_offer_shares: int | None = None + + +@dataclass(frozen=True) +class AllotmentFacts: + final_offer_price_hkd: float | None = None + gross_proceeds_hkd_m: float | None = None + net_proceeds_hkd_m: float | None = None + issued_shares_upon_listing: int | None = None + valid_applications: int | None = None + successful_applications: int | None = None + public_oversubscription_times: float | None = None + international_placees: int | None = None + international_oversubscription_times: float | None = None + final_hk_offer_shares: int | None = None + final_international_offer_shares: int | None = None + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--db", default=str(DB_PATH), help="Repo-relative SQLite database path.") + parser.add_argument("--schema", default=str(SCHEMA_PATH), help="Repo-relative schema path.") + parser.add_argument("--as-of", help="Archive timestamp. Defaults to current UTC time.") + parser.add_argument("--limit", type=int, default=5, help="Maximum tickers to process.") + parser.add_argument("--tickers", help="Comma-separated tickers to process instead of selecting from sync_tasks.") + parser.add_argument("--skip-sync-state", action="store_true", help="Do not refresh sync state after updating facts.") + return parser.parse_args() + + +def fetch_bytes(url: str) -> bytes: + request = Request(url, headers={"User-Agent": "Mozilla/5.0"}) + with urlopen(request, timeout=60) as response: + return response.read() + + +def parse_as_of(value: str | None) -> str: + if value: + return datetime.fromisoformat(value.replace("Z", "+00:00")).isoformat().replace("+00:00", "Z") + return datetime.now(timezone.utc).replace(microsecond=0).isoformat().replace("+00:00", "Z") + + +def load_stock_ids() -> dict[str, int]: + stock_ids: dict[str, int] = {} + for url in [ACTIVE_STOCK_URL, INACTIVE_STOCK_URL]: + payload = fetch_bytes(url).decode("utf-8-sig") + for item in json.loads(payload): + code = item.get("c") + stock_id = item.get("i") + if code and stock_id: + stock_ids.setdefault(code, int(stock_id)) + return stock_ids + + +def clean_html(value: str) -> str: + text = re.sub(r"<.*?>", " ", value, flags=re.S) + return " ".join(html.unescape(text).split()) + + +def parse_release_date(value: str) -> str: + return datetime.strptime(value.split()[0], "%d/%m/%Y").date().isoformat() + + +def title_search_rows(stock_id: int) -> list[DocumentRow]: + url = f"{TITLE_SEARCH_URL}?category=0&market=SEHK&stockId={stock_id}" + page = fetch_bytes(url).decode("utf-8", "replace") + rows: list[DocumentRow] = [] + for row in re.findall(r"