gitextract_y93ozk9n/ ├── .github/ │ ├── build/ │ │ └── build_info.json │ └── workflows/ │ └── go.yml ├── .gitignore ├── EMBEDDED_DATA_README.md ├── LICENSE ├── NEW_REGION_ADAPTATION.md ├── PROJECT_DOCUMENTATION.md ├── README.md ├── REGION_PRODUCT_ADAPTATION.md ├── cache/ │ ├── html/ │ │ ├── iphone-16_au.html │ │ ├── iphone-16_cn.html │ │ ├── iphone-16_hk.html │ │ ├── iphone-16_jp.html │ │ ├── iphone-16_sg.html │ │ ├── iphone-16_uk.html │ │ ├── iphone-16_us.html │ │ ├── iphone-17-pro_au.html │ │ ├── iphone-17-pro_cn.html │ │ ├── iphone-17-pro_hk.html │ │ ├── iphone-17-pro_jp.html │ │ ├── iphone-17-pro_sg.html │ │ ├── iphone-17-pro_uk.html │ │ ├── iphone-17-pro_us.html │ │ ├── iphone-17_au.html │ │ ├── iphone-17_cn.html │ │ ├── iphone-17_hk.html │ │ ├── iphone-17_jp.html │ │ ├── iphone-17_sg.html │ │ ├── iphone-17_uk.html │ │ ├── iphone-17_us.html │ │ ├── iphone-air_au.html │ │ ├── iphone-air_cn.html │ │ ├── iphone-air_hk.html │ │ ├── iphone-air_jp.html │ │ ├── iphone-air_sg.html │ │ ├── iphone-air_uk.html │ │ ├── iphone-air_us.html │ │ ├── iphone_17_pro_au.html │ │ ├── iphone_17_pro_cn.html │ │ ├── iphone_17_pro_hk.html │ │ ├── iphone_17_pro_jp.html │ │ ├── iphone_17_pro_sg.html │ │ ├── iphone_17_pro_uk.html │ │ └── iphone_17_pro_us.html │ └── store_html/ │ └── apple_store_list.html ├── common/ │ └── const.go ├── data/ │ ├── config/ │ │ └── apple_urls.json │ ├── product/ │ │ ├── product_data_au.json │ │ ├── product_data_cn.json │ │ ├── product_data_hk.json │ │ ├── product_data_jp.json │ │ ├── product_data_sg.json │ │ ├── product_data_uk.json │ │ └── product_data_us.json │ ├── store/ │ │ ├── store_ae.json │ │ ├── store_at.json │ │ ├── store_au.json │ │ ├── store_be.json │ │ ├── store_br.json │ │ ├── store_ca.json │ │ ├── store_ch.json │ │ ├── store_cn.json │ │ ├── store_de.json │ │ ├── store_es.json │ │ ├── store_fr.json │ │ ├── store_hk.json │ │ ├── store_in.json │ │ ├── store_it.json │ │ ├── store_jp.json │ │ ├── store_kr.json │ │ ├── store_mx.json │ │ ├── store_my.json │ │ ├── store_nl.json │ │ ├── store_se.json │ │ ├── store_th.json │ │ ├── store_tr.json │ │ ├── store_tw.json │ │ ├── store_uk.json │ │ └── store_us.json │ └── store_data.json ├── embedded/ │ ├── data/ │ │ ├── product/ │ │ │ ├── product_data_au.json │ │ │ ├── product_data_cn.json │ │ │ ├── product_data_hk.json │ │ │ ├── product_data_jp.json │ │ │ ├── product_data_sg.json │ │ │ ├── product_data_uk.json │ │ │ └── product_data_us.json │ │ └── store/ │ │ ├── store_ae.json │ │ ├── store_at.json │ │ ├── store_au.json │ │ ├── store_be.json │ │ ├── store_br.json │ │ ├── store_ca.json │ │ ├── store_ch.json │ │ ├── store_cn.json │ │ ├── store_de.json │ │ ├── store_es.json │ │ ├── store_fr.json │ │ ├── store_hk.json │ │ ├── store_in.json │ │ ├── store_it.json │ │ ├── store_jp.json │ │ ├── store_kr.json │ │ ├── store_mx.json │ │ ├── store_my.json │ │ ├── store_nl.json │ │ ├── store_se.json │ │ ├── store_th.json │ │ ├── store_tr.json │ │ ├── store_tw.json │ │ ├── store_uk.json │ │ └── store_us.json │ └── embedded_data.go ├── final_embedded_test.go ├── final_test.go ├── go.mod ├── go.sum ├── main.go ├── model/ │ ├── area.go │ ├── area_iphone17.go │ ├── area_iphone17.go.bak │ ├── china_location.go │ ├── china_stores.go │ ├── global_stores.go │ ├── product.go │ ├── product_structure.go │ └── store.go ├── services/ │ ├── area.go │ ├── listen.go │ ├── product.go │ ├── product_fetcher.go │ ├── setting.go │ ├── store.go │ └── store_fetcher.go ├── theme/ │ ├── bundle.go │ └── theme.go ├── user_settings.json └── view/ ├── custom_select.go └── view.go