project.pbxproj 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 55;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2B3E96D298A3E04003DA2AD3 /* Pods_Asteria_NotificationServiceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 51AF3B78609F55449DF09609 /* Pods_Asteria_NotificationServiceExtension.framework */; };
  10. 811F42462A40533C00DA68F1 /* ASPointsHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 811F42452A40533C00DA68F1 /* ASPointsHomeViewController.m */; };
  11. 811F42492A40536C00DA68F1 /* ASPointHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 811F42482A40536C00DA68F1 /* ASPointHeadView.m */; };
  12. 8134C1AD2A13094F006EB0EC /* Target_userCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1AC2A13094F006EB0EC /* Target_userCenter.m */; };
  13. 8134C1B42A1358F3006EB0EC /* ASSginView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1B32A1358F3006EB0EC /* ASSginView.m */; };
  14. 8134C1B72A1359E6006EB0EC /* ASSignDayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1B62A1359E6006EB0EC /* ASSignDayView.m */; };
  15. 8134C1BA2A1372A7006EB0EC /* ASUserCenterEnterItemV.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1B92A1372A7006EB0EC /* ASUserCenterEnterItemV.m */; };
  16. 8134C1BD2A1372D5006EB0EC /* ASUserCenterTableHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1BC2A1372D5006EB0EC /* ASUserCenterTableHeadView.m */; };
  17. 8134C1C52A145172006EB0EC /* ASProductItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1C42A145172006EB0EC /* ASProductItemView.m */; };
  18. 81354BE72A28786C0082C93A /* ASProductBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BE62A28786C0082C93A /* ASProductBaseModel.m */; };
  19. 81354BED2A287AB50082C93A /* KWMineHomeOrderHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BEA2A287AB50082C93A /* KWMineHomeOrderHeadView.m */; };
  20. 81354BEE2A287AB50082C93A /* KWMineHomeOrderListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BEC2A287AB50082C93A /* KWMineHomeOrderListCell.m */; };
  21. 81354BF22A287B120082C93A /* KWMineHomeOrderModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BF02A287B120082C93A /* KWMineHomeOrderModel.m */; };
  22. 81354BF52A287BED0082C93A /* KWMineHomeOrderSubView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BF42A287BEC0082C93A /* KWMineHomeOrderSubView.m */; };
  23. 81354BF72A288AC20082C93A /* ASUI.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 81354BF62A288AC20082C93A /* ASUI.xcassets */; };
  24. 81354BFC2A28998B0082C93A /* KWMineMoreProductTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BF92A28998A0082C93A /* KWMineMoreProductTypeCell.m */; };
  25. 81354BFD2A28998B0082C93A /* KWMineMoreProductsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BFB2A28998A0082C93A /* KWMineMoreProductsCell.m */; };
  26. 81354C002A2899CB0082C93A /* KWMineMoreProductModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BFF2A2899CB0082C93A /* KWMineMoreProductModel.m */; };
  27. 81354C032A289A070082C93A /* HomeFilterModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354C022A289A070082C93A /* HomeFilterModel.m */; };
  28. 81354C0A2A289C350082C93A /* KWScrollOffsetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354C082A289C350082C93A /* KWScrollOffsetView.m */; };
  29. 81354C0B2A289C350082C93A /* KWTimeEndView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354C092A289C350082C93A /* KWTimeEndView.m */; };
  30. 81354C0E2A297D6A0082C93A /* HomeFlashDealSubCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354C0C2A297D690082C93A /* HomeFlashDealSubCollectCell.m */; };
  31. 814F5CEF2A11B1F2003847A9 /* ASUserCenterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 814F5CEE2A11B1F2003847A9 /* ASUserCenterViewController.m */; };
  32. 814F5CF52A11B37E003847A9 /* ASUserAvaterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 814F5CF42A11B37E003847A9 /* ASUserAvaterView.m */; };
  33. 814F5D052A11B76F003847A9 /* Roboto-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CF82A11B76F003847A9 /* Roboto-Medium.ttf */; };
  34. 814F5D062A11B76F003847A9 /* Roboto-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CF92A11B76F003847A9 /* Roboto-Light.ttf */; };
  35. 814F5D072A11B76F003847A9 /* Roboto-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFA2A11B76F003847A9 /* Roboto-Regular.ttf */; };
  36. 814F5D082A11B76F003847A9 /* Roboto-MediumItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFB2A11B76F003847A9 /* Roboto-MediumItalic.ttf */; };
  37. 814F5D092A11B76F003847A9 /* Roboto-ThinItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFC2A11B76F003847A9 /* Roboto-ThinItalic.ttf */; };
  38. 814F5D0A2A11B76F003847A9 /* Roboto-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFD2A11B76F003847A9 /* Roboto-BoldItalic.ttf */; };
  39. 814F5D0B2A11B76F003847A9 /* Roboto-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFE2A11B76F003847A9 /* Roboto-LightItalic.ttf */; };
  40. 814F5D0C2A11B76F003847A9 /* Roboto-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFF2A11B76F003847A9 /* Roboto-Italic.ttf */; };
  41. 814F5D0D2A11B76F003847A9 /* LICENSE.txt in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D002A11B76F003847A9 /* LICENSE.txt */; };
  42. 814F5D0E2A11B76F003847A9 /* Roboto-BlackItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D012A11B76F003847A9 /* Roboto-BlackItalic.ttf */; };
  43. 814F5D0F2A11B76F003847A9 /* Roboto-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D022A11B76F003847A9 /* Roboto-Bold.ttf */; };
  44. 814F5D102A11B76F003847A9 /* Roboto-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D032A11B76F003847A9 /* Roboto-Thin.ttf */; };
  45. 814F5D112A11B76F003847A9 /* Roboto-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D042A11B76F003847A9 /* Roboto-Black.ttf */; };
  46. 815DA3D92A39575100616EF7 /* ASProductListImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 815DA3D82A39575100616EF7 /* ASProductListImageCell.m */; };
  47. 815DA3DC2A39625200616EF7 /* ASProductListTypeDesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 815DA3DB2A39625200616EF7 /* ASProductListTypeDesCell.m */; };
  48. 815DA3DF2A396BD300616EF7 /* ASMoreBtCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 815DA3DE2A396BD300616EF7 /* ASMoreBtCell.m */; };
  49. 81601FE62A2DB19300E4A8F1 /* ASHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FE52A2DB19300E4A8F1 /* ASHomeViewController.m */; };
  50. 81601FF62A2DC78300E4A8F1 /* WMZBannerFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FE92A2DC78300E4A8F1 /* WMZBannerFlowLayout.m */; };
  51. 81601FF72A2DC78300E4A8F1 /* WMZBannerParam.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FEC2A2DC78300E4A8F1 /* WMZBannerParam.m */; };
  52. 81601FF82A2DC78300E4A8F1 /* WMZBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FEE2A2DC78300E4A8F1 /* WMZBannerView.m */; };
  53. 81601FF92A2DC78300E4A8F1 /* WMZBannerControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FEF2A2DC78300E4A8F1 /* WMZBannerControl.m */; };
  54. 81601FFA2A2DC78300E4A8F1 /* WMZBannerFadeLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FF12A2DC78300E4A8F1 /* WMZBannerFadeLayout.m */; };
  55. 81601FFB2A2DC78300E4A8F1 /* WMZBannerOverLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FF52A2DC78300E4A8F1 /* WMZBannerOverLayout.m */; };
  56. 81601FFF2A2DC8E700E4A8F1 /* ASHomeBannerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FFE2A2DC8E700E4A8F1 /* ASHomeBannerCell.m */; };
  57. 816020042A2DCC0200E4A8F1 /* ASHomeBannerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020022A2DCB5600E4A8F1 /* ASHomeBannerModel.m */; };
  58. 816020072A2DD4FB00E4A8F1 /* Target_Home.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020062A2DD4FB00E4A8F1 /* Target_Home.m */; };
  59. 8160200A2A2DD59E00E4A8F1 /* CTMediator+Home.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020092A2DD59E00E4A8F1 /* CTMediator+Home.m */; };
  60. 8160200D2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8160200C2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m */; };
  61. 816020102A2EE55F00E4A8F1 /* ASCategaryListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8160200F2A2EE55F00E4A8F1 /* ASCategaryListCell.m */; };
  62. 816020132A2EE5A200E4A8F1 /* ASCategaryCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020122A2EE5A200E4A8F1 /* ASCategaryCollectCell.m */; };
  63. 816020152A2F065700E4A8F1 /* Home.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 816020142A2F065700E4A8F1 /* Home.xcassets */; };
  64. 816020182A2F070B00E4A8F1 /* ASHomeCategoryModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020172A2F070B00E4A8F1 /* ASHomeCategoryModel.m */; };
  65. 8160201C2A2F101C00E4A8F1 /* ASHomeTipCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8160201B2A2F101C00E4A8F1 /* ASHomeTipCell.m */; };
  66. 8160201F2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8160201E2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m */; };
  67. 816020222A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020212A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m */; };
  68. 816020252A2F1C9E00E4A8F1 /* ASHomeMainListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020242A2F1C9E00E4A8F1 /* ASHomeMainListModel.m */; };
  69. 81717C912A3BE39C00648139 /* ASProductSortFilterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C902A3BE39C00648139 /* ASProductSortFilterView.m */; };
  70. 81717C942A3BE4E000648139 /* ASProductListSortFilterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C932A3BE4E000648139 /* ASProductListSortFilterCell.m */; };
  71. 81717C992A3BF1DD00648139 /* ASHomeAlertWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C982A3BF1DD00648139 /* ASHomeAlertWindow.m */; };
  72. 81717C9C2A3BF1F100648139 /* ASHomeAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C9B2A3BF1F100648139 /* ASHomeAlertViewController.m */; };
  73. 81717CA12A3C0A3500648139 /* KWProductMenuFilterItemHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C9D2A3C0A3400648139 /* KWProductMenuFilterItemHeaderView.m */; };
  74. 81717CA22A3C0A3500648139 /* KWProductMenuFilterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C9F2A3C0A3500648139 /* KWProductMenuFilterView.m */; };
  75. 81717CA52A3C0A5000648139 /* KWProductFilterItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CA42A3C0A5000648139 /* KWProductFilterItemCell.m */; };
  76. 81717CA82A3C0AAA00648139 /* KWProductListFilterModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CA62A3C0AA900648139 /* KWProductListFilterModel.m */; };
  77. 81717CAB2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CAA2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m */; };
  78. 81717D102A3C4AE000648139 /* KWHisAndHotWordsViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CE62A3C4ADE00648139 /* KWHisAndHotWordsViewModel.m */; };
  79. 81717D112A3C4AE000648139 /* KWSearchViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CE72A3C4ADE00648139 /* KWSearchViewModel.m */; };
  80. 81717D122A3C4AE000648139 /* APOnlySearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CEB2A3C4ADE00648139 /* APOnlySearchViewController.m */; };
  81. 81717D132A3C4AE000648139 /* KWSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CEF2A3C4ADE00648139 /* KWSearchViewController.m */; };
  82. 81717D142A3C4AE000648139 /* APCategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CF02A3C4ADE00648139 /* APCategoryViewController.m */; };
  83. 81717D1C2A3C4AE000648139 /* KWSearchSubTypeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D022A3C4ADF00648139 /* KWSearchSubTypeModel.m */; };
  84. 81717D1D2A3C4AE000648139 /* KWSearchSubTypeHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D042A3C4AE000648139 /* KWSearchSubTypeHeadView.m */; };
  85. 81717D1E2A3C4AE000648139 /* KWSearchMainTypeTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D062A3C4AE000648139 /* KWSearchMainTypeTableView.m */; };
  86. 81717D1F2A3C4AE000648139 /* KWMoneyTypeHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D072A3C4AE000648139 /* KWMoneyTypeHeadView.m */; };
  87. 81717D202A3C4AE000648139 /* KWSearchSubTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D0B2A3C4AE000648139 /* KWSearchSubTypeCell.m */; };
  88. 81717D212A3C4AE000648139 /* KWSearchSubTypeTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D0E2A3C4AE000648139 /* KWSearchSubTypeTableView.m */; };
  89. 81717D222A3C4AE000648139 /* KWSearchMainTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D0F2A3C4AE000648139 /* KWSearchMainTypeCell.m */; };
  90. 81717D252A3C512700648139 /* Target_Category.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D242A3C512700648139 /* Target_Category.m */; };
  91. 81717D282A3C55CC00648139 /* CTMediator+Categorys.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D272A3C55CC00648139 /* CTMediator+Categorys.m */; };
  92. 81717D352A3D322700648139 /* KWHisKeyWordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D292A3D322600648139 /* KWHisKeyWordCell.m */; };
  93. 81717D362A3D322700648139 /* KWLenovoWordListView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D2B2A3D322600648139 /* KWLenovoWordListView.m */; };
  94. 81717D372A3D322700648139 /* KWHisCollectHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D2D2A3D322600648139 /* KWHisCollectHeaderView.m */; };
  95. 81717D382A3D322700648139 /* KWNoHisWordsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D312A3D322700648139 /* KWNoHisWordsCell.m */; };
  96. 81717D392A3D322700648139 /* KWCustomLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D322A3D322700648139 /* KWCustomLayout.m */; };
  97. 81717D3A2A3D322700648139 /* KWHisAndHotWordsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D342A3D322700648139 /* KWHisAndHotWordsView.m */; };
  98. 81717D3C2A3D430C00648139 /* Category.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 81717D3B2A3D430C00648139 /* Category.xcassets */; };
  99. 81717D3F2A3D5EAD00648139 /* ASDefualtAlertV.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D3E2A3D5EAD00648139 /* ASDefualtAlertV.m */; };
  100. 8172449F29F3B2ED005FA9C9 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8172449E29F3B2ED005FA9C9 /* AppDelegate.m */; };
  101. 817244AA29F3B2EE005FA9C9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 817244A929F3B2EE005FA9C9 /* Assets.xcassets */; };
  102. 817244AD29F3B2EE005FA9C9 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 817244AB29F3B2EE005FA9C9 /* LaunchScreen.storyboard */; };
  103. 817244B029F3B2EE005FA9C9 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 817244AF29F3B2EE005FA9C9 /* main.m */; };
  104. 817244BE29F3B81C005FA9C9 /* NotificationService.m in Sources */ = {isa = PBXBuildFile; fileRef = 817244BD29F3B81C005FA9C9 /* NotificationService.m */; };
  105. 817244C229F3B81C005FA9C9 /* NotificationServiceExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 817244BA29F3B81C005FA9C9 /* NotificationServiceExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  106. 8186564A2A5BE9790049D861 /* ASSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 818656492A5BE9790049D861 /* ASSearchViewController.m */; };
  107. 8186564D2A5BF6010049D861 /* ASCategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8186564C2A5BF6010049D861 /* ASCategoryViewController.m */; };
  108. 81932E2B29F7539B007C37AF /* UIColor+AS.m in Sources */ = {isa = PBXBuildFile; fileRef = 81932E2A29F7539B007C37AF /* UIColor+AS.m */; };
  109. 819900222A020A6F006FE68C /* LYTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 819900212A020A6F006FE68C /* LYTools.m */; };
  110. 81BEA6832A2D7CF3009D36C4 /* UITableView+ASBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 81BEA6822A2D7CF3009D36C4 /* UITableView+ASBase.m */; };
  111. 81C3265F2A36B284002EF442 /* ASProductListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3265E2A36B284002EF442 /* ASProductListViewController.m */; };
  112. 81C326622A36B33B002EF442 /* ASHomeActiveView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C326612A36B33B002EF442 /* ASHomeActiveView.m */; };
  113. 81C326662A36B794002EF442 /* VerScrollTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C326642A36B794002EF442 /* VerScrollTextView.m */; };
  114. 81C3266A2A36F035002EF442 /* ASProductListViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C326692A36F035002EF442 /* ASProductListViewModel.m */; };
  115. 81C3266E2A36FF2B002EF442 /* ASProductListActiveHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3266D2A36FF2B002EF442 /* ASProductListActiveHeaderView.m */; };
  116. 81C326712A37020A002EF442 /* ASProductListMenuHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C326702A37020A002EF442 /* ASProductListMenuHeaderView.m */; };
  117. 81C3B44429F6612800D79294 /* ASBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3B44329F6612800D79294 /* ASBaseViewController.m */; };
  118. 81C3B44A29F6661500D79294 /* ASBaseNavController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3B44929F6661500D79294 /* ASBaseNavController.m */; };
  119. 81C3B45529F66C1700D79294 /* UIView+PublicInit.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3B45429F66C1700D79294 /* UIView+PublicInit.m */; };
  120. 81C796242A4FD63A003083B8 /* ASVipCouponsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796232A4FD63A003083B8 /* ASVipCouponsViewController.m */; };
  121. 81C796272A4FD898003083B8 /* ASBirthdayTreatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796262A4FD898003083B8 /* ASBirthdayTreatViewController.m */; };
  122. 81C7962B2A539E80003083B8 /* ASMessageListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C7962A2A539E80003083B8 /* ASMessageListViewController.m */; };
  123. 81C7962E2A539F4D003083B8 /* ASMessageListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C7962D2A539F4D003083B8 /* ASMessageListCell.m */; };
  124. 81C796342A551643003083B8 /* ASSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796332A551643003083B8 /* ASSettingViewController.m */; };
  125. 81C796372A5517B0003083B8 /* ASSettingListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796362A5517B0003083B8 /* ASSettingListCell.m */; };
  126. 81C7963A2A5517F7003083B8 /* KWSwitchButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796392A5517F7003083B8 /* KWSwitchButton.m */; };
  127. 81C7963F2A551FB0003083B8 /* ASInfomationSetController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C7963E2A551FB0003083B8 /* ASInfomationSetController.m */; };
  128. 81C796422A551FE9003083B8 /* KWTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796402A551FE9003083B8 /* KWTextField.m */; };
  129. 81C796462A5542B2003083B8 /* ASHelpListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796452A5542B2003083B8 /* ASHelpListViewController.m */; };
  130. 81DFA5592A4681E900DA708B /* ASPointEranCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5582A4681E900DA708B /* ASPointEranCell.m */; };
  131. 81DFA55D2A46C46D00DA708B /* ASWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA55C2A46C46D00DA708B /* ASWebViewController.m */; };
  132. 81DFA5602A46CC8E00DA708B /* CTMediator+ASWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA55F2A46CC8E00DA708B /* CTMediator+ASWebView.m */; };
  133. 81DFA5632A46CD6000DA708B /* Target_WebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5622A46CD6000DA708B /* Target_WebView.m */; };
  134. 81DFA5672A46D60900DA708B /* ASPointDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5662A46D60900DA708B /* ASPointDetailViewController.m */; };
  135. 81DFA56A2A46D82200DA708B /* ASPointDetailTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5692A46D82200DA708B /* ASPointDetailTableView.m */; };
  136. 81DFA56D2A46D86500DA708B /* ASPointDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA56C2A46D86500DA708B /* ASPointDetailModel.m */; };
  137. 81DFA5712A46D95400DA708B /* ASPointDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5702A46D95400DA708B /* ASPointDetailCell.m */; };
  138. 81DFA5752A47D97C00DA708B /* ASCouponsListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5742A47D97C00DA708B /* ASCouponsListViewController.m */; };
  139. 81DFA5782A47F28D00DA708B /* ASCouponListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5772A47F28D00DA708B /* ASCouponListCell.m */; };
  140. 81E257EE2A120756004EEF71 /* ASUserCenterTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E257ED2A120756004EEF71 /* ASUserCenterTopView.m */; };
  141. 81E257F32A120975004EEF71 /* ASUserBaseInfoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E257F22A120975004EEF71 /* ASUserBaseInfoView.m */; };
  142. 81E257F62A12259B004EEF71 /* UserCenter.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 81E257F52A12259B004EEF71 /* UserCenter.xcassets */; };
  143. 81E257F92A122AC6004EEF71 /* ASUI.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 81E257F82A122AC6004EEF71 /* ASUI.xcassets */; };
  144. 81E257FD2A12340E004EEF71 /* ASEnterItemV.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E257FC2A12340E004EEF71 /* ASEnterItemV.m */; };
  145. 81E5EE902A498FC90075695F /* ASVipCenterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E5EE8F2A498FC90075695F /* ASVipCenterViewController.m */; };
  146. 81E5EE942A4A760D0075695F /* ASVipCenterLineItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E5EE932A4A760D0075695F /* ASVipCenterLineItemView.m */; };
  147. 81E5EE972A4A822D0075695F /* ASVipCenterCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E5EE962A4A822D0075695F /* ASVipCenterCollectCell.m */; };
  148. 81EC47662A33035D00516573 /* ASHomeNewInCellTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47652A33035D00516573 /* ASHomeNewInCellTableViewCell.m */; };
  149. 81EC47692A33073100516573 /* ASHomeNewInProductItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47682A33073100516573 /* ASHomeNewInProductItemView.m */; };
  150. 81EC476C2A33131100516573 /* ASHomeNewInSubCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC476B2A33131100516573 /* ASHomeNewInSubCollectCell.m */; };
  151. 81EC476F2A33F82C00516573 /* ASHomeImgCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC476E2A33F82C00516573 /* ASHomeImgCell.m */; };
  152. 81EC47722A3402CA00516573 /* ASHomeFlashDealCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47712A3402CA00516573 /* ASHomeFlashDealCell.m */; };
  153. 81EC47752A3423FC00516573 /* ASHomeLookingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47742A3423FC00516573 /* ASHomeLookingCell.m */; };
  154. 81EC47782A3426CE00516573 /* ASHomeLookingCollCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47772A3426CE00516573 /* ASHomeLookingCollCell.m */; };
  155. 8C24ECE114420CDEE7B9B22B /* Pods_Asteria.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54DCE8001991D89B696E7D44 /* Pods_Asteria.framework */; };
  156. 9A1247942A1B082300126226 /* Fuction_Tool.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1247932A1B082300126226 /* Fuction_Tool.m */; };
  157. 9A1247972A1B0A2800126226 /* AS_ForgotC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1247962A1B0A2800126226 /* AS_ForgotC.m */; };
  158. 9A2027F52A137B8600FF4DAF /* AuthenticationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A2027F42A137B8600FF4DAF /* AuthenticationServices.framework */; };
  159. 9A337E3A2A04EE1A00D058A5 /* Target_B.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A337E362A04EE1A00D058A5 /* Target_B.m */; };
  160. 9A337E3B2A04EE1A00D058A5 /* BViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A337E392A04EE1A00D058A5 /* BViewController.m */; };
  161. 9A337E4E2A04F46600D058A5 /* AViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A337E4D2A04F46600D058A5 /* AViewController.m */; };
  162. 9A5C64582A12064300CBB185 /* AS_LoginC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5C64572A12064300CBB185 /* AS_LoginC.m */; };
  163. 9A5C645B2A1206E500CBB185 /* common.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9A5C645A2A1206E500CBB185 /* common.xcassets */; };
  164. 9A65DE512A132FB700BB1269 /* LoginThirdAuthV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A65DE502A132FB700BB1269 /* LoginThirdAuthV.m */; };
  165. 9A788C442A08A663003E0025 /* Target_Goods.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A788C432A08A663003E0025 /* Target_Goods.m */; };
  166. 9A7DA6A12A0CE33500136974 /* Asteria.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9A7DA6A02A0CE33500136974 /* Asteria.xcassets */; };
  167. 9A8DD8C52A0B8F1700573324 /* As_GoodsSizeC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A8DD8C42A0B8F1700573324 /* As_GoodsSizeC.m */; };
  168. 9A8DD8C82A0B93F700573324 /* GoodsDetailsVM.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A8DD8C72A0B93F600573324 /* GoodsDetailsVM.m */; };
  169. 9ACBEC212A14585300A8F97A /* CTMediator+ASTargerts.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACBEC202A14585300A8F97A /* CTMediator+ASTargerts.m */; };
  170. 9ACBEC252A14707400A8F97A /* AS_SignUpC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACBEC242A14707400A8F97A /* AS_SignUpC.m */; };
  171. 9ACBEC282A1472AF00A8F97A /* LoginSignUpV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACBEC272A1472AF00A8F97A /* LoginSignUpV.m */; };
  172. 9ACBEC2B2A14CCA300A8F97A /* ThirdPartService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACBEC292A14CCA200A8F97A /* ThirdPartService.m */; };
  173. 9AD3459E2A08D545005CA070 /* GoodsDetailSrcView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD3459D2A08D545005CA070 /* GoodsDetailSrcView.m */; };
  174. 9AD345A72A08D571005CA070 /* TYPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345A32A08D571005CA070 /* TYPageControl.m */; };
  175. 9AD345A82A08D571005CA070 /* TYCyclePagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345A42A08D571005CA070 /* TYCyclePagerView.m */; };
  176. 9AD345A92A08D571005CA070 /* TYCyclePagerTransformLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345A52A08D571005CA070 /* TYCyclePagerTransformLayout.m */; };
  177. 9AD345AC2A08D59A005CA070 /* WKM_goodsBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345AB2A08D59A005CA070 /* WKM_goodsBanner.m */; };
  178. 9AD345B12A08D5ED005CA070 /* GoodsBannerCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345AE2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.m */; };
  179. 9AD345B22A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345B02A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m */; };
  180. 9AD345F82A08D60F005CA070 /* ZFPlayerGestureControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345B62A08D60F005CA070 /* ZFPlayerGestureControl.m */; };
  181. 9AD345F92A08D60F005CA070 /* ZFPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345B72A08D60F005CA070 /* ZFPlayerController.m */; };
  182. 9AD345FA2A08D60F005CA070 /* ZFLandscapeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345BA2A08D60F005CA070 /* ZFLandscapeWindow.m */; };
  183. 9AD345FB2A08D60F005CA070 /* ZFOrientationObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345BD2A08D60F005CA070 /* ZFOrientationObserver.m */; };
  184. 9AD345FC2A08D60F005CA070 /* ZFPlayerLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C02A08D60F005CA070 /* ZFPlayerLogManager.m */; };
  185. 9AD345FD2A08D60F005CA070 /* ZFPersentInteractiveTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C22A08D60F005CA070 /* ZFPersentInteractiveTransition.m */; };
  186. 9AD345FE2A08D60F005CA070 /* UIScrollView+ZFPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C42A08D60F005CA070 /* UIScrollView+ZFPlayer.m */; };
  187. 9AD345FF2A08D60F005CA070 /* ZFPlayerNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C72A08D60F005CA070 /* ZFPlayerNotification.m */; };
  188. 9AD346002A08D60F005CA070 /* ZFPresentTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C82A08D60F005CA070 /* ZFPresentTransition.m */; };
  189. 9AD346012A08D60F005CA070 /* ZFFloatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C92A08D60F005CA070 /* ZFFloatView.m */; };
  190. 9AD346022A08D60F005CA070 /* ZFPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345CC2A08D60F005CA070 /* ZFPlayerView.m */; };
  191. 9AD346032A08D60F005CA070 /* ZFPortraitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345CE2A08D60F005CA070 /* ZFPortraitViewController.m */; };
  192. 9AD346042A08D60F005CA070 /* ZFKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345D12A08D60F005CA070 /* ZFKVOController.m */; };
  193. 9AD346052A08D60F005CA070 /* ZFLandscapeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345D22A08D60F005CA070 /* ZFLandscapeViewController.m */; };
  194. 9AD346062A08D60F005CA070 /* ZFReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345D52A08D60F005CA070 /* ZFReachabilityManager.m */; };
  195. 9AD346072A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345D72A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m */; };
  196. 9AD346082A08D60F005CA070 /* ZFIJKPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345DA2A08D60F005CA070 /* ZFIJKPlayerManager.m */; };
  197. 9AD346092A08D60F005CA070 /* ZFAVPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345DC2A08D60F005CA070 /* ZFAVPlayerManager.m */; };
  198. 9AD3460A2A08D60F005CA070 /* ZFUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345DF2A08D60F005CA070 /* ZFUtilities.m */; };
  199. 9AD3460B2A08D60F005CA070 /* UIView+ZFFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345E02A08D60F005CA070 /* UIView+ZFFrame.m */; };
  200. 9AD3460C2A08D60F005CA070 /* ZFVolumeBrightnessView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345E42A08D60F005CA070 /* ZFVolumeBrightnessView.m */; };
  201. 9AD3460D2A08D60F005CA070 /* ZFLandScapeControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345E72A08D60F005CA070 /* ZFLandScapeControlView.m */; };
  202. 9AD3460E2A08D60F005CA070 /* ZFNetworkSpeedMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345E82A08D60F005CA070 /* ZFNetworkSpeedMonitor.m */; };
  203. 9AD3460F2A08D60F005CA070 /* ZFPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AD345EB2A08D60F005CA070 /* ZFPlayer.bundle */; };
  204. 9AD346102A08D60F005CA070 /* ZFSliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345EE2A08D60F005CA070 /* ZFSliderView.m */; };
  205. 9AD346112A08D60F005CA070 /* ZFPlayerControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345EF2A08D60F005CA070 /* ZFPlayerControlView.m */; };
  206. 9AD346122A08D60F005CA070 /* ZFSmallFloatControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F02A08D60F005CA070 /* ZFSmallFloatControlView.m */; };
  207. 9AD346132A08D60F005CA070 /* ZFLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F12A08D60F005CA070 /* ZFLoadingView.m */; };
  208. 9AD346142A08D60F005CA070 /* ZFSpeedLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F22A08D60F005CA070 /* ZFSpeedLoadingView.m */; };
  209. 9AD346152A08D60F005CA070 /* ZFPortraitControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F42A08D60F005CA070 /* ZFPortraitControlView.m */; };
  210. 9AD346162A08D60F005CA070 /* UIImageView+ZFCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F52A08D60F005CA070 /* UIImageView+ZFCache.m */; };
  211. 9AD346192A08D679005CA070 /* GoodsBannerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD346182A08D679005CA070 /* GoodsBannerModel.m */; };
  212. 9AD3461D2A08D6F0005CA070 /* GoodsInformationM.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD3461C2A08D6EF005CA070 /* GoodsInformationM.m */; };
  213. 9AD346202A08E30E005CA070 /* SelectVCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD3461F2A08E30E005CA070 /* SelectVCollectionViewCell.m */; };
  214. 9AD364C62A05E73E00452C7A /* AS_GoodsDetailsC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD364C52A05E73E00452C7A /* AS_GoodsDetailsC.m */; };
  215. 9AD364D12A05EC7800452C7A /* AS_TabBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD364D02A05EC7800452C7A /* AS_TabBarViewController.m */; };
  216. 9AD6A53E2A120CC3001DE3D9 /* Login.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9AD6A53D2A120CC3001DE3D9 /* Login.xcassets */; };
  217. 9AD6A5442A1218E8001DE3D9 /* PassWordSecureBtnV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD6A5422A1218E7001DE3D9 /* PassWordSecureBtnV.m */; };
  218. 9AD6A5452A1218E8001DE3D9 /* EamilTFmatchV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD6A5432A1218E7001DE3D9 /* EamilTFmatchV.m */; };
  219. 9AD6A5492A1237D0001DE3D9 /* Target_Login.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD6A5482A1237D0001DE3D9 /* Target_Login.m */; };
  220. /* End PBXBuildFile section */
  221. /* Begin PBXContainerItemProxy section */
  222. 817244C029F3B81C005FA9C9 /* PBXContainerItemProxy */ = {
  223. isa = PBXContainerItemProxy;
  224. containerPortal = 8172449229F3B2EC005FA9C9 /* Project object */;
  225. proxyType = 1;
  226. remoteGlobalIDString = 817244B929F3B81C005FA9C9;
  227. remoteInfo = NotificationServiceExtension;
  228. };
  229. /* End PBXContainerItemProxy section */
  230. /* Begin PBXCopyFilesBuildPhase section */
  231. 817244C329F3B81C005FA9C9 /* Embed Foundation Extensions */ = {
  232. isa = PBXCopyFilesBuildPhase;
  233. buildActionMask = 2147483647;
  234. dstPath = "";
  235. dstSubfolderSpec = 13;
  236. files = (
  237. 817244C229F3B81C005FA9C9 /* NotificationServiceExtension.appex in Embed Foundation Extensions */,
  238. );
  239. name = "Embed Foundation Extensions";
  240. runOnlyForDeploymentPostprocessing = 0;
  241. };
  242. /* End PBXCopyFilesBuildPhase section */
  243. /* Begin PBXFileReference section */
  244. 2A57FEE3AE67604607B5A6DE /* Pods-Asteria.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Asteria.release.xcconfig"; path = "Target Support Files/Pods-Asteria/Pods-Asteria.release.xcconfig"; sourceTree = "<group>"; };
  245. 3757F38E691966CC4F482D46 /* Pods-Asteria-NotificationServiceExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Asteria-NotificationServiceExtension.release.xcconfig"; path = "Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension.release.xcconfig"; sourceTree = "<group>"; };
  246. 3C97D3C0DD5DB3DCA3FF46B8 /* Pods-Asteria.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Asteria.debug.xcconfig"; path = "Target Support Files/Pods-Asteria/Pods-Asteria.debug.xcconfig"; sourceTree = "<group>"; };
  247. 51AF3B78609F55449DF09609 /* Pods_Asteria_NotificationServiceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Asteria_NotificationServiceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  248. 54DCE8001991D89B696E7D44 /* Pods_Asteria.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Asteria.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  249. 811F42442A40533C00DA68F1 /* ASPointsHomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointsHomeViewController.h; sourceTree = "<group>"; };
  250. 811F42452A40533C00DA68F1 /* ASPointsHomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointsHomeViewController.m; sourceTree = "<group>"; };
  251. 811F42472A40536C00DA68F1 /* ASPointHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointHeadView.h; sourceTree = "<group>"; };
  252. 811F42482A40536C00DA68F1 /* ASPointHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointHeadView.m; sourceTree = "<group>"; };
  253. 8134C1AB2A13094F006EB0EC /* Target_userCenter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_userCenter.h; sourceTree = "<group>"; };
  254. 8134C1AC2A13094F006EB0EC /* Target_userCenter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_userCenter.m; sourceTree = "<group>"; };
  255. 8134C1B22A1358F3006EB0EC /* ASSginView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSginView.h; sourceTree = "<group>"; };
  256. 8134C1B32A1358F3006EB0EC /* ASSginView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSginView.m; sourceTree = "<group>"; };
  257. 8134C1B52A1359E6006EB0EC /* ASSignDayView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSignDayView.h; sourceTree = "<group>"; };
  258. 8134C1B62A1359E6006EB0EC /* ASSignDayView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSignDayView.m; sourceTree = "<group>"; };
  259. 8134C1B82A1372A7006EB0EC /* ASUserCenterEnterItemV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterEnterItemV.h; sourceTree = "<group>"; };
  260. 8134C1B92A1372A7006EB0EC /* ASUserCenterEnterItemV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterEnterItemV.m; sourceTree = "<group>"; };
  261. 8134C1BB2A1372D5006EB0EC /* ASUserCenterTableHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterTableHeadView.h; sourceTree = "<group>"; };
  262. 8134C1BC2A1372D5006EB0EC /* ASUserCenterTableHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterTableHeadView.m; sourceTree = "<group>"; };
  263. 8134C1C32A145172006EB0EC /* ASProductItemView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductItemView.h; sourceTree = "<group>"; };
  264. 8134C1C42A145172006EB0EC /* ASProductItemView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductItemView.m; sourceTree = "<group>"; };
  265. 81354BE52A28786C0082C93A /* ASProductBaseModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductBaseModel.h; sourceTree = "<group>"; };
  266. 81354BE62A28786C0082C93A /* ASProductBaseModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductBaseModel.m; sourceTree = "<group>"; };
  267. 81354BE92A287AB40082C93A /* KWMineHomeOrderHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineHomeOrderHeadView.h; sourceTree = "<group>"; };
  268. 81354BEA2A287AB50082C93A /* KWMineHomeOrderHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineHomeOrderHeadView.m; sourceTree = "<group>"; };
  269. 81354BEB2A287AB50082C93A /* KWMineHomeOrderListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineHomeOrderListCell.h; sourceTree = "<group>"; };
  270. 81354BEC2A287AB50082C93A /* KWMineHomeOrderListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineHomeOrderListCell.m; sourceTree = "<group>"; };
  271. 81354BF02A287B120082C93A /* KWMineHomeOrderModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineHomeOrderModel.m; sourceTree = "<group>"; };
  272. 81354BF12A287B120082C93A /* KWMineHomeOrderModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineHomeOrderModel.h; sourceTree = "<group>"; };
  273. 81354BF32A287BEC0082C93A /* KWMineHomeOrderSubView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineHomeOrderSubView.h; sourceTree = "<group>"; };
  274. 81354BF42A287BEC0082C93A /* KWMineHomeOrderSubView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineHomeOrderSubView.m; sourceTree = "<group>"; };
  275. 81354BF62A288AC20082C93A /* ASUI.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ASUI.xcassets; sourceTree = "<group>"; };
  276. 81354BF82A28998A0082C93A /* KWMineMoreProductTypeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineMoreProductTypeCell.h; sourceTree = "<group>"; };
  277. 81354BF92A28998A0082C93A /* KWMineMoreProductTypeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineMoreProductTypeCell.m; sourceTree = "<group>"; };
  278. 81354BFA2A28998A0082C93A /* KWMineMoreProductsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineMoreProductsCell.h; sourceTree = "<group>"; };
  279. 81354BFB2A28998A0082C93A /* KWMineMoreProductsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineMoreProductsCell.m; sourceTree = "<group>"; };
  280. 81354BFE2A2899CA0082C93A /* KWMineMoreProductModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineMoreProductModel.h; sourceTree = "<group>"; };
  281. 81354BFF2A2899CB0082C93A /* KWMineMoreProductModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineMoreProductModel.m; sourceTree = "<group>"; };
  282. 81354C012A289A060082C93A /* HomeFilterModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeFilterModel.h; sourceTree = "<group>"; };
  283. 81354C022A289A070082C93A /* HomeFilterModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeFilterModel.m; sourceTree = "<group>"; };
  284. 81354C062A289C340082C93A /* KWScrollOffsetView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWScrollOffsetView.h; sourceTree = "<group>"; };
  285. 81354C072A289C340082C93A /* KWTimeEndView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWTimeEndView.h; sourceTree = "<group>"; };
  286. 81354C082A289C350082C93A /* KWScrollOffsetView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWScrollOffsetView.m; sourceTree = "<group>"; };
  287. 81354C092A289C350082C93A /* KWTimeEndView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWTimeEndView.m; sourceTree = "<group>"; };
  288. 81354C0C2A297D690082C93A /* HomeFlashDealSubCollectCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeFlashDealSubCollectCell.m; sourceTree = "<group>"; };
  289. 81354C0D2A297D6A0082C93A /* HomeFlashDealSubCollectCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeFlashDealSubCollectCell.h; sourceTree = "<group>"; };
  290. 814F5CED2A11B1F2003847A9 /* ASUserCenterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterViewController.h; sourceTree = "<group>"; };
  291. 814F5CEE2A11B1F2003847A9 /* ASUserCenterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterViewController.m; sourceTree = "<group>"; };
  292. 814F5CF32A11B37E003847A9 /* ASUserAvaterView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserAvaterView.h; sourceTree = "<group>"; };
  293. 814F5CF42A11B37E003847A9 /* ASUserAvaterView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserAvaterView.m; sourceTree = "<group>"; };
  294. 814F5CF82A11B76F003847A9 /* Roboto-Medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Medium.ttf"; sourceTree = "<group>"; };
  295. 814F5CF92A11B76F003847A9 /* Roboto-Light.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Light.ttf"; sourceTree = "<group>"; };
  296. 814F5CFA2A11B76F003847A9 /* Roboto-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Regular.ttf"; sourceTree = "<group>"; };
  297. 814F5CFB2A11B76F003847A9 /* Roboto-MediumItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-MediumItalic.ttf"; sourceTree = "<group>"; };
  298. 814F5CFC2A11B76F003847A9 /* Roboto-ThinItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-ThinItalic.ttf"; sourceTree = "<group>"; };
  299. 814F5CFD2A11B76F003847A9 /* Roboto-BoldItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-BoldItalic.ttf"; sourceTree = "<group>"; };
  300. 814F5CFE2A11B76F003847A9 /* Roboto-LightItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-LightItalic.ttf"; sourceTree = "<group>"; };
  301. 814F5CFF2A11B76F003847A9 /* Roboto-Italic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Italic.ttf"; sourceTree = "<group>"; };
  302. 814F5D002A11B76F003847A9 /* LICENSE.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE.txt; sourceTree = "<group>"; };
  303. 814F5D012A11B76F003847A9 /* Roboto-BlackItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-BlackItalic.ttf"; sourceTree = "<group>"; };
  304. 814F5D022A11B76F003847A9 /* Roboto-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Bold.ttf"; sourceTree = "<group>"; };
  305. 814F5D032A11B76F003847A9 /* Roboto-Thin.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Thin.ttf"; sourceTree = "<group>"; };
  306. 814F5D042A11B76F003847A9 /* Roboto-Black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Black.ttf"; sourceTree = "<group>"; };
  307. 815DA3D72A39575100616EF7 /* ASProductListImageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListImageCell.h; sourceTree = "<group>"; };
  308. 815DA3D82A39575100616EF7 /* ASProductListImageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListImageCell.m; sourceTree = "<group>"; };
  309. 815DA3DA2A39625200616EF7 /* ASProductListTypeDesCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListTypeDesCell.h; sourceTree = "<group>"; };
  310. 815DA3DB2A39625200616EF7 /* ASProductListTypeDesCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListTypeDesCell.m; sourceTree = "<group>"; };
  311. 815DA3DD2A396BD300616EF7 /* ASMoreBtCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMoreBtCell.h; sourceTree = "<group>"; };
  312. 815DA3DE2A396BD300616EF7 /* ASMoreBtCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMoreBtCell.m; sourceTree = "<group>"; };
  313. 81601FE42A2DB19300E4A8F1 /* ASHomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeViewController.h; sourceTree = "<group>"; };
  314. 81601FE52A2DB19300E4A8F1 /* ASHomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeViewController.m; sourceTree = "<group>"; };
  315. 81601FE92A2DC78300E4A8F1 /* WMZBannerFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerFlowLayout.m; sourceTree = "<group>"; };
  316. 81601FEA2A2DC78300E4A8F1 /* WMZBannerControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerControl.h; sourceTree = "<group>"; };
  317. 81601FEB2A2DC78300E4A8F1 /* WMZBannerFadeLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerFadeLayout.h; sourceTree = "<group>"; };
  318. 81601FEC2A2DC78300E4A8F1 /* WMZBannerParam.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerParam.m; sourceTree = "<group>"; };
  319. 81601FED2A2DC78300E4A8F1 /* WMZBannerOverLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerOverLayout.h; sourceTree = "<group>"; };
  320. 81601FEE2A2DC78300E4A8F1 /* WMZBannerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerView.m; sourceTree = "<group>"; };
  321. 81601FEF2A2DC78300E4A8F1 /* WMZBannerControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerControl.m; sourceTree = "<group>"; };
  322. 81601FF02A2DC78300E4A8F1 /* WMZBannerFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerFlowLayout.h; sourceTree = "<group>"; };
  323. 81601FF12A2DC78300E4A8F1 /* WMZBannerFadeLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerFadeLayout.m; sourceTree = "<group>"; };
  324. 81601FF22A2DC78300E4A8F1 /* WMZBannerConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerConfig.h; sourceTree = "<group>"; };
  325. 81601FF32A2DC78300E4A8F1 /* WMZBannerParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerParam.h; sourceTree = "<group>"; };
  326. 81601FF42A2DC78300E4A8F1 /* WMZBannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerView.h; sourceTree = "<group>"; };
  327. 81601FF52A2DC78300E4A8F1 /* WMZBannerOverLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerOverLayout.m; sourceTree = "<group>"; };
  328. 81601FFD2A2DC8E700E4A8F1 /* ASHomeBannerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeBannerCell.h; sourceTree = "<group>"; };
  329. 81601FFE2A2DC8E700E4A8F1 /* ASHomeBannerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeBannerCell.m; sourceTree = "<group>"; };
  330. 816020012A2DCB5600E4A8F1 /* ASHomeBannerModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeBannerModel.h; sourceTree = "<group>"; };
  331. 816020022A2DCB5600E4A8F1 /* ASHomeBannerModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeBannerModel.m; sourceTree = "<group>"; };
  332. 816020052A2DD4FB00E4A8F1 /* Target_Home.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Home.h; sourceTree = "<group>"; };
  333. 816020062A2DD4FB00E4A8F1 /* Target_Home.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Home.m; sourceTree = "<group>"; };
  334. 816020082A2DD59E00E4A8F1 /* CTMediator+Home.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+Home.h"; sourceTree = "<group>"; };
  335. 816020092A2DD59E00E4A8F1 /* CTMediator+Home.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+Home.m"; sourceTree = "<group>"; };
  336. 8160200B2A2DD5C000E4A8F1 /* CTMediator+UserCenter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+UserCenter.h"; sourceTree = "<group>"; };
  337. 8160200C2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+UserCenter.m"; sourceTree = "<group>"; };
  338. 8160200E2A2EE55F00E4A8F1 /* ASCategaryListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCategaryListCell.h; sourceTree = "<group>"; };
  339. 8160200F2A2EE55F00E4A8F1 /* ASCategaryListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCategaryListCell.m; sourceTree = "<group>"; };
  340. 816020112A2EE5A200E4A8F1 /* ASCategaryCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCategaryCollectCell.h; sourceTree = "<group>"; };
  341. 816020122A2EE5A200E4A8F1 /* ASCategaryCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCategaryCollectCell.m; sourceTree = "<group>"; };
  342. 816020142A2F065700E4A8F1 /* Home.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Home.xcassets; sourceTree = "<group>"; };
  343. 816020162A2F070B00E4A8F1 /* ASHomeCategoryModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeCategoryModel.h; sourceTree = "<group>"; };
  344. 816020172A2F070B00E4A8F1 /* ASHomeCategoryModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeCategoryModel.m; sourceTree = "<group>"; };
  345. 8160201A2A2F101C00E4A8F1 /* ASHomeTipCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeTipCell.h; sourceTree = "<group>"; };
  346. 8160201B2A2F101C00E4A8F1 /* ASHomeTipCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeTipCell.m; sourceTree = "<group>"; };
  347. 8160201D2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeTipCollectCell.h; sourceTree = "<group>"; };
  348. 8160201E2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeTipCollectCell.m; sourceTree = "<group>"; };
  349. 816020202A2F1C6A00E4A8F1 /* ASHomeBestSellCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeBestSellCell.h; sourceTree = "<group>"; };
  350. 816020212A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeBestSellCell.m; sourceTree = "<group>"; };
  351. 816020232A2F1C9E00E4A8F1 /* ASHomeMainListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeMainListModel.h; sourceTree = "<group>"; };
  352. 816020242A2F1C9E00E4A8F1 /* ASHomeMainListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeMainListModel.m; sourceTree = "<group>"; };
  353. 81717C8F2A3BE39C00648139 /* ASProductSortFilterView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductSortFilterView.h; sourceTree = "<group>"; };
  354. 81717C902A3BE39C00648139 /* ASProductSortFilterView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductSortFilterView.m; sourceTree = "<group>"; };
  355. 81717C922A3BE4E000648139 /* ASProductListSortFilterCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListSortFilterCell.h; sourceTree = "<group>"; };
  356. 81717C932A3BE4E000648139 /* ASProductListSortFilterCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListSortFilterCell.m; sourceTree = "<group>"; };
  357. 81717C972A3BF1DD00648139 /* ASHomeAlertWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeAlertWindow.h; sourceTree = "<group>"; };
  358. 81717C982A3BF1DD00648139 /* ASHomeAlertWindow.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeAlertWindow.m; sourceTree = "<group>"; };
  359. 81717C9A2A3BF1F100648139 /* ASHomeAlertViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeAlertViewController.h; sourceTree = "<group>"; };
  360. 81717C9B2A3BF1F100648139 /* ASHomeAlertViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeAlertViewController.m; sourceTree = "<group>"; };
  361. 81717C9D2A3C0A3400648139 /* KWProductMenuFilterItemHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWProductMenuFilterItemHeaderView.m; sourceTree = "<group>"; };
  362. 81717C9E2A3C0A3500648139 /* KWProductMenuFilterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWProductMenuFilterView.h; sourceTree = "<group>"; };
  363. 81717C9F2A3C0A3500648139 /* KWProductMenuFilterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWProductMenuFilterView.m; sourceTree = "<group>"; };
  364. 81717CA02A3C0A3500648139 /* KWProductMenuFilterItemHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWProductMenuFilterItemHeaderView.h; sourceTree = "<group>"; };
  365. 81717CA32A3C0A5000648139 /* KWProductFilterItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWProductFilterItemCell.h; sourceTree = "<group>"; };
  366. 81717CA42A3C0A5000648139 /* KWProductFilterItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWProductFilterItemCell.m; sourceTree = "<group>"; };
  367. 81717CA62A3C0AA900648139 /* KWProductListFilterModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWProductListFilterModel.m; sourceTree = "<group>"; };
  368. 81717CA72A3C0AAA00648139 /* KWProductListFilterModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWProductListFilterModel.h; sourceTree = "<group>"; };
  369. 81717CA92A3C359E00648139 /* ASProductlistFilterPriceCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductlistFilterPriceCollectCell.h; sourceTree = "<group>"; };
  370. 81717CAA2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductlistFilterPriceCollectCell.m; sourceTree = "<group>"; };
  371. 81717CE62A3C4ADE00648139 /* KWHisAndHotWordsViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWHisAndHotWordsViewModel.m; sourceTree = "<group>"; };
  372. 81717CE72A3C4ADE00648139 /* KWSearchViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchViewModel.m; sourceTree = "<group>"; };
  373. 81717CE82A3C4ADE00648139 /* KWSearchViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchViewModel.h; sourceTree = "<group>"; };
  374. 81717CE92A3C4ADE00648139 /* KWHisAndHotWordsViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWHisAndHotWordsViewModel.h; sourceTree = "<group>"; };
  375. 81717CEB2A3C4ADE00648139 /* APOnlySearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APOnlySearchViewController.m; sourceTree = "<group>"; };
  376. 81717CEC2A3C4ADE00648139 /* APCategoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCategoryViewController.h; sourceTree = "<group>"; };
  377. 81717CED2A3C4ADE00648139 /* KWSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchViewController.h; sourceTree = "<group>"; };
  378. 81717CEE2A3C4ADE00648139 /* APOnlySearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APOnlySearchViewController.h; sourceTree = "<group>"; };
  379. 81717CEF2A3C4ADE00648139 /* KWSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchViewController.m; sourceTree = "<group>"; };
  380. 81717CF02A3C4ADE00648139 /* APCategoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCategoryViewController.m; sourceTree = "<group>"; };
  381. 81717D012A3C4ADF00648139 /* KWSearchSubTypeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchSubTypeModel.h; sourceTree = "<group>"; };
  382. 81717D022A3C4ADF00648139 /* KWSearchSubTypeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchSubTypeModel.m; sourceTree = "<group>"; };
  383. 81717D042A3C4AE000648139 /* KWSearchSubTypeHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchSubTypeHeadView.m; sourceTree = "<group>"; };
  384. 81717D052A3C4AE000648139 /* KWSearchSubTypeTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchSubTypeTableView.h; sourceTree = "<group>"; };
  385. 81717D062A3C4AE000648139 /* KWSearchMainTypeTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchMainTypeTableView.m; sourceTree = "<group>"; };
  386. 81717D072A3C4AE000648139 /* KWMoneyTypeHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMoneyTypeHeadView.m; sourceTree = "<group>"; };
  387. 81717D082A3C4AE000648139 /* KWSearchSubTypeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchSubTypeCell.h; sourceTree = "<group>"; };
  388. 81717D092A3C4AE000648139 /* KWSearchMainTypeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchMainTypeCell.h; sourceTree = "<group>"; };
  389. 81717D0A2A3C4AE000648139 /* KWSearchSubTypeHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchSubTypeHeadView.h; sourceTree = "<group>"; };
  390. 81717D0B2A3C4AE000648139 /* KWSearchSubTypeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchSubTypeCell.m; sourceTree = "<group>"; };
  391. 81717D0C2A3C4AE000648139 /* KWMoneyTypeHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMoneyTypeHeadView.h; sourceTree = "<group>"; };
  392. 81717D0D2A3C4AE000648139 /* KWSearchMainTypeTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchMainTypeTableView.h; sourceTree = "<group>"; };
  393. 81717D0E2A3C4AE000648139 /* KWSearchSubTypeTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchSubTypeTableView.m; sourceTree = "<group>"; };
  394. 81717D0F2A3C4AE000648139 /* KWSearchMainTypeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchMainTypeCell.m; sourceTree = "<group>"; };
  395. 81717D232A3C512700648139 /* Target_Category.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Category.h; sourceTree = "<group>"; };
  396. 81717D242A3C512700648139 /* Target_Category.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Category.m; sourceTree = "<group>"; };
  397. 81717D262A3C55CC00648139 /* CTMediator+Categorys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+Categorys.h"; sourceTree = "<group>"; };
  398. 81717D272A3C55CC00648139 /* CTMediator+Categorys.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+Categorys.m"; sourceTree = "<group>"; };
  399. 81717D292A3D322600648139 /* KWHisKeyWordCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWHisKeyWordCell.m; sourceTree = "<group>"; };
  400. 81717D2A2A3D322600648139 /* KWLenovoWordListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWLenovoWordListView.h; sourceTree = "<group>"; };
  401. 81717D2B2A3D322600648139 /* KWLenovoWordListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWLenovoWordListView.m; sourceTree = "<group>"; };
  402. 81717D2C2A3D322600648139 /* KWNoHisWordsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWNoHisWordsCell.h; sourceTree = "<group>"; };
  403. 81717D2D2A3D322600648139 /* KWHisCollectHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWHisCollectHeaderView.m; sourceTree = "<group>"; };
  404. 81717D2E2A3D322600648139 /* KWHisCollectHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWHisCollectHeaderView.h; sourceTree = "<group>"; };
  405. 81717D2F2A3D322700648139 /* KWHisKeyWordCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWHisKeyWordCell.h; sourceTree = "<group>"; };
  406. 81717D302A3D322700648139 /* KWCustomLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWCustomLayout.h; sourceTree = "<group>"; };
  407. 81717D312A3D322700648139 /* KWNoHisWordsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWNoHisWordsCell.m; sourceTree = "<group>"; };
  408. 81717D322A3D322700648139 /* KWCustomLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWCustomLayout.m; sourceTree = "<group>"; };
  409. 81717D332A3D322700648139 /* KWHisAndHotWordsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWHisAndHotWordsView.h; sourceTree = "<group>"; };
  410. 81717D342A3D322700648139 /* KWHisAndHotWordsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWHisAndHotWordsView.m; sourceTree = "<group>"; };
  411. 81717D3B2A3D430C00648139 /* Category.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Category.xcassets; sourceTree = "<group>"; };
  412. 81717D3D2A3D5EAD00648139 /* ASDefualtAlertV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASDefualtAlertV.h; sourceTree = "<group>"; };
  413. 81717D3E2A3D5EAD00648139 /* ASDefualtAlertV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASDefualtAlertV.m; sourceTree = "<group>"; };
  414. 8172449A29F3B2ED005FA9C9 /* Asteria.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Asteria.app; sourceTree = BUILT_PRODUCTS_DIR; };
  415. 8172449D29F3B2ED005FA9C9 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  416. 8172449E29F3B2ED005FA9C9 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  417. 817244A929F3B2EE005FA9C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  418. 817244AC29F3B2EE005FA9C9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  419. 817244AE29F3B2EE005FA9C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  420. 817244AF29F3B2EE005FA9C9 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  421. 817244BA29F3B81C005FA9C9 /* NotificationServiceExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = NotificationServiceExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  422. 817244BC29F3B81C005FA9C9 /* NotificationService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotificationService.h; sourceTree = "<group>"; };
  423. 817244BD29F3B81C005FA9C9 /* NotificationService.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotificationService.m; sourceTree = "<group>"; };
  424. 817244BF29F3B81C005FA9C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  425. 818656482A5BE9790049D861 /* ASSearchViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSearchViewController.h; sourceTree = "<group>"; };
  426. 818656492A5BE9790049D861 /* ASSearchViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSearchViewController.m; sourceTree = "<group>"; };
  427. 8186564B2A5BF6010049D861 /* ASCategoryViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCategoryViewController.h; sourceTree = "<group>"; };
  428. 8186564C2A5BF6010049D861 /* ASCategoryViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCategoryViewController.m; sourceTree = "<group>"; };
  429. 81932E2929F7539B007C37AF /* UIColor+AS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIColor+AS.h"; sourceTree = "<group>"; };
  430. 81932E2A29F7539B007C37AF /* UIColor+AS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIColor+AS.m"; sourceTree = "<group>"; };
  431. 8199001E2A0206F7006FE68C /* SizeDefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SizeDefine.h; sourceTree = "<group>"; };
  432. 819900202A020A6F006FE68C /* LYTools.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LYTools.h; sourceTree = "<group>"; };
  433. 819900212A020A6F006FE68C /* LYTools.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LYTools.m; sourceTree = "<group>"; };
  434. 81BEA6812A2D7CF3009D36C4 /* UITableView+ASBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UITableView+ASBase.h"; sourceTree = "<group>"; };
  435. 81BEA6822A2D7CF3009D36C4 /* UITableView+ASBase.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UITableView+ASBase.m"; sourceTree = "<group>"; };
  436. 81C3265D2A36B284002EF442 /* ASProductListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListViewController.h; sourceTree = "<group>"; };
  437. 81C3265E2A36B284002EF442 /* ASProductListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListViewController.m; sourceTree = "<group>"; };
  438. 81C326602A36B33B002EF442 /* ASHomeActiveView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeActiveView.h; sourceTree = "<group>"; };
  439. 81C326612A36B33B002EF442 /* ASHomeActiveView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeActiveView.m; sourceTree = "<group>"; };
  440. 81C326642A36B794002EF442 /* VerScrollTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VerScrollTextView.m; sourceTree = "<group>"; };
  441. 81C326652A36B794002EF442 /* VerScrollTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VerScrollTextView.h; sourceTree = "<group>"; };
  442. 81C326682A36F035002EF442 /* ASProductListViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListViewModel.h; sourceTree = "<group>"; };
  443. 81C326692A36F035002EF442 /* ASProductListViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListViewModel.m; sourceTree = "<group>"; };
  444. 81C3266C2A36FF2B002EF442 /* ASProductListActiveHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListActiveHeaderView.h; sourceTree = "<group>"; };
  445. 81C3266D2A36FF2B002EF442 /* ASProductListActiveHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListActiveHeaderView.m; sourceTree = "<group>"; };
  446. 81C3266F2A37020A002EF442 /* ASProductListMenuHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListMenuHeaderView.h; sourceTree = "<group>"; };
  447. 81C326702A37020A002EF442 /* ASProductListMenuHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListMenuHeaderView.m; sourceTree = "<group>"; };
  448. 81C3B44229F6612800D79294 /* ASBaseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASBaseViewController.h; sourceTree = "<group>"; };
  449. 81C3B44329F6612800D79294 /* ASBaseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASBaseViewController.m; sourceTree = "<group>"; };
  450. 81C3B44829F6661500D79294 /* ASBaseNavController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASBaseNavController.h; sourceTree = "<group>"; };
  451. 81C3B44929F6661500D79294 /* ASBaseNavController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASBaseNavController.m; sourceTree = "<group>"; };
  452. 81C3B44F29F6699900D79294 /* PreFixHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PreFixHeader.h; sourceTree = "<group>"; };
  453. 81C3B45029F669C900D79294 /* ColorDefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ColorDefine.h; sourceTree = "<group>"; };
  454. 81C3B45329F66C1700D79294 /* UIView+PublicInit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+PublicInit.h"; sourceTree = "<group>"; };
  455. 81C3B45429F66C1700D79294 /* UIView+PublicInit.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+PublicInit.m"; sourceTree = "<group>"; };
  456. 81C796222A4FD63A003083B8 /* ASVipCouponsViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCouponsViewController.h; sourceTree = "<group>"; };
  457. 81C796232A4FD63A003083B8 /* ASVipCouponsViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCouponsViewController.m; sourceTree = "<group>"; };
  458. 81C796252A4FD898003083B8 /* ASBirthdayTreatViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASBirthdayTreatViewController.h; sourceTree = "<group>"; };
  459. 81C796262A4FD898003083B8 /* ASBirthdayTreatViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASBirthdayTreatViewController.m; sourceTree = "<group>"; };
  460. 81C796292A539E80003083B8 /* ASMessageListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMessageListViewController.h; sourceTree = "<group>"; };
  461. 81C7962A2A539E80003083B8 /* ASMessageListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMessageListViewController.m; sourceTree = "<group>"; };
  462. 81C7962C2A539F4D003083B8 /* ASMessageListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMessageListCell.h; sourceTree = "<group>"; };
  463. 81C7962D2A539F4D003083B8 /* ASMessageListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMessageListCell.m; sourceTree = "<group>"; };
  464. 81C796322A551643003083B8 /* ASSettingViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSettingViewController.h; sourceTree = "<group>"; };
  465. 81C796332A551643003083B8 /* ASSettingViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSettingViewController.m; sourceTree = "<group>"; };
  466. 81C796352A5517B0003083B8 /* ASSettingListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSettingListCell.h; sourceTree = "<group>"; };
  467. 81C796362A5517B0003083B8 /* ASSettingListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSettingListCell.m; sourceTree = "<group>"; };
  468. 81C796382A5517F7003083B8 /* KWSwitchButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSwitchButton.h; sourceTree = "<group>"; };
  469. 81C796392A5517F7003083B8 /* KWSwitchButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSwitchButton.m; sourceTree = "<group>"; };
  470. 81C7963D2A551FB0003083B8 /* ASInfomationSetController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASInfomationSetController.h; sourceTree = "<group>"; };
  471. 81C7963E2A551FB0003083B8 /* ASInfomationSetController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASInfomationSetController.m; sourceTree = "<group>"; };
  472. 81C796402A551FE9003083B8 /* KWTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWTextField.m; sourceTree = "<group>"; };
  473. 81C796412A551FE9003083B8 /* KWTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWTextField.h; sourceTree = "<group>"; };
  474. 81C796442A5542B2003083B8 /* ASHelpListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHelpListViewController.h; sourceTree = "<group>"; };
  475. 81C796452A5542B2003083B8 /* ASHelpListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHelpListViewController.m; sourceTree = "<group>"; };
  476. 81DFA5572A4681E900DA708B /* ASPointEranCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointEranCell.h; sourceTree = "<group>"; };
  477. 81DFA5582A4681E900DA708B /* ASPointEranCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointEranCell.m; sourceTree = "<group>"; };
  478. 81DFA55B2A46C46D00DA708B /* ASWebViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASWebViewController.h; sourceTree = "<group>"; };
  479. 81DFA55C2A46C46D00DA708B /* ASWebViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASWebViewController.m; sourceTree = "<group>"; };
  480. 81DFA55E2A46CC8E00DA708B /* CTMediator+ASWebView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+ASWebView.h"; sourceTree = "<group>"; };
  481. 81DFA55F2A46CC8E00DA708B /* CTMediator+ASWebView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+ASWebView.m"; sourceTree = "<group>"; };
  482. 81DFA5612A46CD6000DA708B /* Target_WebView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_WebView.h; sourceTree = "<group>"; };
  483. 81DFA5622A46CD6000DA708B /* Target_WebView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_WebView.m; sourceTree = "<group>"; };
  484. 81DFA5652A46D60900DA708B /* ASPointDetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointDetailViewController.h; sourceTree = "<group>"; };
  485. 81DFA5662A46D60900DA708B /* ASPointDetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointDetailViewController.m; sourceTree = "<group>"; };
  486. 81DFA5682A46D82200DA708B /* ASPointDetailTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointDetailTableView.h; sourceTree = "<group>"; };
  487. 81DFA5692A46D82200DA708B /* ASPointDetailTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointDetailTableView.m; sourceTree = "<group>"; };
  488. 81DFA56B2A46D86500DA708B /* ASPointDetailModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointDetailModel.h; sourceTree = "<group>"; };
  489. 81DFA56C2A46D86500DA708B /* ASPointDetailModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointDetailModel.m; sourceTree = "<group>"; };
  490. 81DFA56F2A46D95400DA708B /* ASPointDetailCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointDetailCell.h; sourceTree = "<group>"; };
  491. 81DFA5702A46D95400DA708B /* ASPointDetailCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointDetailCell.m; sourceTree = "<group>"; };
  492. 81DFA5732A47D97C00DA708B /* ASCouponsListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCouponsListViewController.h; sourceTree = "<group>"; };
  493. 81DFA5742A47D97C00DA708B /* ASCouponsListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCouponsListViewController.m; sourceTree = "<group>"; };
  494. 81DFA5762A47F28D00DA708B /* ASCouponListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCouponListCell.h; sourceTree = "<group>"; };
  495. 81DFA5772A47F28D00DA708B /* ASCouponListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCouponListCell.m; sourceTree = "<group>"; };
  496. 81E257EC2A120756004EEF71 /* ASUserCenterTopView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterTopView.h; sourceTree = "<group>"; };
  497. 81E257ED2A120756004EEF71 /* ASUserCenterTopView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterTopView.m; sourceTree = "<group>"; };
  498. 81E257F12A120975004EEF71 /* ASUserBaseInfoView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserBaseInfoView.h; sourceTree = "<group>"; };
  499. 81E257F22A120975004EEF71 /* ASUserBaseInfoView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserBaseInfoView.m; sourceTree = "<group>"; };
  500. 81E257F52A12259B004EEF71 /* UserCenter.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = UserCenter.xcassets; sourceTree = "<group>"; };
  501. 81E257F82A122AC6004EEF71 /* ASUI.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ASUI.xcassets; sourceTree = "<group>"; };
  502. 81E257FB2A12340E004EEF71 /* ASEnterItemV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASEnterItemV.h; sourceTree = "<group>"; };
  503. 81E257FC2A12340E004EEF71 /* ASEnterItemV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASEnterItemV.m; sourceTree = "<group>"; };
  504. 81E5EE8E2A498FC90075695F /* ASVipCenterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCenterViewController.h; sourceTree = "<group>"; };
  505. 81E5EE8F2A498FC90075695F /* ASVipCenterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCenterViewController.m; sourceTree = "<group>"; };
  506. 81E5EE922A4A760D0075695F /* ASVipCenterLineItemView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCenterLineItemView.h; sourceTree = "<group>"; };
  507. 81E5EE932A4A760D0075695F /* ASVipCenterLineItemView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCenterLineItemView.m; sourceTree = "<group>"; };
  508. 81E5EE952A4A822D0075695F /* ASVipCenterCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCenterCollectCell.h; sourceTree = "<group>"; };
  509. 81E5EE962A4A822D0075695F /* ASVipCenterCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCenterCollectCell.m; sourceTree = "<group>"; };
  510. 81EC47642A33035D00516573 /* ASHomeNewInCellTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeNewInCellTableViewCell.h; sourceTree = "<group>"; };
  511. 81EC47652A33035D00516573 /* ASHomeNewInCellTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeNewInCellTableViewCell.m; sourceTree = "<group>"; };
  512. 81EC47672A33073100516573 /* ASHomeNewInProductItemView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeNewInProductItemView.h; sourceTree = "<group>"; };
  513. 81EC47682A33073100516573 /* ASHomeNewInProductItemView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeNewInProductItemView.m; sourceTree = "<group>"; };
  514. 81EC476A2A33131100516573 /* ASHomeNewInSubCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeNewInSubCollectCell.h; sourceTree = "<group>"; };
  515. 81EC476B2A33131100516573 /* ASHomeNewInSubCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeNewInSubCollectCell.m; sourceTree = "<group>"; };
  516. 81EC476D2A33F82C00516573 /* ASHomeImgCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeImgCell.h; sourceTree = "<group>"; };
  517. 81EC476E2A33F82C00516573 /* ASHomeImgCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeImgCell.m; sourceTree = "<group>"; };
  518. 81EC47702A3402CA00516573 /* ASHomeFlashDealCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeFlashDealCell.h; sourceTree = "<group>"; };
  519. 81EC47712A3402CA00516573 /* ASHomeFlashDealCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeFlashDealCell.m; sourceTree = "<group>"; };
  520. 81EC47732A3423FC00516573 /* ASHomeLookingCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeLookingCell.h; sourceTree = "<group>"; };
  521. 81EC47742A3423FC00516573 /* ASHomeLookingCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeLookingCell.m; sourceTree = "<group>"; };
  522. 81EC47762A3426CD00516573 /* ASHomeLookingCollCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeLookingCollCell.h; sourceTree = "<group>"; };
  523. 81EC47772A3426CE00516573 /* ASHomeLookingCollCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeLookingCollCell.m; sourceTree = "<group>"; };
  524. 9A1247922A1B082300126226 /* Fuction_Tool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Fuction_Tool.h; sourceTree = "<group>"; };
  525. 9A1247932A1B082300126226 /* Fuction_Tool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Fuction_Tool.m; sourceTree = "<group>"; };
  526. 9A1247952A1B0A2800126226 /* AS_ForgotC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_ForgotC.h; sourceTree = "<group>"; };
  527. 9A1247962A1B0A2800126226 /* AS_ForgotC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_ForgotC.m; sourceTree = "<group>"; };
  528. 9A2027F32A137B6A00FF4DAF /* Asteria.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Asteria.entitlements; sourceTree = "<group>"; };
  529. 9A2027F42A137B8600FF4DAF /* AuthenticationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AuthenticationServices.framework; path = System/Library/Frameworks/AuthenticationServices.framework; sourceTree = SDKROOT; };
  530. 9A337E362A04EE1A00D058A5 /* Target_B.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Target_B.m; sourceTree = "<group>"; };
  531. 9A337E372A04EE1A00D058A5 /* Target_B.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Target_B.h; sourceTree = "<group>"; };
  532. 9A337E382A04EE1A00D058A5 /* BViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BViewController.h; sourceTree = "<group>"; };
  533. 9A337E392A04EE1A00D058A5 /* BViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BViewController.m; sourceTree = "<group>"; };
  534. 9A337E4C2A04F46600D058A5 /* AViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AViewController.h; sourceTree = "<group>"; };
  535. 9A337E4D2A04F46600D058A5 /* AViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AViewController.m; sourceTree = "<group>"; };
  536. 9A5C64562A12064300CBB185 /* AS_LoginC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_LoginC.h; sourceTree = "<group>"; };
  537. 9A5C64572A12064300CBB185 /* AS_LoginC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_LoginC.m; sourceTree = "<group>"; };
  538. 9A5C645A2A1206E500CBB185 /* common.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = common.xcassets; sourceTree = "<group>"; };
  539. 9A65DE4F2A132FB700BB1269 /* LoginThirdAuthV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginThirdAuthV.h; sourceTree = "<group>"; };
  540. 9A65DE502A132FB700BB1269 /* LoginThirdAuthV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginThirdAuthV.m; sourceTree = "<group>"; };
  541. 9A788C422A08A663003E0025 /* Target_Goods.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Goods.h; sourceTree = "<group>"; };
  542. 9A788C432A08A663003E0025 /* Target_Goods.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Goods.m; sourceTree = "<group>"; };
  543. 9A7DA6A02A0CE33500136974 /* Asteria.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Asteria.xcassets; sourceTree = "<group>"; };
  544. 9A8DD8C32A0B8F1700573324 /* As_GoodsSizeC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = As_GoodsSizeC.h; sourceTree = "<group>"; };
  545. 9A8DD8C42A0B8F1700573324 /* As_GoodsSizeC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = As_GoodsSizeC.m; sourceTree = "<group>"; };
  546. 9A8DD8C62A0B93F600573324 /* GoodsDetailsVM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsDetailsVM.h; sourceTree = "<group>"; };
  547. 9A8DD8C72A0B93F600573324 /* GoodsDetailsVM.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsDetailsVM.m; sourceTree = "<group>"; };
  548. 9ACBEC1F2A14585300A8F97A /* CTMediator+ASTargerts.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+ASTargerts.h"; sourceTree = "<group>"; };
  549. 9ACBEC202A14585300A8F97A /* CTMediator+ASTargerts.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+ASTargerts.m"; sourceTree = "<group>"; };
  550. 9ACBEC232A14707400A8F97A /* AS_SignUpC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_SignUpC.h; sourceTree = "<group>"; };
  551. 9ACBEC242A14707400A8F97A /* AS_SignUpC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_SignUpC.m; sourceTree = "<group>"; };
  552. 9ACBEC262A1472AF00A8F97A /* LoginSignUpV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginSignUpV.h; sourceTree = "<group>"; };
  553. 9ACBEC272A1472AF00A8F97A /* LoginSignUpV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginSignUpV.m; sourceTree = "<group>"; };
  554. 9ACBEC292A14CCA200A8F97A /* ThirdPartService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThirdPartService.m; sourceTree = "<group>"; };
  555. 9ACBEC2A2A14CCA200A8F97A /* ThirdPartService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThirdPartService.h; sourceTree = "<group>"; };
  556. 9AD3459C2A08D545005CA070 /* GoodsDetailSrcView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsDetailSrcView.h; sourceTree = "<group>"; };
  557. 9AD3459D2A08D545005CA070 /* GoodsDetailSrcView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsDetailSrcView.m; sourceTree = "<group>"; };
  558. 9AD345A12A08D571005CA070 /* TYCyclePagerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerView.h; sourceTree = "<group>"; };
  559. 9AD345A22A08D571005CA070 /* TYCyclePagerTransformLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerTransformLayout.h; sourceTree = "<group>"; };
  560. 9AD345A32A08D571005CA070 /* TYPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYPageControl.m; sourceTree = "<group>"; };
  561. 9AD345A42A08D571005CA070 /* TYCyclePagerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerView.m; sourceTree = "<group>"; };
  562. 9AD345A52A08D571005CA070 /* TYCyclePagerTransformLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerTransformLayout.m; sourceTree = "<group>"; };
  563. 9AD345A62A08D571005CA070 /* TYPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYPageControl.h; sourceTree = "<group>"; };
  564. 9AD345AA2A08D59A005CA070 /* WKM_goodsBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKM_goodsBanner.h; sourceTree = "<group>"; };
  565. 9AD345AB2A08D59A005CA070 /* WKM_goodsBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WKM_goodsBanner.m; sourceTree = "<group>"; };
  566. 9AD345AD2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsBannerCollectionViewCell.h; sourceTree = "<group>"; };
  567. 9AD345AE2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsBannerCollectionViewCell.m; sourceTree = "<group>"; };
  568. 9AD345AF2A08D5EC005CA070 /* GoodsVideoCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsVideoCollectionViewCell.h; sourceTree = "<group>"; };
  569. 9AD345B02A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsVideoCollectionViewCell.m; sourceTree = "<group>"; };
  570. 9AD345B52A08D60F005CA070 /* ZFPlayerNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerNotification.h; sourceTree = "<group>"; };
  571. 9AD345B62A08D60F005CA070 /* ZFPlayerGestureControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerGestureControl.m; sourceTree = "<group>"; };
  572. 9AD345B72A08D60F005CA070 /* ZFPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerController.m; sourceTree = "<group>"; };
  573. 9AD345B82A08D60F005CA070 /* ZFFloatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFFloatView.h; sourceTree = "<group>"; };
  574. 9AD345B92A08D60F005CA070 /* ZFPresentTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPresentTransition.h; sourceTree = "<group>"; };
  575. 9AD345BA2A08D60F005CA070 /* ZFLandscapeWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFLandscapeWindow.m; sourceTree = "<group>"; };
  576. 9AD345BB2A08D60F005CA070 /* ZFKVOController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFKVOController.h; sourceTree = "<group>"; };
  577. 9AD345BC2A08D60F005CA070 /* ZFLandscapeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFLandscapeViewController.h; sourceTree = "<group>"; };
  578. 9AD345BD2A08D60F005CA070 /* ZFOrientationObserver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFOrientationObserver.m; sourceTree = "<group>"; };
  579. 9AD345BE2A08D60F005CA070 /* ZFPortraitViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPortraitViewController.h; sourceTree = "<group>"; };
  580. 9AD345BF2A08D60F005CA070 /* ZFPlayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerView.h; sourceTree = "<group>"; };
  581. 9AD345C02A08D60F005CA070 /* ZFPlayerLogManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerLogManager.m; sourceTree = "<group>"; };
  582. 9AD345C12A08D60F005CA070 /* ZFPlayerMediaPlayback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerMediaPlayback.h; sourceTree = "<group>"; };
  583. 9AD345C22A08D60F005CA070 /* ZFPersentInteractiveTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPersentInteractiveTransition.m; sourceTree = "<group>"; };
  584. 9AD345C32A08D60F005CA070 /* ZFReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFReachabilityManager.h; sourceTree = "<group>"; };
  585. 9AD345C42A08D60F005CA070 /* UIScrollView+ZFPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+ZFPlayer.m"; sourceTree = "<group>"; };
  586. 9AD345C52A08D60F005CA070 /* ZFPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayer.h; sourceTree = "<group>"; };
  587. 9AD345C62A08D60F005CA070 /* ZFPlayerGestureControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerGestureControl.h; sourceTree = "<group>"; };
  588. 9AD345C72A08D60F005CA070 /* ZFPlayerNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerNotification.m; sourceTree = "<group>"; };
  589. 9AD345C82A08D60F005CA070 /* ZFPresentTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPresentTransition.m; sourceTree = "<group>"; };
  590. 9AD345C92A08D60F005CA070 /* ZFFloatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFFloatView.m; sourceTree = "<group>"; };
  591. 9AD345CA2A08D60F005CA070 /* ZFPlayerMediaControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerMediaControl.h; sourceTree = "<group>"; };
  592. 9AD345CB2A08D60F005CA070 /* ZFPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerController.h; sourceTree = "<group>"; };
  593. 9AD345CC2A08D60F005CA070 /* ZFPlayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerView.m; sourceTree = "<group>"; };
  594. 9AD345CD2A08D60F005CA070 /* ZFPlayerLogManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerLogManager.h; sourceTree = "<group>"; };
  595. 9AD345CE2A08D60F005CA070 /* ZFPortraitViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPortraitViewController.m; sourceTree = "<group>"; };
  596. 9AD345CF2A08D60F005CA070 /* ZFOrientationObserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFOrientationObserver.h; sourceTree = "<group>"; };
  597. 9AD345D02A08D60F005CA070 /* ZFPlayerConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerConst.h; sourceTree = "<group>"; };
  598. 9AD345D12A08D60F005CA070 /* ZFKVOController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFKVOController.m; sourceTree = "<group>"; };
  599. 9AD345D22A08D60F005CA070 /* ZFLandscapeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFLandscapeViewController.m; sourceTree = "<group>"; };
  600. 9AD345D32A08D60F005CA070 /* ZFLandscapeWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFLandscapeWindow.h; sourceTree = "<group>"; };
  601. 9AD345D42A08D60F005CA070 /* UIScrollView+ZFPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+ZFPlayer.h"; sourceTree = "<group>"; };
  602. 9AD345D52A08D60F005CA070 /* ZFReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFReachabilityManager.m; sourceTree = "<group>"; };
  603. 9AD345D62A08D60F005CA070 /* ZFPersentInteractiveTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPersentInteractiveTransition.h; sourceTree = "<group>"; };
  604. 9AD345D72A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+ZFPlayerRotation.m"; sourceTree = "<group>"; };
  605. 9AD345D92A08D60F005CA070 /* ZFIJKPlayerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFIJKPlayerManager.h; sourceTree = "<group>"; };
  606. 9AD345DA2A08D60F005CA070 /* ZFIJKPlayerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFIJKPlayerManager.m; sourceTree = "<group>"; };
  607. 9AD345DC2A08D60F005CA070 /* ZFAVPlayerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFAVPlayerManager.m; sourceTree = "<group>"; };
  608. 9AD345DD2A08D60F005CA070 /* ZFAVPlayerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFAVPlayerManager.h; sourceTree = "<group>"; };
  609. 9AD345DF2A08D60F005CA070 /* ZFUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFUtilities.m; sourceTree = "<group>"; };
  610. 9AD345E02A08D60F005CA070 /* UIView+ZFFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ZFFrame.m"; sourceTree = "<group>"; };
  611. 9AD345E12A08D60F005CA070 /* ZFSmallFloatControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFSmallFloatControlView.h; sourceTree = "<group>"; };
  612. 9AD345E22A08D60F005CA070 /* ZFPlayerControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerControlView.h; sourceTree = "<group>"; };
  613. 9AD345E32A08D60F005CA070 /* ZFSliderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFSliderView.h; sourceTree = "<group>"; };
  614. 9AD345E42A08D60F005CA070 /* ZFVolumeBrightnessView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFVolumeBrightnessView.m; sourceTree = "<group>"; };
  615. 9AD345E52A08D60F005CA070 /* ZFSpeedLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFSpeedLoadingView.h; sourceTree = "<group>"; };
  616. 9AD345E62A08D60F005CA070 /* ZFLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFLoadingView.h; sourceTree = "<group>"; };
  617. 9AD345E72A08D60F005CA070 /* ZFLandScapeControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFLandScapeControlView.m; sourceTree = "<group>"; };
  618. 9AD345E82A08D60F005CA070 /* ZFNetworkSpeedMonitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFNetworkSpeedMonitor.m; sourceTree = "<group>"; };
  619. 9AD345E92A08D60F005CA070 /* UIImageView+ZFCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+ZFCache.h"; sourceTree = "<group>"; };
  620. 9AD345EA2A08D60F005CA070 /* ZFPortraitControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPortraitControlView.h; sourceTree = "<group>"; };
  621. 9AD345EB2A08D60F005CA070 /* ZFPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = ZFPlayer.bundle; sourceTree = "<group>"; };
  622. 9AD345EC2A08D60F005CA070 /* UIView+ZFFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ZFFrame.h"; sourceTree = "<group>"; };
  623. 9AD345ED2A08D60F005CA070 /* ZFUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFUtilities.h; sourceTree = "<group>"; };
  624. 9AD345EE2A08D60F005CA070 /* ZFSliderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFSliderView.m; sourceTree = "<group>"; };
  625. 9AD345EF2A08D60F005CA070 /* ZFPlayerControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerControlView.m; sourceTree = "<group>"; };
  626. 9AD345F02A08D60F005CA070 /* ZFSmallFloatControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFSmallFloatControlView.m; sourceTree = "<group>"; };
  627. 9AD345F12A08D60F005CA070 /* ZFLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFLoadingView.m; sourceTree = "<group>"; };
  628. 9AD345F22A08D60F005CA070 /* ZFSpeedLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFSpeedLoadingView.m; sourceTree = "<group>"; };
  629. 9AD345F32A08D60F005CA070 /* ZFVolumeBrightnessView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFVolumeBrightnessView.h; sourceTree = "<group>"; };
  630. 9AD345F42A08D60F005CA070 /* ZFPortraitControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPortraitControlView.m; sourceTree = "<group>"; };
  631. 9AD345F52A08D60F005CA070 /* UIImageView+ZFCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+ZFCache.m"; sourceTree = "<group>"; };
  632. 9AD345F62A08D60F005CA070 /* ZFNetworkSpeedMonitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFNetworkSpeedMonitor.h; sourceTree = "<group>"; };
  633. 9AD345F72A08D60F005CA070 /* ZFLandScapeControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFLandScapeControlView.h; sourceTree = "<group>"; };
  634. 9AD346172A08D679005CA070 /* GoodsBannerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsBannerModel.h; sourceTree = "<group>"; };
  635. 9AD346182A08D679005CA070 /* GoodsBannerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsBannerModel.m; sourceTree = "<group>"; };
  636. 9AD3461B2A08D6EF005CA070 /* GoodsInformationM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsInformationM.h; sourceTree = "<group>"; };
  637. 9AD3461C2A08D6EF005CA070 /* GoodsInformationM.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsInformationM.m; sourceTree = "<group>"; };
  638. 9AD3461E2A08E30E005CA070 /* SelectVCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectVCollectionViewCell.h; sourceTree = "<group>"; };
  639. 9AD3461F2A08E30E005CA070 /* SelectVCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectVCollectionViewCell.m; sourceTree = "<group>"; };
  640. 9AD346212A08E828005CA070 /* ProjectConfigDefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProjectConfigDefine.h; sourceTree = "<group>"; };
  641. 9AD364C42A05E73E00452C7A /* AS_GoodsDetailsC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_GoodsDetailsC.h; sourceTree = "<group>"; };
  642. 9AD364C52A05E73E00452C7A /* AS_GoodsDetailsC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_GoodsDetailsC.m; sourceTree = "<group>"; };
  643. 9AD364CF2A05EC7800452C7A /* AS_TabBarViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_TabBarViewController.h; sourceTree = "<group>"; };
  644. 9AD364D02A05EC7800452C7A /* AS_TabBarViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_TabBarViewController.m; sourceTree = "<group>"; };
  645. 9AD6A53D2A120CC3001DE3D9 /* Login.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Login.xcassets; sourceTree = "<group>"; };
  646. 9AD6A5402A1218E6001DE3D9 /* PassWordSecureBtnV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PassWordSecureBtnV.h; sourceTree = "<group>"; };
  647. 9AD6A5412A1218E7001DE3D9 /* EamilTFmatchV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EamilTFmatchV.h; sourceTree = "<group>"; };
  648. 9AD6A5422A1218E7001DE3D9 /* PassWordSecureBtnV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PassWordSecureBtnV.m; sourceTree = "<group>"; };
  649. 9AD6A5432A1218E7001DE3D9 /* EamilTFmatchV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EamilTFmatchV.m; sourceTree = "<group>"; };
  650. 9AD6A5472A1237D0001DE3D9 /* Target_Login.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Login.h; sourceTree = "<group>"; };
  651. 9AD6A5482A1237D0001DE3D9 /* Target_Login.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Login.m; sourceTree = "<group>"; };
  652. F28014612B0095476AA5BC1B /* Pods-Asteria-NotificationServiceExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Asteria-NotificationServiceExtension.debug.xcconfig"; path = "Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension.debug.xcconfig"; sourceTree = "<group>"; };
  653. /* End PBXFileReference section */
  654. /* Begin PBXFrameworksBuildPhase section */
  655. 8172449729F3B2ED005FA9C9 /* Frameworks */ = {
  656. isa = PBXFrameworksBuildPhase;
  657. buildActionMask = 2147483647;
  658. files = (
  659. 9A2027F52A137B8600FF4DAF /* AuthenticationServices.framework in Frameworks */,
  660. 8C24ECE114420CDEE7B9B22B /* Pods_Asteria.framework in Frameworks */,
  661. );
  662. runOnlyForDeploymentPostprocessing = 0;
  663. };
  664. 817244B729F3B81C005FA9C9 /* Frameworks */ = {
  665. isa = PBXFrameworksBuildPhase;
  666. buildActionMask = 2147483647;
  667. files = (
  668. 2B3E96D298A3E04003DA2AD3 /* Pods_Asteria_NotificationServiceExtension.framework in Frameworks */,
  669. );
  670. runOnlyForDeploymentPostprocessing = 0;
  671. };
  672. /* End PBXFrameworksBuildPhase section */
  673. /* Begin PBXGroup section */
  674. 5A5FFF81F369698EFECBFE81 /* Frameworks */ = {
  675. isa = PBXGroup;
  676. children = (
  677. 9A2027F42A137B8600FF4DAF /* AuthenticationServices.framework */,
  678. 54DCE8001991D89B696E7D44 /* Pods_Asteria.framework */,
  679. 51AF3B78609F55449DF09609 /* Pods_Asteria_NotificationServiceExtension.framework */,
  680. );
  681. name = Frameworks;
  682. sourceTree = "<group>";
  683. };
  684. 811F42422A40530200DA68F1 /* UserCenterHome */ = {
  685. isa = PBXGroup;
  686. children = (
  687. 814F5CED2A11B1F2003847A9 /* ASUserCenterViewController.h */,
  688. 814F5CEE2A11B1F2003847A9 /* ASUserCenterViewController.m */,
  689. 81354BEF2A287B040082C93A /* models */,
  690. 81354BE82A2879EE0082C93A /* views */,
  691. );
  692. path = UserCenterHome;
  693. sourceTree = "<group>";
  694. };
  695. 811F42432A40531C00DA68F1 /* Points */ = {
  696. isa = PBXGroup;
  697. children = (
  698. 811F42442A40533C00DA68F1 /* ASPointsHomeViewController.h */,
  699. 811F42452A40533C00DA68F1 /* ASPointsHomeViewController.m */,
  700. 81DFA5652A46D60900DA708B /* ASPointDetailViewController.h */,
  701. 81DFA5662A46D60900DA708B /* ASPointDetailViewController.m */,
  702. 81DFA56E2A46D8F600DA708B /* model */,
  703. 81DFA5642A46D5DF00DA708B /* view */,
  704. );
  705. path = Points;
  706. sourceTree = "<group>";
  707. };
  708. 81354BE82A2879EE0082C93A /* views */ = {
  709. isa = PBXGroup;
  710. children = (
  711. 81354C0D2A297D6A0082C93A /* HomeFlashDealSubCollectCell.h */,
  712. 81354C0C2A297D690082C93A /* HomeFlashDealSubCollectCell.m */,
  713. 81354BFA2A28998A0082C93A /* KWMineMoreProductsCell.h */,
  714. 81354BFB2A28998A0082C93A /* KWMineMoreProductsCell.m */,
  715. 81354BF82A28998A0082C93A /* KWMineMoreProductTypeCell.h */,
  716. 81354BF92A28998A0082C93A /* KWMineMoreProductTypeCell.m */,
  717. 81354BF32A287BEC0082C93A /* KWMineHomeOrderSubView.h */,
  718. 81354BF42A287BEC0082C93A /* KWMineHomeOrderSubView.m */,
  719. 81354BE92A287AB40082C93A /* KWMineHomeOrderHeadView.h */,
  720. 81354BEA2A287AB50082C93A /* KWMineHomeOrderHeadView.m */,
  721. 81354BEB2A287AB50082C93A /* KWMineHomeOrderListCell.h */,
  722. 81354BEC2A287AB50082C93A /* KWMineHomeOrderListCell.m */,
  723. 8134C1BB2A1372D5006EB0EC /* ASUserCenterTableHeadView.h */,
  724. 8134C1BC2A1372D5006EB0EC /* ASUserCenterTableHeadView.m */,
  725. 81E257EC2A120756004EEF71 /* ASUserCenterTopView.h */,
  726. 81E257ED2A120756004EEF71 /* ASUserCenterTopView.m */,
  727. 8134C1B22A1358F3006EB0EC /* ASSginView.h */,
  728. 8134C1B32A1358F3006EB0EC /* ASSginView.m */,
  729. 8134C1B82A1372A7006EB0EC /* ASUserCenterEnterItemV.h */,
  730. 8134C1B92A1372A7006EB0EC /* ASUserCenterEnterItemV.m */,
  731. );
  732. path = views;
  733. sourceTree = "<group>";
  734. };
  735. 81354BEF2A287B040082C93A /* models */ = {
  736. isa = PBXGroup;
  737. children = (
  738. 81354C012A289A060082C93A /* HomeFilterModel.h */,
  739. 81354C022A289A070082C93A /* HomeFilterModel.m */,
  740. 81354BFE2A2899CA0082C93A /* KWMineMoreProductModel.h */,
  741. 81354BFF2A2899CB0082C93A /* KWMineMoreProductModel.m */,
  742. 81354BF12A287B120082C93A /* KWMineHomeOrderModel.h */,
  743. 81354BF02A287B120082C93A /* KWMineHomeOrderModel.m */,
  744. );
  745. path = models;
  746. sourceTree = "<group>";
  747. };
  748. 81354C042A289C100082C93A /* productView */ = {
  749. isa = PBXGroup;
  750. children = (
  751. 8134C1C32A145172006EB0EC /* ASProductItemView.h */,
  752. 8134C1C42A145172006EB0EC /* ASProductItemView.m */,
  753. 81354BE52A28786C0082C93A /* ASProductBaseModel.h */,
  754. 81354BE62A28786C0082C93A /* ASProductBaseModel.m */,
  755. );
  756. path = productView;
  757. sourceTree = "<group>";
  758. };
  759. 81354C052A289C230082C93A /* someView */ = {
  760. isa = PBXGroup;
  761. children = (
  762. 81354C062A289C340082C93A /* KWScrollOffsetView.h */,
  763. 81354C082A289C350082C93A /* KWScrollOffsetView.m */,
  764. 81354C072A289C340082C93A /* KWTimeEndView.h */,
  765. 81354C092A289C350082C93A /* KWTimeEndView.m */,
  766. );
  767. path = someView;
  768. sourceTree = "<group>";
  769. };
  770. 814F5CF02A11B317003847A9 /* SimpleBase */ = {
  771. isa = PBXGroup;
  772. children = (
  773. 81C3B44229F6612800D79294 /* ASBaseViewController.h */,
  774. 81C3B44329F6612800D79294 /* ASBaseViewController.m */,
  775. 81C3B44829F6661500D79294 /* ASBaseNavController.h */,
  776. 81C3B44929F6661500D79294 /* ASBaseNavController.m */,
  777. );
  778. path = SimpleBase;
  779. sourceTree = "<group>";
  780. };
  781. 814F5CF12A11B337003847A9 /* ASUI */ = {
  782. isa = PBXGroup;
  783. children = (
  784. 81C3B45029F669C900D79294 /* ColorDefine.h */,
  785. 8199001E2A0206F7006FE68C /* SizeDefine.h */,
  786. 81717C962A3BF1AD00648139 /* alert */,
  787. 81C3B44B29F6691300D79294 /* Extensions */,
  788. 8199001F2A020A4F006FE68C /* Tools */,
  789. 81E257F72A122AAB004EEF71 /* Icons */,
  790. 81E257EF2A12093A004EEF71 /* CustomView */,
  791. 814F5CF22A11B35B003847A9 /* ASUserAvater */,
  792. 814F5CF02A11B317003847A9 /* SimpleBase */,
  793. 81354BF62A288AC20082C93A /* ASUI.xcassets */,
  794. );
  795. path = ASUI;
  796. sourceTree = "<group>";
  797. };
  798. 814F5CF22A11B35B003847A9 /* ASUserAvater */ = {
  799. isa = PBXGroup;
  800. children = (
  801. 814F5CF32A11B37E003847A9 /* ASUserAvaterView.h */,
  802. 814F5CF42A11B37E003847A9 /* ASUserAvaterView.m */,
  803. );
  804. path = ASUserAvater;
  805. sourceTree = "<group>";
  806. };
  807. 814F5CF62A11B76F003847A9 /* Font */ = {
  808. isa = PBXGroup;
  809. children = (
  810. 814F5CF72A11B76F003847A9 /* Roboto */,
  811. );
  812. path = Font;
  813. sourceTree = "<group>";
  814. };
  815. 814F5CF72A11B76F003847A9 /* Roboto */ = {
  816. isa = PBXGroup;
  817. children = (
  818. 814F5CF82A11B76F003847A9 /* Roboto-Medium.ttf */,
  819. 814F5CF92A11B76F003847A9 /* Roboto-Light.ttf */,
  820. 814F5CFA2A11B76F003847A9 /* Roboto-Regular.ttf */,
  821. 814F5CFB2A11B76F003847A9 /* Roboto-MediumItalic.ttf */,
  822. 814F5CFC2A11B76F003847A9 /* Roboto-ThinItalic.ttf */,
  823. 814F5CFD2A11B76F003847A9 /* Roboto-BoldItalic.ttf */,
  824. 814F5CFE2A11B76F003847A9 /* Roboto-LightItalic.ttf */,
  825. 814F5CFF2A11B76F003847A9 /* Roboto-Italic.ttf */,
  826. 814F5D002A11B76F003847A9 /* LICENSE.txt */,
  827. 814F5D012A11B76F003847A9 /* Roboto-BlackItalic.ttf */,
  828. 814F5D022A11B76F003847A9 /* Roboto-Bold.ttf */,
  829. 814F5D032A11B76F003847A9 /* Roboto-Thin.ttf */,
  830. 814F5D042A11B76F003847A9 /* Roboto-Black.ttf */,
  831. );
  832. path = Roboto;
  833. sourceTree = "<group>";
  834. };
  835. 81601FE32A2D938B00E4A8F1 /* Home */ = {
  836. isa = PBXGroup;
  837. children = (
  838. 81C326672A36F019002EF442 /* vm */,
  839. 816020142A2F065700E4A8F1 /* Home.xcassets */,
  840. 81601FE42A2DB19300E4A8F1 /* ASHomeViewController.h */,
  841. 81601FE52A2DB19300E4A8F1 /* ASHomeViewController.m */,
  842. 81C3265D2A36B284002EF442 /* ASProductListViewController.h */,
  843. 81C3265E2A36B284002EF442 /* ASProductListViewController.m */,
  844. 816020052A2DD4FB00E4A8F1 /* Target_Home.h */,
  845. 816020062A2DD4FB00E4A8F1 /* Target_Home.m */,
  846. 816020002A2DCB3B00E4A8F1 /* Models */,
  847. 81601FFC2A2DC8C400E4A8F1 /* Views */,
  848. );
  849. path = Home;
  850. sourceTree = "<group>";
  851. };
  852. 81601FE72A2DC76C00E4A8F1 /* Third */ = {
  853. isa = PBXGroup;
  854. children = (
  855. 81C326632A36B6D9002EF442 /* TextRollIngView */,
  856. 81601FE82A2DC78300E4A8F1 /* WMZBanner */,
  857. );
  858. path = Third;
  859. sourceTree = "<group>";
  860. };
  861. 81601FE82A2DC78300E4A8F1 /* WMZBanner */ = {
  862. isa = PBXGroup;
  863. children = (
  864. 81601FE92A2DC78300E4A8F1 /* WMZBannerFlowLayout.m */,
  865. 81601FEA2A2DC78300E4A8F1 /* WMZBannerControl.h */,
  866. 81601FEB2A2DC78300E4A8F1 /* WMZBannerFadeLayout.h */,
  867. 81601FEC2A2DC78300E4A8F1 /* WMZBannerParam.m */,
  868. 81601FED2A2DC78300E4A8F1 /* WMZBannerOverLayout.h */,
  869. 81601FEE2A2DC78300E4A8F1 /* WMZBannerView.m */,
  870. 81601FEF2A2DC78300E4A8F1 /* WMZBannerControl.m */,
  871. 81601FF02A2DC78300E4A8F1 /* WMZBannerFlowLayout.h */,
  872. 81601FF12A2DC78300E4A8F1 /* WMZBannerFadeLayout.m */,
  873. 81601FF22A2DC78300E4A8F1 /* WMZBannerConfig.h */,
  874. 81601FF32A2DC78300E4A8F1 /* WMZBannerParam.h */,
  875. 81601FF42A2DC78300E4A8F1 /* WMZBannerView.h */,
  876. 81601FF52A2DC78300E4A8F1 /* WMZBannerOverLayout.m */,
  877. );
  878. path = WMZBanner;
  879. sourceTree = "<group>";
  880. };
  881. 81601FFC2A2DC8C400E4A8F1 /* Views */ = {
  882. isa = PBXGroup;
  883. children = (
  884. 81C3266B2A36FEEC002EF442 /* productList */,
  885. 81601FFD2A2DC8E700E4A8F1 /* ASHomeBannerCell.h */,
  886. 81601FFE2A2DC8E700E4A8F1 /* ASHomeBannerCell.m */,
  887. 8160200E2A2EE55F00E4A8F1 /* ASCategaryListCell.h */,
  888. 8160200F2A2EE55F00E4A8F1 /* ASCategaryListCell.m */,
  889. 8160201A2A2F101C00E4A8F1 /* ASHomeTipCell.h */,
  890. 8160201B2A2F101C00E4A8F1 /* ASHomeTipCell.m */,
  891. 816020202A2F1C6A00E4A8F1 /* ASHomeBestSellCell.h */,
  892. 816020212A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m */,
  893. 81EC47642A33035D00516573 /* ASHomeNewInCellTableViewCell.h */,
  894. 81EC47652A33035D00516573 /* ASHomeNewInCellTableViewCell.m */,
  895. 81EC476D2A33F82C00516573 /* ASHomeImgCell.h */,
  896. 81EC476E2A33F82C00516573 /* ASHomeImgCell.m */,
  897. 81EC47702A3402CA00516573 /* ASHomeFlashDealCell.h */,
  898. 81EC47712A3402CA00516573 /* ASHomeFlashDealCell.m */,
  899. 81EC47732A3423FC00516573 /* ASHomeLookingCell.h */,
  900. 81EC47742A3423FC00516573 /* ASHomeLookingCell.m */,
  901. 816020192A2F0C8400E4A8F1 /* someViews */,
  902. 81C326602A36B33B002EF442 /* ASHomeActiveView.h */,
  903. 81C326612A36B33B002EF442 /* ASHomeActiveView.m */,
  904. );
  905. path = Views;
  906. sourceTree = "<group>";
  907. };
  908. 816020002A2DCB3B00E4A8F1 /* Models */ = {
  909. isa = PBXGroup;
  910. children = (
  911. 816020012A2DCB5600E4A8F1 /* ASHomeBannerModel.h */,
  912. 816020022A2DCB5600E4A8F1 /* ASHomeBannerModel.m */,
  913. 816020162A2F070B00E4A8F1 /* ASHomeCategoryModel.h */,
  914. 816020172A2F070B00E4A8F1 /* ASHomeCategoryModel.m */,
  915. 816020232A2F1C9E00E4A8F1 /* ASHomeMainListModel.h */,
  916. 816020242A2F1C9E00E4A8F1 /* ASHomeMainListModel.m */,
  917. 81717CA72A3C0AAA00648139 /* KWProductListFilterModel.h */,
  918. 81717CA62A3C0AA900648139 /* KWProductListFilterModel.m */,
  919. );
  920. path = Models;
  921. sourceTree = "<group>";
  922. };
  923. 816020192A2F0C8400E4A8F1 /* someViews */ = {
  924. isa = PBXGroup;
  925. children = (
  926. 816020112A2EE5A200E4A8F1 /* ASCategaryCollectCell.h */,
  927. 816020122A2EE5A200E4A8F1 /* ASCategaryCollectCell.m */,
  928. 8160201D2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.h */,
  929. 8160201E2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m */,
  930. 81EC47672A33073100516573 /* ASHomeNewInProductItemView.h */,
  931. 81EC47682A33073100516573 /* ASHomeNewInProductItemView.m */,
  932. 81EC476A2A33131100516573 /* ASHomeNewInSubCollectCell.h */,
  933. 81EC476B2A33131100516573 /* ASHomeNewInSubCollectCell.m */,
  934. 81EC47762A3426CD00516573 /* ASHomeLookingCollCell.h */,
  935. 81EC47772A3426CE00516573 /* ASHomeLookingCollCell.m */,
  936. );
  937. path = someViews;
  938. sourceTree = "<group>";
  939. };
  940. 81717C962A3BF1AD00648139 /* alert */ = {
  941. isa = PBXGroup;
  942. children = (
  943. 81717C972A3BF1DD00648139 /* ASHomeAlertWindow.h */,
  944. 81717C982A3BF1DD00648139 /* ASHomeAlertWindow.m */,
  945. 81717C9A2A3BF1F100648139 /* ASHomeAlertViewController.h */,
  946. 81717C9B2A3BF1F100648139 /* ASHomeAlertViewController.m */,
  947. 81717D3D2A3D5EAD00648139 /* ASDefualtAlertV.h */,
  948. 81717D3E2A3D5EAD00648139 /* ASDefualtAlertV.m */,
  949. );
  950. path = alert;
  951. sourceTree = "<group>";
  952. };
  953. 81717CAC2A3C453900648139 /* Category */ = {
  954. isa = PBXGroup;
  955. children = (
  956. 81717D002A3C4ADF00648139 /* m */,
  957. 81717CF22A3C4ADF00648139 /* tipV */,
  958. 81717D032A3C4AE000648139 /* v */,
  959. 81717CEA2A3C4ADE00648139 /* vc */,
  960. 81717CE52A3C4ADE00648139 /* vm */,
  961. 81717D232A3C512700648139 /* Target_Category.h */,
  962. 81717D242A3C512700648139 /* Target_Category.m */,
  963. 81717D3B2A3D430C00648139 /* Category.xcassets */,
  964. );
  965. path = Category;
  966. sourceTree = "<group>";
  967. };
  968. 81717CE52A3C4ADE00648139 /* vm */ = {
  969. isa = PBXGroup;
  970. children = (
  971. 81717CE92A3C4ADE00648139 /* KWHisAndHotWordsViewModel.h */,
  972. 81717CE62A3C4ADE00648139 /* KWHisAndHotWordsViewModel.m */,
  973. 81717CE82A3C4ADE00648139 /* KWSearchViewModel.h */,
  974. 81717CE72A3C4ADE00648139 /* KWSearchViewModel.m */,
  975. );
  976. path = vm;
  977. sourceTree = "<group>";
  978. };
  979. 81717CEA2A3C4ADE00648139 /* vc */ = {
  980. isa = PBXGroup;
  981. children = (
  982. 81717CEE2A3C4ADE00648139 /* APOnlySearchViewController.h */,
  983. 81717CEB2A3C4ADE00648139 /* APOnlySearchViewController.m */,
  984. 81717CEC2A3C4ADE00648139 /* APCategoryViewController.h */,
  985. 81717CF02A3C4ADE00648139 /* APCategoryViewController.m */,
  986. 81717CED2A3C4ADE00648139 /* KWSearchViewController.h */,
  987. 81717CEF2A3C4ADE00648139 /* KWSearchViewController.m */,
  988. 818656482A5BE9790049D861 /* ASSearchViewController.h */,
  989. 818656492A5BE9790049D861 /* ASSearchViewController.m */,
  990. 8186564B2A5BF6010049D861 /* ASCategoryViewController.h */,
  991. 8186564C2A5BF6010049D861 /* ASCategoryViewController.m */,
  992. );
  993. path = vc;
  994. sourceTree = "<group>";
  995. };
  996. 81717CF22A3C4ADF00648139 /* tipV */ = {
  997. isa = PBXGroup;
  998. children = (
  999. 81717D302A3D322700648139 /* KWCustomLayout.h */,
  1000. 81717D322A3D322700648139 /* KWCustomLayout.m */,
  1001. 81717D332A3D322700648139 /* KWHisAndHotWordsView.h */,
  1002. 81717D342A3D322700648139 /* KWHisAndHotWordsView.m */,
  1003. 81717D2E2A3D322600648139 /* KWHisCollectHeaderView.h */,
  1004. 81717D2D2A3D322600648139 /* KWHisCollectHeaderView.m */,
  1005. 81717D2F2A3D322700648139 /* KWHisKeyWordCell.h */,
  1006. 81717D292A3D322600648139 /* KWHisKeyWordCell.m */,
  1007. 81717D2A2A3D322600648139 /* KWLenovoWordListView.h */,
  1008. 81717D2B2A3D322600648139 /* KWLenovoWordListView.m */,
  1009. 81717D2C2A3D322600648139 /* KWNoHisWordsCell.h */,
  1010. 81717D312A3D322700648139 /* KWNoHisWordsCell.m */,
  1011. );
  1012. path = tipV;
  1013. sourceTree = "<group>";
  1014. };
  1015. 81717D002A3C4ADF00648139 /* m */ = {
  1016. isa = PBXGroup;
  1017. children = (
  1018. 81717D012A3C4ADF00648139 /* KWSearchSubTypeModel.h */,
  1019. 81717D022A3C4ADF00648139 /* KWSearchSubTypeModel.m */,
  1020. );
  1021. path = m;
  1022. sourceTree = "<group>";
  1023. };
  1024. 81717D032A3C4AE000648139 /* v */ = {
  1025. isa = PBXGroup;
  1026. children = (
  1027. 81717D0A2A3C4AE000648139 /* KWSearchSubTypeHeadView.h */,
  1028. 81717D042A3C4AE000648139 /* KWSearchSubTypeHeadView.m */,
  1029. 81717D052A3C4AE000648139 /* KWSearchSubTypeTableView.h */,
  1030. 81717D0E2A3C4AE000648139 /* KWSearchSubTypeTableView.m */,
  1031. 81717D0D2A3C4AE000648139 /* KWSearchMainTypeTableView.h */,
  1032. 81717D062A3C4AE000648139 /* KWSearchMainTypeTableView.m */,
  1033. 81717D0C2A3C4AE000648139 /* KWMoneyTypeHeadView.h */,
  1034. 81717D072A3C4AE000648139 /* KWMoneyTypeHeadView.m */,
  1035. 81717D082A3C4AE000648139 /* KWSearchSubTypeCell.h */,
  1036. 81717D0B2A3C4AE000648139 /* KWSearchSubTypeCell.m */,
  1037. 81717D092A3C4AE000648139 /* KWSearchMainTypeCell.h */,
  1038. 81717D0F2A3C4AE000648139 /* KWSearchMainTypeCell.m */,
  1039. );
  1040. path = v;
  1041. sourceTree = "<group>";
  1042. };
  1043. 8172449129F3B2EC005FA9C9 = {
  1044. isa = PBXGroup;
  1045. children = (
  1046. 8172449C29F3B2ED005FA9C9 /* Asteria */,
  1047. 817244BB29F3B81C005FA9C9 /* NotificationServiceExtension */,
  1048. 8172449B29F3B2ED005FA9C9 /* Products */,
  1049. AD6FCC75A25F3F751CF2E2EB /* Pods */,
  1050. 5A5FFF81F369698EFECBFE81 /* Frameworks */,
  1051. );
  1052. sourceTree = "<group>";
  1053. };
  1054. 8172449B29F3B2ED005FA9C9 /* Products */ = {
  1055. isa = PBXGroup;
  1056. children = (
  1057. 8172449A29F3B2ED005FA9C9 /* Asteria.app */,
  1058. 817244BA29F3B81C005FA9C9 /* NotificationServiceExtension.appex */,
  1059. );
  1060. name = Products;
  1061. sourceTree = "<group>";
  1062. };
  1063. 8172449C29F3B2ED005FA9C9 /* Asteria */ = {
  1064. isa = PBXGroup;
  1065. children = (
  1066. 81601FE72A2DC76C00E4A8F1 /* Third */,
  1067. 9A2646BA2A187B6100CBFBDC /* Product */,
  1068. 9A2027F32A137B6A00FF4DAF /* Asteria.entitlements */,
  1069. 81C3B44F29F6699900D79294 /* PreFixHeader.h */,
  1070. 9A8DD8CC2A0B9E0C00573324 /* Assets */,
  1071. 9AD364CE2A05EC4500452C7A /* Tabber */,
  1072. 9AD364CC2A05EBE800452C7A /* Fuction */,
  1073. 8172449D29F3B2ED005FA9C9 /* AppDelegate.h */,
  1074. 8172449E29F3B2ED005FA9C9 /* AppDelegate.m */,
  1075. 9ACBEC2A2A14CCA200A8F97A /* ThirdPartService.h */,
  1076. 9ACBEC292A14CCA200A8F97A /* ThirdPartService.m */,
  1077. 814F5CF12A11B337003847A9 /* ASUI */,
  1078. 817244A929F3B2EE005FA9C9 /* Assets.xcassets */,
  1079. 817244AB29F3B2EE005FA9C9 /* LaunchScreen.storyboard */,
  1080. 817244AE29F3B2EE005FA9C9 /* Info.plist */,
  1081. 817244AF29F3B2EE005FA9C9 /* main.m */,
  1082. );
  1083. path = Asteria;
  1084. sourceTree = "<group>";
  1085. };
  1086. 817244BB29F3B81C005FA9C9 /* NotificationServiceExtension */ = {
  1087. isa = PBXGroup;
  1088. children = (
  1089. 817244BC29F3B81C005FA9C9 /* NotificationService.h */,
  1090. 817244BD29F3B81C005FA9C9 /* NotificationService.m */,
  1091. 817244BF29F3B81C005FA9C9 /* Info.plist */,
  1092. );
  1093. path = NotificationServiceExtension;
  1094. sourceTree = "<group>";
  1095. };
  1096. 8199001F2A020A4F006FE68C /* Tools */ = {
  1097. isa = PBXGroup;
  1098. children = (
  1099. 819900202A020A6F006FE68C /* LYTools.h */,
  1100. 819900212A020A6F006FE68C /* LYTools.m */,
  1101. );
  1102. path = Tools;
  1103. sourceTree = "<group>";
  1104. };
  1105. 81C326632A36B6D9002EF442 /* TextRollIngView */ = {
  1106. isa = PBXGroup;
  1107. children = (
  1108. 81C326652A36B794002EF442 /* VerScrollTextView.h */,
  1109. 81C326642A36B794002EF442 /* VerScrollTextView.m */,
  1110. );
  1111. path = TextRollIngView;
  1112. sourceTree = "<group>";
  1113. };
  1114. 81C326672A36F019002EF442 /* vm */ = {
  1115. isa = PBXGroup;
  1116. children = (
  1117. 81C326682A36F035002EF442 /* ASProductListViewModel.h */,
  1118. 81C326692A36F035002EF442 /* ASProductListViewModel.m */,
  1119. );
  1120. path = vm;
  1121. sourceTree = "<group>";
  1122. };
  1123. 81C3266B2A36FEEC002EF442 /* productList */ = {
  1124. isa = PBXGroup;
  1125. children = (
  1126. 81C3266C2A36FF2B002EF442 /* ASProductListActiveHeaderView.h */,
  1127. 81C3266D2A36FF2B002EF442 /* ASProductListActiveHeaderView.m */,
  1128. 81C3266F2A37020A002EF442 /* ASProductListMenuHeaderView.h */,
  1129. 81C326702A37020A002EF442 /* ASProductListMenuHeaderView.m */,
  1130. 815DA3D72A39575100616EF7 /* ASProductListImageCell.h */,
  1131. 815DA3D82A39575100616EF7 /* ASProductListImageCell.m */,
  1132. 815DA3DA2A39625200616EF7 /* ASProductListTypeDesCell.h */,
  1133. 815DA3DB2A39625200616EF7 /* ASProductListTypeDesCell.m */,
  1134. 815DA3DD2A396BD300616EF7 /* ASMoreBtCell.h */,
  1135. 815DA3DE2A396BD300616EF7 /* ASMoreBtCell.m */,
  1136. 81717C8F2A3BE39C00648139 /* ASProductSortFilterView.h */,
  1137. 81717C902A3BE39C00648139 /* ASProductSortFilterView.m */,
  1138. 81717C922A3BE4E000648139 /* ASProductListSortFilterCell.h */,
  1139. 81717C932A3BE4E000648139 /* ASProductListSortFilterCell.m */,
  1140. 81717CA02A3C0A3500648139 /* KWProductMenuFilterItemHeaderView.h */,
  1141. 81717C9D2A3C0A3400648139 /* KWProductMenuFilterItemHeaderView.m */,
  1142. 81717CA32A3C0A5000648139 /* KWProductFilterItemCell.h */,
  1143. 81717CA42A3C0A5000648139 /* KWProductFilterItemCell.m */,
  1144. 81717C9E2A3C0A3500648139 /* KWProductMenuFilterView.h */,
  1145. 81717C9F2A3C0A3500648139 /* KWProductMenuFilterView.m */,
  1146. 81717CA92A3C359E00648139 /* ASProductlistFilterPriceCollectCell.h */,
  1147. 81717CAA2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m */,
  1148. );
  1149. path = productList;
  1150. sourceTree = "<group>";
  1151. };
  1152. 81C3B44B29F6691300D79294 /* Extensions */ = {
  1153. isa = PBXGroup;
  1154. children = (
  1155. 81C3B45329F66C1700D79294 /* UIView+PublicInit.h */,
  1156. 81C3B45429F66C1700D79294 /* UIView+PublicInit.m */,
  1157. 81932E2929F7539B007C37AF /* UIColor+AS.h */,
  1158. 81932E2A29F7539B007C37AF /* UIColor+AS.m */,
  1159. 81BEA6812A2D7CF3009D36C4 /* UITableView+ASBase.h */,
  1160. 81BEA6822A2D7CF3009D36C4 /* UITableView+ASBase.m */,
  1161. );
  1162. path = Extensions;
  1163. sourceTree = "<group>";
  1164. };
  1165. 81C796282A539E65003083B8 /* Message */ = {
  1166. isa = PBXGroup;
  1167. children = (
  1168. 81C796292A539E80003083B8 /* ASMessageListViewController.h */,
  1169. 81C7962A2A539E80003083B8 /* ASMessageListViewController.m */,
  1170. 81C7962C2A539F4D003083B8 /* ASMessageListCell.h */,
  1171. 81C7962D2A539F4D003083B8 /* ASMessageListCell.m */,
  1172. );
  1173. path = Message;
  1174. sourceTree = "<group>";
  1175. };
  1176. 81C796312A55159B003083B8 /* Setting */ = {
  1177. isa = PBXGroup;
  1178. children = (
  1179. 81C796322A551643003083B8 /* ASSettingViewController.h */,
  1180. 81C796332A551643003083B8 /* ASSettingViewController.m */,
  1181. 81C7963D2A551FB0003083B8 /* ASInfomationSetController.h */,
  1182. 81C7963E2A551FB0003083B8 /* ASInfomationSetController.m */,
  1183. 81C796442A5542B2003083B8 /* ASHelpListViewController.h */,
  1184. 81C796452A5542B2003083B8 /* ASHelpListViewController.m */,
  1185. 81C7963C2A551F86003083B8 /* view */,
  1186. );
  1187. path = Setting;
  1188. sourceTree = "<group>";
  1189. };
  1190. 81C7963B2A5517FE003083B8 /* switchBtn */ = {
  1191. isa = PBXGroup;
  1192. children = (
  1193. 81C796382A5517F7003083B8 /* KWSwitchButton.h */,
  1194. 81C796392A5517F7003083B8 /* KWSwitchButton.m */,
  1195. );
  1196. path = switchBtn;
  1197. sourceTree = "<group>";
  1198. };
  1199. 81C7963C2A551F86003083B8 /* view */ = {
  1200. isa = PBXGroup;
  1201. children = (
  1202. 81C796352A5517B0003083B8 /* ASSettingListCell.h */,
  1203. 81C796362A5517B0003083B8 /* ASSettingListCell.m */,
  1204. );
  1205. path = view;
  1206. sourceTree = "<group>";
  1207. };
  1208. 81C796432A551FF0003083B8 /* textField */ = {
  1209. isa = PBXGroup;
  1210. children = (
  1211. 81C796412A551FE9003083B8 /* KWTextField.h */,
  1212. 81C796402A551FE9003083B8 /* KWTextField.m */,
  1213. );
  1214. path = textField;
  1215. sourceTree = "<group>";
  1216. };
  1217. 81D484DD2A0F40510075DC43 /* UserCenter */ = {
  1218. isa = PBXGroup;
  1219. children = (
  1220. 81C796312A55159B003083B8 /* Setting */,
  1221. 81C796282A539E65003083B8 /* Message */,
  1222. 81E5EE8D2A498FA20075695F /* VipCenter */,
  1223. 81DFA5722A47D91400DA708B /* ConponsAndGiftCard */,
  1224. 811F42432A40531C00DA68F1 /* Points */,
  1225. 811F42422A40530200DA68F1 /* UserCenterHome */,
  1226. 81E257F52A12259B004EEF71 /* UserCenter.xcassets */,
  1227. 8134C1AB2A13094F006EB0EC /* Target_userCenter.h */,
  1228. 8134C1AC2A13094F006EB0EC /* Target_userCenter.m */,
  1229. );
  1230. path = UserCenter;
  1231. sourceTree = "<group>";
  1232. };
  1233. 81DFA55A2A46C44800DA708B /* WebView */ = {
  1234. isa = PBXGroup;
  1235. children = (
  1236. 81DFA55B2A46C46D00DA708B /* ASWebViewController.h */,
  1237. 81DFA55C2A46C46D00DA708B /* ASWebViewController.m */,
  1238. 81DFA5612A46CD6000DA708B /* Target_WebView.h */,
  1239. 81DFA5622A46CD6000DA708B /* Target_WebView.m */,
  1240. );
  1241. path = WebView;
  1242. sourceTree = "<group>";
  1243. };
  1244. 81DFA5642A46D5DF00DA708B /* view */ = {
  1245. isa = PBXGroup;
  1246. children = (
  1247. 811F42472A40536C00DA68F1 /* ASPointHeadView.h */,
  1248. 811F42482A40536C00DA68F1 /* ASPointHeadView.m */,
  1249. 81DFA5572A4681E900DA708B /* ASPointEranCell.h */,
  1250. 81DFA5582A4681E900DA708B /* ASPointEranCell.m */,
  1251. 81DFA5682A46D82200DA708B /* ASPointDetailTableView.h */,
  1252. 81DFA5692A46D82200DA708B /* ASPointDetailTableView.m */,
  1253. 81DFA56F2A46D95400DA708B /* ASPointDetailCell.h */,
  1254. 81DFA5702A46D95400DA708B /* ASPointDetailCell.m */,
  1255. );
  1256. path = view;
  1257. sourceTree = "<group>";
  1258. };
  1259. 81DFA56E2A46D8F600DA708B /* model */ = {
  1260. isa = PBXGroup;
  1261. children = (
  1262. 81DFA56B2A46D86500DA708B /* ASPointDetailModel.h */,
  1263. 81DFA56C2A46D86500DA708B /* ASPointDetailModel.m */,
  1264. );
  1265. path = model;
  1266. sourceTree = "<group>";
  1267. };
  1268. 81DFA5722A47D91400DA708B /* ConponsAndGiftCard */ = {
  1269. isa = PBXGroup;
  1270. children = (
  1271. 81DFA5732A47D97C00DA708B /* ASCouponsListViewController.h */,
  1272. 81DFA5742A47D97C00DA708B /* ASCouponsListViewController.m */,
  1273. 81DFA5762A47F28D00DA708B /* ASCouponListCell.h */,
  1274. 81DFA5772A47F28D00DA708B /* ASCouponListCell.m */,
  1275. );
  1276. path = ConponsAndGiftCard;
  1277. sourceTree = "<group>";
  1278. };
  1279. 81E257EF2A12093A004EEF71 /* CustomView */ = {
  1280. isa = PBXGroup;
  1281. children = (
  1282. 81C796432A551FF0003083B8 /* textField */,
  1283. 81C7963B2A5517FE003083B8 /* switchBtn */,
  1284. 81E257FE2A1235D1004EEF71 /* CutomBottomBar */,
  1285. 81E257FA2A1233F1004EEF71 /* EnterItemV */,
  1286. 81E257F02A120952004EEF71 /* UserInfoV */,
  1287. 8134C1B52A1359E6006EB0EC /* ASSignDayView.h */,
  1288. 8134C1B62A1359E6006EB0EC /* ASSignDayView.m */,
  1289. 81354C052A289C230082C93A /* someView */,
  1290. 81354C042A289C100082C93A /* productView */,
  1291. );
  1292. path = CustomView;
  1293. sourceTree = "<group>";
  1294. };
  1295. 81E257F02A120952004EEF71 /* UserInfoV */ = {
  1296. isa = PBXGroup;
  1297. children = (
  1298. 81E257F12A120975004EEF71 /* ASUserBaseInfoView.h */,
  1299. 81E257F22A120975004EEF71 /* ASUserBaseInfoView.m */,
  1300. );
  1301. path = UserInfoV;
  1302. sourceTree = "<group>";
  1303. };
  1304. 81E257F72A122AAB004EEF71 /* Icons */ = {
  1305. isa = PBXGroup;
  1306. children = (
  1307. 81E257F82A122AC6004EEF71 /* ASUI.xcassets */,
  1308. );
  1309. path = Icons;
  1310. sourceTree = "<group>";
  1311. };
  1312. 81E257FA2A1233F1004EEF71 /* EnterItemV */ = {
  1313. isa = PBXGroup;
  1314. children = (
  1315. 81E257FB2A12340E004EEF71 /* ASEnterItemV.h */,
  1316. 81E257FC2A12340E004EEF71 /* ASEnterItemV.m */,
  1317. );
  1318. path = EnterItemV;
  1319. sourceTree = "<group>";
  1320. };
  1321. 81E257FE2A1235D1004EEF71 /* CutomBottomBar */ = {
  1322. isa = PBXGroup;
  1323. children = (
  1324. );
  1325. path = CutomBottomBar;
  1326. sourceTree = "<group>";
  1327. };
  1328. 81E5EE8D2A498FA20075695F /* VipCenter */ = {
  1329. isa = PBXGroup;
  1330. children = (
  1331. 81E5EE8E2A498FC90075695F /* ASVipCenterViewController.h */,
  1332. 81E5EE8F2A498FC90075695F /* ASVipCenterViewController.m */,
  1333. 81C796222A4FD63A003083B8 /* ASVipCouponsViewController.h */,
  1334. 81C796232A4FD63A003083B8 /* ASVipCouponsViewController.m */,
  1335. 81C796252A4FD898003083B8 /* ASBirthdayTreatViewController.h */,
  1336. 81C796262A4FD898003083B8 /* ASBirthdayTreatViewController.m */,
  1337. 81E5EE912A4A75DF0075695F /* Views */,
  1338. );
  1339. path = VipCenter;
  1340. sourceTree = "<group>";
  1341. };
  1342. 81E5EE912A4A75DF0075695F /* Views */ = {
  1343. isa = PBXGroup;
  1344. children = (
  1345. 81E5EE922A4A760D0075695F /* ASVipCenterLineItemView.h */,
  1346. 81E5EE932A4A760D0075695F /* ASVipCenterLineItemView.m */,
  1347. 81E5EE952A4A822D0075695F /* ASVipCenterCollectCell.h */,
  1348. 81E5EE962A4A822D0075695F /* ASVipCenterCollectCell.m */,
  1349. );
  1350. path = Views;
  1351. sourceTree = "<group>";
  1352. };
  1353. 9A1247912A1B07F400126226 /* Tool */ = {
  1354. isa = PBXGroup;
  1355. children = (
  1356. 9A1247922A1B082300126226 /* Fuction_Tool.h */,
  1357. 9A1247932A1B082300126226 /* Fuction_Tool.m */,
  1358. );
  1359. path = Tool;
  1360. sourceTree = "<group>";
  1361. };
  1362. 9A2646BA2A187B6100CBFBDC /* Product */ = {
  1363. isa = PBXGroup;
  1364. children = (
  1365. 9A1247912A1B07F400126226 /* Tool */,
  1366. 9AD364CD2A05EC2700452C7A /* Config */,
  1367. 9ACBEC1E2A1457E800A8F97A /* CTMediatoaTargets */,
  1368. );
  1369. path = Product;
  1370. sourceTree = "<group>";
  1371. };
  1372. 9A337E342A04EE1A00D058A5 /* BViewController */ = {
  1373. isa = PBXGroup;
  1374. children = (
  1375. 9A337E352A04EE1A00D058A5 /* Tatgets */,
  1376. 9A337E382A04EE1A00D058A5 /* BViewController.h */,
  1377. 9A337E392A04EE1A00D058A5 /* BViewController.m */,
  1378. );
  1379. path = BViewController;
  1380. sourceTree = "<group>";
  1381. };
  1382. 9A337E352A04EE1A00D058A5 /* Tatgets */ = {
  1383. isa = PBXGroup;
  1384. children = (
  1385. 9A337E362A04EE1A00D058A5 /* Target_B.m */,
  1386. 9A337E372A04EE1A00D058A5 /* Target_B.h */,
  1387. );
  1388. path = Tatgets;
  1389. sourceTree = "<group>";
  1390. };
  1391. 9A337E4B2A04F42500D058A5 /* AMoule */ = {
  1392. isa = PBXGroup;
  1393. children = (
  1394. 9A337E4C2A04F46600D058A5 /* AViewController.h */,
  1395. 9A337E4D2A04F46600D058A5 /* AViewController.m */,
  1396. );
  1397. path = AMoule;
  1398. sourceTree = "<group>";
  1399. };
  1400. 9A337E4F2A04FA0A00D058A5 /* Goods */ = {
  1401. isa = PBXGroup;
  1402. children = (
  1403. 9A8DD8C22A0B8EDD00573324 /* Size */,
  1404. 9A3735702A0B4606008BB3CE /* VM */,
  1405. 9AD364C82A05E77200452C7A /* M */,
  1406. 9AD364C72A05E76D00452C7A /* V */,
  1407. 9AD364C32A05E71000452C7A /* VC */,
  1408. 9AD364BF2A05E68400452C7A /* Target */,
  1409. );
  1410. path = Goods;
  1411. sourceTree = "<group>";
  1412. };
  1413. 9A3735702A0B4606008BB3CE /* VM */ = {
  1414. isa = PBXGroup;
  1415. children = (
  1416. 9A8DD8C62A0B93F600573324 /* GoodsDetailsVM.h */,
  1417. 9A8DD8C72A0B93F600573324 /* GoodsDetailsVM.m */,
  1418. );
  1419. path = VM;
  1420. sourceTree = "<group>";
  1421. };
  1422. 9A5C64522A11E58F00CBB185 /* Login */ = {
  1423. isa = PBXGroup;
  1424. children = (
  1425. 9ACBEC222A1464CD00A8F97A /* VC */,
  1426. 9A65DE4E2A132BDF00BB1269 /* V */,
  1427. 9AD6A5462A123799001DE3D9 /* Target */,
  1428. 9AD6A53A2A120C56001DE3D9 /* Assets */,
  1429. 9AD6A53F2A1218D0001DE3D9 /* BaseView */,
  1430. );
  1431. path = Login;
  1432. sourceTree = "<group>";
  1433. };
  1434. 9A65DE4E2A132BDF00BB1269 /* V */ = {
  1435. isa = PBXGroup;
  1436. children = (
  1437. 9ACBEC262A1472AF00A8F97A /* LoginSignUpV.h */,
  1438. 9ACBEC272A1472AF00A8F97A /* LoginSignUpV.m */,
  1439. 9A65DE4F2A132FB700BB1269 /* LoginThirdAuthV.h */,
  1440. 9A65DE502A132FB700BB1269 /* LoginThirdAuthV.m */,
  1441. );
  1442. path = V;
  1443. sourceTree = "<group>";
  1444. };
  1445. 9A8DD8C22A0B8EDD00573324 /* Size */ = {
  1446. isa = PBXGroup;
  1447. children = (
  1448. 9A8DD8C32A0B8F1700573324 /* As_GoodsSizeC.h */,
  1449. 9A8DD8C42A0B8F1700573324 /* As_GoodsSizeC.m */,
  1450. );
  1451. path = Size;
  1452. sourceTree = "<group>";
  1453. };
  1454. 9A8DD8CC2A0B9E0C00573324 /* Assets */ = {
  1455. isa = PBXGroup;
  1456. children = (
  1457. 9A7DA6A02A0CE33500136974 /* Asteria.xcassets */,
  1458. 9A5C645A2A1206E500CBB185 /* common.xcassets */,
  1459. );
  1460. path = Assets;
  1461. sourceTree = "<group>";
  1462. };
  1463. 9ACBEC1E2A1457E800A8F97A /* CTMediatoaTargets */ = {
  1464. isa = PBXGroup;
  1465. children = (
  1466. 9ACBEC1F2A14585300A8F97A /* CTMediator+ASTargerts.h */,
  1467. 9ACBEC202A14585300A8F97A /* CTMediator+ASTargerts.m */,
  1468. 816020082A2DD59E00E4A8F1 /* CTMediator+Home.h */,
  1469. 816020092A2DD59E00E4A8F1 /* CTMediator+Home.m */,
  1470. 8160200B2A2DD5C000E4A8F1 /* CTMediator+UserCenter.h */,
  1471. 8160200C2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m */,
  1472. 81DFA55E2A46CC8E00DA708B /* CTMediator+ASWebView.h */,
  1473. 81DFA55F2A46CC8E00DA708B /* CTMediator+ASWebView.m */,
  1474. 81717D262A3C55CC00648139 /* CTMediator+Categorys.h */,
  1475. 81717D272A3C55CC00648139 /* CTMediator+Categorys.m */,
  1476. );
  1477. path = CTMediatoaTargets;
  1478. sourceTree = "<group>";
  1479. };
  1480. 9ACBEC222A1464CD00A8F97A /* VC */ = {
  1481. isa = PBXGroup;
  1482. children = (
  1483. 9A5C64562A12064300CBB185 /* AS_LoginC.h */,
  1484. 9A5C64572A12064300CBB185 /* AS_LoginC.m */,
  1485. 9ACBEC232A14707400A8F97A /* AS_SignUpC.h */,
  1486. 9ACBEC242A14707400A8F97A /* AS_SignUpC.m */,
  1487. 9A1247952A1B0A2800126226 /* AS_ForgotC.h */,
  1488. 9A1247962A1B0A2800126226 /* AS_ForgotC.m */,
  1489. );
  1490. path = VC;
  1491. sourceTree = "<group>";
  1492. };
  1493. 9AD3459F2A08D55D005CA070 /* Banner */ = {
  1494. isa = PBXGroup;
  1495. children = (
  1496. 9AD3461E2A08E30E005CA070 /* SelectVCollectionViewCell.h */,
  1497. 9AD3461F2A08E30E005CA070 /* SelectVCollectionViewCell.m */,
  1498. 9AD3461A2A08D692005CA070 /* M */,
  1499. 9AD345AA2A08D59A005CA070 /* WKM_goodsBanner.h */,
  1500. 9AD345AB2A08D59A005CA070 /* WKM_goodsBanner.m */,
  1501. 9AD345AD2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.h */,
  1502. 9AD345AE2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.m */,
  1503. 9AD345AF2A08D5EC005CA070 /* GoodsVideoCollectionViewCell.h */,
  1504. 9AD345B02A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m */,
  1505. 9AD345B32A08D60F005CA070 /* ZFPlayer */,
  1506. 9AD345A02A08D571005CA070 /* TYCyclePagerView */,
  1507. );
  1508. path = Banner;
  1509. sourceTree = "<group>";
  1510. };
  1511. 9AD345A02A08D571005CA070 /* TYCyclePagerView */ = {
  1512. isa = PBXGroup;
  1513. children = (
  1514. 9AD345A22A08D571005CA070 /* TYCyclePagerTransformLayout.h */,
  1515. 9AD345A52A08D571005CA070 /* TYCyclePagerTransformLayout.m */,
  1516. 9AD345A12A08D571005CA070 /* TYCyclePagerView.h */,
  1517. 9AD345A42A08D571005CA070 /* TYCyclePagerView.m */,
  1518. 9AD345A62A08D571005CA070 /* TYPageControl.h */,
  1519. 9AD345A32A08D571005CA070 /* TYPageControl.m */,
  1520. );
  1521. path = TYCyclePagerView;
  1522. sourceTree = "<group>";
  1523. };
  1524. 9AD345B32A08D60F005CA070 /* ZFPlayer */ = {
  1525. isa = PBXGroup;
  1526. children = (
  1527. 9AD345B42A08D60F005CA070 /* Core */,
  1528. 9AD345D82A08D60F005CA070 /* ijkplayer */,
  1529. 9AD345DB2A08D60F005CA070 /* AVPlayer */,
  1530. 9AD345DE2A08D60F005CA070 /* ControlView */,
  1531. );
  1532. path = ZFPlayer;
  1533. sourceTree = "<group>";
  1534. };
  1535. 9AD345B42A08D60F005CA070 /* Core */ = {
  1536. isa = PBXGroup;
  1537. children = (
  1538. 9AD345B52A08D60F005CA070 /* ZFPlayerNotification.h */,
  1539. 9AD345B62A08D60F005CA070 /* ZFPlayerGestureControl.m */,
  1540. 9AD345B72A08D60F005CA070 /* ZFPlayerController.m */,
  1541. 9AD345B82A08D60F005CA070 /* ZFFloatView.h */,
  1542. 9AD345B92A08D60F005CA070 /* ZFPresentTransition.h */,
  1543. 9AD345BA2A08D60F005CA070 /* ZFLandscapeWindow.m */,
  1544. 9AD345BB2A08D60F005CA070 /* ZFKVOController.h */,
  1545. 9AD345BC2A08D60F005CA070 /* ZFLandscapeViewController.h */,
  1546. 9AD345BD2A08D60F005CA070 /* ZFOrientationObserver.m */,
  1547. 9AD345BE2A08D60F005CA070 /* ZFPortraitViewController.h */,
  1548. 9AD345BF2A08D60F005CA070 /* ZFPlayerView.h */,
  1549. 9AD345C02A08D60F005CA070 /* ZFPlayerLogManager.m */,
  1550. 9AD345C12A08D60F005CA070 /* ZFPlayerMediaPlayback.h */,
  1551. 9AD345C22A08D60F005CA070 /* ZFPersentInteractiveTransition.m */,
  1552. 9AD345C32A08D60F005CA070 /* ZFReachabilityManager.h */,
  1553. 9AD345C42A08D60F005CA070 /* UIScrollView+ZFPlayer.m */,
  1554. 9AD345C52A08D60F005CA070 /* ZFPlayer.h */,
  1555. 9AD345C62A08D60F005CA070 /* ZFPlayerGestureControl.h */,
  1556. 9AD345C72A08D60F005CA070 /* ZFPlayerNotification.m */,
  1557. 9AD345C82A08D60F005CA070 /* ZFPresentTransition.m */,
  1558. 9AD345C92A08D60F005CA070 /* ZFFloatView.m */,
  1559. 9AD345CA2A08D60F005CA070 /* ZFPlayerMediaControl.h */,
  1560. 9AD345CB2A08D60F005CA070 /* ZFPlayerController.h */,
  1561. 9AD345CC2A08D60F005CA070 /* ZFPlayerView.m */,
  1562. 9AD345CD2A08D60F005CA070 /* ZFPlayerLogManager.h */,
  1563. 9AD345CE2A08D60F005CA070 /* ZFPortraitViewController.m */,
  1564. 9AD345CF2A08D60F005CA070 /* ZFOrientationObserver.h */,
  1565. 9AD345D02A08D60F005CA070 /* ZFPlayerConst.h */,
  1566. 9AD345D12A08D60F005CA070 /* ZFKVOController.m */,
  1567. 9AD345D22A08D60F005CA070 /* ZFLandscapeViewController.m */,
  1568. 9AD345D32A08D60F005CA070 /* ZFLandscapeWindow.h */,
  1569. 9AD345D42A08D60F005CA070 /* UIScrollView+ZFPlayer.h */,
  1570. 9AD345D52A08D60F005CA070 /* ZFReachabilityManager.m */,
  1571. 9AD345D62A08D60F005CA070 /* ZFPersentInteractiveTransition.h */,
  1572. 9AD345D72A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m */,
  1573. );
  1574. path = Core;
  1575. sourceTree = "<group>";
  1576. };
  1577. 9AD345D82A08D60F005CA070 /* ijkplayer */ = {
  1578. isa = PBXGroup;
  1579. children = (
  1580. 9AD345D92A08D60F005CA070 /* ZFIJKPlayerManager.h */,
  1581. 9AD345DA2A08D60F005CA070 /* ZFIJKPlayerManager.m */,
  1582. );
  1583. path = ijkplayer;
  1584. sourceTree = "<group>";
  1585. };
  1586. 9AD345DB2A08D60F005CA070 /* AVPlayer */ = {
  1587. isa = PBXGroup;
  1588. children = (
  1589. 9AD345DC2A08D60F005CA070 /* ZFAVPlayerManager.m */,
  1590. 9AD345DD2A08D60F005CA070 /* ZFAVPlayerManager.h */,
  1591. );
  1592. path = AVPlayer;
  1593. sourceTree = "<group>";
  1594. };
  1595. 9AD345DE2A08D60F005CA070 /* ControlView */ = {
  1596. isa = PBXGroup;
  1597. children = (
  1598. 9AD345DF2A08D60F005CA070 /* ZFUtilities.m */,
  1599. 9AD345E02A08D60F005CA070 /* UIView+ZFFrame.m */,
  1600. 9AD345E12A08D60F005CA070 /* ZFSmallFloatControlView.h */,
  1601. 9AD345E22A08D60F005CA070 /* ZFPlayerControlView.h */,
  1602. 9AD345E32A08D60F005CA070 /* ZFSliderView.h */,
  1603. 9AD345E42A08D60F005CA070 /* ZFVolumeBrightnessView.m */,
  1604. 9AD345E52A08D60F005CA070 /* ZFSpeedLoadingView.h */,
  1605. 9AD345E62A08D60F005CA070 /* ZFLoadingView.h */,
  1606. 9AD345E72A08D60F005CA070 /* ZFLandScapeControlView.m */,
  1607. 9AD345E82A08D60F005CA070 /* ZFNetworkSpeedMonitor.m */,
  1608. 9AD345E92A08D60F005CA070 /* UIImageView+ZFCache.h */,
  1609. 9AD345EA2A08D60F005CA070 /* ZFPortraitControlView.h */,
  1610. 9AD345EB2A08D60F005CA070 /* ZFPlayer.bundle */,
  1611. 9AD345EC2A08D60F005CA070 /* UIView+ZFFrame.h */,
  1612. 9AD345ED2A08D60F005CA070 /* ZFUtilities.h */,
  1613. 9AD345EE2A08D60F005CA070 /* ZFSliderView.m */,
  1614. 9AD345EF2A08D60F005CA070 /* ZFPlayerControlView.m */,
  1615. 9AD345F02A08D60F005CA070 /* ZFSmallFloatControlView.m */,
  1616. 9AD345F12A08D60F005CA070 /* ZFLoadingView.m */,
  1617. 9AD345F22A08D60F005CA070 /* ZFSpeedLoadingView.m */,
  1618. 9AD345F32A08D60F005CA070 /* ZFVolumeBrightnessView.h */,
  1619. 9AD345F42A08D60F005CA070 /* ZFPortraitControlView.m */,
  1620. 9AD345F52A08D60F005CA070 /* UIImageView+ZFCache.m */,
  1621. 9AD345F62A08D60F005CA070 /* ZFNetworkSpeedMonitor.h */,
  1622. 9AD345F72A08D60F005CA070 /* ZFLandScapeControlView.h */,
  1623. );
  1624. path = ControlView;
  1625. sourceTree = "<group>";
  1626. };
  1627. 9AD3461A2A08D692005CA070 /* M */ = {
  1628. isa = PBXGroup;
  1629. children = (
  1630. 9AD346172A08D679005CA070 /* GoodsBannerModel.h */,
  1631. 9AD346182A08D679005CA070 /* GoodsBannerModel.m */,
  1632. );
  1633. path = M;
  1634. sourceTree = "<group>";
  1635. };
  1636. 9AD364BF2A05E68400452C7A /* Target */ = {
  1637. isa = PBXGroup;
  1638. children = (
  1639. 9A788C422A08A663003E0025 /* Target_Goods.h */,
  1640. 9A788C432A08A663003E0025 /* Target_Goods.m */,
  1641. );
  1642. path = Target;
  1643. sourceTree = "<group>";
  1644. };
  1645. 9AD364C32A05E71000452C7A /* VC */ = {
  1646. isa = PBXGroup;
  1647. children = (
  1648. 9AD364C42A05E73E00452C7A /* AS_GoodsDetailsC.h */,
  1649. 9AD364C52A05E73E00452C7A /* AS_GoodsDetailsC.m */,
  1650. );
  1651. path = VC;
  1652. sourceTree = "<group>";
  1653. };
  1654. 9AD364C72A05E76D00452C7A /* V */ = {
  1655. isa = PBXGroup;
  1656. children = (
  1657. 9AD3459F2A08D55D005CA070 /* Banner */,
  1658. 9AD3459C2A08D545005CA070 /* GoodsDetailSrcView.h */,
  1659. 9AD3459D2A08D545005CA070 /* GoodsDetailSrcView.m */,
  1660. );
  1661. path = V;
  1662. sourceTree = "<group>";
  1663. };
  1664. 9AD364C82A05E77200452C7A /* M */ = {
  1665. isa = PBXGroup;
  1666. children = (
  1667. 9AD3461B2A08D6EF005CA070 /* GoodsInformationM.h */,
  1668. 9AD3461C2A08D6EF005CA070 /* GoodsInformationM.m */,
  1669. );
  1670. path = M;
  1671. sourceTree = "<group>";
  1672. };
  1673. 9AD364CC2A05EBE800452C7A /* Fuction */ = {
  1674. isa = PBXGroup;
  1675. children = (
  1676. 81DFA55A2A46C44800DA708B /* WebView */,
  1677. 81717CAC2A3C453900648139 /* Category */,
  1678. 81601FE32A2D938B00E4A8F1 /* Home */,
  1679. 9A5C64522A11E58F00CBB185 /* Login */,
  1680. 81D484DD2A0F40510075DC43 /* UserCenter */,
  1681. 9A337E4F2A04FA0A00D058A5 /* Goods */,
  1682. 9A337E4B2A04F42500D058A5 /* AMoule */,
  1683. 9A337E342A04EE1A00D058A5 /* BViewController */,
  1684. );
  1685. path = Fuction;
  1686. sourceTree = "<group>";
  1687. };
  1688. 9AD364CD2A05EC2700452C7A /* Config */ = {
  1689. isa = PBXGroup;
  1690. children = (
  1691. 814F5CF62A11B76F003847A9 /* Font */,
  1692. 9AD346212A08E828005CA070 /* ProjectConfigDefine.h */,
  1693. );
  1694. path = Config;
  1695. sourceTree = "<group>";
  1696. };
  1697. 9AD364CE2A05EC4500452C7A /* Tabber */ = {
  1698. isa = PBXGroup;
  1699. children = (
  1700. 9AD364CF2A05EC7800452C7A /* AS_TabBarViewController.h */,
  1701. 9AD364D02A05EC7800452C7A /* AS_TabBarViewController.m */,
  1702. );
  1703. path = Tabber;
  1704. sourceTree = "<group>";
  1705. };
  1706. 9AD6A53A2A120C56001DE3D9 /* Assets */ = {
  1707. isa = PBXGroup;
  1708. children = (
  1709. 9AD6A53D2A120CC3001DE3D9 /* Login.xcassets */,
  1710. );
  1711. path = Assets;
  1712. sourceTree = "<group>";
  1713. };
  1714. 9AD6A53F2A1218D0001DE3D9 /* BaseView */ = {
  1715. isa = PBXGroup;
  1716. children = (
  1717. 9AD6A5412A1218E7001DE3D9 /* EamilTFmatchV.h */,
  1718. 9AD6A5432A1218E7001DE3D9 /* EamilTFmatchV.m */,
  1719. 9AD6A5402A1218E6001DE3D9 /* PassWordSecureBtnV.h */,
  1720. 9AD6A5422A1218E7001DE3D9 /* PassWordSecureBtnV.m */,
  1721. );
  1722. path = BaseView;
  1723. sourceTree = "<group>";
  1724. };
  1725. 9AD6A5462A123799001DE3D9 /* Target */ = {
  1726. isa = PBXGroup;
  1727. children = (
  1728. 9AD6A5472A1237D0001DE3D9 /* Target_Login.h */,
  1729. 9AD6A5482A1237D0001DE3D9 /* Target_Login.m */,
  1730. );
  1731. path = Target;
  1732. sourceTree = "<group>";
  1733. };
  1734. AD6FCC75A25F3F751CF2E2EB /* Pods */ = {
  1735. isa = PBXGroup;
  1736. children = (
  1737. 3C97D3C0DD5DB3DCA3FF46B8 /* Pods-Asteria.debug.xcconfig */,
  1738. 2A57FEE3AE67604607B5A6DE /* Pods-Asteria.release.xcconfig */,
  1739. F28014612B0095476AA5BC1B /* Pods-Asteria-NotificationServiceExtension.debug.xcconfig */,
  1740. 3757F38E691966CC4F482D46 /* Pods-Asteria-NotificationServiceExtension.release.xcconfig */,
  1741. );
  1742. path = Pods;
  1743. sourceTree = "<group>";
  1744. };
  1745. /* End PBXGroup section */
  1746. /* Begin PBXNativeTarget section */
  1747. 8172449929F3B2ED005FA9C9 /* Asteria */ = {
  1748. isa = PBXNativeTarget;
  1749. buildConfigurationList = 817244B329F3B2EE005FA9C9 /* Build configuration list for PBXNativeTarget "Asteria" */;
  1750. buildPhases = (
  1751. 99A0BC3099EF658C7572EE53 /* [CP] Check Pods Manifest.lock */,
  1752. 8172449629F3B2ED005FA9C9 /* Sources */,
  1753. 8172449729F3B2ED005FA9C9 /* Frameworks */,
  1754. 8172449829F3B2ED005FA9C9 /* Resources */,
  1755. 817244C329F3B81C005FA9C9 /* Embed Foundation Extensions */,
  1756. 3B92BBFD060A2570947ECE79 /* [CP] Embed Pods Frameworks */,
  1757. 98D74E56EC226FF60623E369 /* [CP] Copy Pods Resources */,
  1758. );
  1759. buildRules = (
  1760. );
  1761. dependencies = (
  1762. 817244C129F3B81C005FA9C9 /* PBXTargetDependency */,
  1763. );
  1764. name = Asteria;
  1765. productName = Asteria;
  1766. productReference = 8172449A29F3B2ED005FA9C9 /* Asteria.app */;
  1767. productType = "com.apple.product-type.application";
  1768. };
  1769. 817244B929F3B81C005FA9C9 /* NotificationServiceExtension */ = {
  1770. isa = PBXNativeTarget;
  1771. buildConfigurationList = 817244C629F3B81C005FA9C9 /* Build configuration list for PBXNativeTarget "NotificationServiceExtension" */;
  1772. buildPhases = (
  1773. 3E1D2F88A7C35F41F9DF89B3 /* [CP] Check Pods Manifest.lock */,
  1774. 817244B629F3B81C005FA9C9 /* Sources */,
  1775. 817244B729F3B81C005FA9C9 /* Frameworks */,
  1776. 817244B829F3B81C005FA9C9 /* Resources */,
  1777. 19CF3293FFA4BAF08C679C6D /* [CP] Copy Pods Resources */,
  1778. );
  1779. buildRules = (
  1780. );
  1781. dependencies = (
  1782. );
  1783. name = NotificationServiceExtension;
  1784. productName = NotificationServiceExtension;
  1785. productReference = 817244BA29F3B81C005FA9C9 /* NotificationServiceExtension.appex */;
  1786. productType = "com.apple.product-type.app-extension";
  1787. };
  1788. /* End PBXNativeTarget section */
  1789. /* Begin PBXProject section */
  1790. 8172449229F3B2EC005FA9C9 /* Project object */ = {
  1791. isa = PBXProject;
  1792. attributes = {
  1793. BuildIndependentTargetsInParallel = 1;
  1794. CLASSPREFIX = AS;
  1795. LastUpgradeCheck = 1420;
  1796. TargetAttributes = {
  1797. 8172449929F3B2ED005FA9C9 = {
  1798. CreatedOnToolsVersion = 14.2;
  1799. };
  1800. 817244B929F3B81C005FA9C9 = {
  1801. CreatedOnToolsVersion = 14.2;
  1802. };
  1803. };
  1804. };
  1805. buildConfigurationList = 8172449529F3B2EC005FA9C9 /* Build configuration list for PBXProject "Asteria" */;
  1806. compatibilityVersion = "Xcode 13.0";
  1807. developmentRegion = en;
  1808. hasScannedForEncodings = 0;
  1809. knownRegions = (
  1810. en,
  1811. Base,
  1812. );
  1813. mainGroup = 8172449129F3B2EC005FA9C9;
  1814. productRefGroup = 8172449B29F3B2ED005FA9C9 /* Products */;
  1815. projectDirPath = "";
  1816. projectRoot = "";
  1817. targets = (
  1818. 8172449929F3B2ED005FA9C9 /* Asteria */,
  1819. 817244B929F3B81C005FA9C9 /* NotificationServiceExtension */,
  1820. );
  1821. };
  1822. /* End PBXProject section */
  1823. /* Begin PBXResourcesBuildPhase section */
  1824. 8172449829F3B2ED005FA9C9 /* Resources */ = {
  1825. isa = PBXResourcesBuildPhase;
  1826. buildActionMask = 2147483647;
  1827. files = (
  1828. 814F5D102A11B76F003847A9 /* Roboto-Thin.ttf in Resources */,
  1829. 816020152A2F065700E4A8F1 /* Home.xcassets in Resources */,
  1830. 814F5D052A11B76F003847A9 /* Roboto-Medium.ttf in Resources */,
  1831. 81717D3C2A3D430C00648139 /* Category.xcassets in Resources */,
  1832. 814F5D0C2A11B76F003847A9 /* Roboto-Italic.ttf in Resources */,
  1833. 814F5D0F2A11B76F003847A9 /* Roboto-Bold.ttf in Resources */,
  1834. 814F5D0B2A11B76F003847A9 /* Roboto-LightItalic.ttf in Resources */,
  1835. 81354BF72A288AC20082C93A /* ASUI.xcassets in Resources */,
  1836. 814F5D112A11B76F003847A9 /* Roboto-Black.ttf in Resources */,
  1837. 814F5D0E2A11B76F003847A9 /* Roboto-BlackItalic.ttf in Resources */,
  1838. 814F5D072A11B76F003847A9 /* Roboto-Regular.ttf in Resources */,
  1839. 817244AD29F3B2EE005FA9C9 /* LaunchScreen.storyboard in Resources */,
  1840. 9AD6A53E2A120CC3001DE3D9 /* Login.xcassets in Resources */,
  1841. 814F5D0D2A11B76F003847A9 /* LICENSE.txt in Resources */,
  1842. 814F5D062A11B76F003847A9 /* Roboto-Light.ttf in Resources */,
  1843. 814F5D082A11B76F003847A9 /* Roboto-MediumItalic.ttf in Resources */,
  1844. 81E257F92A122AC6004EEF71 /* ASUI.xcassets in Resources */,
  1845. 9A7DA6A12A0CE33500136974 /* Asteria.xcassets in Resources */,
  1846. 814F5D092A11B76F003847A9 /* Roboto-ThinItalic.ttf in Resources */,
  1847. 9AD3460F2A08D60F005CA070 /* ZFPlayer.bundle in Resources */,
  1848. 814F5D0A2A11B76F003847A9 /* Roboto-BoldItalic.ttf in Resources */,
  1849. 817244AA29F3B2EE005FA9C9 /* Assets.xcassets in Resources */,
  1850. 9A5C645B2A1206E500CBB185 /* common.xcassets in Resources */,
  1851. 81E257F62A12259B004EEF71 /* UserCenter.xcassets in Resources */,
  1852. );
  1853. runOnlyForDeploymentPostprocessing = 0;
  1854. };
  1855. 817244B829F3B81C005FA9C9 /* Resources */ = {
  1856. isa = PBXResourcesBuildPhase;
  1857. buildActionMask = 2147483647;
  1858. files = (
  1859. );
  1860. runOnlyForDeploymentPostprocessing = 0;
  1861. };
  1862. /* End PBXResourcesBuildPhase section */
  1863. /* Begin PBXShellScriptBuildPhase section */
  1864. 19CF3293FFA4BAF08C679C6D /* [CP] Copy Pods Resources */ = {
  1865. isa = PBXShellScriptBuildPhase;
  1866. buildActionMask = 2147483647;
  1867. files = (
  1868. );
  1869. inputFileListPaths = (
  1870. "${PODS_ROOT}/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension-resources-${CONFIGURATION}-input-files.xcfilelist",
  1871. );
  1872. name = "[CP] Copy Pods Resources";
  1873. outputFileListPaths = (
  1874. "${PODS_ROOT}/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension-resources-${CONFIGURATION}-output-files.xcfilelist",
  1875. );
  1876. runOnlyForDeploymentPostprocessing = 0;
  1877. shellPath = /bin/sh;
  1878. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension-resources.sh\"\n";
  1879. showEnvVarsInLog = 0;
  1880. };
  1881. 3B92BBFD060A2570947ECE79 /* [CP] Embed Pods Frameworks */ = {
  1882. isa = PBXShellScriptBuildPhase;
  1883. buildActionMask = 2147483647;
  1884. files = (
  1885. );
  1886. inputFileListPaths = (
  1887. "${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1888. );
  1889. name = "[CP] Embed Pods Frameworks";
  1890. outputFileListPaths = (
  1891. "${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1892. );
  1893. runOnlyForDeploymentPostprocessing = 0;
  1894. shellPath = /bin/sh;
  1895. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-frameworks.sh\"\n";
  1896. showEnvVarsInLog = 0;
  1897. };
  1898. 3E1D2F88A7C35F41F9DF89B3 /* [CP] Check Pods Manifest.lock */ = {
  1899. isa = PBXShellScriptBuildPhase;
  1900. buildActionMask = 2147483647;
  1901. files = (
  1902. );
  1903. inputFileListPaths = (
  1904. );
  1905. inputPaths = (
  1906. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1907. "${PODS_ROOT}/Manifest.lock",
  1908. );
  1909. name = "[CP] Check Pods Manifest.lock";
  1910. outputFileListPaths = (
  1911. );
  1912. outputPaths = (
  1913. "$(DERIVED_FILE_DIR)/Pods-Asteria-NotificationServiceExtension-checkManifestLockResult.txt",
  1914. );
  1915. runOnlyForDeploymentPostprocessing = 0;
  1916. shellPath = /bin/sh;
  1917. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1918. showEnvVarsInLog = 0;
  1919. };
  1920. 98D74E56EC226FF60623E369 /* [CP] Copy Pods Resources */ = {
  1921. isa = PBXShellScriptBuildPhase;
  1922. buildActionMask = 2147483647;
  1923. files = (
  1924. );
  1925. inputFileListPaths = (
  1926. "${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-resources-${CONFIGURATION}-input-files.xcfilelist",
  1927. );
  1928. name = "[CP] Copy Pods Resources";
  1929. outputFileListPaths = (
  1930. "${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-resources-${CONFIGURATION}-output-files.xcfilelist",
  1931. );
  1932. runOnlyForDeploymentPostprocessing = 0;
  1933. shellPath = /bin/sh;
  1934. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-resources.sh\"\n";
  1935. showEnvVarsInLog = 0;
  1936. };
  1937. 99A0BC3099EF658C7572EE53 /* [CP] Check Pods Manifest.lock */ = {
  1938. isa = PBXShellScriptBuildPhase;
  1939. buildActionMask = 2147483647;
  1940. files = (
  1941. );
  1942. inputFileListPaths = (
  1943. );
  1944. inputPaths = (
  1945. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1946. "${PODS_ROOT}/Manifest.lock",
  1947. );
  1948. name = "[CP] Check Pods Manifest.lock";
  1949. outputFileListPaths = (
  1950. );
  1951. outputPaths = (
  1952. "$(DERIVED_FILE_DIR)/Pods-Asteria-checkManifestLockResult.txt",
  1953. );
  1954. runOnlyForDeploymentPostprocessing = 0;
  1955. shellPath = /bin/sh;
  1956. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1957. showEnvVarsInLog = 0;
  1958. };
  1959. /* End PBXShellScriptBuildPhase section */
  1960. /* Begin PBXSourcesBuildPhase section */
  1961. 8172449629F3B2ED005FA9C9 /* Sources */ = {
  1962. isa = PBXSourcesBuildPhase;
  1963. buildActionMask = 2147483647;
  1964. files = (
  1965. 81354BEE2A287AB50082C93A /* KWMineHomeOrderListCell.m in Sources */,
  1966. 81601FE62A2DB19300E4A8F1 /* ASHomeViewController.m in Sources */,
  1967. 81354BF22A287B120082C93A /* KWMineHomeOrderModel.m in Sources */,
  1968. 9AD345F82A08D60F005CA070 /* ZFPlayerGestureControl.m in Sources */,
  1969. 81C326712A37020A002EF442 /* ASProductListMenuHeaderView.m in Sources */,
  1970. 81601FF92A2DC78300E4A8F1 /* WMZBannerControl.m in Sources */,
  1971. 81717C912A3BE39C00648139 /* ASProductSortFilterView.m in Sources */,
  1972. 81C7962E2A539F4D003083B8 /* ASMessageListCell.m in Sources */,
  1973. 81717D382A3D322700648139 /* KWNoHisWordsCell.m in Sources */,
  1974. 9AD345FA2A08D60F005CA070 /* ZFLandscapeWindow.m in Sources */,
  1975. 81E257EE2A120756004EEF71 /* ASUserCenterTopView.m in Sources */,
  1976. 81C326622A36B33B002EF442 /* ASHomeActiveView.m in Sources */,
  1977. 81DFA56A2A46D82200DA708B /* ASPointDetailTableView.m in Sources */,
  1978. 9AD346042A08D60F005CA070 /* ZFKVOController.m in Sources */,
  1979. 81717CA12A3C0A3500648139 /* KWProductMenuFilterItemHeaderView.m in Sources */,
  1980. 81C326662A36B794002EF442 /* VerScrollTextView.m in Sources */,
  1981. 81E5EE972A4A822D0075695F /* ASVipCenterCollectCell.m in Sources */,
  1982. 81C796272A4FD898003083B8 /* ASBirthdayTreatViewController.m in Sources */,
  1983. 81717D372A3D322700648139 /* KWHisCollectHeaderView.m in Sources */,
  1984. 9A8DD8C82A0B93F700573324 /* GoodsDetailsVM.m in Sources */,
  1985. 9AD346132A08D60F005CA070 /* ZFLoadingView.m in Sources */,
  1986. 9ACBEC212A14585300A8F97A /* CTMediator+ASTargerts.m in Sources */,
  1987. 8134C1AD2A13094F006EB0EC /* Target_userCenter.m in Sources */,
  1988. 81E257F32A120975004EEF71 /* ASUserBaseInfoView.m in Sources */,
  1989. 8172449F29F3B2ED005FA9C9 /* AppDelegate.m in Sources */,
  1990. 816020222A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m in Sources */,
  1991. 81C3266E2A36FF2B002EF442 /* ASProductListActiveHeaderView.m in Sources */,
  1992. 81EC47722A3402CA00516573 /* ASHomeFlashDealCell.m in Sources */,
  1993. 81601FF82A2DC78300E4A8F1 /* WMZBannerView.m in Sources */,
  1994. 811F42492A40536C00DA68F1 /* ASPointHeadView.m in Sources */,
  1995. 817244B029F3B2EE005FA9C9 /* main.m in Sources */,
  1996. 81717D202A3C4AE000648139 /* KWSearchSubTypeCell.m in Sources */,
  1997. 81C796242A4FD63A003083B8 /* ASVipCouponsViewController.m in Sources */,
  1998. 816020252A2F1C9E00E4A8F1 /* ASHomeMainListModel.m in Sources */,
  1999. 81717CA82A3C0AAA00648139 /* KWProductListFilterModel.m in Sources */,
  2000. 81717D252A3C512700648139 /* Target_Category.m in Sources */,
  2001. 9AD346102A08D60F005CA070 /* ZFSliderView.m in Sources */,
  2002. 9A337E4E2A04F46600D058A5 /* AViewController.m in Sources */,
  2003. 81601FFA2A2DC78300E4A8F1 /* WMZBannerFadeLayout.m in Sources */,
  2004. 816020182A2F070B00E4A8F1 /* ASHomeCategoryModel.m in Sources */,
  2005. 8134C1B72A1359E6006EB0EC /* ASSignDayView.m in Sources */,
  2006. 81601FF72A2DC78300E4A8F1 /* WMZBannerParam.m in Sources */,
  2007. 81717CA22A3C0A3500648139 /* KWProductMenuFilterView.m in Sources */,
  2008. 9AD346112A08D60F005CA070 /* ZFPlayerControlView.m in Sources */,
  2009. 9AD345B12A08D5ED005CA070 /* GoodsBannerCollectionViewCell.m in Sources */,
  2010. 9AD345B22A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m in Sources */,
  2011. 814F5CEF2A11B1F2003847A9 /* ASUserCenterViewController.m in Sources */,
  2012. 81717D1C2A3C4AE000648139 /* KWSearchSubTypeModel.m in Sources */,
  2013. 8160201F2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m in Sources */,
  2014. 816020042A2DCC0200E4A8F1 /* ASHomeBannerModel.m in Sources */,
  2015. 81717D3F2A3D5EAD00648139 /* ASDefualtAlertV.m in Sources */,
  2016. 819900222A020A6F006FE68C /* LYTools.m in Sources */,
  2017. 816020072A2DD4FB00E4A8F1 /* Target_Home.m in Sources */,
  2018. 816020132A2EE5A200E4A8F1 /* ASCategaryCollectCell.m in Sources */,
  2019. 81C796422A551FE9003083B8 /* KWTextField.m in Sources */,
  2020. 9AD346012A08D60F005CA070 /* ZFFloatView.m in Sources */,
  2021. 9AD345F92A08D60F005CA070 /* ZFPlayerController.m in Sources */,
  2022. 9AD345AC2A08D59A005CA070 /* WKM_goodsBanner.m in Sources */,
  2023. 81EC476F2A33F82C00516573 /* ASHomeImgCell.m in Sources */,
  2024. 81717D3A2A3D322700648139 /* KWHisAndHotWordsView.m in Sources */,
  2025. 81DFA5592A4681E900DA708B /* ASPointEranCell.m in Sources */,
  2026. 81354BE72A28786C0082C93A /* ASProductBaseModel.m in Sources */,
  2027. 9A8DD8C52A0B8F1700573324 /* As_GoodsSizeC.m in Sources */,
  2028. 8134C1BD2A1372D5006EB0EC /* ASUserCenterTableHeadView.m in Sources */,
  2029. 9AD346002A08D60F005CA070 /* ZFPresentTransition.m in Sources */,
  2030. 81717D112A3C4AE000648139 /* KWSearchViewModel.m in Sources */,
  2031. 9A337E3B2A04EE1A00D058A5 /* BViewController.m in Sources */,
  2032. 9AD345A72A08D571005CA070 /* TYPageControl.m in Sources */,
  2033. 81354C0A2A289C350082C93A /* KWScrollOffsetView.m in Sources */,
  2034. 81354C032A289A070082C93A /* HomeFilterModel.m in Sources */,
  2035. 81717CAB2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m in Sources */,
  2036. 81717D352A3D322700648139 /* KWHisKeyWordCell.m in Sources */,
  2037. 9AD364D12A05EC7800452C7A /* AS_TabBarViewController.m in Sources */,
  2038. 9AD345FB2A08D60F005CA070 /* ZFOrientationObserver.m in Sources */,
  2039. 9AD346192A08D679005CA070 /* GoodsBannerModel.m in Sources */,
  2040. 81717C942A3BE4E000648139 /* ASProductListSortFilterCell.m in Sources */,
  2041. 9AD346082A08D60F005CA070 /* ZFIJKPlayerManager.m in Sources */,
  2042. 9AD3459E2A08D545005CA070 /* GoodsDetailSrcView.m in Sources */,
  2043. 81DFA56D2A46D86500DA708B /* ASPointDetailModel.m in Sources */,
  2044. 9AD346022A08D60F005CA070 /* ZFPlayerView.m in Sources */,
  2045. 81DFA55D2A46C46D00DA708B /* ASWebViewController.m in Sources */,
  2046. 81BEA6832A2D7CF3009D36C4 /* UITableView+ASBase.m in Sources */,
  2047. 81C7963A2A5517F7003083B8 /* KWSwitchButton.m in Sources */,
  2048. 81717C992A3BF1DD00648139 /* ASHomeAlertWindow.m in Sources */,
  2049. 81C7962B2A539E80003083B8 /* ASMessageListViewController.m in Sources */,
  2050. 81C3B44429F6612800D79294 /* ASBaseViewController.m in Sources */,
  2051. 81C3266A2A36F035002EF442 /* ASProductListViewModel.m in Sources */,
  2052. 815DA3DF2A396BD300616EF7 /* ASMoreBtCell.m in Sources */,
  2053. 9A1247942A1B082300126226 /* Fuction_Tool.m in Sources */,
  2054. 81E5EE942A4A760D0075695F /* ASVipCenterLineItemView.m in Sources */,
  2055. 81601FFF2A2DC8E700E4A8F1 /* ASHomeBannerCell.m in Sources */,
  2056. 81717D132A3C4AE000648139 /* KWSearchViewController.m in Sources */,
  2057. 9AD6A5442A1218E8001DE3D9 /* PassWordSecureBtnV.m in Sources */,
  2058. 811F42462A40533C00DA68F1 /* ASPointsHomeViewController.m in Sources */,
  2059. 81C796372A5517B0003083B8 /* ASSettingListCell.m in Sources */,
  2060. 81717D392A3D322700648139 /* KWCustomLayout.m in Sources */,
  2061. 81DFA5602A46CC8E00DA708B /* CTMediator+ASWebView.m in Sources */,
  2062. 81C3B44A29F6661500D79294 /* ASBaseNavController.m in Sources */,
  2063. 9AD3460C2A08D60F005CA070 /* ZFVolumeBrightnessView.m in Sources */,
  2064. 81DFA5752A47D97C00DA708B /* ASCouponsListViewController.m in Sources */,
  2065. 9AD346072A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m in Sources */,
  2066. 81C796462A5542B2003083B8 /* ASHelpListViewController.m in Sources */,
  2067. 8160200D2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m in Sources */,
  2068. 81DFA5712A46D95400DA708B /* ASPointDetailCell.m in Sources */,
  2069. 9ACBEC2B2A14CCA300A8F97A /* ThirdPartService.m in Sources */,
  2070. 81C3265F2A36B284002EF442 /* ASProductListViewController.m in Sources */,
  2071. 9AD346142A08D60F005CA070 /* ZFSpeedLoadingView.m in Sources */,
  2072. 81E5EE902A498FC90075695F /* ASVipCenterViewController.m in Sources */,
  2073. 81C7963F2A551FB0003083B8 /* ASInfomationSetController.m in Sources */,
  2074. 9AD346062A08D60F005CA070 /* ZFReachabilityManager.m in Sources */,
  2075. 81717CA52A3C0A5000648139 /* KWProductFilterItemCell.m in Sources */,
  2076. 9AD345FE2A08D60F005CA070 /* UIScrollView+ZFPlayer.m in Sources */,
  2077. 9A65DE512A132FB700BB1269 /* LoginThirdAuthV.m in Sources */,
  2078. 81717D142A3C4AE000648139 /* APCategoryViewController.m in Sources */,
  2079. 9A788C442A08A663003E0025 /* Target_Goods.m in Sources */,
  2080. 81EC47692A33073100516573 /* ASHomeNewInProductItemView.m in Sources */,
  2081. 81717D212A3C4AE000648139 /* KWSearchSubTypeTableView.m in Sources */,
  2082. 9AD3461D2A08D6F0005CA070 /* GoodsInformationM.m in Sources */,
  2083. 9A1247972A1B0A2800126226 /* AS_ForgotC.m in Sources */,
  2084. 81EC476C2A33131100516573 /* ASHomeNewInSubCollectCell.m in Sources */,
  2085. 81DFA5632A46CD6000DA708B /* Target_WebView.m in Sources */,
  2086. 81354BF52A287BED0082C93A /* KWMineHomeOrderSubView.m in Sources */,
  2087. 9AD345A82A08D571005CA070 /* TYCyclePagerView.m in Sources */,
  2088. 9AD346202A08E30E005CA070 /* SelectVCollectionViewCell.m in Sources */,
  2089. 81601FFB2A2DC78300E4A8F1 /* WMZBannerOverLayout.m in Sources */,
  2090. 81354C002A2899CB0082C93A /* KWMineMoreProductModel.m in Sources */,
  2091. 81717D362A3D322700648139 /* KWLenovoWordListView.m in Sources */,
  2092. 8134C1BA2A1372A7006EB0EC /* ASUserCenterEnterItemV.m in Sources */,
  2093. 9AD3460A2A08D60F005CA070 /* ZFUtilities.m in Sources */,
  2094. 81354BFC2A28998B0082C93A /* KWMineMoreProductTypeCell.m in Sources */,
  2095. 9AD6A5492A1237D0001DE3D9 /* Target_Login.m in Sources */,
  2096. 9A337E3A2A04EE1A00D058A5 /* Target_B.m in Sources */,
  2097. 8186564D2A5BF6010049D861 /* ASCategoryViewController.m in Sources */,
  2098. 9AD6A5452A1218E8001DE3D9 /* EamilTFmatchV.m in Sources */,
  2099. 9AD345FF2A08D60F005CA070 /* ZFPlayerNotification.m in Sources */,
  2100. 81717D282A3C55CC00648139 /* CTMediator+Categorys.m in Sources */,
  2101. 9AD346092A08D60F005CA070 /* ZFAVPlayerManager.m in Sources */,
  2102. 8134C1B42A1358F3006EB0EC /* ASSginView.m in Sources */,
  2103. 9AD346122A08D60F005CA070 /* ZFSmallFloatControlView.m in Sources */,
  2104. 81EC47752A3423FC00516573 /* ASHomeLookingCell.m in Sources */,
  2105. 9AD3460E2A08D60F005CA070 /* ZFNetworkSpeedMonitor.m in Sources */,
  2106. 9AD346052A08D60F005CA070 /* ZFLandscapeViewController.m in Sources */,
  2107. 81717D222A3C4AE000648139 /* KWSearchMainTypeCell.m in Sources */,
  2108. 81DFA5672A46D60900DA708B /* ASPointDetailViewController.m in Sources */,
  2109. 81601FF62A2DC78300E4A8F1 /* WMZBannerFlowLayout.m in Sources */,
  2110. 814F5CF52A11B37E003847A9 /* ASUserAvaterView.m in Sources */,
  2111. 81C796342A551643003083B8 /* ASSettingViewController.m in Sources */,
  2112. 81354C0B2A289C350082C93A /* KWTimeEndView.m in Sources */,
  2113. 9AD346032A08D60F005CA070 /* ZFPortraitViewController.m in Sources */,
  2114. 81354BED2A287AB50082C93A /* KWMineHomeOrderHeadView.m in Sources */,
  2115. 81717D102A3C4AE000648139 /* KWHisAndHotWordsViewModel.m in Sources */,
  2116. 9AD3460D2A08D60F005CA070 /* ZFLandScapeControlView.m in Sources */,
  2117. 9AD364C62A05E73E00452C7A /* AS_GoodsDetailsC.m in Sources */,
  2118. 816020102A2EE55F00E4A8F1 /* ASCategaryListCell.m in Sources */,
  2119. 9AD3460B2A08D60F005CA070 /* UIView+ZFFrame.m in Sources */,
  2120. 81E257FD2A12340E004EEF71 /* ASEnterItemV.m in Sources */,
  2121. 81C3B45529F66C1700D79294 /* UIView+PublicInit.m in Sources */,
  2122. 8134C1C52A145172006EB0EC /* ASProductItemView.m in Sources */,
  2123. 9A5C64582A12064300CBB185 /* AS_LoginC.m in Sources */,
  2124. 81717D122A3C4AE000648139 /* APOnlySearchViewController.m in Sources */,
  2125. 9AD345FD2A08D60F005CA070 /* ZFPersentInteractiveTransition.m in Sources */,
  2126. 8160200A2A2DD59E00E4A8F1 /* CTMediator+Home.m in Sources */,
  2127. 81717C9C2A3BF1F100648139 /* ASHomeAlertViewController.m in Sources */,
  2128. 9AD345FC2A08D60F005CA070 /* ZFPlayerLogManager.m in Sources */,
  2129. 81354C0E2A297D6A0082C93A /* HomeFlashDealSubCollectCell.m in Sources */,
  2130. 81354BFD2A28998B0082C93A /* KWMineMoreProductsCell.m in Sources */,
  2131. 9ACBEC252A14707400A8F97A /* AS_SignUpC.m in Sources */,
  2132. 81717D1F2A3C4AE000648139 /* KWMoneyTypeHeadView.m in Sources */,
  2133. 81EC47782A3426CE00516573 /* ASHomeLookingCollCell.m in Sources */,
  2134. 81DFA5782A47F28D00DA708B /* ASCouponListCell.m in Sources */,
  2135. 8160201C2A2F101C00E4A8F1 /* ASHomeTipCell.m in Sources */,
  2136. 81717D1E2A3C4AE000648139 /* KWSearchMainTypeTableView.m in Sources */,
  2137. 81EC47662A33035D00516573 /* ASHomeNewInCellTableViewCell.m in Sources */,
  2138. 9AD346162A08D60F005CA070 /* UIImageView+ZFCache.m in Sources */,
  2139. 81717D1D2A3C4AE000648139 /* KWSearchSubTypeHeadView.m in Sources */,
  2140. 9AD345A92A08D571005CA070 /* TYCyclePagerTransformLayout.m in Sources */,
  2141. 815DA3D92A39575100616EF7 /* ASProductListImageCell.m in Sources */,
  2142. 815DA3DC2A39625200616EF7 /* ASProductListTypeDesCell.m in Sources */,
  2143. 81932E2B29F7539B007C37AF /* UIColor+AS.m in Sources */,
  2144. 9ACBEC282A1472AF00A8F97A /* LoginSignUpV.m in Sources */,
  2145. 9AD346152A08D60F005CA070 /* ZFPortraitControlView.m in Sources */,
  2146. 8186564A2A5BE9790049D861 /* ASSearchViewController.m in Sources */,
  2147. );
  2148. runOnlyForDeploymentPostprocessing = 0;
  2149. };
  2150. 817244B629F3B81C005FA9C9 /* Sources */ = {
  2151. isa = PBXSourcesBuildPhase;
  2152. buildActionMask = 2147483647;
  2153. files = (
  2154. 817244BE29F3B81C005FA9C9 /* NotificationService.m in Sources */,
  2155. );
  2156. runOnlyForDeploymentPostprocessing = 0;
  2157. };
  2158. /* End PBXSourcesBuildPhase section */
  2159. /* Begin PBXTargetDependency section */
  2160. 817244C129F3B81C005FA9C9 /* PBXTargetDependency */ = {
  2161. isa = PBXTargetDependency;
  2162. target = 817244B929F3B81C005FA9C9 /* NotificationServiceExtension */;
  2163. targetProxy = 817244C029F3B81C005FA9C9 /* PBXContainerItemProxy */;
  2164. };
  2165. /* End PBXTargetDependency section */
  2166. /* Begin PBXVariantGroup section */
  2167. 817244AB29F3B2EE005FA9C9 /* LaunchScreen.storyboard */ = {
  2168. isa = PBXVariantGroup;
  2169. children = (
  2170. 817244AC29F3B2EE005FA9C9 /* Base */,
  2171. );
  2172. name = LaunchScreen.storyboard;
  2173. sourceTree = "<group>";
  2174. };
  2175. /* End PBXVariantGroup section */
  2176. /* Begin XCBuildConfiguration section */
  2177. 817244B129F3B2EE005FA9C9 /* Debug */ = {
  2178. isa = XCBuildConfiguration;
  2179. buildSettings = {
  2180. ALWAYS_SEARCH_USER_PATHS = NO;
  2181. CLANG_ANALYZER_NONNULL = YES;
  2182. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2183. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2184. CLANG_ENABLE_MODULES = YES;
  2185. CLANG_ENABLE_OBJC_ARC = YES;
  2186. CLANG_ENABLE_OBJC_WEAK = YES;
  2187. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2188. CLANG_WARN_BOOL_CONVERSION = YES;
  2189. CLANG_WARN_COMMA = YES;
  2190. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2191. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2192. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2193. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2194. CLANG_WARN_EMPTY_BODY = YES;
  2195. CLANG_WARN_ENUM_CONVERSION = YES;
  2196. CLANG_WARN_INFINITE_RECURSION = YES;
  2197. CLANG_WARN_INT_CONVERSION = YES;
  2198. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2199. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2200. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2201. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2202. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2203. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2204. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2205. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2206. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2207. CLANG_WARN_UNREACHABLE_CODE = YES;
  2208. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2209. COPY_PHASE_STRIP = NO;
  2210. DEBUG_INFORMATION_FORMAT = dwarf;
  2211. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2212. ENABLE_TESTABILITY = YES;
  2213. GCC_C_LANGUAGE_STANDARD = gnu11;
  2214. GCC_DYNAMIC_NO_PIC = NO;
  2215. GCC_NO_COMMON_BLOCKS = YES;
  2216. GCC_OPTIMIZATION_LEVEL = 0;
  2217. GCC_PREPROCESSOR_DEFINITIONS = (
  2218. "DEBUG=1",
  2219. "$(inherited)",
  2220. );
  2221. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2222. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2223. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2224. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2225. GCC_WARN_UNUSED_FUNCTION = YES;
  2226. GCC_WARN_UNUSED_VARIABLE = YES;
  2227. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  2228. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2229. MTL_FAST_MATH = YES;
  2230. ONLY_ACTIVE_ARCH = YES;
  2231. SDKROOT = iphoneos;
  2232. };
  2233. name = Debug;
  2234. };
  2235. 817244B229F3B2EE005FA9C9 /* Release */ = {
  2236. isa = XCBuildConfiguration;
  2237. buildSettings = {
  2238. ALWAYS_SEARCH_USER_PATHS = NO;
  2239. CLANG_ANALYZER_NONNULL = YES;
  2240. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2241. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2242. CLANG_ENABLE_MODULES = YES;
  2243. CLANG_ENABLE_OBJC_ARC = YES;
  2244. CLANG_ENABLE_OBJC_WEAK = YES;
  2245. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2246. CLANG_WARN_BOOL_CONVERSION = YES;
  2247. CLANG_WARN_COMMA = YES;
  2248. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2249. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2250. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2251. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2252. CLANG_WARN_EMPTY_BODY = YES;
  2253. CLANG_WARN_ENUM_CONVERSION = YES;
  2254. CLANG_WARN_INFINITE_RECURSION = YES;
  2255. CLANG_WARN_INT_CONVERSION = YES;
  2256. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2257. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2258. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2259. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2260. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2261. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2262. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2263. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2264. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2265. CLANG_WARN_UNREACHABLE_CODE = YES;
  2266. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2267. COPY_PHASE_STRIP = NO;
  2268. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2269. ENABLE_NS_ASSERTIONS = NO;
  2270. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2271. GCC_C_LANGUAGE_STANDARD = gnu11;
  2272. GCC_NO_COMMON_BLOCKS = YES;
  2273. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2274. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2275. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2276. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2277. GCC_WARN_UNUSED_FUNCTION = YES;
  2278. GCC_WARN_UNUSED_VARIABLE = YES;
  2279. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  2280. MTL_ENABLE_DEBUG_INFO = NO;
  2281. MTL_FAST_MATH = YES;
  2282. SDKROOT = iphoneos;
  2283. VALIDATE_PRODUCT = YES;
  2284. };
  2285. name = Release;
  2286. };
  2287. 817244B429F3B2EE005FA9C9 /* Debug */ = {
  2288. isa = XCBuildConfiguration;
  2289. baseConfigurationReference = 3C97D3C0DD5DB3DCA3FF46B8 /* Pods-Asteria.debug.xcconfig */;
  2290. buildSettings = {
  2291. APPLICATION_EXTENSION_API_ONLY = NO;
  2292. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2293. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2294. CODE_SIGN_ENTITLEMENTS = Asteria/Asteria.entitlements;
  2295. CODE_SIGN_STYLE = Automatic;
  2296. CURRENT_PROJECT_VERSION = 1;
  2297. DEVELOPMENT_TEAM = BUGL3DWWB7;
  2298. GCC_PREFIX_HEADER = "$(SRCROOT)/Asteria/PreFixHeader.h";
  2299. GENERATE_INFOPLIST_FILE = YES;
  2300. INFOPLIST_FILE = Asteria/Info.plist;
  2301. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  2302. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  2303. INFOPLIST_KEY_UIMainStoryboardFile = "";
  2304. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  2305. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  2306. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2307. LD_RUNPATH_SEARCH_PATHS = (
  2308. "$(inherited)",
  2309. "@executable_path/Frameworks",
  2310. );
  2311. MARKETING_VERSION = 1.0;
  2312. PRODUCT_BUNDLE_IDENTIFIER = com.info.LYAsteria.Asteria;
  2313. PRODUCT_NAME = "$(TARGET_NAME)";
  2314. SWIFT_EMIT_LOC_STRINGS = YES;
  2315. TARGETED_DEVICE_FAMILY = "1,2";
  2316. };
  2317. name = Debug;
  2318. };
  2319. 817244B529F3B2EE005FA9C9 /* Release */ = {
  2320. isa = XCBuildConfiguration;
  2321. baseConfigurationReference = 2A57FEE3AE67604607B5A6DE /* Pods-Asteria.release.xcconfig */;
  2322. buildSettings = {
  2323. APPLICATION_EXTENSION_API_ONLY = NO;
  2324. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2325. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2326. CODE_SIGN_ENTITLEMENTS = Asteria/Asteria.entitlements;
  2327. CODE_SIGN_STYLE = Automatic;
  2328. CURRENT_PROJECT_VERSION = 1;
  2329. DEVELOPMENT_TEAM = BUGL3DWWB7;
  2330. GCC_PREFIX_HEADER = "$(SRCROOT)/Asteria/PreFixHeader.h";
  2331. GENERATE_INFOPLIST_FILE = YES;
  2332. INFOPLIST_FILE = Asteria/Info.plist;
  2333. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  2334. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  2335. INFOPLIST_KEY_UIMainStoryboardFile = "";
  2336. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  2337. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  2338. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2339. LD_RUNPATH_SEARCH_PATHS = (
  2340. "$(inherited)",
  2341. "@executable_path/Frameworks",
  2342. );
  2343. MARKETING_VERSION = 1.0;
  2344. PRODUCT_BUNDLE_IDENTIFIER = com.info.LYAsteria.Asteria;
  2345. PRODUCT_NAME = "$(TARGET_NAME)";
  2346. SWIFT_EMIT_LOC_STRINGS = YES;
  2347. TARGETED_DEVICE_FAMILY = "1,2";
  2348. };
  2349. name = Release;
  2350. };
  2351. 817244C429F3B81C005FA9C9 /* Debug */ = {
  2352. isa = XCBuildConfiguration;
  2353. baseConfigurationReference = F28014612B0095476AA5BC1B /* Pods-Asteria-NotificationServiceExtension.debug.xcconfig */;
  2354. buildSettings = {
  2355. CODE_SIGN_STYLE = Automatic;
  2356. CURRENT_PROJECT_VERSION = 1;
  2357. DEVELOPMENT_TEAM = BUGL3DWWB7;
  2358. GENERATE_INFOPLIST_FILE = YES;
  2359. INFOPLIST_FILE = NotificationServiceExtension/Info.plist;
  2360. INFOPLIST_KEY_CFBundleDisplayName = NotificationServiceExtension;
  2361. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  2362. LD_RUNPATH_SEARCH_PATHS = (
  2363. "$(inherited)",
  2364. "@executable_path/Frameworks",
  2365. "@executable_path/../../Frameworks",
  2366. );
  2367. MARKETING_VERSION = 1.0;
  2368. PRODUCT_BUNDLE_IDENTIFIER = com.info.LYAsteria.Asteria.NotificationServiceExtension;
  2369. PRODUCT_NAME = "$(TARGET_NAME)";
  2370. SKIP_INSTALL = YES;
  2371. SWIFT_EMIT_LOC_STRINGS = YES;
  2372. TARGETED_DEVICE_FAMILY = "1,2";
  2373. };
  2374. name = Debug;
  2375. };
  2376. 817244C529F3B81C005FA9C9 /* Release */ = {
  2377. isa = XCBuildConfiguration;
  2378. baseConfigurationReference = 3757F38E691966CC4F482D46 /* Pods-Asteria-NotificationServiceExtension.release.xcconfig */;
  2379. buildSettings = {
  2380. CODE_SIGN_STYLE = Automatic;
  2381. CURRENT_PROJECT_VERSION = 1;
  2382. DEVELOPMENT_TEAM = BUGL3DWWB7;
  2383. GENERATE_INFOPLIST_FILE = YES;
  2384. INFOPLIST_FILE = NotificationServiceExtension/Info.plist;
  2385. INFOPLIST_KEY_CFBundleDisplayName = NotificationServiceExtension;
  2386. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  2387. LD_RUNPATH_SEARCH_PATHS = (
  2388. "$(inherited)",
  2389. "@executable_path/Frameworks",
  2390. "@executable_path/../../Frameworks",
  2391. );
  2392. MARKETING_VERSION = 1.0;
  2393. PRODUCT_BUNDLE_IDENTIFIER = com.info.LYAsteria.Asteria.NotificationServiceExtension;
  2394. PRODUCT_NAME = "$(TARGET_NAME)";
  2395. SKIP_INSTALL = YES;
  2396. SWIFT_EMIT_LOC_STRINGS = YES;
  2397. TARGETED_DEVICE_FAMILY = "1,2";
  2398. };
  2399. name = Release;
  2400. };
  2401. /* End XCBuildConfiguration section */
  2402. /* Begin XCConfigurationList section */
  2403. 8172449529F3B2EC005FA9C9 /* Build configuration list for PBXProject "Asteria" */ = {
  2404. isa = XCConfigurationList;
  2405. buildConfigurations = (
  2406. 817244B129F3B2EE005FA9C9 /* Debug */,
  2407. 817244B229F3B2EE005FA9C9 /* Release */,
  2408. );
  2409. defaultConfigurationIsVisible = 0;
  2410. defaultConfigurationName = Release;
  2411. };
  2412. 817244B329F3B2EE005FA9C9 /* Build configuration list for PBXNativeTarget "Asteria" */ = {
  2413. isa = XCConfigurationList;
  2414. buildConfigurations = (
  2415. 817244B429F3B2EE005FA9C9 /* Debug */,
  2416. 817244B529F3B2EE005FA9C9 /* Release */,
  2417. );
  2418. defaultConfigurationIsVisible = 0;
  2419. defaultConfigurationName = Release;
  2420. };
  2421. 817244C629F3B81C005FA9C9 /* Build configuration list for PBXNativeTarget "NotificationServiceExtension" */ = {
  2422. isa = XCConfigurationList;
  2423. buildConfigurations = (
  2424. 817244C429F3B81C005FA9C9 /* Debug */,
  2425. 817244C529F3B81C005FA9C9 /* Release */,
  2426. );
  2427. defaultConfigurationIsVisible = 0;
  2428. defaultConfigurationName = Release;
  2429. };
  2430. /* End XCConfigurationList section */
  2431. };
  2432. rootObject = 8172449229F3B2EC005FA9C9 /* Project object */;
  2433. }