project.pbxproj 337 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 51;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 0A110C4CD931995B8E8BF7C5 /* Pods_RainbowPlanet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */; };
  10. A7003EA3229192CC004E51FB /* PayManagerPay.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7003EA2229192CC004E51FB /* PayManagerPay.swift */; };
  11. A70B2C042283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */; };
  12. A70B2C072284305400B2449F /* ProductModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C062284305400B2449F /* ProductModel.swift */; };
  13. A70B2C102286A3BC00B2449F /* ProductDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */; };
  14. A70B2C1D2286B52400B2449F /* ProductDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */; };
  15. A70B2C222286BF5900B2449F /* ProductDetailTableViewHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */; };
  16. A70B2C252286C03800B2449F /* NXLPageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C242286C03800B2449F /* NXLPageControl.swift */; };
  17. A70B2C272286C5D600B2449F /* ProductDetailFSPagerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */; };
  18. A70B2C292286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */; };
  19. A70B2C3322880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3222880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift */; };
  20. A70B2C35228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */; };
  21. A70B2C372288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C362288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift */; };
  22. A70B2C3E228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */; };
  23. A70B2C402288312900B2449F /* ProductDetailSectionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */; };
  24. A70B2C4322883B4E00B2449F /* ProductDetailShopTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */; };
  25. A70B2C46228840B100B2449F /* ProductDetailHotSellTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */; };
  26. A70B2C492288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */; };
  27. A70B2C4C228845E800B2449F /* ProductDetailParameterTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */; };
  28. A70B2C4E22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */; };
  29. A70B2C532288584500B2449F /* ShareView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C522288584500B2449F /* ShareView.swift */; };
  30. A70B2C5522885AF500B2449F /* ShareCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */; };
  31. A70B2C5A22886ADF00B2449F /* ShopViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5922886ADF00B2449F /* ShopViewController.swift */; };
  32. A70B2C5C22886B0000B2449F /* ShopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5B22886B0000B2449F /* ShopView.swift */; };
  33. A70B2C5E22886F4D00B2449F /* ShopViewTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */; };
  34. A70B2C60228870CE00B2449F /* ShopSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */; };
  35. A70B2C64228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */; };
  36. A70B2C6722887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */; };
  37. A70B2C6B2288815300B2449F /* PickHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6A2288815300B2449F /* PickHeaderView.swift */; };
  38. A70B2C6D2288815E00B2449F /* PickViewOneComponentsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */; };
  39. A70B2C732289019200B2449F /* ProductDetailSkuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C722289019200B2449F /* ProductDetailSkuView.swift */; };
  40. A70B2C75228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C74228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift */; };
  41. A70B842E228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B842D228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift */; };
  42. A70B8430228FF6D400882BC5 /* ProductCartCountModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B842F228FF6D400882BC5 /* ProductCartCountModel.swift */; };
  43. A70B843422911AF600882BC5 /* ProductDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B843322911AF600882BC5 /* ProductDetailView.swift */; };
  44. A70EBBC022561179000AD74F /* Extension+UITableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70EBBBF22561179000AD74F /* Extension+UITableView.swift */; };
  45. A7146349228EFCE20066099B /* ORSKUDataFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = A7146347228EFCE20066099B /* ORSKUDataFilter.m */; };
  46. A715333E22980CC60017C861 /* ConfigModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A715333D22980CC60017C861 /* ConfigModel.swift */; };
  47. A71738A622897892000AEA6A /* SwiftMoyaServiceShopApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71738A522897892000AEA6A /* SwiftMoyaServiceShopApi.swift */; };
  48. A71738A822897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71738A722897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift */; };
  49. A71738AB22898660000AEA6A /* ShopModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71738AA22898660000AEA6A /* ShopModel.swift */; };
  50. A71738AD228AB7B2000AEA6A /* ProductCommentListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71738AC228AB7B2000AEA6A /* ProductCommentListModel.swift */; };
  51. A7190167227543DB00104A50 /* baidu_cityid_rel.json in Resources */ = {isa = PBXBuildFile; fileRef = A7190166227543DB00104A50 /* baidu_cityid_rel.json */; };
  52. A71901692275464000104A50 /* ProvinceCityAreaView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71901682275464000104A50 /* ProvinceCityAreaView.swift */; };
  53. A719016B22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */; };
  54. A71901752275F71F00104A50 /* BaiduToCityModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71901742275F71F00104A50 /* BaiduToCityModel.swift */; };
  55. A719EE6E22AF441F001AAC98 /* CommunityViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A719EE6D22AF441F001AAC98 /* CommunityViewController.swift */; };
  56. A71AA50C2272126A008FF1A5 /* EditAddressFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */; };
  57. A71AA5102272156A008FF1A5 /* ExpressAddressListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */; };
  58. A71AA513227215B5008FF1A5 /* ExpressAddressListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */; };
  59. A71AA5152272160A008FF1A5 /* ExpressAddressListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */; };
  60. A71AA519227219D7008FF1A5 /* EditExpressAddressViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */; };
  61. A71AA51C227219EF008FF1A5 /* EditExpressAddressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */; };
  62. A71AA51F22729F35008FF1A5 /* AuthorizationSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */; };
  63. A71AA5212272E527008FF1A5 /* Extension+UINavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */; };
  64. A71AA52622732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */; };
  65. A71AA52822732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */; };
  66. A71AF0A6226EDDC8001730FE /* SearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0A5226EDDC8001730FE /* SearchViewController.swift */; };
  67. A71AF0AA226EDDF5001730FE /* SearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0A9226EDDF5001730FE /* SearchView.swift */; };
  68. A71AF0AC226EDE37001730FE /* SearchNavigationbarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */; };
  69. A71AF0AE226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */; };
  70. A71AF0B0226EF185001730FE /* SearchCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */; };
  71. A71AF0B6226EF99A001730FE /* SearchResultViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */; };
  72. A71AF0B8226EF9EC001730FE /* SearchResultNavigationbarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */; };
  73. A71AF0BA226F00F8001730FE /* SearchResultView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B9226F00F8001730FE /* SearchResultView.swift */; };
  74. A71AF0BC226F099B001730FE /* ProductHBigTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */; };
  75. A71AF0BE226F1792001730FE /* ShoppingMallModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */; };
  76. A71D2A602265673A00A55D16 /* RegisterLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */; };
  77. A7274C50228EE5F0000E3A07 /* PhotoAndCameraManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C4F228EE5EF000E3A07 /* PhotoAndCameraManager.swift */; };
  78. A7274C59228EE636000E3A07 /* LBXScanNetAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C52228EE635000E3A07 /* LBXScanNetAnimation.swift */; };
  79. A7274C5A228EE636000E3A07 /* LBXScanView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C53228EE635000E3A07 /* LBXScanView.swift */; };
  80. A7274C5B228EE636000E3A07 /* LBXScanViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C54228EE635000E3A07 /* LBXScanViewController.swift */; };
  81. A7274C5C228EE636000E3A07 /* LBXScanLineAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C55228EE635000E3A07 /* LBXScanLineAnimation.swift */; };
  82. A7274C5D228EE636000E3A07 /* LBXScanViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C56228EE635000E3A07 /* LBXScanViewStyle.swift */; };
  83. A7274C5E228EE636000E3A07 /* LBXPermissions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C57228EE635000E3A07 /* LBXPermissions.swift */; };
  84. A7274C5F228EE636000E3A07 /* LBXScanWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C58228EE635000E3A07 /* LBXScanWrapper.swift */; };
  85. A72843FC224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */; };
  86. A7284401224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */; };
  87. A7284404224DBFBD00F82F30 /* UserModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284403224DBFBD00F82F30 /* UserModel.swift */; };
  88. A7284440224DFACD00F82F30 /* InfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A728443F224DFACD00F82F30 /* InfoModel.swift */; };
  89. A7284A522252EE9A000BAEC4 /* RootModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A512252EE9A000BAEC4 /* RootModel.swift */; };
  90. A7284A542252FB5C000BAEC4 /* PaginationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A532252FB5C000BAEC4 /* PaginationModel.swift */; };
  91. A7284A7322546460000BAEC4 /* SwiftMoyaServicePayApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */; };
  92. A7284A75225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */; };
  93. A7284A7722547333000BAEC4 /* AlipayResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A7622547333000BAEC4 /* AlipayResultModel.swift */; };
  94. A729B5A82266F2E0004AE098 /* AlertSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5A72266F2E0004AE098 /* AlertSheetView.swift */; };
  95. A729B5AA2266F6FD004AE098 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */; };
  96. A729B5AD2266FF45004AE098 /* BindPhoneNumberView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */; };
  97. A729B5B022671310004AE098 /* MobileLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5AF22671310004AE098 /* MobileLoginView.swift */; };
  98. A729B5B42267254B004AE098 /* PasswordLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */; };
  99. A729B5B72267270B004AE098 /* PasswordLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5B62267270B004AE098 /* PasswordLoginView.swift */; };
  100. A72A726722321DBD00B21995 /* LocationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726322321DBD00B21995 /* LocationModel.swift */; };
  101. A72A726822321DBD00B21995 /* UMManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726522321DBD00B21995 /* UMManager.swift */; };
  102. A72A72A922321DE000B21995 /* NumberKeyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727222321DDE00B21995 /* NumberKeyboard.swift */; };
  103. A72A72AA22321DE000B21995 /* Log.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727422321DDE00B21995 /* Log.swift */; };
  104. A72A72AB22321DE000B21995 /* SwiftProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */; };
  105. A72A72AC22321DE000B21995 /* Regex.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727822321DDF00B21995 /* Regex.swift */; };
  106. A72A72AE22321DE000B21995 /* CountdownButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727C22321DDF00B21995 /* CountdownButton.swift */; };
  107. A72A72AF22321DE000B21995 /* AppInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727E22321DDF00B21995 /* AppInfo.swift */; };
  108. A72A72B022321DE000B21995 /* CGView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728022321DDF00B21995 /* CGView.swift */; };
  109. A72A72B422321DE000B21995 /* Extension+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728C22321DE000B21995 /* Extension+UIImage.swift */; };
  110. A72A72B522321DE000B21995 /* Extension+UITextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728D22321DE000B21995 /* Extension+UITextView.swift */; };
  111. A72A72B622321DE000B21995 /* Extension+NSRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728E22321DE000B21995 /* Extension+NSRange.swift */; };
  112. A72A72B722321DE000B21995 /* Extension+NSMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */; };
  113. A72A72B822321DE000B21995 /* Extension+UserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729022321DE000B21995 /* Extension+UserDefaults.swift */; };
  114. A72A72B922321DE000B21995 /* Extension+Array.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729122321DE000B21995 /* Extension+Array.swift */; };
  115. A72A72BA22321DE000B21995 /* Extension+String.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729222321DE000B21995 /* Extension+String.swift */; };
  116. A72A72BB22321DE000B21995 /* Extension+UILabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729322321DE000B21995 /* Extension+UILabel.swift */; };
  117. A72A72BC22321DE000B21995 /* Extension+UIAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729422321DE000B21995 /* Extension+UIAlertController.swift */; };
  118. A72A72BD22321DE000B21995 /* Extension+UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729722321DE000B21995 /* Extension+UIColor.swift */; };
  119. A72A72BE22321DE000B21995 /* Extension+RxTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729822321DE000B21995 /* Extension+RxTimer.swift */; };
  120. A72A72BF22321DE000B21995 /* Extension+UIButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729922321DE000B21995 /* Extension+UIButton.swift */; };
  121. A72A72C022321DE000B21995 /* Extension+UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729A22321DE000B21995 /* Extension+UIView.swift */; };
  122. A72A72C322321DE000B21995 /* Extension+Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729D22321DE000B21995 /* Extension+Date.swift */; };
  123. A72A72C422321DE000B21995 /* Extension+CAGradientLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */; };
  124. A72A72C522321DE000B21995 /* WKWebViewConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72A022321DE000B21995 /* WKWebViewConfig.swift */; };
  125. A72A72C622321DE000B21995 /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72A122321DE000B21995 /* WebView.swift */; };
  126. A72A72CF22321E2700B21995 /* NotificationCenterMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */; };
  127. A72A72D022321E2700B21995 /* FontMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C822321E2500B21995 /* FontMacro.swift */; };
  128. A72A72D122321E2700B21995 /* HTMLURLMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C922321E2600B21995 /* HTMLURLMacro.swift */; };
  129. A72A72D222321E2700B21995 /* Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CA22321E2600B21995 /* Common.swift */; };
  130. A72A72D522321E2700B21995 /* ColorMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CD22321E2600B21995 /* ColorMacro.swift */; };
  131. A72A72F022321E8800B21995 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72EF22321E8800B21995 /* CoreMotion.framework */; };
  132. A72A72F222321E9300B21995 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F122321E9300B21995 /* CFNetwork.framework */; };
  133. A72A72F422321E9A00B21995 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F322321E9A00B21995 /* Foundation.framework */; };
  134. A72A72F622321EA000B21995 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F522321EA000B21995 /* UIKit.framework */; };
  135. A72A72F822321EB600B21995 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F722321EB600B21995 /* CoreGraphics.framework */; };
  136. A72A72FA22321EBF00B21995 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F922321EBF00B21995 /* CoreText.framework */; };
  137. A72A72FC22321ECE00B21995 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FB22321ECD00B21995 /* CoreTelephony.framework */; };
  138. A72A72FE22321EE200B21995 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FD22321EE200B21995 /* QuartzCore.framework */; };
  139. A72A730022321EE900B21995 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FF22321EE900B21995 /* SystemConfiguration.framework */; };
  140. A72A730222321EEE00B21995 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A730122321EEE00B21995 /* libz.tbd */; };
  141. A72A730422321EFA00B21995 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A730322321EFA00B21995 /* libc++.tbd */; };
  142. A72A73142232475E00B21995 /* AlipayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73132232475E00B21995 /* AlipayManager.swift */; };
  143. A72A73162232481600B21995 /* WeChatpayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73152232481600B21995 /* WeChatpayManager.swift */; };
  144. A72A7333223256E100B21995 /* PayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7332223256E100B21995 /* PayManager.swift */; };
  145. A72A733522325A4B00B21995 /* AppDelegate+HandleOpen.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */; };
  146. A72A7386223396CB00B21995 /* SwiftMoyaNetWorkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */; };
  147. A72A7388223396CB00B21995 /* ApiMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7384223396CB00B21995 /* ApiMacro.swift */; };
  148. A72C01222275404A0065E0C3 /* ProvinceCityAreaModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */; };
  149. A72C01232275404A0065E0C3 /* province_city_area.json in Resources */ = {isa = PBXBuildFile; fileRef = A72C01212275404A0065E0C3 /* province_city_area.json */; };
  150. A738D202225AD6AD00EEE860 /* Extension+UICollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */; };
  151. A738D205225AF90D00EEE860 /* WeChatpayOrderModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */; };
  152. A738D66F225D9BD900EEE860 /* UMLoginModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D66E225D9BD900EEE860 /* UMLoginModel.swift */; };
  153. A73911AD229CD62F0033177E /* AlamofireReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A73911AC229CD62F0033177E /* AlamofireReachabilityManager.swift */; };
  154. A73911B3229ECE340033177E /* UICollectionViewLeftAlignedLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = A73911B1229ECE340033177E /* UICollectionViewLeftAlignedLayout.m */; };
  155. A739121A229F75F50033177E /* JXPagingMainTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7391213229F75F50033177E /* JXPagingMainTableView.swift */; };
  156. A739121B229F75F50033177E /* JXPagingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7391214229F75F50033177E /* JXPagingView.swift */; };
  157. A739121C229F75F50033177E /* JXPagingListRefreshView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7391215229F75F50033177E /* JXPagingListRefreshView.swift */; };
  158. A739121D229F75F50033177E /* JXPagingListContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7391216229F75F50033177E /* JXPagingListContainerView.swift */; };
  159. A73D7C682268A032002A4CE3 /* SwiftyStarRatingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */; };
  160. A75414FD224B5F28002480B5 /* MobileLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */; };
  161. A7541502224C5ECB002480B5 /* BaiduMapManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7541501224C5ECA002480B5 /* BaiduMapManager.swift */; };
  162. A754150F224CACF9002480B5 /* SwiftSign.swift in Sources */ = {isa = PBXBuildFile; fileRef = A754150B224CACF9002480B5 /* SwiftSign.swift */; };
  163. A757C92E22744ACE00226355 /* AddressManagerListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A757C92D22744ACE00226355 /* AddressManagerListModel.swift */; };
  164. A757C9302274839900226355 /* SelfMentionAddressListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */; };
  165. A757C9342274882E00226355 /* UIScrollView+MJRefreshEX.m in Sources */ = {isa = PBXBuildFile; fileRef = A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */; };
  166. A75C474E22938B3900139C0C /* OrderFreightTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A75C474D22938B3900139C0C /* OrderFreightTableViewCell.swift */; };
  167. A7636AC52268139C00374F9E /* LocationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7636AC42268139C00374F9E /* LocationViewController.swift */; };
  168. A7636AC822682BAF00374F9E /* LocationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7636AC722682BAF00374F9E /* LocationView.swift */; };
  169. A76390EB2248E27A0067EEE0 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A76390EA2248E27A0067EEE0 /* UserNotifications.framework */; };
  170. A7649B6922977A4300BCE9D1 /* ShopSectionHeaderModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7649B6822977A4300BCE9D1 /* ShopSectionHeaderModel.swift */; };
  171. A771F07C226D4E1C007999DB /* AddressPOITableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */; };
  172. A773D02F229FDC3B007A5751 /* DIYEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A773D02E229FDC3B007A5751 /* DIYEmptyView.swift */; };
  173. A775CBFE2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */; };
  174. A775CC00223774A300EBDCF8 /* ShoppingMallView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */; };
  175. A7778C9722438F5D00C7C47A /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */; };
  176. A7778C9822438F5D00C7C47A /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7778C9022438F5C00C7C47A /* AlipaySDK.framework */; };
  177. A7778C9922438F5D00C7C47A /* README.txt in Resources */ = {isa = PBXBuildFile; fileRef = A7778C9422438F5D00C7C47A /* README.txt */; };
  178. A7778C9A22438F5D00C7C47A /* libWeChatSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7778C9622438F5D00C7C47A /* libWeChatSDK.a */; };
  179. A7778CA72243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */; };
  180. A7778CA92244904500C7C47A /* Extension+Gifu.GIFImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */; };
  181. A7778CAB2244B12500C7C47A /* CountDownManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CAA2244B12500C7C47A /* CountDownManager.swift */; };
  182. A7778CB32244D73400C7C47A /* RegisterLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */; };
  183. A7778CB82244E97A00C7C47A /* BindPhoneNumberViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */; };
  184. A7778CBA2244F14B00C7C47A /* Extension+UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */; };
  185. A7778CC52246035700C7C47A /* PhoneCountryAreaViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */; };
  186. A7778CD522460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */; };
  187. A7778CDD2246121500C7C47A /* PhoneCountryAreaListMdoel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */; };
  188. A7778CDF22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */; };
  189. A77F2C612231FB49001BD3F6 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C602231FB49001BD3F6 /* AppDelegate.swift */; };
  190. A77F2C682231FB4A001BD3F6 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A77F2C672231FB4A001BD3F6 /* Assets.xcassets */; };
  191. A77F2C762231FB4A001BD3F6 /* RainbowPlanetTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */; };
  192. A77F2C812231FB4A001BD3F6 /* RainbowPlanetUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */; };
  193. A77F2C982231FD25001BD3F6 /* BaseNavigationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */; };
  194. A77F2C9C2231FDCF001BD3F6 /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */; };
  195. A77F2C9E2231FDDC001BD3F6 /* BaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */; };
  196. A77F2CA02231FE45001BD3F6 /* BaseWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */; };
  197. A77F2CB52232010F001BD3F6 /* ShoppingMallViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */; };
  198. A77F2CB72232010F001BD3F6 /* MineViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CAD2232010F001BD3F6 /* MineViewController.swift */; };
  199. A77F2CB92232010F001BD3F6 /* ShoppingCartViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */; };
  200. A77F2CC3223203BA001BD3F6 /* AppDelegate+Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */; };
  201. A77F2CC722320627001BD3F6 /* WRNavigationBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */; };
  202. A77F2CC822320627001BD3F6 /* WRCustomNavigationBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */; };
  203. A77F2CCA223209F2001BD3F6 /* BaseTabbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */; };
  204. A7824AFB2271EA2600ABA381 /* SelfMentionContactsListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */; };
  205. A7824AFD2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */; };
  206. A7824B002271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */; };
  207. A7824B042271F10300ABA381 /* EditSelfMentionContactsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */; };
  208. A7824B062271F25400ABA381 /* EditAddressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */; };
  209. A7824B082271F53A00ABA381 /* EditSetDefaultTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */; };
  210. A79057022276C9770037F823 /* SetPasswordModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A79057012276C9770037F823 /* SetPasswordModel.swift */; };
  211. A79057062276EA3D0037F823 /* OpenCityListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A79057052276EA3D0037F823 /* OpenCityListModel.swift */; };
  212. A7931DEF22AF4C9100297D0A /* BaseBasicContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DEC22AF4C9100297D0A /* BaseBasicContentView.swift */; };
  213. A7931DF022AF4C9100297D0A /* BaseBouncesContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DED22AF4C9100297D0A /* BaseBouncesContentView.swift */; };
  214. A7931DF122AF4C9100297D0A /* BaseIrregularityBasicContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DEE22AF4C9100297D0A /* BaseIrregularityBasicContentView.swift */; };
  215. A7931DFE22AF827600297D0A /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A7931DF522AF827600297D0A /* Localizable.strings */; };
  216. A7931DFF22AF827600297D0A /* ESTabBarItemMoreContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DF722AF827600297D0A /* ESTabBarItemMoreContentView.swift */; };
  217. A7931E0022AF827600297D0A /* ESTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DF822AF827600297D0A /* ESTabBarController.swift */; };
  218. A7931E0122AF827600297D0A /* ESTabBarItemContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DF922AF827600297D0A /* ESTabBarItemContentView.swift */; };
  219. A7931E0222AF827600297D0A /* ESTabBarItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DFA22AF827600297D0A /* ESTabBarItem.swift */; };
  220. A7931E0322AF827600297D0A /* ESTabBarItemBadgeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DFB22AF827600297D0A /* ESTabBarItemBadgeView.swift */; };
  221. A7931E0422AF827600297D0A /* ESTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DFC22AF827600297D0A /* ESTabBar.swift */; };
  222. A7931E0522AF827600297D0A /* ESTabBarItemContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931DFD22AF827600297D0A /* ESTabBarItemContainer.swift */; };
  223. A7931E0822AF855E00297D0A /* RegisterLoginModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7931E0722AF855E00297D0A /* RegisterLoginModule.xcassets */; };
  224. A7931E0D22AF874600297D0A /* GenderSelectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931E0C22AF874600297D0A /* GenderSelectionViewController.swift */; };
  225. A7931E1122AF989B00297D0A /* TopicSelectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931E1022AF989B00297D0A /* TopicSelectionViewController.swift */; };
  226. A7931E1422AF9E4000297D0A /* TopicSelectionCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931E1322AF9E4000297D0A /* TopicSelectionCollectionViewCell.swift */; };
  227. A7931E1622AFAEF500297D0A /* TopicSelectionModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931E1522AFAEF500297D0A /* TopicSelectionModel.swift */; };
  228. A7931E1822AFC1DF00297D0A /* CommunityListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7931E1722AFC1DF00297D0A /* CommunityListViewController.swift */; };
  229. A7A17E5F22A0CEF200B7A77E /* SwiftMoyaNetWorkManagerTools.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A17E5E22A0CEF200B7A77E /* SwiftMoyaNetWorkManagerTools.swift */; };
  230. A7A98DFD227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */; };
  231. A7A98DFF227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */; };
  232. A7A98E02227E8900005306E9 /* ProductSearchListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */; };
  233. A7A98E05227EB891005306E9 /* CategoryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E04227EB891005306E9 /* CategoryViewController.swift */; };
  234. A7A98E09227EB8DD005306E9 /* CategoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E08227EB8DD005306E9 /* CategoryView.swift */; };
  235. A7A98E0B227EBD04005306E9 /* CategorySearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */; };
  236. A7A98E0E227EC0C6005306E9 /* CategoryTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */; };
  237. A7A98E10227EC531005306E9 /* ProductHSmallTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */; };
  238. A7A98E12227ECA11005306E9 /* ProductSearchModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */; };
  239. A7A98E14227ED0E2005306E9 /* CategoryListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */; };
  240. A7A98E17227EED76005306E9 /* SpecialViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E16227EED76005306E9 /* SpecialViewController.swift */; };
  241. A7A98E1B227EEE49005306E9 /* SpecialView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E1A227EEE49005306E9 /* SpecialView.swift */; };
  242. A7A98E1D227EF1CB005306E9 /* SpecialBannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */; };
  243. A7A98E2D22801642005306E9 /* SwiftMoyaServiceCMSApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */; };
  244. A7A98E2F228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */; };
  245. A7A98E3122801B10005306E9 /* ShoppingMallListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */; };
  246. A7A98E332280272A005306E9 /* ShoppingMallBannerTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */; };
  247. A7A98E3622802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */; };
  248. A7A98E3A2280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */; };
  249. A7A98E3C228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */; };
  250. A7A98E41228046C5005306E9 /* ShoppingMallSepcialTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */; };
  251. A7A98E4322804851005306E9 /* ShoppingMallSepcialFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */; };
  252. A7A98E4522804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */; };
  253. A7B4E71F228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */; };
  254. A7B4E721228151F40012914A /* ProductFloorTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E720228151F40012914A /* ProductFloorTitleView.swift */; };
  255. A7B4E723228154750012914A /* ProductFloorBannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E722228154750012914A /* ProductFloorBannerView.swift */; };
  256. A7B4E728228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */; };
  257. A7B4E72D228176060012914A /* ProductMallBarChartCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */; };
  258. A7B4E72F2281773F0012914A /* ProductFloorCenterTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */; };
  259. A7B4E7352281907A0012914A /* CMSModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E7342281907A0012914A /* CMSModel.swift */; };
  260. A7B4E738228191CC0012914A /* CommondModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E737228191CC0012914A /* CommondModel.swift */; };
  261. A7B4E73A228192D20012914A /* CMSTemplateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E739228192D10012914A /* CMSTemplateModel.swift */; };
  262. A7B4E754228278320012914A /* ShoppingMallFloorTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */; };
  263. A7B4E756228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */; };
  264. A7B4E7582282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */; };
  265. A7B4E75A228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */; };
  266. A7BB684F2268DCEC00AB07A2 /* SelfRecommendationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */; };
  267. A7BB68552268DE8600AB07A2 /* SelfRecommendationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */; };
  268. A7BB6857226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */; };
  269. A7BB685922696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */; };
  270. A7BB68662269B1DD00AB07A2 /* AddressPOIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */; };
  271. A7BB68672269B1DD00AB07A2 /* AddressPOIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */; };
  272. A7BF202422B392D600396DB3 /* CommunityModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7BF202322B392D600396DB3 /* CommunityModule.xcassets */; };
  273. A7BF202722B3930100396DB3 /* MessageModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7BF202622B3930100396DB3 /* MessageModule.xcassets */; };
  274. A7BF202B22B396F300396DB3 /* CardContentTitleTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BF202922B396F300396DB3 /* CardContentTitleTableViewCell.swift */; };
  275. A7BF203122B47CC000396DB3 /* CardContentCommnetTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BF203022B47CC000396DB3 /* CardContentCommnetTableViewCell.swift */; };
  276. A7BF203422B47E8600396DB3 /* CardContentActionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BF203322B47E8600396DB3 /* CardContentActionTableViewCell.swift */; };
  277. A7C0FDE722B4A38500BC1E86 /* CardContentCommentListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C0FDE622B4A38500BC1E86 /* CardContentCommentListTableViewCell.swift */; };
  278. A7C0FDE922B4BC5600BC1E86 /* CardContentCommentListContentTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C0FDE822B4BC5600BC1E86 /* CardContentCommentListContentTableViewCell.swift */; };
  279. A7C0FDEB22B4C6C300BC1E86 /* CardContentCommentListFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C0FDEA22B4C6C300BC1E86 /* CardContentCommentListFooterView.swift */; };
  280. A7C3DD1A226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */; };
  281. A7C3DD1C226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */; };
  282. A7CC74D4226FF1AA003C4F38 /* MineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D3226FF1AA003C4F38 /* MineView.swift */; };
  283. A7CC74D6226FF421003C4F38 /* MineNavigationBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */; };
  284. A7CC74D822700359003C4F38 /* MineTableViewHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */; };
  285. A7CC74DA22702E41003C4F38 /* MineOrderTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */; };
  286. A7CC74DC2270352F003C4F38 /* MineOrderCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */; };
  287. A7CC74DE22703B4A003C4F38 /* MineModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */; };
  288. A7CC74E0227042A4003C4F38 /* MineServiceTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */; };
  289. A7CC74E222704429003C4F38 /* MineServiceCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */; };
  290. A7CC74E62270628B003C4F38 /* DeliveryMethodTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */; };
  291. A7CC74EA22706ACD003C4F38 /* MessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E922706ACD003C4F38 /* MessageViewController.swift */; };
  292. A7CC74EF22706CCA003C4F38 /* MessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74EE22706CCA003C4F38 /* MessageView.swift */; };
  293. A7CC74F122706FE3003C4F38 /* MessageOneCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */; };
  294. A7CC74F3227070D2003C4F38 /* MessageTwoCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */; };
  295. A7CC750622714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */; };
  296. A7CC750A22715755003C4F38 /* MessageDetailesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */; };
  297. A7CC750D227157DA003C4F38 /* MessageDetailesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */; };
  298. A7CC750F22715AAC003C4F38 /* MessageDetailesTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */; };
  299. A7CC751122715AE3003C4F38 /* MessageDetailesTimeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */; };
  300. A7CC7516227161D5003C4F38 /* SetViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7515227161D5003C4F38 /* SetViewController.swift */; };
  301. A7CC751822716202003C4F38 /* SetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751722716202003C4F38 /* SetView.swift */; };
  302. A7CC751A22716254003C4F38 /* SetTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751922716254003C4F38 /* SetTableViewCell.swift */; };
  303. A7CC751C22716426003C4F38 /* SetLogoutTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */; };
  304. A7CC751F227190C5003C4F38 /* AccountSecurityViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */; };
  305. A7CC7524227190FB003C4F38 /* AccountSecurityView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */; };
  306. A7CC7526227196A8003C4F38 /* AccountSecurityTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */; };
  307. A7CC7528227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */; };
  308. A7CC752C2271A1AE003C4F38 /* SetPasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */; };
  309. A7CC752F2271A1F2003C4F38 /* SetPasswordView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */; };
  310. A7CC75332271ABB0003C4F38 /* AddressManagerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */; };
  311. A7CC75362271AC14003C4F38 /* AddressManagerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75352271AC14003C4F38 /* AddressManagerView.swift */; };
  312. A7CC75382271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */; };
  313. A7CC753A2271B98B003C4F38 /* AddressManagerAddTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */; };
  314. A7CC753C2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */; };
  315. A7CC75432271E038003C4F38 /* SelfMentionContactsListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */; };
  316. A7D4608E227616F800A5A54E /* SQLiteManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D4608D227616F800A5A54E /* SQLiteManager.swift */; };
  317. A7D46090227617D200A5A54E /* SQLModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D4608F227617D200A5A54E /* SQLModel.swift */; };
  318. A7D46092227619CD00A5A54E /* BaiduToCityFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */; };
  319. A7DC467F22783A47001F3EFC /* EditExpressAddressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */; };
  320. A7DF50D622A4E8B400998908 /* OrderDetailProductTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7DF50D522A4E8B400998908 /* OrderDetailProductTableViewCell.swift */; };
  321. A7DF50D822A4FAFC00998908 /* ProductDetailEvaluationImageCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7DF50D722A4FAFC00998908 /* ProductDetailEvaluationImageCollectionViewCell.swift */; };
  322. A7DF50DF22A5590200998908 /* BrowsePicturesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7DF50DE22A5590200998908 /* BrowsePicturesViewController.swift */; };
  323. A7DF50E322A55AB600998908 /* BrowsePicturesPagerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7DF50E222A55AB600998908 /* BrowsePicturesPagerViewCell.swift */; };
  324. A7F2D6BD22B09F930093000B /* CommunityNavigationBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6BC22B09F930093000B /* CommunityNavigationBarView.swift */; };
  325. A7F2D6C122B0D1CB0093000B /* CommunityFollowTableHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6C022B0D1CB0093000B /* CommunityFollowTableHeaderView.swift */; };
  326. A7F2D6C622B0DC7B0093000B /* CommunityCommonSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6C522B0DC7B0093000B /* CommunityCommonSectionHeaderView.swift */; };
  327. A7F2D6C822B0E2F60093000B /* CommunityRecommendFollowTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6C722B0E2F60093000B /* CommunityRecommendFollowTableViewCell.swift */; };
  328. A7F2D6CB22B0E4270093000B /* CommunityRecommendFollowCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6CA22B0E4270093000B /* CommunityRecommendFollowCollectionViewCell.swift */; };
  329. A7F2D6CE22B0FF180093000B /* CommunityFollowStatusTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6CD22B0FF180093000B /* CommunityFollowStatusTableViewCell.swift */; };
  330. A7F2D6D022B1119A0093000B /* CommunityEnum.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6CF22B1119A0093000B /* CommunityEnum.swift */; };
  331. A7F2D6D722B1ED370093000B /* CardContentUserTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6D622B1ED370093000B /* CardContentUserTableViewCell.swift */; };
  332. A7F2D6D922B250EF0093000B /* CardContentPicVideoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6D822B250EF0093000B /* CardContentPicVideoTableViewCell.swift */; };
  333. A7F2D6DD22B2536F0093000B /* CardContentPicVideoCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6DC22B2536F0093000B /* CardContentPicVideoCollectionViewCell.swift */; };
  334. A7F2D6DF22B25B5D0093000B /* CardContentPicVideoCollectionViewLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6DE22B25B5D0093000B /* CardContentPicVideoCollectionViewLayout.swift */; };
  335. A7F2D6E122B25EF30093000B /* CardContentPicVideoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7F2D6E022B25EF30093000B /* CardContentPicVideoModel.swift */; };
  336. A7FF1555228AC27600A85748 /* ProductAllCommentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1554228AC27600A85748 /* ProductAllCommentView.swift */; };
  337. A7FF1557228AC3E800A85748 /* ProductAllCommentViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1556228AC3E800A85748 /* ProductAllCommentViewController.swift */; };
  338. A7FF1560228C693D00A85748 /* OrderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF155F228C693D00A85748 /* OrderViewController.swift */; };
  339. A7FF1564228C696B00A85748 /* OrderListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1563228C696B00A85748 /* OrderListView.swift */; };
  340. A7FF1566228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1565228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift */; };
  341. A7FF1568228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1567228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift */; };
  342. A7FF156A228C6E3600A85748 /* OrderProductTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1569228C6E3600A85748 /* OrderProductTableViewCell.swift */; };
  343. A7FF156C228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF156B228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift */; };
  344. A7FF156E228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF156D228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift */; };
  345. A7FF1570228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF156F228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift */; };
  346. A7FF1572228C7D4600A85748 /* OrderButtonTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1571228C7D4600A85748 /* OrderButtonTableViewCell.swift */; };
  347. A7FF1577228C824300A85748 /* OrderModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7FF1576228C824300A85748 /* OrderModule.xcassets */; };
  348. A7FF1579228C82CE00A85748 /* OrderDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1578228C82CE00A85748 /* OrderDetailViewController.swift */; };
  349. A7FF157D228C837100A85748 /* OrderDetailStatusTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF157C228C837100A85748 /* OrderDetailStatusTableViewCell.swift */; };
  350. A7FF1583228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1582228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift */; };
  351. A7FF1585228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1584228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift */; };
  352. A7FF1587228C851100A85748 /* OrderDetailInfoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1586228C851100A85748 /* OrderDetailInfoTableViewCell.swift */; };
  353. A7FF1589228C854900A85748 /* OrderDetailBottomView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1588228C854900A85748 /* OrderDetailBottomView.swift */; };
  354. A7FF158C228C911C00A85748 /* OrderRefunddetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF158B228C911C00A85748 /* OrderRefunddetailsViewController.swift */; };
  355. A7FF1592228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1591228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift */; };
  356. A7FF1594228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1593228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift */; };
  357. A7FF1596228CFA8100A85748 /* OrderListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1595228CFA8100A85748 /* OrderListViewController.swift */; };
  358. A7FF1598228D092A00A85748 /* OrderListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1597228D092A00A85748 /* OrderListModel.swift */; };
  359. A7FF159C228D9E3D00A85748 /* OrderRefundDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF159B228D9E3C00A85748 /* OrderRefundDetailModel.swift */; };
  360. BD09C84122955B480080D5A4 /* PopTopTriangleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD09C84022955B480080D5A4 /* PopTopTriangleView.swift */; };
  361. BD0E678522A4C23B00B980BA /* ShoppingCartOrderPayFreightCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD0E678422A4C23B00B980BA /* ShoppingCartOrderPayFreightCell.swift */; };
  362. BD108C9322A60C2100837DAB /* HGImageCompleteButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD108C8E22A60C2100837DAB /* HGImageCompleteButton.swift */; };
  363. BD108C9422A60C2100837DAB /* HGImageCollectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD108C8F22A60C2100837DAB /* HGImageCollectionViewController.swift */; };
  364. BD108C9522A60C2100837DAB /* HGImageCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD108C9022A60C2100837DAB /* HGImageCollectionViewCell.swift */; };
  365. BD108C9622A60C2100837DAB /* HGImagePickerCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD108C9122A60C2100837DAB /* HGImagePickerCell.swift */; };
  366. BD108C9722A60C2100837DAB /* HGImagePickerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD108C9222A60C2100837DAB /* HGImagePickerController.swift */; };
  367. BD108C9A22A60C3300837DAB /* HGImage.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BD108C9822A60C3200837DAB /* HGImage.xcassets */; };
  368. BD108C9B22A60C3300837DAB /* HGImage.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BD108C9922A60C3300837DAB /* HGImage.storyboard */; };
  369. BD12203122AF4A010051C7C2 /* MessageMainItemView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12203022AF4A010051C7C2 /* MessageMainItemView.swift */; };
  370. BD12203622AF807C0051C7C2 /* MessagePlanetActivityController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12203522AF807C0051C7C2 /* MessagePlanetActivityController.swift */; };
  371. BD12203A22AF80AD0051C7C2 /* MessageActivityTableCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12203922AF80AD0051C7C2 /* MessageActivityTableCell.swift */; };
  372. BD12203F22AF8E190051C7C2 /* MessagePlanetNotiController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12203E22AF8E190051C7C2 /* MessagePlanetNotiController.swift */; };
  373. BD12204122AF8E320051C7C2 /* MessagePlanetNotiTableCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12204022AF8E320051C7C2 /* MessagePlanetNotiTableCell.swift */; };
  374. BD12204422AF996E0051C7C2 /* MessageCommentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12204322AF996E0051C7C2 /* MessageCommentController.swift */; };
  375. BD12204622AF997E0051C7C2 /* MessageCommentTableCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12204522AF997E0051C7C2 /* MessageCommentTableCell.swift */; };
  376. BD12204922AF99B90051C7C2 /* MessageFollowNotiController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12204822AF99B90051C7C2 /* MessageFollowNotiController.swift */; };
  377. BD12204B22AF99C80051C7C2 /* MessageFollowNotiTableCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12204A22AF99C80051C7C2 /* MessageFollowNotiTableCell.swift */; };
  378. BD12204E22AFB07E0051C7C2 /* MessageThumbController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12204D22AFB07E0051C7C2 /* MessageThumbController.swift */; };
  379. BD12205022AFB08B0051C7C2 /* MessageThumbTableCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12204F22AFB08B0051C7C2 /* MessageThumbTableCell.swift */; };
  380. BD12B66922B47D4800AEB10B /* RecommendSubCommentCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B66822B47D4700AEB10B /* RecommendSubCommentCollectionCell.swift */; };
  381. BD12B66B22B4A01300AEB10B /* RecommendSubCommentCollectionFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B66A22B4A01300AEB10B /* RecommendSubCommentCollectionFooter.swift */; };
  382. BD12B67422B4EC9700AEB10B /* KSMediaPickerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B67322B4EC9700AEB10B /* KSMediaPickerController.swift */; };
  383. BD12B67822B4ED9200AEB10B /* KSMediaPickerOutputModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B67722B4ED9200AEB10B /* KSMediaPickerOutputModel.swift */; };
  384. BD12B67C22B4EE6D00AEB10B /* KSMediaPickerAlbumModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B67A22B4EE6C00AEB10B /* KSMediaPickerAlbumModel.swift */; };
  385. BD12B67D22B4EE6D00AEB10B /* KSMediaPickerItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B67B22B4EE6D00AEB10B /* KSMediaPickerItemModel.swift */; };
  386. BD12B68022B4EF2600AEB10B /* KSMediaPickerViewImageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B67E22B4EF2600AEB10B /* KSMediaPickerViewImageCell.swift */; };
  387. BD12B68122B4EF2600AEB10B /* KSMediaPickerViewVideoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B67F22B4EF2600AEB10B /* KSMediaPickerViewVideoCell.swift */; };
  388. BD12B68322B4EFF000AEB10B /* KSMediaPickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B68222B4EFF000AEB10B /* KSMediaPickerView.swift */; };
  389. BD12B68522B4F15300AEB10B /* KSMediaPickerCameraView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B68422B4F15300AEB10B /* KSMediaPickerCameraView.swift */; };
  390. BD12B68822B4F28F00AEB10B /* KSExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B68722B4F28F00AEB10B /* KSExtension.swift */; };
  391. BD12B68C22B4F4FF00AEB10B /* KSSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BD12B68B22B4F4FF00AEB10B /* KSSegmentedControl.m */; };
  392. BD12B68E22B4F5DD00AEB10B /* KSMediaPickerCameraToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B68D22B4F5DD00AEB10B /* KSMediaPickerCameraToolBar.swift */; };
  393. BD12B69122B4F60300AEB10B /* KSMediaPickerScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD12B69022B4F60200AEB10B /* KSMediaPickerScrollView.m */; };
  394. BD12B69422B4F68400AEB10B /* KSMediaPickerCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD12B69322B4F68400AEB10B /* KSMediaPickerCollectionView.m */; };
  395. BD12B69622B4F72900AEB10B /* KSMediaPickerPreviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B69522B4F72900AEB10B /* KSMediaPickerPreviewView.swift */; };
  396. BD12B69A22B4FA8400AEB10B /* KSMediaPickerSelectIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B69922B4FA8400AEB10B /* KSMediaPickerSelectIndicator.swift */; };
  397. BD12B69C22B4FAC800AEB10B /* KSMediaPickerRECButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B69B22B4FAC800AEB10B /* KSMediaPickerRECButton.swift */; };
  398. BD12B69E22B4FAF000AEB10B /* KSMediaPickerNavigationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B69D22B4FAF000AEB10B /* KSMediaPickerNavigationView.swift */; };
  399. BD12B6A222B4FC9B00AEB10B /* KSBorderButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B6A022B4FC9B00AEB10B /* KSBorderButton.swift */; };
  400. BD12B6A322B4FC9B00AEB10B /* KSButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD12B6A122B4FC9B00AEB10B /* KSButton.swift */; };
  401. BD12B6AB22B502C200AEB10B /* KSVideoPlayerLiteView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD12B6A522B502C200AEB10B /* KSVideoPlayerLiteView.m */; };
  402. BD12B6AC22B502C200AEB10B /* KSVideoPlayerBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD12B6A722B502C200AEB10B /* KSVideoPlayerBaseView.m */; };
  403. BD12B6AD22B502C200AEB10B /* KSVideoLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = BD12B6AA22B502C200AEB10B /* KSVideoLayer.m */; };
  404. BD1DC6C5228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6C3228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift */; };
  405. BD1DC6C6228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6C4228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift */; };
  406. BD1DC6C9228D005000B89C57 /* OrderCreateParameterModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6C8228D005000B89C57 /* OrderCreateParameterModel.swift */; };
  407. BD1DC6CB228D157000B89C57 /* OrderCreateBackModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6CA228D157000B89C57 /* OrderCreateBackModel.swift */; };
  408. BD1DC6CD228D160D00B89C57 /* OrderPurchaseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6CC228D160D00B89C57 /* OrderPurchaseModel.swift */; };
  409. BD1FC17F22B08D3C00D55081 /* CommunityMyFollowTopicController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC17E22B08D3C00D55081 /* CommunityMyFollowTopicController.swift */; };
  410. BD1FC18122B08D7A00D55081 /* CommunityMyFollowTopicCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC18022B08D7A00D55081 /* CommunityMyFollowTopicCell.swift */; };
  411. BD1FC18622B09F9800D55081 /* CommunitySubCommentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC18522B09F9800D55081 /* CommunitySubCommentController.swift */; };
  412. BD1FC18822B0A30300D55081 /* CommunityMajorCommentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC18722B0A30300D55081 /* CommunityMajorCommentCell.swift */; };
  413. BD1FC18A22B0A32100D55081 /* CommunityReplyCommentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC18922B0A32100D55081 /* CommunityReplyCommentCell.swift */; };
  414. BD1FC1A322B1075F00D55081 /* UIView+LX_Frame.m in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC19922B1075F00D55081 /* UIView+LX_Frame.m */; };
  415. BD1FC1A622B1075F00D55081 /* LxButton.m in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC19C22B1075F00D55081 /* LxButton.m */; };
  416. BD1FC1A722B1075F00D55081 /* UIColor+Expanded.m in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC19E22B1075F00D55081 /* UIColor+Expanded.m */; };
  417. BD1FC1A822B1075F00D55081 /* LXTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC1A022B1075F00D55081 /* LXTextView.m */; };
  418. BD1FC1A922B1075F00D55081 /* LXKeyBoard.m in Sources */ = {isa = PBXBuildFile; fileRef = BD1FC1A122B1075F00D55081 /* LXKeyBoard.m */; };
  419. BD20F1CB2283C12000677D8E /* ShoppingCartListNoneItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */; };
  420. BD20F1CD2283C51300677D8E /* OrderFinishPayController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CC2283C51300677D8E /* OrderFinishPayController.swift */; };
  421. BD20F1CF2283CE2300677D8E /* OrderFinishPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CE2283CE2300677D8E /* OrderFinishPayView.swift */; };
  422. BD20F1D32283D0ED00677D8E /* OrderFinishPaySuccessCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1D22283D0ED00677D8E /* OrderFinishPaySuccessCell.swift */; };
  423. BD20F1D52283D15500677D8E /* OrderFinishPayFailureCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1D42283D15500677D8E /* OrderFinishPayFailureCell.swift */; };
  424. BD24FABB22B509CF00C7AA3B /* PublishModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BD24FABA22B509CF00C7AA3B /* PublishModule.xcassets */; };
  425. BD24FABF22B50C4B00C7AA3B /* KSMediaPicker.strings in Resources */ = {isa = PBXBuildFile; fileRef = BD24FABE22B50C4B00C7AA3B /* KSMediaPicker.strings */; };
  426. BD28077822B721BF002AB976 /* PublishEditController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD28077722B721BF002AB976 /* PublishEditController.swift */; };
  427. BD28077A22B72734002AB976 /* PublishEditTitleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD28077922B72734002AB976 /* PublishEditTitleCell.swift */; };
  428. BD28077C22B72761002AB976 /* PublishEditDescribeCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD28077B22B72761002AB976 /* PublishEditDescribeCell.swift */; };
  429. BD28077E22B72797002AB976 /* PublishEditAddTopicCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD28077D22B72797002AB976 /* PublishEditAddTopicCell.swift */; };
  430. BD28078022B727A6002AB976 /* PublishEditAddAddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD28077F22B727A6002AB976 /* PublishEditAddAddressCell.swift */; };
  431. BD28078222B727BD002AB976 /* PublishEditAddPicCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD28078122B727BD002AB976 /* PublishEditAddPicCell.swift */; };
  432. BD29A92E228F99780018CFC3 /* OrderCommentParameterModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD29A92D228F99780018CFC3 /* OrderCommentParameterModel.swift */; };
  433. BD2FCBE222B21CF70006D974 /* CommunityRecommendController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FCBE122B21CF70006D974 /* CommunityRecommendController.swift */; };
  434. BD2FCBE422B244250006D974 /* RecommendDetailContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FCBE322B244250006D974 /* RecommendDetailContentCell.swift */; };
  435. BD2FCBE622B2586C0006D974 /* CommunityTagCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FCBE522B2586C0006D974 /* CommunityTagCollectionCell.swift */; };
  436. BD2FCBEA22B267280006D974 /* RecommendNoneCommentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FCBE922B267280006D974 /* RecommendNoneCommentCell.swift */; };
  437. BD3474F522857B85000908C5 /* CommonPayHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3474F422857B85000908C5 /* CommonPayHeader.swift */; };
  438. BD3AA45822AE63EC00EF4F20 /* MessageMainViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3AA45722AE63EC00EF4F20 /* MessageMainViewController.swift */; };
  439. BD3AA45F22AE6F2500EF4F20 /* MessagePlanetTableCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3AA45E22AE6F2500EF4F20 /* MessagePlanetTableCell.swift */; };
  440. BD6EDF48229007EA009A20FE /* OrderApplyRefundModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD6EDF47229007EA009A20FE /* OrderApplyRefundModel.swift */; };
  441. BD7AB83622841A8B0030646A /* ShoppingCartPayOrderItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */; };
  442. BD7AB838228420310030646A /* ShoppingCartPayOrderHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */; };
  443. BD7AB83A2284288D0030646A /* ShoppingCartPayOrderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */; };
  444. BD7AB83D228438020030646A /* OrderPayExpressInfoShowCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */; };
  445. BD7AB83F228438290030646A /* OrderPayExpressAddInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */; };
  446. BD7AB841228438C80030646A /* OrderPaySelfPickAddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */; };
  447. BD7AB8432284390B0030646A /* OrderPaySelfPickInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */; };
  448. BD7AB8452284398A0030646A /* OrderPaySelfPickAddInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */; };
  449. BDAA40F7228E947500CF841D /* OrderApplyRefundAccountCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40F6228E947500CF841D /* OrderApplyRefundAccountCell.swift */; };
  450. BDAA40F9228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40F8228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift */; };
  451. BDAA40FB228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40FA228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift */; };
  452. BDAA40FD228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40FC228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift */; };
  453. BDAA40FF228EA37900CF841D /* OrderApplyRefundPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40FE228EA37900CF841D /* OrderApplyRefundPhotoCell.swift */; };
  454. BDAF83A222B330540004BCC3 /* RecommendSimilarCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAF83A122B330540004BCC3 /* RecommendSimilarCell.swift */; };
  455. BDAF83A622B334D90004BCC3 /* RecommendSimilarCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAF83A522B334D90004BCC3 /* RecommendSimilarCollectionCell.swift */; };
  456. BDAF83A822B343C50004BCC3 /* RecommendBottomCommentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAF83A722B343C50004BCC3 /* RecommendBottomCommentView.swift */; };
  457. BDAF83AA22B388F20004BCC3 /* RecommendDefaultBackCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAF83A922B388F20004BCC3 /* RecommendDefaultBackCell.swift */; };
  458. BDAF83B022B3B63B0004BCC3 /* RecommendCommentHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAF83AF22B3B63B0004BCC3 /* RecommendCommentHeader.swift */; };
  459. BDAF83B222B3B67D0004BCC3 /* RecommendCommentFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAF83B122B3B67D0004BCC3 /* RecommendCommentFooter.swift */; };
  460. BDAF83B422B3B6DF0004BCC3 /* RecommendMajorCommentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAF83B322B3B6DF0004BCC3 /* RecommendMajorCommentCell.swift */; };
  461. BDD22F0B228FAA5B00D43BFB /* ImageUrlModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD22F0A228FAA5B00D43BFB /* ImageUrlModel.swift */; };
  462. BDD4FB1222840597006FE833 /* ShoppingCartPayOrderController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */; };
  463. BDD4FB1422840954006FE833 /* ShoppingCartOrderPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */; };
  464. BDD4FB1722840DD3006FE833 /* OrderPayAcountView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */; };
  465. BDDF3B28228EBB72003A7D16 /* ProductRefundReasonModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDDF3B27228EBB72003A7D16 /* ProductRefundReasonModel.swift */; };
  466. BDE3045D22851E4F001D050F /* ProductCartListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDE3045C22851E4F001D050F /* ProductCartListModel.swift */; };
  467. BDE3045F228554CA001D050F /* ProductCartAmountModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */; };
  468. BDEF7791228571DC00ED0AC0 /* CommonPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */; };
  469. BDEF7793228575A800ED0AC0 /* CommonPayCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */; };
  470. BDF45F0D228C00B8004E2682 /* DefaultContactInfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF45F0C228C00B8004E2682 /* DefaultContactInfoModel.swift */; };
  471. BDF47D7A228271F600941AB9 /* ShoppingCartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D79228271F600941AB9 /* ShoppingCartView.swift */; };
  472. BDF47D7E22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */; };
  473. BDF47D80228288F900941AB9 /* ShoppingCartAccountView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */; };
  474. BDF47D822282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */; };
  475. BDF47D852282C59F00941AB9 /* ShoppingCartListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */; };
  476. BDF47D872282C92200941AB9 /* ShoppingCartListTableViewHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */; };
  477. BDF8629C228E4125000DEF84 /* OrderCommentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF8629B228E4125000DEF84 /* OrderCommentController.swift */; };
  478. BDF862A1228E41CC000DEF84 /* OrderLogisticsController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF8629E228E41CC000DEF84 /* OrderLogisticsController.swift */; };
  479. BDF862A2228E41CC000DEF84 /* OrderLogisticsInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862A0228E41CC000DEF84 /* OrderLogisticsInfoCell.swift */; };
  480. BDF862A7228E42FA000DEF84 /* OrderApplyRefundController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862A6228E42FA000DEF84 /* OrderApplyRefundController.swift */; };
  481. BDF862AA228E43A4000DEF84 /* OrderCommentTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862A9228E43A4000DEF84 /* OrderCommentTableViewCell.swift */; };
  482. BDF862AC228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862AB228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift */; };
  483. BDF862AE228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862AD228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift */; };
  484. BDF862B1228E6690000DEF84 /* OrderApplyRefundProductCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862B0228E6690000DEF84 /* OrderApplyRefundProductCell.swift */; };
  485. /* End PBXBuildFile section */
  486. /* Begin PBXContainerItemProxy section */
  487. A77F2C722231FB4A001BD3F6 /* PBXContainerItemProxy */ = {
  488. isa = PBXContainerItemProxy;
  489. containerPortal = A77F2C552231FB49001BD3F6 /* Project object */;
  490. proxyType = 1;
  491. remoteGlobalIDString = A77F2C5C2231FB49001BD3F6;
  492. remoteInfo = RainbowPlanet;
  493. };
  494. A77F2C7D2231FB4A001BD3F6 /* PBXContainerItemProxy */ = {
  495. isa = PBXContainerItemProxy;
  496. containerPortal = A77F2C552231FB49001BD3F6 /* Project object */;
  497. proxyType = 1;
  498. remoteGlobalIDString = A77F2C5C2231FB49001BD3F6;
  499. remoteInfo = RainbowPlanet;
  500. };
  501. /* End PBXContainerItemProxy section */
  502. /* Begin PBXFileReference section */
  503. 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RainbowPlanet.release.xcconfig"; path = "Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet.release.xcconfig"; sourceTree = "<group>"; };
  504. 88DF1EFD2E202DA7C627E8A7 /* Pods_RainbowPlanetUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanetUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  505. A7003EA2229192CC004E51FB /* PayManagerPay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PayManagerPay.swift; sourceTree = "<group>"; };
  506. A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorFullLeftHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  507. A70B2C062284305400B2449F /* ProductModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductModel.swift; sourceTree = "<group>"; };
  508. A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductDetailModel.swift; sourceTree = "<group>"; };
  509. A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailViewController.swift; sourceTree = "<group>"; };
  510. A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailTableViewHeaderView.swift; sourceTree = "<group>"; };
  511. A70B2C242286C03800B2449F /* NXLPageControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NXLPageControl.swift; sourceTree = "<group>"; };
  512. A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailFSPagerViewCell.swift; sourceTree = "<group>"; };
  513. A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductInfoTableViewCell.swift; sourceTree = "<group>"; };
  514. A70B2C3222880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductLabelTableViewCell.swift; sourceTree = "<group>"; };
  515. A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductSkuLabelCollectionViewCell.swift; sourceTree = "<group>"; };
  516. A70B2C362288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductLabelIconCollectionViewCell.swift; sourceTree = "<group>"; };
  517. A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailEvaluationTableViewCell.swift; sourceTree = "<group>"; };
  518. A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailSectionHeader.swift; sourceTree = "<group>"; };
  519. A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailShopTableViewCell.swift; sourceTree = "<group>"; };
  520. A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailHotSellTableViewCell.swift; sourceTree = "<group>"; };
  521. A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailHotSellCollectionViewCell.swift; sourceTree = "<group>"; };
  522. A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailParameterTableViewCell.swift; sourceTree = "<group>"; };
  523. A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailDescriptionTableViewCell.swift; sourceTree = "<group>"; };
  524. A70B2C522288584500B2449F /* ShareView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareView.swift; sourceTree = "<group>"; };
  525. A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareCollectionViewCell.swift; sourceTree = "<group>"; };
  526. A70B2C5922886ADF00B2449F /* ShopViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewController.swift; sourceTree = "<group>"; };
  527. A70B2C5B22886B0000B2449F /* ShopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopView.swift; sourceTree = "<group>"; };
  528. A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewTableViewCell.swift; sourceTree = "<group>"; };
  529. A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopSectionHeaderView.swift; sourceTree = "<group>"; };
  530. A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewShopInfoTableViewCell.swift; sourceTree = "<group>"; };
  531. A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailEvaluationListTableViewCell.swift; sourceTree = "<group>"; };
  532. A70B2C6A2288815300B2449F /* PickHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PickHeaderView.swift; sourceTree = "<group>"; };
  533. A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PickViewOneComponentsView.swift; sourceTree = "<group>"; };
  534. A70B2C722289019200B2449F /* ProductDetailSkuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailSkuView.swift; sourceTree = "<group>"; };
  535. A70B2C74228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailSkuSectionHeaerCollectionReusableView.swift; sourceTree = "<group>"; };
  536. A70B842D228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProcuctDetailSelectSkuTableViewCell.swift; sourceTree = "<group>"; };
  537. A70B842F228FF6D400882BC5 /* ProductCartCountModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCartCountModel.swift; sourceTree = "<group>"; };
  538. A70B843322911AF600882BC5 /* ProductDetailView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductDetailView.swift; sourceTree = "<group>"; };
  539. A70EBBBF22561179000AD74F /* Extension+UITableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UITableView.swift"; sourceTree = "<group>"; };
  540. A7146347228EFCE20066099B /* ORSKUDataFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ORSKUDataFilter.m; sourceTree = "<group>"; };
  541. A7146348228EFCE20066099B /* ORSKUDataFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ORSKUDataFilter.h; sourceTree = "<group>"; };
  542. A715333D22980CC60017C861 /* ConfigModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConfigModel.swift; sourceTree = "<group>"; };
  543. A71738A522897892000AEA6A /* SwiftMoyaServiceShopApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceShopApi.swift; sourceTree = "<group>"; };
  544. A71738A722897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceShop.swift; sourceTree = "<group>"; };
  545. A71738AA22898660000AEA6A /* ShopModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShopModel.swift; sourceTree = "<group>"; };
  546. A71738AC228AB7B2000AEA6A /* ProductCommentListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductCommentListModel.swift; sourceTree = "<group>"; };
  547. A7190166227543DB00104A50 /* baidu_cityid_rel.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = baidu_cityid_rel.json; sourceTree = "<group>"; };
  548. A71901682275464000104A50 /* ProvinceCityAreaView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaView.swift; sourceTree = "<group>"; };
  549. A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaTableViewCell.swift; sourceTree = "<group>"; };
  550. A71901742275F71F00104A50 /* BaiduToCityModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduToCityModel.swift; sourceTree = "<group>"; };
  551. A719EE6D22AF441F001AAC98 /* CommunityViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityViewController.swift; sourceTree = "<group>"; };
  552. A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditAddressFooterView.swift; sourceTree = "<group>"; };
  553. A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListViewController.swift; sourceTree = "<group>"; };
  554. A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListView.swift; sourceTree = "<group>"; };
  555. A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListTableViewCell.swift; sourceTree = "<group>"; };
  556. A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressViewController.swift; sourceTree = "<group>"; };
  557. A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressView.swift; sourceTree = "<group>"; };
  558. A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthorizationSwift.swift; sourceTree = "<group>"; };
  559. A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UINavigationController.swift"; sourceTree = "<group>"; };
  560. A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceConfigApi.swift; sourceTree = "<group>"; };
  561. A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceConfig.swift; sourceTree = "<group>"; };
  562. A71AF0A5226EDDC8001730FE /* SearchViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchViewController.swift; sourceTree = "<group>"; };
  563. A71AF0A9226EDDF5001730FE /* SearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchView.swift; sourceTree = "<group>"; };
  564. A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchNavigationbarView.swift; sourceTree = "<group>"; };
  565. A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  566. A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchCollectionViewCell.swift; sourceTree = "<group>"; };
  567. A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultViewController.swift; sourceTree = "<group>"; };
  568. A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultNavigationbarView.swift; sourceTree = "<group>"; };
  569. A71AF0B9226F00F8001730FE /* SearchResultView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultView.swift; sourceTree = "<group>"; };
  570. A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductHBigTableViewCell.swift; sourceTree = "<group>"; };
  571. A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ShoppingMallModule.xcassets; sourceTree = "<group>"; };
  572. A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterLoginView.swift; sourceTree = "<group>"; };
  573. A7274C4F228EE5EF000E3A07 /* PhotoAndCameraManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhotoAndCameraManager.swift; sourceTree = "<group>"; };
  574. A7274C52228EE635000E3A07 /* LBXScanNetAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanNetAnimation.swift; sourceTree = "<group>"; };
  575. A7274C53228EE635000E3A07 /* LBXScanView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanView.swift; sourceTree = "<group>"; };
  576. A7274C54228EE635000E3A07 /* LBXScanViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewController.swift; sourceTree = "<group>"; };
  577. A7274C55228EE635000E3A07 /* LBXScanLineAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanLineAnimation.swift; sourceTree = "<group>"; };
  578. A7274C56228EE635000E3A07 /* LBXScanViewStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewStyle.swift; sourceTree = "<group>"; };
  579. A7274C57228EE635000E3A07 /* LBXPermissions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXPermissions.swift; sourceTree = "<group>"; };
  580. A7274C58228EE635000E3A07 /* LBXScanWrapper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanWrapper.swift; sourceTree = "<group>"; };
  581. A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceUserApi.swift; sourceTree = "<group>"; };
  582. A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceUser.swift; sourceTree = "<group>"; };
  583. A7284403224DBFBD00F82F30 /* UserModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserModel.swift; sourceTree = "<group>"; };
  584. A728443F224DFACD00F82F30 /* InfoModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InfoModel.swift; sourceTree = "<group>"; };
  585. A7284A512252EE9A000BAEC4 /* RootModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RootModel.swift; sourceTree = "<group>"; };
  586. A7284A532252FB5C000BAEC4 /* PaginationModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PaginationModel.swift; sourceTree = "<group>"; };
  587. A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServicePayApi.swift; sourceTree = "<group>"; };
  588. A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServicePay.swift; sourceTree = "<group>"; };
  589. A7284A7622547333000BAEC4 /* AlipayResultModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlipayResultModel.swift; sourceTree = "<group>"; };
  590. A729B5A72266F2E0004AE098 /* AlertSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertSheetView.swift; sourceTree = "<group>"; };
  591. A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
  592. A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BindPhoneNumberView.swift; sourceTree = "<group>"; };
  593. A729B5AF22671310004AE098 /* MobileLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MobileLoginView.swift; sourceTree = "<group>"; };
  594. A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordLoginViewController.swift; sourceTree = "<group>"; };
  595. A729B5B62267270B004AE098 /* PasswordLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordLoginView.swift; sourceTree = "<group>"; };
  596. A72A726022321D3400B21995 /* RainbowPlanet-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RainbowPlanet-Bridging-Header.h"; sourceTree = "<group>"; };
  597. A72A726322321DBD00B21995 /* LocationModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationModel.swift; sourceTree = "<group>"; };
  598. A72A726522321DBD00B21995 /* UMManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UMManager.swift; sourceTree = "<group>"; };
  599. A72A727222321DDE00B21995 /* NumberKeyboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NumberKeyboard.swift; sourceTree = "<group>"; };
  600. A72A727422321DDE00B21995 /* Log.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Log.swift; sourceTree = "<group>"; };
  601. A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftProgressHUD.swift; sourceTree = "<group>"; };
  602. A72A727822321DDF00B21995 /* Regex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Regex.swift; sourceTree = "<group>"; };
  603. A72A727C22321DDF00B21995 /* CountdownButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CountdownButton.swift; sourceTree = "<group>"; };
  604. A72A727E22321DDF00B21995 /* AppInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppInfo.swift; sourceTree = "<group>"; };
  605. A72A728022321DDF00B21995 /* CGView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGView.swift; sourceTree = "<group>"; };
  606. A72A728C22321DE000B21995 /* Extension+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIImage.swift"; sourceTree = "<group>"; };
  607. A72A728D22321DE000B21995 /* Extension+UITextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UITextView.swift"; sourceTree = "<group>"; };
  608. A72A728E22321DE000B21995 /* Extension+NSRange.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+NSRange.swift"; sourceTree = "<group>"; };
  609. A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+NSMutableAttributedString.swift"; sourceTree = "<group>"; };
  610. A72A729022321DE000B21995 /* Extension+UserDefaults.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UserDefaults.swift"; sourceTree = "<group>"; };
  611. A72A729122321DE000B21995 /* Extension+Array.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+Array.swift"; sourceTree = "<group>"; };
  612. A72A729222321DE000B21995 /* Extension+String.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+String.swift"; sourceTree = "<group>"; };
  613. A72A729322321DE000B21995 /* Extension+UILabel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UILabel.swift"; sourceTree = "<group>"; };
  614. A72A729422321DE000B21995 /* Extension+UIAlertController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIAlertController.swift"; sourceTree = "<group>"; };
  615. A72A729722321DE000B21995 /* Extension+UIColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIColor.swift"; sourceTree = "<group>"; };
  616. A72A729822321DE000B21995 /* Extension+RxTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+RxTimer.swift"; sourceTree = "<group>"; };
  617. A72A729922321DE000B21995 /* Extension+UIButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIButton.swift"; sourceTree = "<group>"; };
  618. A72A729A22321DE000B21995 /* Extension+UIView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIView.swift"; sourceTree = "<group>"; };
  619. A72A729D22321DE000B21995 /* Extension+Date.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+Date.swift"; sourceTree = "<group>"; };
  620. A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+CAGradientLayer.swift"; sourceTree = "<group>"; };
  621. A72A72A022321DE000B21995 /* WKWebViewConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WKWebViewConfig.swift; sourceTree = "<group>"; };
  622. A72A72A122321DE000B21995 /* WebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = "<group>"; };
  623. A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenterMacro.swift; sourceTree = "<group>"; };
  624. A72A72C822321E2500B21995 /* FontMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontMacro.swift; sourceTree = "<group>"; };
  625. A72A72C922321E2600B21995 /* HTMLURLMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTMLURLMacro.swift; sourceTree = "<group>"; };
  626. A72A72CA22321E2600B21995 /* Common.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Common.swift; sourceTree = "<group>"; };
  627. A72A72CD22321E2600B21995 /* ColorMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorMacro.swift; sourceTree = "<group>"; };
  628. A72A72EF22321E8800B21995 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
  629. A72A72F122321E9300B21995 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  630. A72A72F322321E9A00B21995 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  631. A72A72F522321EA000B21995 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  632. A72A72F722321EB600B21995 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  633. A72A72F922321EBF00B21995 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  634. A72A72FB22321ECD00B21995 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  635. A72A72FD22321EE200B21995 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  636. A72A72FF22321EE900B21995 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  637. A72A730122321EEE00B21995 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  638. A72A730322321EFA00B21995 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  639. A72A73132232475E00B21995 /* AlipayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlipayManager.swift; sourceTree = "<group>"; };
  640. A72A73152232481600B21995 /* WeChatpayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WeChatpayManager.swift; sourceTree = "<group>"; };
  641. A72A7332223256E100B21995 /* PayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PayManager.swift; sourceTree = "<group>"; };
  642. A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+HandleOpen.swift"; sourceTree = "<group>"; };
  643. A72A73592233577000B21995 /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; };
  644. A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkManager.swift; sourceTree = "<group>"; };
  645. A72A7384223396CB00B21995 /* ApiMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApiMacro.swift; sourceTree = "<group>"; };
  646. A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaModel.swift; sourceTree = "<group>"; };
  647. A72C01212275404A0065E0C3 /* province_city_area.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = province_city_area.json; sourceTree = "<group>"; };
  648. A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UICollectionView.swift"; sourceTree = "<group>"; };
  649. A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeChatpayOrderModel.swift; sourceTree = "<group>"; };
  650. A738D66E225D9BD900EEE860 /* UMLoginModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UMLoginModel.swift; sourceTree = "<group>"; };
  651. A73911AC229CD62F0033177E /* AlamofireReachabilityManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlamofireReachabilityManager.swift; sourceTree = "<group>"; };
  652. A73911B1229ECE340033177E /* UICollectionViewLeftAlignedLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICollectionViewLeftAlignedLayout.m; sourceTree = "<group>"; };
  653. A73911B2229ECE340033177E /* UICollectionViewLeftAlignedLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICollectionViewLeftAlignedLayout.h; sourceTree = "<group>"; };
  654. A7391213229F75F50033177E /* JXPagingMainTableView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JXPagingMainTableView.swift; sourceTree = "<group>"; };
  655. A7391214229F75F50033177E /* JXPagingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JXPagingView.swift; sourceTree = "<group>"; };
  656. A7391215229F75F50033177E /* JXPagingListRefreshView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JXPagingListRefreshView.swift; sourceTree = "<group>"; };
  657. A7391216229F75F50033177E /* JXPagingListContainerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JXPagingListContainerView.swift; sourceTree = "<group>"; };
  658. A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftyStarRatingView.swift; sourceTree = "<group>"; };
  659. A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MobileLoginViewController.swift; sourceTree = "<group>"; };
  660. A7541501224C5ECA002480B5 /* BaiduMapManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduMapManager.swift; sourceTree = "<group>"; };
  661. A754150B224CACF9002480B5 /* SwiftSign.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftSign.swift; sourceTree = "<group>"; };
  662. A757C92D22744ACE00226355 /* AddressManagerListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressManagerListModel.swift; sourceTree = "<group>"; };
  663. A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SelfMentionAddressListModel.swift; sourceTree = "<group>"; };
  664. A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefreshEX.m"; sourceTree = "<group>"; };
  665. A757C9332274882E00226355 /* UIScrollView+MJRefreshEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefreshEX.h"; sourceTree = "<group>"; };
  666. A75C474D22938B3900139C0C /* OrderFreightTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderFreightTableViewCell.swift; sourceTree = "<group>"; };
  667. A7636AC42268139C00374F9E /* LocationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationViewController.swift; sourceTree = "<group>"; };
  668. A7636AC722682BAF00374F9E /* LocationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationView.swift; sourceTree = "<group>"; };
  669. A76390EA2248E27A0067EEE0 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
  670. A7649B6822977A4300BCE9D1 /* ShopSectionHeaderModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopSectionHeaderModel.swift; sourceTree = "<group>"; };
  671. A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressPOITableViewCell.swift; sourceTree = "<group>"; };
  672. A773D02E229FDC3B007A5751 /* DIYEmptyView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DIYEmptyView.swift; sourceTree = "<group>"; };
  673. A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallNavigationBarView.swift; sourceTree = "<group>"; };
  674. A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallView.swift; sourceTree = "<group>"; };
  675. A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; };
  676. A7778C9022438F5C00C7C47A /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; };
  677. A7778C9222438F5D00C7C47A /* WXApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApi.h; sourceTree = "<group>"; };
  678. A7778C9322438F5D00C7C47A /* WXApiObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiObject.h; sourceTree = "<group>"; };
  679. A7778C9422438F5D00C7C47A /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  680. A7778C9522438F5D00C7C47A /* WechatAuthSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WechatAuthSDK.h; sourceTree = "<group>"; };
  681. A7778C9622438F5D00C7C47A /* libWeChatSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeChatSDK.a; sourceTree = "<group>"; };
  682. A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQKeyboardManagerSwiftManager.swift; sourceTree = "<group>"; };
  683. A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+Gifu.GIFImageView.swift"; sourceTree = "<group>"; };
  684. A7778CAA2244B12500C7C47A /* CountDownManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CountDownManager.swift; sourceTree = "<group>"; };
  685. A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterLoginViewController.swift; sourceTree = "<group>"; };
  686. A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BindPhoneNumberViewController.swift; sourceTree = "<group>"; };
  687. A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UIViewController.swift"; sourceTree = "<group>"; };
  688. A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaViewController.swift; sourceTree = "<group>"; };
  689. A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaTableViewCell.swift; sourceTree = "<group>"; };
  690. A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaListMdoel.swift; sourceTree = "<group>"; };
  691. A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaSectionHeaderView.swift; sourceTree = "<group>"; };
  692. A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RainbowPlanet.app; sourceTree = BUILT_PRODUCTS_DIR; };
  693. A77F2C602231FB49001BD3F6 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  694. A77F2C672231FB4A001BD3F6 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  695. A77F2C6C2231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  696. A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RainbowPlanetTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  697. A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RainbowPlanetTests.swift; sourceTree = "<group>"; };
  698. A77F2C772231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  699. A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RainbowPlanetUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  700. A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RainbowPlanetUITests.swift; sourceTree = "<group>"; };
  701. A77F2C822231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  702. A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseNavigationViewController.swift; sourceTree = "<group>"; };
  703. A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  704. A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseViewController.swift; sourceTree = "<group>"; };
  705. A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseWebViewController.swift; sourceTree = "<group>"; };
  706. A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingMallViewController.swift; sourceTree = "<group>"; };
  707. A77F2CAD2232010F001BD3F6 /* MineViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MineViewController.swift; sourceTree = "<group>"; };
  708. A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingCartViewController.swift; sourceTree = "<group>"; };
  709. A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Window.swift"; sourceTree = "<group>"; };
  710. A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WRNavigationBar.swift; sourceTree = "<group>"; };
  711. A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WRCustomNavigationBar.swift; sourceTree = "<group>"; };
  712. A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTabbarViewController.swift; sourceTree = "<group>"; };
  713. A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListView.swift; sourceTree = "<group>"; };
  714. A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListTableViewCell.swift; sourceTree = "<group>"; };
  715. A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSelfMentionContactsViewController.swift; sourceTree = "<group>"; };
  716. A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSelfMentionContactsView.swift; sourceTree = "<group>"; };
  717. A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditAddressTableViewCell.swift; sourceTree = "<group>"; };
  718. A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSetDefaultTableViewCell.swift; sourceTree = "<group>"; };
  719. A79057012276C9770037F823 /* SetPasswordModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetPasswordModel.swift; sourceTree = "<group>"; };
  720. A79057052276EA3D0037F823 /* OpenCityListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OpenCityListModel.swift; sourceTree = "<group>"; };
  721. A7931DEC22AF4C9100297D0A /* BaseBasicContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseBasicContentView.swift; sourceTree = "<group>"; };
  722. A7931DED22AF4C9100297D0A /* BaseBouncesContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseBouncesContentView.swift; sourceTree = "<group>"; };
  723. A7931DEE22AF4C9100297D0A /* BaseIrregularityBasicContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseIrregularityBasicContentView.swift; sourceTree = "<group>"; };
  724. A7931DF622AF827600297D0A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  725. A7931DF722AF827600297D0A /* ESTabBarItemMoreContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ESTabBarItemMoreContentView.swift; sourceTree = "<group>"; };
  726. A7931DF822AF827600297D0A /* ESTabBarController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ESTabBarController.swift; sourceTree = "<group>"; };
  727. A7931DF922AF827600297D0A /* ESTabBarItemContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ESTabBarItemContentView.swift; sourceTree = "<group>"; };
  728. A7931DFA22AF827600297D0A /* ESTabBarItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ESTabBarItem.swift; sourceTree = "<group>"; };
  729. A7931DFB22AF827600297D0A /* ESTabBarItemBadgeView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ESTabBarItemBadgeView.swift; sourceTree = "<group>"; };
  730. A7931DFC22AF827600297D0A /* ESTabBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ESTabBar.swift; sourceTree = "<group>"; };
  731. A7931DFD22AF827600297D0A /* ESTabBarItemContainer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ESTabBarItemContainer.swift; sourceTree = "<group>"; };
  732. A7931E0722AF855E00297D0A /* RegisterLoginModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = RegisterLoginModule.xcassets; sourceTree = "<group>"; };
  733. A7931E0C22AF874600297D0A /* GenderSelectionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GenderSelectionViewController.swift; sourceTree = "<group>"; };
  734. A7931E1022AF989B00297D0A /* TopicSelectionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopicSelectionViewController.swift; sourceTree = "<group>"; };
  735. A7931E1322AF9E4000297D0A /* TopicSelectionCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopicSelectionCollectionViewCell.swift; sourceTree = "<group>"; };
  736. A7931E1522AFAEF500297D0A /* TopicSelectionModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopicSelectionModel.swift; sourceTree = "<group>"; };
  737. A7931E1722AFC1DF00297D0A /* CommunityListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityListViewController.swift; sourceTree = "<group>"; };
  738. A7A17E5E22A0CEF200B7A77E /* SwiftMoyaNetWorkManagerTools.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkManagerTools.swift; sourceTree = "<group>"; };
  739. A7A59A7722363CCB00417FA4 /* RainbowPlanet.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RainbowPlanet.entitlements; sourceTree = "<group>"; };
  740. A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceProductApi.swift; sourceTree = "<group>"; };
  741. A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceProduct.swift; sourceTree = "<group>"; };
  742. A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductSearchListModel.swift; sourceTree = "<group>"; };
  743. A7A98E04227EB891005306E9 /* CategoryViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryViewController.swift; sourceTree = "<group>"; };
  744. A7A98E08227EB8DD005306E9 /* CategoryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryView.swift; sourceTree = "<group>"; };
  745. A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategorySearchView.swift; sourceTree = "<group>"; };
  746. A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryTableViewCell.swift; sourceTree = "<group>"; };
  747. A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductHSmallTableViewCell.swift; sourceTree = "<group>"; };
  748. A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSearchModel.swift; sourceTree = "<group>"; };
  749. A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryListModel.swift; sourceTree = "<group>"; };
  750. A7A98E16227EED76005306E9 /* SpecialViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialViewController.swift; sourceTree = "<group>"; };
  751. A7A98E1A227EEE49005306E9 /* SpecialView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialView.swift; sourceTree = "<group>"; };
  752. A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialBannerView.swift; sourceTree = "<group>"; };
  753. A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceCMSApi.swift; sourceTree = "<group>"; };
  754. A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceCMS.swift; sourceTree = "<group>"; };
  755. A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallListView.swift; sourceTree = "<group>"; };
  756. A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallBannerTableViewCell.swift; sourceTree = "<group>"; };
  757. A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallBannerFSPagerViewCell.swift; sourceTree = "<group>"; };
  758. A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallCategoryTableViewCell.swift; sourceTree = "<group>"; };
  759. A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallCategoryCollectionViewCell.swift; sourceTree = "<group>"; };
  760. A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialTableViewCell.swift; sourceTree = "<group>"; };
  761. A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialFlowLayout.swift; sourceTree = "<group>"; };
  762. A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialCollectionViewCell.swift; sourceTree = "<group>"; };
  763. A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSlidingLeftRightCollectionViewCell.swift; sourceTree = "<group>"; };
  764. A7B4E720228151F40012914A /* ProductFloorTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorTitleView.swift; sourceTree = "<group>"; };
  765. A7B4E722228154750012914A /* ProductFloorBannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorBannerView.swift; sourceTree = "<group>"; };
  766. A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductRightSideleftPictureCollectionViewCell.swift; sourceTree = "<group>"; };
  767. A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductMallBarChartCollectionViewCell.swift; sourceTree = "<group>"; };
  768. A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorCenterTitleView.swift; sourceTree = "<group>"; };
  769. A7B4E7342281907A0012914A /* CMSModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CMSModel.swift; sourceTree = "<group>"; };
  770. A7B4E737228191CC0012914A /* CommondModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommondModel.swift; sourceTree = "<group>"; };
  771. A7B4E739228192D10012914A /* CMSTemplateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CMSTemplateModel.swift; sourceTree = "<group>"; };
  772. A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallFloorTableViewCell.swift; sourceTree = "<group>"; };
  773. A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSlidingLeftRightBgCollectionViewCell.swift; sourceTree = "<group>"; };
  774. A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorLeftHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  775. A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorCenterHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  776. A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationViewController.swift; sourceTree = "<group>"; };
  777. A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationView.swift; sourceTree = "<group>"; };
  778. A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  779. A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationCollectionViewCell.swift; sourceTree = "<group>"; };
  780. A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressPOIView.swift; sourceTree = "<group>"; };
  781. A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressPOIViewController.swift; sourceTree = "<group>"; };
  782. A7BF202322B392D600396DB3 /* CommunityModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = CommunityModule.xcassets; sourceTree = "<group>"; };
  783. A7BF202622B3930100396DB3 /* MessageModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = MessageModule.xcassets; sourceTree = "<group>"; };
  784. A7BF202922B396F300396DB3 /* CardContentTitleTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentTitleTableViewCell.swift; sourceTree = "<group>"; };
  785. A7BF203022B47CC000396DB3 /* CardContentCommnetTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentCommnetTableViewCell.swift; sourceTree = "<group>"; };
  786. A7BF203322B47E8600396DB3 /* CardContentActionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentActionTableViewCell.swift; sourceTree = "<group>"; };
  787. A7C0FDE622B4A38500BC1E86 /* CardContentCommentListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentCommentListTableViewCell.swift; sourceTree = "<group>"; };
  788. A7C0FDE822B4BC5600BC1E86 /* CardContentCommentListContentTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentCommentListContentTableViewCell.swift; sourceTree = "<group>"; };
  789. A7C0FDEA22B4C6C300BC1E86 /* CardContentCommentListFooterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentCommentListFooterView.swift; sourceTree = "<group>"; };
  790. A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceSMSApi.swift; sourceTree = "<group>"; };
  791. A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceSMS.swift; sourceTree = "<group>"; };
  792. A7CC74D3226FF1AA003C4F38 /* MineView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineView.swift; sourceTree = "<group>"; };
  793. A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineNavigationBarView.swift; sourceTree = "<group>"; };
  794. A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineTableViewHeaderView.swift; sourceTree = "<group>"; };
  795. A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineOrderTableViewCell.swift; sourceTree = "<group>"; };
  796. A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineOrderCollectionViewCell.swift; sourceTree = "<group>"; };
  797. A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = MineModule.xcassets; sourceTree = "<group>"; };
  798. A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineServiceTableViewCell.swift; sourceTree = "<group>"; };
  799. A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineServiceCollectionViewCell.swift; sourceTree = "<group>"; };
  800. A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeliveryMethodTypeModel.swift; sourceTree = "<group>"; };
  801. A7CC74E922706ACD003C4F38 /* MessageViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageViewController.swift; sourceTree = "<group>"; };
  802. A7CC74EE22706CCA003C4F38 /* MessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageView.swift; sourceTree = "<group>"; };
  803. A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageOneCollectionViewCell.swift; sourceTree = "<group>"; };
  804. A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageTwoCollectionViewCell.swift; sourceTree = "<group>"; };
  805. A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageNoticeHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  806. A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesViewController.swift; sourceTree = "<group>"; };
  807. A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesView.swift; sourceTree = "<group>"; };
  808. A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesTableViewCell.swift; sourceTree = "<group>"; };
  809. A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesTimeView.swift; sourceTree = "<group>"; };
  810. A7CC7515227161D5003C4F38 /* SetViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetViewController.swift; sourceTree = "<group>"; };
  811. A7CC751722716202003C4F38 /* SetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetView.swift; sourceTree = "<group>"; };
  812. A7CC751922716254003C4F38 /* SetTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetTableViewCell.swift; sourceTree = "<group>"; };
  813. A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetLogoutTableViewCell.swift; sourceTree = "<group>"; };
  814. A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityViewController.swift; sourceTree = "<group>"; };
  815. A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityView.swift; sourceTree = "<group>"; };
  816. A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityTableViewCell.swift; sourceTree = "<group>"; };
  817. A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecuritySetTableViewCell.swift; sourceTree = "<group>"; };
  818. A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetPasswordViewController.swift; sourceTree = "<group>"; };
  819. A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetPasswordView.swift; sourceTree = "<group>"; };
  820. A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerViewController.swift; sourceTree = "<group>"; };
  821. A7CC75352271AC14003C4F38 /* AddressManagerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerView.swift; sourceTree = "<group>"; };
  822. A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerSelfMentionExpressHeaderView.swift; sourceTree = "<group>"; };
  823. A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerAddTableViewCell.swift; sourceTree = "<group>"; };
  824. A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerSelfMentionTableViewCell.swift; sourceTree = "<group>"; };
  825. A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListViewController.swift; sourceTree = "<group>"; };
  826. A7D4608D227616F800A5A54E /* SQLiteManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SQLiteManager.swift; sourceTree = "<group>"; };
  827. A7D4608F227617D200A5A54E /* SQLModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SQLModel.swift; sourceTree = "<group>"; };
  828. A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduToCityFactory.swift; sourceTree = "<group>"; };
  829. A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressTableViewCell.swift; sourceTree = "<group>"; };
  830. A7DF50D522A4E8B400998908 /* OrderDetailProductTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailProductTableViewCell.swift; sourceTree = "<group>"; };
  831. A7DF50D722A4FAFC00998908 /* ProductDetailEvaluationImageCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailEvaluationImageCollectionViewCell.swift; sourceTree = "<group>"; };
  832. A7DF50DE22A5590200998908 /* BrowsePicturesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BrowsePicturesViewController.swift; sourceTree = "<group>"; };
  833. A7DF50E222A55AB600998908 /* BrowsePicturesPagerViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BrowsePicturesPagerViewCell.swift; sourceTree = "<group>"; };
  834. A7E03A30F40582782EC5DA89 /* Pods_RainbowPlanetTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanetTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  835. A7F2D6BC22B09F930093000B /* CommunityNavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityNavigationBarView.swift; sourceTree = "<group>"; };
  836. A7F2D6C022B0D1CB0093000B /* CommunityFollowTableHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityFollowTableHeaderView.swift; sourceTree = "<group>"; };
  837. A7F2D6C522B0DC7B0093000B /* CommunityCommonSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityCommonSectionHeaderView.swift; sourceTree = "<group>"; };
  838. A7F2D6C722B0E2F60093000B /* CommunityRecommendFollowTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityRecommendFollowTableViewCell.swift; sourceTree = "<group>"; };
  839. A7F2D6CA22B0E4270093000B /* CommunityRecommendFollowCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityRecommendFollowCollectionViewCell.swift; sourceTree = "<group>"; };
  840. A7F2D6CD22B0FF180093000B /* CommunityFollowStatusTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityFollowStatusTableViewCell.swift; sourceTree = "<group>"; };
  841. A7F2D6CF22B1119A0093000B /* CommunityEnum.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityEnum.swift; sourceTree = "<group>"; };
  842. A7F2D6D622B1ED370093000B /* CardContentUserTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentUserTableViewCell.swift; sourceTree = "<group>"; };
  843. A7F2D6D822B250EF0093000B /* CardContentPicVideoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentPicVideoTableViewCell.swift; sourceTree = "<group>"; };
  844. A7F2D6DC22B2536F0093000B /* CardContentPicVideoCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentPicVideoCollectionViewCell.swift; sourceTree = "<group>"; };
  845. A7F2D6DE22B25B5D0093000B /* CardContentPicVideoCollectionViewLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentPicVideoCollectionViewLayout.swift; sourceTree = "<group>"; };
  846. A7F2D6E022B25EF30093000B /* CardContentPicVideoModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardContentPicVideoModel.swift; sourceTree = "<group>"; };
  847. A7FF1554228AC27600A85748 /* ProductAllCommentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductAllCommentView.swift; sourceTree = "<group>"; };
  848. A7FF1556228AC3E800A85748 /* ProductAllCommentViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductAllCommentViewController.swift; sourceTree = "<group>"; };
  849. A7FF155F228C693D00A85748 /* OrderViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderViewController.swift; sourceTree = "<group>"; };
  850. A7FF1563228C696B00A85748 /* OrderListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderListView.swift; sourceTree = "<group>"; };
  851. A7FF1565228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderShopAndStatusTableViewCell.swift; sourceTree = "<group>"; };
  852. A7FF1567228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDeliveryModeAndTimeTableViewCell.swift; sourceTree = "<group>"; };
  853. A7FF1569228C6E3600A85748 /* OrderProductTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderProductTableViewCell.swift; sourceTree = "<group>"; };
  854. A7FF156B228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderTotalAmountTableViewCell.swift; sourceTree = "<group>"; };
  855. A7FF156D228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDeliveryModeTableViewCell.swift; sourceTree = "<group>"; };
  856. A7FF156F228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDeliveryModeAndButtonTableViewCell.swift; sourceTree = "<group>"; };
  857. A7FF1571228C7D4600A85748 /* OrderButtonTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderButtonTableViewCell.swift; sourceTree = "<group>"; };
  858. A7FF1576228C824300A85748 /* OrderModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = OrderModule.xcassets; sourceTree = "<group>"; };
  859. A7FF1578228C82CE00A85748 /* OrderDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailViewController.swift; sourceTree = "<group>"; };
  860. A7FF157C228C837100A85748 /* OrderDetailStatusTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailStatusTableViewCell.swift; sourceTree = "<group>"; };
  861. A7FF1582228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailExpressSelfMentionTableViewCell.swift; sourceTree = "<group>"; };
  862. A7FF1584228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailContactAddressTableViewCell.swift; sourceTree = "<group>"; };
  863. A7FF1586228C851100A85748 /* OrderDetailInfoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailInfoTableViewCell.swift; sourceTree = "<group>"; };
  864. A7FF1588228C854900A85748 /* OrderDetailBottomView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailBottomView.swift; sourceTree = "<group>"; };
  865. A7FF158B228C911C00A85748 /* OrderRefunddetailsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderRefunddetailsViewController.swift; sourceTree = "<group>"; };
  866. A7FF1591228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderRefunddetailsStatusTableViewCell.swift; sourceTree = "<group>"; };
  867. A7FF1593228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderRefunddetailsTipsTableViewCell.swift; sourceTree = "<group>"; };
  868. A7FF1595228CFA8100A85748 /* OrderListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderListViewController.swift; sourceTree = "<group>"; };
  869. A7FF1597228D092A00A85748 /* OrderListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderListModel.swift; sourceTree = "<group>"; };
  870. A7FF159B228D9E3C00A85748 /* OrderRefundDetailModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderRefundDetailModel.swift; sourceTree = "<group>"; };
  871. BD09C84022955B480080D5A4 /* PopTopTriangleView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PopTopTriangleView.swift; sourceTree = "<group>"; };
  872. BD0E678422A4C23B00B980BA /* ShoppingCartOrderPayFreightCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartOrderPayFreightCell.swift; sourceTree = "<group>"; };
  873. BD108C8E22A60C2100837DAB /* HGImageCompleteButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HGImageCompleteButton.swift; sourceTree = "<group>"; };
  874. BD108C8F22A60C2100837DAB /* HGImageCollectionViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HGImageCollectionViewController.swift; sourceTree = "<group>"; };
  875. BD108C9022A60C2100837DAB /* HGImageCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HGImageCollectionViewCell.swift; sourceTree = "<group>"; };
  876. BD108C9122A60C2100837DAB /* HGImagePickerCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HGImagePickerCell.swift; sourceTree = "<group>"; };
  877. BD108C9222A60C2100837DAB /* HGImagePickerController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HGImagePickerController.swift; sourceTree = "<group>"; };
  878. BD108C9822A60C3200837DAB /* HGImage.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = HGImage.xcassets; sourceTree = "<group>"; };
  879. BD108C9922A60C3300837DAB /* HGImage.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = HGImage.storyboard; sourceTree = "<group>"; };
  880. BD12203022AF4A010051C7C2 /* MessageMainItemView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageMainItemView.swift; sourceTree = "<group>"; };
  881. BD12203522AF807C0051C7C2 /* MessagePlanetActivityController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessagePlanetActivityController.swift; sourceTree = "<group>"; };
  882. BD12203922AF80AD0051C7C2 /* MessageActivityTableCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageActivityTableCell.swift; sourceTree = "<group>"; };
  883. BD12203E22AF8E190051C7C2 /* MessagePlanetNotiController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessagePlanetNotiController.swift; sourceTree = "<group>"; };
  884. BD12204022AF8E320051C7C2 /* MessagePlanetNotiTableCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessagePlanetNotiTableCell.swift; sourceTree = "<group>"; };
  885. BD12204322AF996E0051C7C2 /* MessageCommentController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageCommentController.swift; sourceTree = "<group>"; };
  886. BD12204522AF997E0051C7C2 /* MessageCommentTableCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageCommentTableCell.swift; sourceTree = "<group>"; };
  887. BD12204822AF99B90051C7C2 /* MessageFollowNotiController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageFollowNotiController.swift; sourceTree = "<group>"; };
  888. BD12204A22AF99C80051C7C2 /* MessageFollowNotiTableCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageFollowNotiTableCell.swift; sourceTree = "<group>"; };
  889. BD12204D22AFB07E0051C7C2 /* MessageThumbController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageThumbController.swift; sourceTree = "<group>"; };
  890. BD12204F22AFB08B0051C7C2 /* MessageThumbTableCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageThumbTableCell.swift; sourceTree = "<group>"; };
  891. BD12B66822B47D4700AEB10B /* RecommendSubCommentCollectionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendSubCommentCollectionCell.swift; sourceTree = "<group>"; };
  892. BD12B66A22B4A01300AEB10B /* RecommendSubCommentCollectionFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendSubCommentCollectionFooter.swift; sourceTree = "<group>"; };
  893. BD12B67322B4EC9700AEB10B /* KSMediaPickerController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerController.swift; sourceTree = "<group>"; };
  894. BD12B67722B4ED9200AEB10B /* KSMediaPickerOutputModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerOutputModel.swift; sourceTree = "<group>"; };
  895. BD12B67A22B4EE6C00AEB10B /* KSMediaPickerAlbumModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerAlbumModel.swift; sourceTree = "<group>"; };
  896. BD12B67B22B4EE6D00AEB10B /* KSMediaPickerItemModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerItemModel.swift; sourceTree = "<group>"; };
  897. BD12B67E22B4EF2600AEB10B /* KSMediaPickerViewImageCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerViewImageCell.swift; sourceTree = "<group>"; };
  898. BD12B67F22B4EF2600AEB10B /* KSMediaPickerViewVideoCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerViewVideoCell.swift; sourceTree = "<group>"; };
  899. BD12B68222B4EFF000AEB10B /* KSMediaPickerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerView.swift; sourceTree = "<group>"; };
  900. BD12B68422B4F15300AEB10B /* KSMediaPickerCameraView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerCameraView.swift; sourceTree = "<group>"; };
  901. BD12B68722B4F28F00AEB10B /* KSExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSExtension.swift; sourceTree = "<group>"; };
  902. BD12B68A22B4F4FF00AEB10B /* KSSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSegmentedControl.h; sourceTree = "<group>"; };
  903. BD12B68B22B4F4FF00AEB10B /* KSSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSegmentedControl.m; sourceTree = "<group>"; };
  904. BD12B68D22B4F5DD00AEB10B /* KSMediaPickerCameraToolBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerCameraToolBar.swift; sourceTree = "<group>"; };
  905. BD12B68F22B4F60200AEB10B /* KSMediaPickerScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaPickerScrollView.h; sourceTree = "<group>"; };
  906. BD12B69022B4F60200AEB10B /* KSMediaPickerScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaPickerScrollView.m; sourceTree = "<group>"; };
  907. BD12B69222B4F68400AEB10B /* KSMediaPickerCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaPickerCollectionView.h; sourceTree = "<group>"; };
  908. BD12B69322B4F68400AEB10B /* KSMediaPickerCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaPickerCollectionView.m; sourceTree = "<group>"; };
  909. BD12B69522B4F72900AEB10B /* KSMediaPickerPreviewView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerPreviewView.swift; sourceTree = "<group>"; };
  910. BD12B69922B4FA8400AEB10B /* KSMediaPickerSelectIndicator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerSelectIndicator.swift; sourceTree = "<group>"; };
  911. BD12B69B22B4FAC800AEB10B /* KSMediaPickerRECButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerRECButton.swift; sourceTree = "<group>"; };
  912. BD12B69D22B4FAF000AEB10B /* KSMediaPickerNavigationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSMediaPickerNavigationView.swift; sourceTree = "<group>"; };
  913. BD12B6A022B4FC9B00AEB10B /* KSBorderButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSBorderButton.swift; sourceTree = "<group>"; };
  914. BD12B6A122B4FC9B00AEB10B /* KSButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KSButton.swift; sourceTree = "<group>"; };
  915. BD12B6A522B502C200AEB10B /* KSVideoPlayerLiteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoPlayerLiteView.m; sourceTree = "<group>"; };
  916. BD12B6A622B502C200AEB10B /* KSVideoLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoLayer.h; sourceTree = "<group>"; };
  917. BD12B6A722B502C200AEB10B /* KSVideoPlayerBaseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoPlayerBaseView.m; sourceTree = "<group>"; };
  918. BD12B6A822B502C200AEB10B /* KSVideoPlayerLiteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoPlayerLiteView.h; sourceTree = "<group>"; };
  919. BD12B6A922B502C200AEB10B /* KSVideoPlayerBaseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoPlayerBaseView.h; sourceTree = "<group>"; };
  920. BD12B6AA22B502C200AEB10B /* KSVideoLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoLayer.m; sourceTree = "<group>"; };
  921. BD12B6AE22B5076800AEB10B /* KSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLayout.h; sourceTree = "<group>"; };
  922. BD1DC6C3228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceOrder.swift; sourceTree = "<group>"; };
  923. BD1DC6C4228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceOrderApi.swift; sourceTree = "<group>"; };
  924. BD1DC6C8228D005000B89C57 /* OrderCreateParameterModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCreateParameterModel.swift; sourceTree = "<group>"; };
  925. BD1DC6CA228D157000B89C57 /* OrderCreateBackModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCreateBackModel.swift; sourceTree = "<group>"; };
  926. BD1DC6CC228D160D00B89C57 /* OrderPurchaseModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPurchaseModel.swift; sourceTree = "<group>"; };
  927. BD1FC17E22B08D3C00D55081 /* CommunityMyFollowTopicController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityMyFollowTopicController.swift; sourceTree = "<group>"; };
  928. BD1FC18022B08D7A00D55081 /* CommunityMyFollowTopicCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityMyFollowTopicCell.swift; sourceTree = "<group>"; };
  929. BD1FC18522B09F9800D55081 /* CommunitySubCommentController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunitySubCommentController.swift; sourceTree = "<group>"; };
  930. BD1FC18722B0A30300D55081 /* CommunityMajorCommentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityMajorCommentCell.swift; sourceTree = "<group>"; };
  931. BD1FC18922B0A32100D55081 /* CommunityReplyCommentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityReplyCommentCell.swift; sourceTree = "<group>"; };
  932. BD1FC19122B1075E00D55081 /* LXTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LXTextView.h; sourceTree = "<group>"; };
  933. BD1FC19522B1075E00D55081 /* UIView+LX_Frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+LX_Frame.h"; sourceTree = "<group>"; };
  934. BD1FC19722B1075F00D55081 /* LxButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LxButton.h; sourceTree = "<group>"; };
  935. BD1FC19822B1075F00D55081 /* UIColor+Expanded.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Expanded.h"; sourceTree = "<group>"; };
  936. BD1FC19922B1075F00D55081 /* UIView+LX_Frame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+LX_Frame.m"; sourceTree = "<group>"; };
  937. BD1FC19C22B1075F00D55081 /* LxButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LxButton.m; sourceTree = "<group>"; };
  938. BD1FC19E22B1075F00D55081 /* UIColor+Expanded.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Expanded.m"; sourceTree = "<group>"; };
  939. BD1FC19F22B1075F00D55081 /* LXKeyBoard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LXKeyBoard.h; sourceTree = "<group>"; };
  940. BD1FC1A022B1075F00D55081 /* LXTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LXTextView.m; sourceTree = "<group>"; };
  941. BD1FC1A122B1075F00D55081 /* LXKeyBoard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LXKeyBoard.m; sourceTree = "<group>"; };
  942. BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListNoneItemCell.swift; sourceTree = "<group>"; };
  943. BD20F1CC2283C51300677D8E /* OrderFinishPayController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderFinishPayController.swift; sourceTree = "<group>"; };
  944. BD20F1CE2283CE2300677D8E /* OrderFinishPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderFinishPayView.swift; sourceTree = "<group>"; };
  945. BD20F1D22283D0ED00677D8E /* OrderFinishPaySuccessCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderFinishPaySuccessCell.swift; sourceTree = "<group>"; };
  946. BD20F1D42283D15500677D8E /* OrderFinishPayFailureCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderFinishPayFailureCell.swift; sourceTree = "<group>"; };
  947. BD24FABA22B509CF00C7AA3B /* PublishModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = PublishModule.xcassets; sourceTree = "<group>"; };
  948. BD24FABE22B50C4B00C7AA3B /* KSMediaPicker.strings */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; path = KSMediaPicker.strings; sourceTree = "<group>"; };
  949. BD28077722B721BF002AB976 /* PublishEditController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublishEditController.swift; sourceTree = "<group>"; };
  950. BD28077922B72734002AB976 /* PublishEditTitleCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublishEditTitleCell.swift; sourceTree = "<group>"; };
  951. BD28077B22B72761002AB976 /* PublishEditDescribeCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublishEditDescribeCell.swift; sourceTree = "<group>"; };
  952. BD28077D22B72797002AB976 /* PublishEditAddTopicCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublishEditAddTopicCell.swift; sourceTree = "<group>"; };
  953. BD28077F22B727A6002AB976 /* PublishEditAddAddressCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublishEditAddAddressCell.swift; sourceTree = "<group>"; };
  954. BD28078122B727BD002AB976 /* PublishEditAddPicCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublishEditAddPicCell.swift; sourceTree = "<group>"; };
  955. BD29A92D228F99780018CFC3 /* OrderCommentParameterModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentParameterModel.swift; sourceTree = "<group>"; };
  956. BD2FCBE122B21CF70006D974 /* CommunityRecommendController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityRecommendController.swift; sourceTree = "<group>"; };
  957. BD2FCBE322B244250006D974 /* RecommendDetailContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendDetailContentCell.swift; sourceTree = "<group>"; };
  958. BD2FCBE522B2586C0006D974 /* CommunityTagCollectionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityTagCollectionCell.swift; sourceTree = "<group>"; };
  959. BD2FCBE922B267280006D974 /* RecommendNoneCommentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendNoneCommentCell.swift; sourceTree = "<group>"; };
  960. BD3474F422857B85000908C5 /* CommonPayHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayHeader.swift; sourceTree = "<group>"; };
  961. BD3AA45722AE63EC00EF4F20 /* MessageMainViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageMainViewController.swift; sourceTree = "<group>"; };
  962. BD3AA45E22AE6F2500EF4F20 /* MessagePlanetTableCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessagePlanetTableCell.swift; sourceTree = "<group>"; };
  963. BD6EDF47229007EA009A20FE /* OrderApplyRefundModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundModel.swift; sourceTree = "<group>"; };
  964. BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderItemCell.swift; sourceTree = "<group>"; };
  965. BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderHeader.swift; sourceTree = "<group>"; };
  966. BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderFooter.swift; sourceTree = "<group>"; };
  967. BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayExpressInfoShowCell.swift; sourceTree = "<group>"; };
  968. BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayExpressAddInfoCell.swift; sourceTree = "<group>"; };
  969. BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickAddressCell.swift; sourceTree = "<group>"; };
  970. BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickInfoCell.swift; sourceTree = "<group>"; };
  971. BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickAddInfoCell.swift; sourceTree = "<group>"; };
  972. BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RainbowPlanet.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet.debug.xcconfig"; sourceTree = "<group>"; };
  973. BDAA40F6228E947500CF841D /* OrderApplyRefundAccountCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundAccountCell.swift; sourceTree = "<group>"; };
  974. BDAA40F8228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundReasonCell.swift; sourceTree = "<group>"; };
  975. BDAA40FA228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundNoteInfoCell.swift; sourceTree = "<group>"; };
  976. BDAA40FC228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundPhoneCell.swift; sourceTree = "<group>"; };
  977. BDAA40FE228EA37900CF841D /* OrderApplyRefundPhotoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundPhotoCell.swift; sourceTree = "<group>"; };
  978. BDAF83A122B330540004BCC3 /* RecommendSimilarCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendSimilarCell.swift; sourceTree = "<group>"; };
  979. BDAF83A522B334D90004BCC3 /* RecommendSimilarCollectionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendSimilarCollectionCell.swift; sourceTree = "<group>"; };
  980. BDAF83A722B343C50004BCC3 /* RecommendBottomCommentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendBottomCommentView.swift; sourceTree = "<group>"; };
  981. BDAF83A922B388F20004BCC3 /* RecommendDefaultBackCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendDefaultBackCell.swift; sourceTree = "<group>"; };
  982. BDAF83AF22B3B63B0004BCC3 /* RecommendCommentHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendCommentHeader.swift; sourceTree = "<group>"; };
  983. BDAF83B122B3B67D0004BCC3 /* RecommendCommentFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendCommentFooter.swift; sourceTree = "<group>"; };
  984. BDAF83B322B3B6DF0004BCC3 /* RecommendMajorCommentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecommendMajorCommentCell.swift; sourceTree = "<group>"; };
  985. BDD22F0A228FAA5B00D43BFB /* ImageUrlModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageUrlModel.swift; sourceTree = "<group>"; };
  986. BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderController.swift; sourceTree = "<group>"; };
  987. BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartOrderPayView.swift; sourceTree = "<group>"; };
  988. BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayAcountView.swift; sourceTree = "<group>"; };
  989. BDDF3B27228EBB72003A7D16 /* ProductRefundReasonModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductRefundReasonModel.swift; sourceTree = "<group>"; };
  990. BDE3045C22851E4F001D050F /* ProductCartListModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCartListModel.swift; sourceTree = "<group>"; };
  991. BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCartAmountModel.swift; sourceTree = "<group>"; };
  992. BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayView.swift; sourceTree = "<group>"; };
  993. BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayCell.swift; sourceTree = "<group>"; };
  994. BDF45F0C228C00B8004E2682 /* DefaultContactInfoModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DefaultContactInfoModel.swift; sourceTree = "<group>"; };
  995. BDF47D79228271F600941AB9 /* ShoppingCartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartView.swift; sourceTree = "<group>"; };
  996. BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSlidingTopBottomCollectionViewCell.swift; sourceTree = "<group>"; };
  997. BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartAccountView.swift; sourceTree = "<group>"; };
  998. BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartHotSaleTableViewCell.swift; sourceTree = "<group>"; };
  999. BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListTableViewCell.swift; sourceTree = "<group>"; };
  1000. BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListTableViewHeader.swift; sourceTree = "<group>"; };
  1001. BDF8629B228E4125000DEF84 /* OrderCommentController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentController.swift; sourceTree = "<group>"; };
  1002. BDF8629E228E41CC000DEF84 /* OrderLogisticsController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderLogisticsController.swift; sourceTree = "<group>"; };
  1003. BDF862A0228E41CC000DEF84 /* OrderLogisticsInfoCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderLogisticsInfoCell.swift; sourceTree = "<group>"; };
  1004. BDF862A6228E42FA000DEF84 /* OrderApplyRefundController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundController.swift; sourceTree = "<group>"; };
  1005. BDF862A9228E43A4000DEF84 /* OrderCommentTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentTableViewCell.swift; sourceTree = "<group>"; };
  1006. BDF862AB228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentAddImgCollectionCell.swift; sourceTree = "<group>"; };
  1007. BDF862AD228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentDefaultCollectionCell.swift; sourceTree = "<group>"; };
  1008. BDF862B0228E6690000DEF84 /* OrderApplyRefundProductCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundProductCell.swift; sourceTree = "<group>"; };
  1009. D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanet.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1010. /* End PBXFileReference section */
  1011. /* Begin PBXFrameworksBuildPhase section */
  1012. A77F2C5A2231FB49001BD3F6 /* Frameworks */ = {
  1013. isa = PBXFrameworksBuildPhase;
  1014. buildActionMask = 2147483647;
  1015. files = (
  1016. A76390EB2248E27A0067EEE0 /* UserNotifications.framework in Frameworks */,
  1017. A7778C9A22438F5D00C7C47A /* libWeChatSDK.a in Frameworks */,
  1018. A72A730422321EFA00B21995 /* libc++.tbd in Frameworks */,
  1019. A72A730222321EEE00B21995 /* libz.tbd in Frameworks */,
  1020. A72A730022321EE900B21995 /* SystemConfiguration.framework in Frameworks */,
  1021. A72A72FE22321EE200B21995 /* QuartzCore.framework in Frameworks */,
  1022. A72A72FC22321ECE00B21995 /* CoreTelephony.framework in Frameworks */,
  1023. A72A72FA22321EBF00B21995 /* CoreText.framework in Frameworks */,
  1024. A72A72F822321EB600B21995 /* CoreGraphics.framework in Frameworks */,
  1025. A72A72F622321EA000B21995 /* UIKit.framework in Frameworks */,
  1026. A72A72F422321E9A00B21995 /* Foundation.framework in Frameworks */,
  1027. A72A72F222321E9300B21995 /* CFNetwork.framework in Frameworks */,
  1028. A7778C9822438F5D00C7C47A /* AlipaySDK.framework in Frameworks */,
  1029. A72A72F022321E8800B21995 /* CoreMotion.framework in Frameworks */,
  1030. 0A110C4CD931995B8E8BF7C5 /* Pods_RainbowPlanet.framework in Frameworks */,
  1031. );
  1032. runOnlyForDeploymentPostprocessing = 0;
  1033. };
  1034. A77F2C6E2231FB4A001BD3F6 /* Frameworks */ = {
  1035. isa = PBXFrameworksBuildPhase;
  1036. buildActionMask = 2147483647;
  1037. files = (
  1038. );
  1039. runOnlyForDeploymentPostprocessing = 0;
  1040. };
  1041. A77F2C792231FB4A001BD3F6 /* Frameworks */ = {
  1042. isa = PBXFrameworksBuildPhase;
  1043. buildActionMask = 2147483647;
  1044. files = (
  1045. );
  1046. runOnlyForDeploymentPostprocessing = 0;
  1047. };
  1048. /* End PBXFrameworksBuildPhase section */
  1049. /* Begin PBXGroup section */
  1050. 618631008656829220117ED1 /* Pods */ = {
  1051. isa = PBXGroup;
  1052. children = (
  1053. BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */,
  1054. 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */,
  1055. );
  1056. name = Pods;
  1057. sourceTree = "<group>";
  1058. };
  1059. A7003EA1229192AD004E51FB /* PayManagerPay */ = {
  1060. isa = PBXGroup;
  1061. children = (
  1062. A7003EA2229192CC004E51FB /* PayManagerPay.swift */,
  1063. );
  1064. path = PayManagerPay;
  1065. sourceTree = "<group>";
  1066. };
  1067. A70B2C0522841F1B00B2449F /* FloorCell */ = {
  1068. isa = PBXGroup;
  1069. children = (
  1070. A7B4E71B22812D390012914A /* ShoppingMallSlidingLeftRight */,
  1071. );
  1072. path = FloorCell;
  1073. sourceTree = "<group>";
  1074. };
  1075. A70B2C112286B10000B2449F /* ProductDetail */ = {
  1076. isa = PBXGroup;
  1077. children = (
  1078. A70B2C192286B4ED00B2449F /* View */,
  1079. A70B2C1A2286B4F900B2449F /* ViewController */,
  1080. );
  1081. path = ProductDetail;
  1082. sourceTree = "<group>";
  1083. };
  1084. A70B2C122286B14C00B2449F /* ProductView */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. A7B4E732228177BC0012914A /* ProductCollectionReusableView */,
  1088. A70B2C182286B48600B2449F /* TableViewCell */,
  1089. A70B2C132286B1C500B2449F /* CollectionViewCell */,
  1090. );
  1091. path = ProductView;
  1092. sourceTree = "<group>";
  1093. };
  1094. A70B2C132286B1C500B2449F /* CollectionViewCell */ = {
  1095. isa = PBXGroup;
  1096. children = (
  1097. A70B2C472288413E00B2449F /* ProductDetailHotSell */,
  1098. A70B2C172286B47B00B2449F /* ProductSlidingTopBottom */,
  1099. A70B2C162286B44600B2449F /* ProductMallBarChart */,
  1100. A70B2C152286B44600B2449F /* ProductMallRightSideleftPicture */,
  1101. A70B2C142286B41000B2449F /* ProductMallSlidingLeftRight */,
  1102. );
  1103. path = CollectionViewCell;
  1104. sourceTree = "<group>";
  1105. };
  1106. A70B2C142286B41000B2449F /* ProductMallSlidingLeftRight */ = {
  1107. isa = PBXGroup;
  1108. children = (
  1109. A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */,
  1110. );
  1111. path = ProductMallSlidingLeftRight;
  1112. sourceTree = "<group>";
  1113. };
  1114. A70B2C152286B44600B2449F /* ProductMallRightSideleftPicture */ = {
  1115. isa = PBXGroup;
  1116. children = (
  1117. A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */,
  1118. );
  1119. path = ProductMallRightSideleftPicture;
  1120. sourceTree = "<group>";
  1121. };
  1122. A70B2C162286B44600B2449F /* ProductMallBarChart */ = {
  1123. isa = PBXGroup;
  1124. children = (
  1125. A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */,
  1126. );
  1127. path = ProductMallBarChart;
  1128. sourceTree = "<group>";
  1129. };
  1130. A70B2C172286B47B00B2449F /* ProductSlidingTopBottom */ = {
  1131. isa = PBXGroup;
  1132. children = (
  1133. BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */,
  1134. );
  1135. path = ProductSlidingTopBottom;
  1136. sourceTree = "<group>";
  1137. };
  1138. A70B2C182286B48600B2449F /* TableViewCell */ = {
  1139. isa = PBXGroup;
  1140. children = (
  1141. A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */,
  1142. A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */,
  1143. );
  1144. path = TableViewCell;
  1145. sourceTree = "<group>";
  1146. };
  1147. A70B2C192286B4ED00B2449F /* View */ = {
  1148. isa = PBXGroup;
  1149. children = (
  1150. A70B2C3B228819E900B2449F /* ProductDetailHeader */,
  1151. A70B2C702289016600B2449F /* ProductDetailSkuView */,
  1152. A70B2C39228819CA00B2449F /* Cell */,
  1153. A70B843322911AF600882BC5 /* ProductDetailView.swift */,
  1154. );
  1155. path = View;
  1156. sourceTree = "<group>";
  1157. };
  1158. A70B2C1A2286B4F900B2449F /* ViewController */ = {
  1159. isa = PBXGroup;
  1160. children = (
  1161. A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */,
  1162. );
  1163. path = ViewController;
  1164. sourceTree = "<group>";
  1165. };
  1166. A70B2C232286C03800B2449F /* NXLPageControl */ = {
  1167. isa = PBXGroup;
  1168. children = (
  1169. A70B2C242286C03800B2449F /* NXLPageControl.swift */,
  1170. );
  1171. path = NXLPageControl;
  1172. sourceTree = "<group>";
  1173. };
  1174. A70B2C38228819B500B2449F /* ProductDetailProductLabel */ = {
  1175. isa = PBXGroup;
  1176. children = (
  1177. A70B2C3222880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift */,
  1178. A70B2C362288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift */,
  1179. );
  1180. path = ProductDetailProductLabel;
  1181. sourceTree = "<group>";
  1182. };
  1183. A70B2C39228819CA00B2449F /* Cell */ = {
  1184. isa = PBXGroup;
  1185. children = (
  1186. A70B842C228F97AE00882BC5 /* ProcuctDetailSelectSku */,
  1187. A70B2C3A228819DC00B2449F /* ProductDetailProductInfo */,
  1188. A70B2C38228819B500B2449F /* ProductDetailProductLabel */,
  1189. A70B2C3C2288259200B2449F /* ProductDetailEvaluation */,
  1190. A70B2C4122883B2F00B2449F /* ProductDetailShop */,
  1191. A70B2C442288408E00B2449F /* ProductDetailHotSell */,
  1192. A70B2C4A228845B200B2449F /* ProductDetailParameter */,
  1193. A70B2C4F22884EF100B2449F /* ProductDetailDescription */,
  1194. );
  1195. path = Cell;
  1196. sourceTree = "<group>";
  1197. };
  1198. A70B2C3A228819DC00B2449F /* ProductDetailProductInfo */ = {
  1199. isa = PBXGroup;
  1200. children = (
  1201. A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */,
  1202. );
  1203. path = ProductDetailProductInfo;
  1204. sourceTree = "<group>";
  1205. };
  1206. A70B2C3B228819E900B2449F /* ProductDetailHeader */ = {
  1207. isa = PBXGroup;
  1208. children = (
  1209. A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */,
  1210. A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */,
  1211. A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */,
  1212. );
  1213. path = ProductDetailHeader;
  1214. sourceTree = "<group>";
  1215. };
  1216. A70B2C3C2288259200B2449F /* ProductDetailEvaluation */ = {
  1217. isa = PBXGroup;
  1218. children = (
  1219. A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */,
  1220. );
  1221. path = ProductDetailEvaluation;
  1222. sourceTree = "<group>";
  1223. };
  1224. A70B2C4122883B2F00B2449F /* ProductDetailShop */ = {
  1225. isa = PBXGroup;
  1226. children = (
  1227. A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */,
  1228. );
  1229. path = ProductDetailShop;
  1230. sourceTree = "<group>";
  1231. };
  1232. A70B2C442288408E00B2449F /* ProductDetailHotSell */ = {
  1233. isa = PBXGroup;
  1234. children = (
  1235. A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */,
  1236. );
  1237. path = ProductDetailHotSell;
  1238. sourceTree = "<group>";
  1239. };
  1240. A70B2C472288413E00B2449F /* ProductDetailHotSell */ = {
  1241. isa = PBXGroup;
  1242. children = (
  1243. A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */,
  1244. );
  1245. path = ProductDetailHotSell;
  1246. sourceTree = "<group>";
  1247. };
  1248. A70B2C4A228845B200B2449F /* ProductDetailParameter */ = {
  1249. isa = PBXGroup;
  1250. children = (
  1251. A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */,
  1252. );
  1253. path = ProductDetailParameter;
  1254. sourceTree = "<group>";
  1255. };
  1256. A70B2C4F22884EF100B2449F /* ProductDetailDescription */ = {
  1257. isa = PBXGroup;
  1258. children = (
  1259. A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */,
  1260. );
  1261. path = ProductDetailDescription;
  1262. sourceTree = "<group>";
  1263. };
  1264. A70B2C502288581600B2449F /* ShareModule */ = {
  1265. isa = PBXGroup;
  1266. children = (
  1267. A70B2C512288582800B2449F /* View */,
  1268. );
  1269. path = ShareModule;
  1270. sourceTree = "<group>";
  1271. };
  1272. A70B2C512288582800B2449F /* View */ = {
  1273. isa = PBXGroup;
  1274. children = (
  1275. A70B2C522288584500B2449F /* ShareView.swift */,
  1276. A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */,
  1277. );
  1278. path = View;
  1279. sourceTree = "<group>";
  1280. };
  1281. A70B2C5622886AAA00B2449F /* Shop */ = {
  1282. isa = PBXGroup;
  1283. children = (
  1284. A70B2C5822886ACC00B2449F /* ViewController */,
  1285. A70B2C5722886AC700B2449F /* View */,
  1286. );
  1287. path = Shop;
  1288. sourceTree = "<group>";
  1289. };
  1290. A70B2C5722886AC700B2449F /* View */ = {
  1291. isa = PBXGroup;
  1292. children = (
  1293. A70B2C5B22886B0000B2449F /* ShopView.swift */,
  1294. A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */,
  1295. A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */,
  1296. A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */,
  1297. A7649B6822977A4300BCE9D1 /* ShopSectionHeaderModel.swift */,
  1298. );
  1299. path = View;
  1300. sourceTree = "<group>";
  1301. };
  1302. A70B2C5822886ACC00B2449F /* ViewController */ = {
  1303. isa = PBXGroup;
  1304. children = (
  1305. A70B2C5922886ADF00B2449F /* ShopViewController.swift */,
  1306. );
  1307. path = ViewController;
  1308. sourceTree = "<group>";
  1309. };
  1310. A70B2C692288810700B2449F /* PickView */ = {
  1311. isa = PBXGroup;
  1312. children = (
  1313. A70B2C6A2288815300B2449F /* PickHeaderView.swift */,
  1314. A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */,
  1315. );
  1316. path = PickView;
  1317. sourceTree = "<group>";
  1318. };
  1319. A70B2C702289016600B2449F /* ProductDetailSkuView */ = {
  1320. isa = PBXGroup;
  1321. children = (
  1322. A70B2C722289019200B2449F /* ProductDetailSkuView.swift */,
  1323. A70B2C74228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift */,
  1324. A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */,
  1325. );
  1326. path = ProductDetailSkuView;
  1327. sourceTree = "<group>";
  1328. };
  1329. A70B842C228F97AE00882BC5 /* ProcuctDetailSelectSku */ = {
  1330. isa = PBXGroup;
  1331. children = (
  1332. A70B842D228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift */,
  1333. );
  1334. path = ProcuctDetailSelectSku;
  1335. sourceTree = "<group>";
  1336. };
  1337. A7146346228EFCE20066099B /* SKUDataFilter */ = {
  1338. isa = PBXGroup;
  1339. children = (
  1340. A7146348228EFCE20066099B /* ORSKUDataFilter.h */,
  1341. A7146347228EFCE20066099B /* ORSKUDataFilter.m */,
  1342. A73911B2229ECE340033177E /* UICollectionViewLeftAlignedLayout.h */,
  1343. A73911B1229ECE340033177E /* UICollectionViewLeftAlignedLayout.m */,
  1344. );
  1345. path = SKUDataFilter;
  1346. sourceTree = "<group>";
  1347. };
  1348. A71738A42289787C000AEA6A /* SwiftMoyaServiceShop */ = {
  1349. isa = PBXGroup;
  1350. children = (
  1351. A71738A522897892000AEA6A /* SwiftMoyaServiceShopApi.swift */,
  1352. A71738A722897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift */,
  1353. );
  1354. path = SwiftMoyaServiceShop;
  1355. sourceTree = "<group>";
  1356. };
  1357. A71738A922898651000AEA6A /* ShopModel */ = {
  1358. isa = PBXGroup;
  1359. children = (
  1360. A71738AA22898660000AEA6A /* ShopModel.swift */,
  1361. );
  1362. path = ShopModel;
  1363. sourceTree = "<group>";
  1364. };
  1365. A71901622275411C00104A50 /* ProvinceCityArea */ = {
  1366. isa = PBXGroup;
  1367. children = (
  1368. A71901652275417400104A50 /* Model */,
  1369. A71901632275413100104A50 /* View */,
  1370. );
  1371. path = ProvinceCityArea;
  1372. sourceTree = "<group>";
  1373. };
  1374. A71901632275413100104A50 /* View */ = {
  1375. isa = PBXGroup;
  1376. children = (
  1377. A71901682275464000104A50 /* ProvinceCityAreaView.swift */,
  1378. A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */,
  1379. );
  1380. path = View;
  1381. sourceTree = "<group>";
  1382. };
  1383. A71901652275417400104A50 /* Model */ = {
  1384. isa = PBXGroup;
  1385. children = (
  1386. A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */,
  1387. );
  1388. path = Model;
  1389. sourceTree = "<group>";
  1390. };
  1391. A71901712275F56C00104A50 /* BaiduToCityFactory */ = {
  1392. isa = PBXGroup;
  1393. children = (
  1394. A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */,
  1395. A71901742275F71F00104A50 /* BaiduToCityModel.swift */,
  1396. );
  1397. path = BaiduToCityFactory;
  1398. sourceTree = "<group>";
  1399. };
  1400. A719EE6622AF4374001AAC98 /* CommunityModule */ = {
  1401. isa = PBXGroup;
  1402. children = (
  1403. A719EE6722AF438E001AAC98 /* Community */,
  1404. BD1FC18222B09F4700D55081 /* CommunitySubComment */,
  1405. BD2FCBDE22B21BE00006D974 /* CommunityRecommendDetail */,
  1406. BD1FC17D22B08CEB00D55081 /* CommunityMyFollowTopic */,
  1407. );
  1408. path = CommunityModule;
  1409. sourceTree = "<group>";
  1410. };
  1411. A719EE6722AF438E001AAC98 /* Community */ = {
  1412. isa = PBXGroup;
  1413. children = (
  1414. A719EE6922AF43EE001AAC98 /* View */,
  1415. A719EE6822AF4395001AAC98 /* ViewController */,
  1416. );
  1417. path = Community;
  1418. sourceTree = "<group>";
  1419. };
  1420. A719EE6822AF4395001AAC98 /* ViewController */ = {
  1421. isa = PBXGroup;
  1422. children = (
  1423. A719EE6D22AF441F001AAC98 /* CommunityViewController.swift */,
  1424. A7931E1722AFC1DF00297D0A /* CommunityListViewController.swift */,
  1425. A7F2D6CF22B1119A0093000B /* CommunityEnum.swift */,
  1426. );
  1427. path = ViewController;
  1428. sourceTree = "<group>";
  1429. };
  1430. A719EE6922AF43EE001AAC98 /* View */ = {
  1431. isa = PBXGroup;
  1432. children = (
  1433. A7F2D6C422B0DBCB0093000B /* Cell */,
  1434. A7F2D6C322B0DBBB0093000B /* Header */,
  1435. A7F2D6BC22B09F930093000B /* CommunityNavigationBarView.swift */,
  1436. );
  1437. path = View;
  1438. sourceTree = "<group>";
  1439. };
  1440. A71AA50D22721537008FF1A5 /* ExpressAddressList */ = {
  1441. isa = PBXGroup;
  1442. children = (
  1443. A71AA511227215A9008FF1A5 /* View */,
  1444. A71AA50E22721559008FF1A5 /* ViewController */,
  1445. );
  1446. path = ExpressAddressList;
  1447. sourceTree = "<group>";
  1448. };
  1449. A71AA50E22721559008FF1A5 /* ViewController */ = {
  1450. isa = PBXGroup;
  1451. children = (
  1452. A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */,
  1453. );
  1454. path = ViewController;
  1455. sourceTree = "<group>";
  1456. };
  1457. A71AA511227215A9008FF1A5 /* View */ = {
  1458. isa = PBXGroup;
  1459. children = (
  1460. A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */,
  1461. A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */,
  1462. );
  1463. path = View;
  1464. sourceTree = "<group>";
  1465. };
  1466. A71AA51622721980008FF1A5 /* EditExpressAddress */ = {
  1467. isa = PBXGroup;
  1468. children = (
  1469. A71AA51A227219DA008FF1A5 /* View */,
  1470. A71AA517227219B7008FF1A5 /* ViewController */,
  1471. );
  1472. path = EditExpressAddress;
  1473. sourceTree = "<group>";
  1474. };
  1475. A71AA517227219B7008FF1A5 /* ViewController */ = {
  1476. isa = PBXGroup;
  1477. children = (
  1478. A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */,
  1479. );
  1480. path = ViewController;
  1481. sourceTree = "<group>";
  1482. };
  1483. A71AA51A227219DA008FF1A5 /* View */ = {
  1484. isa = PBXGroup;
  1485. children = (
  1486. A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */,
  1487. A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */,
  1488. );
  1489. path = View;
  1490. sourceTree = "<group>";
  1491. };
  1492. A71AA51D22729F0B008FF1A5 /* AuthorizationSwift */ = {
  1493. isa = PBXGroup;
  1494. children = (
  1495. A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */,
  1496. );
  1497. path = AuthorizationSwift;
  1498. sourceTree = "<group>";
  1499. };
  1500. A71AA5242273202E008FF1A5 /* SwiftMoyaServiceConfig */ = {
  1501. isa = PBXGroup;
  1502. children = (
  1503. A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */,
  1504. A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */,
  1505. );
  1506. path = SwiftMoyaServiceConfig;
  1507. sourceTree = "<group>";
  1508. };
  1509. A71AF0A3226E9D8A001730FE /* SearchModule */ = {
  1510. isa = PBXGroup;
  1511. children = (
  1512. A71AF0B2226EF953001730FE /* SearchResult */,
  1513. A71AF0B1226EF947001730FE /* Search */,
  1514. );
  1515. path = SearchModule;
  1516. sourceTree = "<group>";
  1517. };
  1518. A71AF0A7226EDDCC001730FE /* ViewController */ = {
  1519. isa = PBXGroup;
  1520. children = (
  1521. A71AF0A5226EDDC8001730FE /* SearchViewController.swift */,
  1522. );
  1523. path = ViewController;
  1524. sourceTree = "<group>";
  1525. };
  1526. A71AF0A8226EDDE0001730FE /* View */ = {
  1527. isa = PBXGroup;
  1528. children = (
  1529. A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */,
  1530. A71AF0A9226EDDF5001730FE /* SearchView.swift */,
  1531. A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */,
  1532. A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */,
  1533. );
  1534. path = View;
  1535. sourceTree = "<group>";
  1536. };
  1537. A71AF0B1226EF947001730FE /* Search */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. A71AF0A8226EDDE0001730FE /* View */,
  1541. A71AF0A7226EDDCC001730FE /* ViewController */,
  1542. );
  1543. path = Search;
  1544. sourceTree = "<group>";
  1545. };
  1546. A71AF0B2226EF953001730FE /* SearchResult */ = {
  1547. isa = PBXGroup;
  1548. children = (
  1549. A71AF0B3226EF983001730FE /* View */,
  1550. A71AF0B4226EF989001730FE /* ViewController */,
  1551. );
  1552. path = SearchResult;
  1553. sourceTree = "<group>";
  1554. };
  1555. A71AF0B3226EF983001730FE /* View */ = {
  1556. isa = PBXGroup;
  1557. children = (
  1558. A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */,
  1559. A71AF0B9226F00F8001730FE /* SearchResultView.swift */,
  1560. );
  1561. path = View;
  1562. sourceTree = "<group>";
  1563. };
  1564. A71AF0B4226EF989001730FE /* ViewController */ = {
  1565. isa = PBXGroup;
  1566. children = (
  1567. A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */,
  1568. );
  1569. path = ViewController;
  1570. sourceTree = "<group>";
  1571. };
  1572. A71D2A5E2265671100A55D16 /* View */ = {
  1573. isa = PBXGroup;
  1574. children = (
  1575. A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */,
  1576. );
  1577. path = View;
  1578. sourceTree = "<group>";
  1579. };
  1580. A71D2A612265756E00A55D16 /* SwiftMoyaServiceApi */ = {
  1581. isa = PBXGroup;
  1582. children = (
  1583. A71738A42289787C000AEA6A /* SwiftMoyaServiceShop */,
  1584. A7A98E29228015BA005306E9 /* SwiftMoyaServiceCMS */,
  1585. A7A98DFB227E84D0005306E9 /* SwiftMoyaServiceProduct */,
  1586. A71AA5242273202E008FF1A5 /* SwiftMoyaServiceConfig */,
  1587. A72843FD224DB79400F82F30 /* SwiftMoyaServiceUser */,
  1588. A7C3DD182264229900FA262E /* SwiftMoyaServiceSMS */,
  1589. BD1DC6C2228CFD0B00B89C57 /* SwiftMoyaServiceOrder */,
  1590. A7284A7122546441000BAEC4 /* SwiftMoyaServicePay */,
  1591. );
  1592. path = SwiftMoyaServiceApi;
  1593. sourceTree = "<group>";
  1594. };
  1595. A7274C4E228EE5EF000E3A07 /* PhotoAndCameraManager */ = {
  1596. isa = PBXGroup;
  1597. children = (
  1598. A7274C4F228EE5EF000E3A07 /* PhotoAndCameraManager.swift */,
  1599. );
  1600. path = PhotoAndCameraManager;
  1601. sourceTree = "<group>";
  1602. };
  1603. A7274C51228EE635000E3A07 /* SwiftScan */ = {
  1604. isa = PBXGroup;
  1605. children = (
  1606. A7274C52228EE635000E3A07 /* LBXScanNetAnimation.swift */,
  1607. A7274C53228EE635000E3A07 /* LBXScanView.swift */,
  1608. A7274C54228EE635000E3A07 /* LBXScanViewController.swift */,
  1609. A7274C55228EE635000E3A07 /* LBXScanLineAnimation.swift */,
  1610. A7274C56228EE635000E3A07 /* LBXScanViewStyle.swift */,
  1611. A7274C57228EE635000E3A07 /* LBXPermissions.swift */,
  1612. A7274C58228EE635000E3A07 /* LBXScanWrapper.swift */,
  1613. );
  1614. path = SwiftScan;
  1615. sourceTree = "<group>";
  1616. };
  1617. A72843FD224DB79400F82F30 /* SwiftMoyaServiceUser */ = {
  1618. isa = PBXGroup;
  1619. children = (
  1620. A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */,
  1621. A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */,
  1622. );
  1623. path = SwiftMoyaServiceUser;
  1624. sourceTree = "<group>";
  1625. };
  1626. A7284402224DBE3500F82F30 /* UserModel */ = {
  1627. isa = PBXGroup;
  1628. children = (
  1629. A7284403224DBFBD00F82F30 /* UserModel.swift */,
  1630. A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */,
  1631. A757C92D22744ACE00226355 /* AddressManagerListModel.swift */,
  1632. A79057012276C9770037F823 /* SetPasswordModel.swift */,
  1633. BDF45F0C228C00B8004E2682 /* DefaultContactInfoModel.swift */,
  1634. );
  1635. path = UserModel;
  1636. sourceTree = "<group>";
  1637. };
  1638. A7284A502252EB28000BAEC4 /* SwiftMoyaNetWorkManager */ = {
  1639. isa = PBXGroup;
  1640. children = (
  1641. A72A7384223396CB00B21995 /* ApiMacro.swift */,
  1642. A7A17E5E22A0CEF200B7A77E /* SwiftMoyaNetWorkManagerTools.swift */,
  1643. A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */,
  1644. );
  1645. path = SwiftMoyaNetWorkManager;
  1646. sourceTree = "<group>";
  1647. };
  1648. A7284A7122546441000BAEC4 /* SwiftMoyaServicePay */ = {
  1649. isa = PBXGroup;
  1650. children = (
  1651. A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */,
  1652. A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */,
  1653. );
  1654. path = SwiftMoyaServicePay;
  1655. sourceTree = "<group>";
  1656. };
  1657. A7284A782254A900000BAEC4 /* BaiduMapManager */ = {
  1658. isa = PBXGroup;
  1659. children = (
  1660. A7541501224C5ECA002480B5 /* BaiduMapManager.swift */,
  1661. A72A726322321DBD00B21995 /* LocationModel.swift */,
  1662. );
  1663. path = BaiduMapManager;
  1664. sourceTree = "<group>";
  1665. };
  1666. A729B5A52266DBC9004AE098 /* CommonModules */ = {
  1667. isa = PBXGroup;
  1668. children = (
  1669. A70B2C692288810700B2449F /* PickView */,
  1670. A70B2C502288581600B2449F /* ShareModule */,
  1671. A72C011F2275399D0065E0C3 /* ProvinceCityAreaModules */,
  1672. A7636ABD2268123B00374F9E /* LocationModule */,
  1673. A71AF0A3226E9D8A001730FE /* SearchModule */,
  1674. );
  1675. path = CommonModules;
  1676. sourceTree = "<group>";
  1677. };
  1678. A729B5A62266DBFA004AE098 /* AlertSheetView */ = {
  1679. isa = PBXGroup;
  1680. children = (
  1681. A729B5A72266F2E0004AE098 /* AlertSheetView.swift */,
  1682. );
  1683. path = AlertSheetView;
  1684. sourceTree = "<group>";
  1685. };
  1686. A729B5AB2266FF35004AE098 /* View */ = {
  1687. isa = PBXGroup;
  1688. children = (
  1689. A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */,
  1690. );
  1691. path = View;
  1692. sourceTree = "<group>";
  1693. };
  1694. A729B5AE226712FF004AE098 /* View */ = {
  1695. isa = PBXGroup;
  1696. children = (
  1697. A729B5AF22671310004AE098 /* MobileLoginView.swift */,
  1698. );
  1699. path = View;
  1700. sourceTree = "<group>";
  1701. };
  1702. A729B5B122672401004AE098 /* PasswordLogin */ = {
  1703. isa = PBXGroup;
  1704. children = (
  1705. A729B5B52267269E004AE098 /* View */,
  1706. A729B5B222672523004AE098 /* ViewController */,
  1707. );
  1708. path = PasswordLogin;
  1709. sourceTree = "<group>";
  1710. };
  1711. A729B5B222672523004AE098 /* ViewController */ = {
  1712. isa = PBXGroup;
  1713. children = (
  1714. A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */,
  1715. );
  1716. path = ViewController;
  1717. sourceTree = "<group>";
  1718. };
  1719. A729B5B52267269E004AE098 /* View */ = {
  1720. isa = PBXGroup;
  1721. children = (
  1722. A729B5B62267270B004AE098 /* PasswordLoginView.swift */,
  1723. );
  1724. path = View;
  1725. sourceTree = "<group>";
  1726. };
  1727. A72A7252223219BD00B21995 /* Service */ = {
  1728. isa = PBXGroup;
  1729. children = (
  1730. A738D203225AEAD000EEE860 /* Model */,
  1731. A72A7380223396CB00B21995 /* SwiftMoyaService */,
  1732. );
  1733. path = Service;
  1734. sourceTree = "<group>";
  1735. };
  1736. A72A725322321A6900B21995 /* Lib */ = {
  1737. isa = PBXGroup;
  1738. children = (
  1739. A7778C8E22438F5C00C7C47A /* AlipaySDK */,
  1740. A7778C9122438F5D00C7C47A /* WeChatSDK */,
  1741. );
  1742. path = Lib;
  1743. sourceTree = "<group>";
  1744. };
  1745. A72A725422321B9400B21995 /* Manager */ = {
  1746. isa = PBXGroup;
  1747. children = (
  1748. A73911AB229CD6080033177E /* AlamofireReachabilityManager */,
  1749. A7778CA52243A03400C7C47A /* IQKeyboardManagerSwiftManager */,
  1750. A72A730522321F1D00B21995 /* PayManager */,
  1751. A72A726122321DBD00B21995 /* MapManager */,
  1752. A72A726422321DBD00B21995 /* UMManager */,
  1753. );
  1754. path = Manager;
  1755. sourceTree = "<group>";
  1756. };
  1757. A72A725922321C5E00B21995 /* Macro */ = {
  1758. isa = PBXGroup;
  1759. children = (
  1760. A72A72CA22321E2600B21995 /* Common.swift */,
  1761. A72A72CD22321E2600B21995 /* ColorMacro.swift */,
  1762. A72A72C822321E2500B21995 /* FontMacro.swift */,
  1763. A72A72C922321E2600B21995 /* HTMLURLMacro.swift */,
  1764. A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */,
  1765. A72A726022321D3400B21995 /* RainbowPlanet-Bridging-Header.h */,
  1766. );
  1767. path = Macro;
  1768. sourceTree = "<group>";
  1769. };
  1770. A72A726122321DBD00B21995 /* MapManager */ = {
  1771. isa = PBXGroup;
  1772. children = (
  1773. A7284A782254A900000BAEC4 /* BaiduMapManager */,
  1774. );
  1775. path = MapManager;
  1776. sourceTree = "<group>";
  1777. };
  1778. A72A726422321DBD00B21995 /* UMManager */ = {
  1779. isa = PBXGroup;
  1780. children = (
  1781. A72A726522321DBD00B21995 /* UMManager.swift */,
  1782. A738D66E225D9BD900EEE860 /* UMLoginModel.swift */,
  1783. );
  1784. path = UMManager;
  1785. sourceTree = "<group>";
  1786. };
  1787. A72A727122321DDE00B21995 /* NumberKeyboard */ = {
  1788. isa = PBXGroup;
  1789. children = (
  1790. A72A727222321DDE00B21995 /* NumberKeyboard.swift */,
  1791. );
  1792. path = NumberKeyboard;
  1793. sourceTree = "<group>";
  1794. };
  1795. A72A727322321DDE00B21995 /* Log */ = {
  1796. isa = PBXGroup;
  1797. children = (
  1798. A72A727422321DDE00B21995 /* Log.swift */,
  1799. );
  1800. path = Log;
  1801. sourceTree = "<group>";
  1802. };
  1803. A72A727522321DDE00B21995 /* SwiftProgressHUD */ = {
  1804. isa = PBXGroup;
  1805. children = (
  1806. A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */,
  1807. );
  1808. path = SwiftProgressHUD;
  1809. sourceTree = "<group>";
  1810. };
  1811. A72A727722321DDF00B21995 /* Regex */ = {
  1812. isa = PBXGroup;
  1813. children = (
  1814. A72A727822321DDF00B21995 /* Regex.swift */,
  1815. );
  1816. path = Regex;
  1817. sourceTree = "<group>";
  1818. };
  1819. A72A727B22321DDF00B21995 /* Countdown */ = {
  1820. isa = PBXGroup;
  1821. children = (
  1822. A72A727C22321DDF00B21995 /* CountdownButton.swift */,
  1823. A7778CAA2244B12500C7C47A /* CountDownManager.swift */,
  1824. );
  1825. path = Countdown;
  1826. sourceTree = "<group>";
  1827. };
  1828. A72A727D22321DDF00B21995 /* AppInfo */ = {
  1829. isa = PBXGroup;
  1830. children = (
  1831. A72A727E22321DDF00B21995 /* AppInfo.swift */,
  1832. );
  1833. path = AppInfo;
  1834. sourceTree = "<group>";
  1835. };
  1836. A72A727F22321DDF00B21995 /* CGView */ = {
  1837. isa = PBXGroup;
  1838. children = (
  1839. A72A728022321DDF00B21995 /* CGView.swift */,
  1840. );
  1841. path = CGView;
  1842. sourceTree = "<group>";
  1843. };
  1844. A72A728B22321DE000B21995 /* Extension */ = {
  1845. isa = PBXGroup;
  1846. children = (
  1847. A72A728C22321DE000B21995 /* Extension+UIImage.swift */,
  1848. A72A728D22321DE000B21995 /* Extension+UITextView.swift */,
  1849. A72A729322321DE000B21995 /* Extension+UILabel.swift */,
  1850. A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */,
  1851. A72A729422321DE000B21995 /* Extension+UIAlertController.swift */,
  1852. A70EBBBF22561179000AD74F /* Extension+UITableView.swift */,
  1853. A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */,
  1854. A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */,
  1855. A72A729922321DE000B21995 /* Extension+UIButton.swift */,
  1856. A72A729722321DE000B21995 /* Extension+UIColor.swift */,
  1857. A72A729A22321DE000B21995 /* Extension+UIView.swift */,
  1858. A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */,
  1859. A72A729222321DE000B21995 /* Extension+String.swift */,
  1860. A72A728E22321DE000B21995 /* Extension+NSRange.swift */,
  1861. A72A729122321DE000B21995 /* Extension+Array.swift */,
  1862. A72A729022321DE000B21995 /* Extension+UserDefaults.swift */,
  1863. A72A729D22321DE000B21995 /* Extension+Date.swift */,
  1864. A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */,
  1865. A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */,
  1866. A72A729822321DE000B21995 /* Extension+RxTimer.swift */,
  1867. );
  1868. path = Extension;
  1869. sourceTree = "<group>";
  1870. };
  1871. A72A729F22321DE000B21995 /* WKWebView */ = {
  1872. isa = PBXGroup;
  1873. children = (
  1874. A72A72A022321DE000B21995 /* WKWebViewConfig.swift */,
  1875. A72A72A122321DE000B21995 /* WebView.swift */,
  1876. );
  1877. path = WKWebView;
  1878. sourceTree = "<group>";
  1879. };
  1880. A72A730522321F1D00B21995 /* PayManager */ = {
  1881. isa = PBXGroup;
  1882. children = (
  1883. A7003EA1229192AD004E51FB /* PayManagerPay */,
  1884. BDEF778F228571C200ED0AC0 /* PayManagerView */,
  1885. A72A7331223256D700B21995 /* PayManager */,
  1886. A72A730622321F2900B21995 /* AlipayManager */,
  1887. A72A730722321F3700B21995 /* WeChatpayManager */,
  1888. );
  1889. path = PayManager;
  1890. sourceTree = "<group>";
  1891. };
  1892. A72A730622321F2900B21995 /* AlipayManager */ = {
  1893. isa = PBXGroup;
  1894. children = (
  1895. A72A73132232475E00B21995 /* AlipayManager.swift */,
  1896. A7284A7622547333000BAEC4 /* AlipayResultModel.swift */,
  1897. );
  1898. path = AlipayManager;
  1899. sourceTree = "<group>";
  1900. };
  1901. A72A730722321F3700B21995 /* WeChatpayManager */ = {
  1902. isa = PBXGroup;
  1903. children = (
  1904. A72A73152232481600B21995 /* WeChatpayManager.swift */,
  1905. A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */,
  1906. );
  1907. path = WeChatpayManager;
  1908. sourceTree = "<group>";
  1909. };
  1910. A72A7331223256D700B21995 /* PayManager */ = {
  1911. isa = PBXGroup;
  1912. children = (
  1913. A72A7332223256E100B21995 /* PayManager.swift */,
  1914. );
  1915. path = PayManager;
  1916. sourceTree = "<group>";
  1917. };
  1918. A72A73722233966800B21995 /* RootModel */ = {
  1919. isa = PBXGroup;
  1920. children = (
  1921. A7284A512252EE9A000BAEC4 /* RootModel.swift */,
  1922. A728443F224DFACD00F82F30 /* InfoModel.swift */,
  1923. A7284A532252FB5C000BAEC4 /* PaginationModel.swift */,
  1924. );
  1925. path = RootModel;
  1926. sourceTree = "<group>";
  1927. };
  1928. A72A7380223396CB00B21995 /* SwiftMoyaService */ = {
  1929. isa = PBXGroup;
  1930. children = (
  1931. A79057042276D6250037F823 /* SwiftMoyaServiceManger */,
  1932. A71D2A612265756E00A55D16 /* SwiftMoyaServiceApi */,
  1933. );
  1934. path = SwiftMoyaService;
  1935. sourceTree = "<group>";
  1936. };
  1937. A72C011E227539800065E0C3 /* Src */ = {
  1938. isa = PBXGroup;
  1939. children = (
  1940. A7190166227543DB00104A50 /* baidu_cityid_rel.json */,
  1941. A72C01212275404A0065E0C3 /* province_city_area.json */,
  1942. );
  1943. path = Src;
  1944. sourceTree = "<group>";
  1945. };
  1946. A72C011F2275399D0065E0C3 /* ProvinceCityAreaModules */ = {
  1947. isa = PBXGroup;
  1948. children = (
  1949. A71901622275411C00104A50 /* ProvinceCityArea */,
  1950. );
  1951. path = ProvinceCityAreaModules;
  1952. sourceTree = "<group>";
  1953. };
  1954. A738D203225AEAD000EEE860 /* Model */ = {
  1955. isa = PBXGroup;
  1956. children = (
  1957. A72A73722233966800B21995 /* RootModel */,
  1958. A71738A922898651000AEA6A /* ShopModel */,
  1959. A7B4E736228190810012914A /* CommonModel */,
  1960. A7A98E00227E88E8005306E9 /* ProductModel */,
  1961. BD1DC6C7228D002200B89C57 /* OrderModel */,
  1962. A79057032276D5FE0037F823 /* ConfigModel */,
  1963. A7284402224DBE3500F82F30 /* UserModel */,
  1964. A7B4E733228190630012914A /* CMSModel */,
  1965. );
  1966. path = Model;
  1967. sourceTree = "<group>";
  1968. };
  1969. A73911AB229CD6080033177E /* AlamofireReachabilityManager */ = {
  1970. isa = PBXGroup;
  1971. children = (
  1972. A73911AC229CD62F0033177E /* AlamofireReachabilityManager.swift */,
  1973. );
  1974. path = AlamofireReachabilityManager;
  1975. sourceTree = "<group>";
  1976. };
  1977. A7391212229F75F50033177E /* JXPagingView-Swift */ = {
  1978. isa = PBXGroup;
  1979. children = (
  1980. A7391213229F75F50033177E /* JXPagingMainTableView.swift */,
  1981. A7391214229F75F50033177E /* JXPagingView.swift */,
  1982. A7391215229F75F50033177E /* JXPagingListRefreshView.swift */,
  1983. A7391216229F75F50033177E /* JXPagingListContainerView.swift */,
  1984. );
  1985. path = "JXPagingView-Swift";
  1986. sourceTree = "<group>";
  1987. };
  1988. A73D7C662268A032002A4CE3 /* SwiftyStarRatingView */ = {
  1989. isa = PBXGroup;
  1990. children = (
  1991. A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */,
  1992. );
  1993. path = SwiftyStarRatingView;
  1994. sourceTree = "<group>";
  1995. };
  1996. A75414F9224B5EFC002480B5 /* MobileLogin */ = {
  1997. isa = PBXGroup;
  1998. children = (
  1999. A729B5AE226712FF004AE098 /* View */,
  2000. A75414FA224B5F17002480B5 /* ViewController */,
  2001. );
  2002. path = MobileLogin;
  2003. sourceTree = "<group>";
  2004. };
  2005. A75414FA224B5F17002480B5 /* ViewController */ = {
  2006. isa = PBXGroup;
  2007. children = (
  2008. A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */,
  2009. );
  2010. path = ViewController;
  2011. sourceTree = "<group>";
  2012. };
  2013. A7541507224CACF9002480B5 /* SwiftSign */ = {
  2014. isa = PBXGroup;
  2015. children = (
  2016. A754150B224CACF9002480B5 /* SwiftSign.swift */,
  2017. );
  2018. path = SwiftSign;
  2019. sourceTree = "<group>";
  2020. };
  2021. A757C9312274882E00226355 /* MJRefreshEX */ = {
  2022. isa = PBXGroup;
  2023. children = (
  2024. A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */,
  2025. A757C9332274882E00226355 /* UIScrollView+MJRefreshEX.h */,
  2026. );
  2027. path = MJRefreshEX;
  2028. sourceTree = "<group>";
  2029. };
  2030. A7636ABD2268123B00374F9E /* LocationModule */ = {
  2031. isa = PBXGroup;
  2032. children = (
  2033. A7BB68612269B1DD00AB07A2 /* AddressPOI */,
  2034. A7BB68512268DCF800AB07A2 /* SelfRecommendation */,
  2035. A7636ABE2268125300374F9E /* Location */,
  2036. );
  2037. path = LocationModule;
  2038. sourceTree = "<group>";
  2039. };
  2040. A7636ABE2268125300374F9E /* Location */ = {
  2041. isa = PBXGroup;
  2042. children = (
  2043. A7636AC6226815BA00374F9E /* View */,
  2044. A7636ABF226812BD00374F9E /* ViewController */,
  2045. );
  2046. path = Location;
  2047. sourceTree = "<group>";
  2048. };
  2049. A7636ABF226812BD00374F9E /* ViewController */ = {
  2050. isa = PBXGroup;
  2051. children = (
  2052. A7636AC42268139C00374F9E /* LocationViewController.swift */,
  2053. );
  2054. path = ViewController;
  2055. sourceTree = "<group>";
  2056. };
  2057. A7636AC6226815BA00374F9E /* View */ = {
  2058. isa = PBXGroup;
  2059. children = (
  2060. A7636AC722682BAF00374F9E /* LocationView.swift */,
  2061. );
  2062. path = View;
  2063. sourceTree = "<group>";
  2064. };
  2065. A773D02D229FD5B7007A5751 /* MainView */ = {
  2066. isa = PBXGroup;
  2067. children = (
  2068. A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */,
  2069. BD09C84022955B480080D5A4 /* PopTopTriangleView.swift */,
  2070. A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */,
  2071. A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */,
  2072. );
  2073. path = MainView;
  2074. sourceTree = "<group>";
  2075. };
  2076. A775CBFC2237483E00EBDCF8 /* View */ = {
  2077. isa = PBXGroup;
  2078. children = (
  2079. A773D02D229FD5B7007A5751 /* MainView */,
  2080. A7A98E3422802A60005306E9 /* ShoppingMallBanner */,
  2081. A7A98E3E22804647005306E9 /* ShoppingMallSepcial */,
  2082. A7B4E730228177A90012914A /* ShoppingMallFloor */,
  2083. A7A98E38228030F8005306E9 /* ShoppingMallCategory */,
  2084. );
  2085. path = View;
  2086. sourceTree = "<group>";
  2087. };
  2088. A775CC0122377AB700EBDCF8 /* EmptyView */ = {
  2089. isa = PBXGroup;
  2090. children = (
  2091. A773D02E229FDC3B007A5751 /* DIYEmptyView.swift */,
  2092. );
  2093. path = EmptyView;
  2094. sourceTree = "<group>";
  2095. };
  2096. A7778C8E22438F5C00C7C47A /* AlipaySDK */ = {
  2097. isa = PBXGroup;
  2098. children = (
  2099. A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */,
  2100. A7778C9022438F5C00C7C47A /* AlipaySDK.framework */,
  2101. );
  2102. path = AlipaySDK;
  2103. sourceTree = "<group>";
  2104. };
  2105. A7778C9122438F5D00C7C47A /* WeChatSDK */ = {
  2106. isa = PBXGroup;
  2107. children = (
  2108. A7778C9222438F5D00C7C47A /* WXApi.h */,
  2109. A7778C9322438F5D00C7C47A /* WXApiObject.h */,
  2110. A7778C9422438F5D00C7C47A /* README.txt */,
  2111. A7778C9522438F5D00C7C47A /* WechatAuthSDK.h */,
  2112. A7778C9622438F5D00C7C47A /* libWeChatSDK.a */,
  2113. );
  2114. path = WeChatSDK;
  2115. sourceTree = "<group>";
  2116. };
  2117. A7778CA52243A03400C7C47A /* IQKeyboardManagerSwiftManager */ = {
  2118. isa = PBXGroup;
  2119. children = (
  2120. A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */,
  2121. );
  2122. path = IQKeyboardManagerSwiftManager;
  2123. sourceTree = "<group>";
  2124. };
  2125. A7778CAC2244BC2600C7C47A /* RegisterLogin */ = {
  2126. isa = PBXGroup;
  2127. children = (
  2128. A71D2A5E2265671100A55D16 /* View */,
  2129. A7778CAD2244BEFF00C7C47A /* ViewController */,
  2130. );
  2131. path = RegisterLogin;
  2132. sourceTree = "<group>";
  2133. };
  2134. A7778CAD2244BEFF00C7C47A /* ViewController */ = {
  2135. isa = PBXGroup;
  2136. children = (
  2137. A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */,
  2138. );
  2139. path = ViewController;
  2140. sourceTree = "<group>";
  2141. };
  2142. A7778CB52244E93E00C7C47A /* BindPhoneNumber */ = {
  2143. isa = PBXGroup;
  2144. children = (
  2145. A729B5AB2266FF35004AE098 /* View */,
  2146. A7778CB62244E96700C7C47A /* ViewController */,
  2147. );
  2148. path = BindPhoneNumber;
  2149. sourceTree = "<group>";
  2150. };
  2151. A7778CB62244E96700C7C47A /* ViewController */ = {
  2152. isa = PBXGroup;
  2153. children = (
  2154. A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */,
  2155. );
  2156. path = ViewController;
  2157. sourceTree = "<group>";
  2158. };
  2159. A7778CC32246030200C7C47A /* PhoneCountryArea */ = {
  2160. isa = PBXGroup;
  2161. children = (
  2162. A7778CE022461DA300C7C47A /* Model */,
  2163. A7778CD322460CED00C7C47A /* View */,
  2164. A7778CCC224608EA00C7C47A /* ViewController */,
  2165. );
  2166. path = PhoneCountryArea;
  2167. sourceTree = "<group>";
  2168. };
  2169. A7778CCC224608EA00C7C47A /* ViewController */ = {
  2170. isa = PBXGroup;
  2171. children = (
  2172. A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */,
  2173. );
  2174. path = ViewController;
  2175. sourceTree = "<group>";
  2176. };
  2177. A7778CD322460CED00C7C47A /* View */ = {
  2178. isa = PBXGroup;
  2179. children = (
  2180. A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */,
  2181. A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */,
  2182. );
  2183. path = View;
  2184. sourceTree = "<group>";
  2185. };
  2186. A7778CE022461DA300C7C47A /* Model */ = {
  2187. isa = PBXGroup;
  2188. children = (
  2189. A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */,
  2190. );
  2191. path = Model;
  2192. sourceTree = "<group>";
  2193. };
  2194. A77F2C542231FB49001BD3F6 = {
  2195. isa = PBXGroup;
  2196. children = (
  2197. A77F2C5F2231FB49001BD3F6 /* RainbowPlanet */,
  2198. A77F2C742231FB4A001BD3F6 /* RainbowPlanetTests */,
  2199. A77F2C7F2231FB4A001BD3F6 /* RainbowPlanetUITests */,
  2200. A77F2C5E2231FB49001BD3F6 /* Products */,
  2201. 618631008656829220117ED1 /* Pods */,
  2202. FA8AAFBADE8BD144A5C36FDB /* Frameworks */,
  2203. );
  2204. sourceTree = "<group>";
  2205. };
  2206. A77F2C5E2231FB49001BD3F6 /* Products */ = {
  2207. isa = PBXGroup;
  2208. children = (
  2209. A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */,
  2210. A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */,
  2211. A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */,
  2212. );
  2213. name = Products;
  2214. sourceTree = "<group>";
  2215. };
  2216. A77F2C5F2231FB49001BD3F6 /* RainbowPlanet */ = {
  2217. isa = PBXGroup;
  2218. children = (
  2219. A7A59A7722363CCB00417FA4 /* RainbowPlanet.entitlements */,
  2220. A77F2C8E2231FC5C001BD3F6 /* AppDelegate */,
  2221. A77F2C8F2231FC65001BD3F6 /* Base */,
  2222. A77F2CA22232010F001BD3F6 /* Modules */,
  2223. A72A7252223219BD00B21995 /* Service */,
  2224. A72A725422321B9400B21995 /* Manager */,
  2225. A72A725922321C5E00B21995 /* Macro */,
  2226. A77F2CBC2232022A001BD3F6 /* Tools */,
  2227. A72A725322321A6900B21995 /* Lib */,
  2228. A72C011E227539800065E0C3 /* Src */,
  2229. A77F2CBB223201DC001BD3F6 /* Supporting Files */,
  2230. );
  2231. path = RainbowPlanet;
  2232. sourceTree = "<group>";
  2233. };
  2234. A77F2C742231FB4A001BD3F6 /* RainbowPlanetTests */ = {
  2235. isa = PBXGroup;
  2236. children = (
  2237. A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */,
  2238. A77F2C772231FB4A001BD3F6 /* Info.plist */,
  2239. );
  2240. path = RainbowPlanetTests;
  2241. sourceTree = "<group>";
  2242. };
  2243. A77F2C7F2231FB4A001BD3F6 /* RainbowPlanetUITests */ = {
  2244. isa = PBXGroup;
  2245. children = (
  2246. A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */,
  2247. A77F2C822231FB4A001BD3F6 /* Info.plist */,
  2248. );
  2249. path = RainbowPlanetUITests;
  2250. sourceTree = "<group>";
  2251. };
  2252. A77F2C8E2231FC5C001BD3F6 /* AppDelegate */ = {
  2253. isa = PBXGroup;
  2254. children = (
  2255. A77F2C602231FB49001BD3F6 /* AppDelegate.swift */,
  2256. A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */,
  2257. A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */,
  2258. );
  2259. path = AppDelegate;
  2260. sourceTree = "<group>";
  2261. };
  2262. A77F2C8F2231FC65001BD3F6 /* Base */ = {
  2263. isa = PBXGroup;
  2264. children = (
  2265. A77F2C902231FC75001BD3F6 /* BaseTabbarViewController */,
  2266. A77F2C912231FC85001BD3F6 /* BaseNavigationController */,
  2267. A77F2C942231FCD2001BD3F6 /* BaseWebViewController */,
  2268. A77F2C922231FCA2001BD3F6 /* BaseViewController */,
  2269. A77F2C932231FCC5001BD3F6 /* BaseView */,
  2270. );
  2271. path = Base;
  2272. sourceTree = "<group>";
  2273. };
  2274. A77F2C902231FC75001BD3F6 /* BaseTabbarViewController */ = {
  2275. isa = PBXGroup;
  2276. children = (
  2277. A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */,
  2278. A7931DEC22AF4C9100297D0A /* BaseBasicContentView.swift */,
  2279. A7931DED22AF4C9100297D0A /* BaseBouncesContentView.swift */,
  2280. A7931DEE22AF4C9100297D0A /* BaseIrregularityBasicContentView.swift */,
  2281. );
  2282. path = BaseTabbarViewController;
  2283. sourceTree = "<group>";
  2284. };
  2285. A77F2C912231FC85001BD3F6 /* BaseNavigationController */ = {
  2286. isa = PBXGroup;
  2287. children = (
  2288. A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */,
  2289. );
  2290. path = BaseNavigationController;
  2291. sourceTree = "<group>";
  2292. };
  2293. A77F2C922231FCA2001BD3F6 /* BaseViewController */ = {
  2294. isa = PBXGroup;
  2295. children = (
  2296. A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */,
  2297. );
  2298. path = BaseViewController;
  2299. sourceTree = "<group>";
  2300. };
  2301. A77F2C932231FCC5001BD3F6 /* BaseView */ = {
  2302. isa = PBXGroup;
  2303. children = (
  2304. A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */,
  2305. );
  2306. path = BaseView;
  2307. sourceTree = "<group>";
  2308. };
  2309. A77F2C942231FCD2001BD3F6 /* BaseWebViewController */ = {
  2310. isa = PBXGroup;
  2311. children = (
  2312. A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */,
  2313. );
  2314. path = BaseWebViewController;
  2315. sourceTree = "<group>";
  2316. };
  2317. A77F2CA22232010F001BD3F6 /* Modules */ = {
  2318. isa = PBXGroup;
  2319. children = (
  2320. A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */,
  2321. A719EE6622AF4374001AAC98 /* CommunityModule */,
  2322. A77F2CA32232010F001BD3F6 /* ShoppingMallModule */,
  2323. BD12B67122B4E96100AEB10B /* PublishModule */,
  2324. BD3AA45422AE635700EF4F20 /* MessageModule */,
  2325. A77F2CA92232010F001BD3F6 /* MineModule */,
  2326. A7FF155A228C689C00A85748 /* OrderModule */,
  2327. A729B5A52266DBC9004AE098 /* CommonModules */,
  2328. );
  2329. path = Modules;
  2330. sourceTree = "<group>";
  2331. };
  2332. A77F2CA32232010F001BD3F6 /* ShoppingMallModule */ = {
  2333. isa = PBXGroup;
  2334. children = (
  2335. A77F2CA42232010F001BD3F6 /* ShoppingMall */,
  2336. A77F2CB02232010F001BD3F6 /* ShoppingCart */,
  2337. A7DF50D922A556C300998908 /* BrowsePictures */,
  2338. A7FF1550228AC22700A85748 /* ProductAllComment */,
  2339. A70B2C122286B14C00B2449F /* ProductView */,
  2340. A70B2C112286B10000B2449F /* ProductDetail */,
  2341. A70B2C5622886AAA00B2449F /* Shop */,
  2342. A7A98E03227EB7FD005306E9 /* Category */,
  2343. A7A98E15227EECEA005306E9 /* Special */,
  2344. );
  2345. path = ShoppingMallModule;
  2346. sourceTree = "<group>";
  2347. };
  2348. A77F2CA42232010F001BD3F6 /* ShoppingMall */ = {
  2349. isa = PBXGroup;
  2350. children = (
  2351. A775CBFC2237483E00EBDCF8 /* View */,
  2352. A77F2CA52232010F001BD3F6 /* ViewController */,
  2353. );
  2354. path = ShoppingMall;
  2355. sourceTree = "<group>";
  2356. };
  2357. A77F2CA52232010F001BD3F6 /* ViewController */ = {
  2358. isa = PBXGroup;
  2359. children = (
  2360. A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */,
  2361. );
  2362. path = ViewController;
  2363. sourceTree = "<group>";
  2364. };
  2365. A77F2CA92232010F001BD3F6 /* MineModule */ = {
  2366. isa = PBXGroup;
  2367. children = (
  2368. A77F2CAA2232010F001BD3F6 /* Mine */,
  2369. A7CC75302271AB6C003C4F38 /* AddressManager */,
  2370. A71AA50D22721537008FF1A5 /* ExpressAddressList */,
  2371. A71AA51622721980008FF1A5 /* EditExpressAddress */,
  2372. A7CC753F2271DFF3003C4F38 /* SelfMentionContactsList */,
  2373. A7824AFE2271F0C500ABA381 /* EditSelfMentionContacts */,
  2374. A7CC75292271A169003C4F38 /* SetPassword */,
  2375. A7CC751D22719091003C4F38 /* AccountSecurity */,
  2376. A7CC751222716194003C4F38 /* Set */,
  2377. A7CC7507227151C7003C4F38 /* MessageDetailes */,
  2378. A7CC74E722706A06003C4F38 /* Message */,
  2379. );
  2380. path = MineModule;
  2381. sourceTree = "<group>";
  2382. };
  2383. A77F2CAA2232010F001BD3F6 /* Mine */ = {
  2384. isa = PBXGroup;
  2385. children = (
  2386. A7CC74D2226FF190003C4F38 /* View */,
  2387. A77F2CAB2232010F001BD3F6 /* ViewController */,
  2388. );
  2389. path = Mine;
  2390. sourceTree = "<group>";
  2391. };
  2392. A77F2CAB2232010F001BD3F6 /* ViewController */ = {
  2393. isa = PBXGroup;
  2394. children = (
  2395. A77F2CAD2232010F001BD3F6 /* MineViewController.swift */,
  2396. );
  2397. path = ViewController;
  2398. sourceTree = "<group>";
  2399. };
  2400. A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */ = {
  2401. isa = PBXGroup;
  2402. children = (
  2403. A7931E0922AF86D900297D0A /* GenderSelection */,
  2404. A7931E0E22AF929B00297D0A /* TopicSelection */,
  2405. A7778CAC2244BC2600C7C47A /* RegisterLogin */,
  2406. A7778CB52244E93E00C7C47A /* BindPhoneNumber */,
  2407. A75414F9224B5EFC002480B5 /* MobileLogin */,
  2408. A729B5B122672401004AE098 /* PasswordLogin */,
  2409. A7778CC32246030200C7C47A /* PhoneCountryArea */,
  2410. );
  2411. path = RegisterLoginModule;
  2412. sourceTree = "<group>";
  2413. };
  2414. A77F2CB02232010F001BD3F6 /* ShoppingCart */ = {
  2415. isa = PBXGroup;
  2416. children = (
  2417. BDF47D782282645900941AB9 /* View */,
  2418. A77F2CB12232010F001BD3F6 /* ViewController */,
  2419. );
  2420. path = ShoppingCart;
  2421. sourceTree = "<group>";
  2422. };
  2423. A77F2CB12232010F001BD3F6 /* ViewController */ = {
  2424. isa = PBXGroup;
  2425. children = (
  2426. A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */,
  2427. );
  2428. path = ViewController;
  2429. sourceTree = "<group>";
  2430. };
  2431. A77F2CBB223201DC001BD3F6 /* Supporting Files */ = {
  2432. isa = PBXGroup;
  2433. children = (
  2434. A77F2C672231FB4A001BD3F6 /* Assets.xcassets */,
  2435. A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */,
  2436. A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */,
  2437. A7FF1576228C824300A85748 /* OrderModule.xcassets */,
  2438. A7931E0722AF855E00297D0A /* RegisterLoginModule.xcassets */,
  2439. A7BF202322B392D600396DB3 /* CommunityModule.xcassets */,
  2440. A7BF202622B3930100396DB3 /* MessageModule.xcassets */,
  2441. BD24FABA22B509CF00C7AA3B /* PublishModule.xcassets */,
  2442. A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */,
  2443. A77F2C6C2231FB4A001BD3F6 /* Info.plist */,
  2444. );
  2445. path = "Supporting Files";
  2446. sourceTree = "<group>";
  2447. };
  2448. A77F2CBC2232022A001BD3F6 /* Tools */ = {
  2449. isa = PBXGroup;
  2450. children = (
  2451. BD1FC19022B1075E00D55081 /* CommentKeyboard */,
  2452. A7931DF422AF827600297D0A /* ESTabBarController-swift */,
  2453. BD108C8D22A60A2000837DAB /* HGImagePicker */,
  2454. A7391212229F75F50033177E /* JXPagingView-Swift */,
  2455. A7146346228EFCE20066099B /* SKUDataFilter */,
  2456. A7274C51228EE635000E3A07 /* SwiftScan */,
  2457. A7274C4E228EE5EF000E3A07 /* PhotoAndCameraManager */,
  2458. A70B2C232286C03800B2449F /* NXLPageControl */,
  2459. A7D4608C227616E600A5A54E /* FMDB */,
  2460. A71901712275F56C00104A50 /* BaiduToCityFactory */,
  2461. A757C9312274882E00226355 /* MJRefreshEX */,
  2462. A71AA51D22729F0B008FF1A5 /* AuthorizationSwift */,
  2463. A73D7C662268A032002A4CE3 /* SwiftyStarRatingView */,
  2464. A729B5A62266DBFA004AE098 /* AlertSheetView */,
  2465. A72A727322321DDE00B21995 /* Log */,
  2466. A72A727D22321DDF00B21995 /* AppInfo */,
  2467. A72A727B22321DDF00B21995 /* Countdown */,
  2468. A72A727522321DDE00B21995 /* SwiftProgressHUD */,
  2469. A775CC0122377AB700EBDCF8 /* EmptyView */,
  2470. A72A727F22321DDF00B21995 /* CGView */,
  2471. A72A728B22321DE000B21995 /* Extension */,
  2472. A72A727122321DDE00B21995 /* NumberKeyboard */,
  2473. A72A727722321DDF00B21995 /* Regex */,
  2474. A77F2CC422320627001BD3F6 /* WRNavigationBar */,
  2475. A72A729F22321DE000B21995 /* WKWebView */,
  2476. );
  2477. path = Tools;
  2478. sourceTree = "<group>";
  2479. };
  2480. A77F2CC422320627001BD3F6 /* WRNavigationBar */ = {
  2481. isa = PBXGroup;
  2482. children = (
  2483. A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */,
  2484. A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */,
  2485. );
  2486. path = WRNavigationBar;
  2487. sourceTree = "<group>";
  2488. };
  2489. A7824AFE2271F0C500ABA381 /* EditSelfMentionContacts */ = {
  2490. isa = PBXGroup;
  2491. children = (
  2492. A7824B022271F0E900ABA381 /* View */,
  2493. A7824B012271F0E000ABA381 /* ViewController */,
  2494. );
  2495. path = EditSelfMentionContacts;
  2496. sourceTree = "<group>";
  2497. };
  2498. A7824B012271F0E000ABA381 /* ViewController */ = {
  2499. isa = PBXGroup;
  2500. children = (
  2501. A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */,
  2502. );
  2503. path = ViewController;
  2504. sourceTree = "<group>";
  2505. };
  2506. A7824B022271F0E900ABA381 /* View */ = {
  2507. isa = PBXGroup;
  2508. children = (
  2509. A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */,
  2510. A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */,
  2511. A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */,
  2512. A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */,
  2513. );
  2514. path = View;
  2515. sourceTree = "<group>";
  2516. };
  2517. A79057032276D5FE0037F823 /* ConfigModel */ = {
  2518. isa = PBXGroup;
  2519. children = (
  2520. A715333D22980CC60017C861 /* ConfigModel.swift */,
  2521. A79057052276EA3D0037F823 /* OpenCityListModel.swift */,
  2522. A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */,
  2523. BDD22F0A228FAA5B00D43BFB /* ImageUrlModel.swift */,
  2524. );
  2525. path = ConfigModel;
  2526. sourceTree = "<group>";
  2527. };
  2528. A79057042276D6250037F823 /* SwiftMoyaServiceManger */ = {
  2529. isa = PBXGroup;
  2530. children = (
  2531. A7541507224CACF9002480B5 /* SwiftSign */,
  2532. A7284A502252EB28000BAEC4 /* SwiftMoyaNetWorkManager */,
  2533. );
  2534. path = SwiftMoyaServiceManger;
  2535. sourceTree = "<group>";
  2536. };
  2537. A7931DF422AF827600297D0A /* ESTabBarController-swift */ = {
  2538. isa = PBXGroup;
  2539. children = (
  2540. A7931DF522AF827600297D0A /* Localizable.strings */,
  2541. A7931DF722AF827600297D0A /* ESTabBarItemMoreContentView.swift */,
  2542. A7931DF822AF827600297D0A /* ESTabBarController.swift */,
  2543. A7931DF922AF827600297D0A /* ESTabBarItemContentView.swift */,
  2544. A7931DFA22AF827600297D0A /* ESTabBarItem.swift */,
  2545. A7931DFB22AF827600297D0A /* ESTabBarItemBadgeView.swift */,
  2546. A7931DFC22AF827600297D0A /* ESTabBar.swift */,
  2547. A7931DFD22AF827600297D0A /* ESTabBarItemContainer.swift */,
  2548. );
  2549. path = "ESTabBarController-swift";
  2550. sourceTree = "<group>";
  2551. };
  2552. A7931E0922AF86D900297D0A /* GenderSelection */ = {
  2553. isa = PBXGroup;
  2554. children = (
  2555. A7931E0B22AF872000297D0A /* ViewController */,
  2556. );
  2557. path = GenderSelection;
  2558. sourceTree = "<group>";
  2559. };
  2560. A7931E0B22AF872000297D0A /* ViewController */ = {
  2561. isa = PBXGroup;
  2562. children = (
  2563. A7931E0C22AF874600297D0A /* GenderSelectionViewController.swift */,
  2564. );
  2565. path = ViewController;
  2566. sourceTree = "<group>";
  2567. };
  2568. A7931E0E22AF929B00297D0A /* TopicSelection */ = {
  2569. isa = PBXGroup;
  2570. children = (
  2571. A7931E1222AF9E2500297D0A /* View */,
  2572. A7931E0F22AF988900297D0A /* ViewController */,
  2573. );
  2574. path = TopicSelection;
  2575. sourceTree = "<group>";
  2576. };
  2577. A7931E0F22AF988900297D0A /* ViewController */ = {
  2578. isa = PBXGroup;
  2579. children = (
  2580. A7931E1022AF989B00297D0A /* TopicSelectionViewController.swift */,
  2581. A7931E1522AFAEF500297D0A /* TopicSelectionModel.swift */,
  2582. );
  2583. path = ViewController;
  2584. sourceTree = "<group>";
  2585. };
  2586. A7931E1222AF9E2500297D0A /* View */ = {
  2587. isa = PBXGroup;
  2588. children = (
  2589. A7931E1322AF9E4000297D0A /* TopicSelectionCollectionViewCell.swift */,
  2590. );
  2591. path = View;
  2592. sourceTree = "<group>";
  2593. };
  2594. A7A98DFB227E84D0005306E9 /* SwiftMoyaServiceProduct */ = {
  2595. isa = PBXGroup;
  2596. children = (
  2597. A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */,
  2598. A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */,
  2599. );
  2600. path = SwiftMoyaServiceProduct;
  2601. sourceTree = "<group>";
  2602. };
  2603. A7A98E00227E88E8005306E9 /* ProductModel */ = {
  2604. isa = PBXGroup;
  2605. children = (
  2606. A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */,
  2607. A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */,
  2608. A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */,
  2609. A70B2C062284305400B2449F /* ProductModel.swift */,
  2610. A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */,
  2611. BDE3045C22851E4F001D050F /* ProductCartListModel.swift */,
  2612. BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */,
  2613. A70B842F228FF6D400882BC5 /* ProductCartCountModel.swift */,
  2614. A71738AC228AB7B2000AEA6A /* ProductCommentListModel.swift */,
  2615. BDDF3B27228EBB72003A7D16 /* ProductRefundReasonModel.swift */,
  2616. BD29A92D228F99780018CFC3 /* OrderCommentParameterModel.swift */,
  2617. );
  2618. path = ProductModel;
  2619. sourceTree = "<group>";
  2620. };
  2621. A7A98E03227EB7FD005306E9 /* Category */ = {
  2622. isa = PBXGroup;
  2623. children = (
  2624. A7A98E07227EB8CC005306E9 /* View */,
  2625. A7A98E06227EB8C7005306E9 /* ViewController */,
  2626. );
  2627. path = Category;
  2628. sourceTree = "<group>";
  2629. };
  2630. A7A98E06227EB8C7005306E9 /* ViewController */ = {
  2631. isa = PBXGroup;
  2632. children = (
  2633. A7A98E04227EB891005306E9 /* CategoryViewController.swift */,
  2634. );
  2635. path = ViewController;
  2636. sourceTree = "<group>";
  2637. };
  2638. A7A98E07227EB8CC005306E9 /* View */ = {
  2639. isa = PBXGroup;
  2640. children = (
  2641. A7A98E08227EB8DD005306E9 /* CategoryView.swift */,
  2642. A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */,
  2643. A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */,
  2644. );
  2645. path = View;
  2646. sourceTree = "<group>";
  2647. };
  2648. A7A98E15227EECEA005306E9 /* Special */ = {
  2649. isa = PBXGroup;
  2650. children = (
  2651. A7A98E19227EEE30005306E9 /* View */,
  2652. A7A98E18227EEE06005306E9 /* ViewController */,
  2653. );
  2654. path = Special;
  2655. sourceTree = "<group>";
  2656. };
  2657. A7A98E18227EEE06005306E9 /* ViewController */ = {
  2658. isa = PBXGroup;
  2659. children = (
  2660. A7A98E16227EED76005306E9 /* SpecialViewController.swift */,
  2661. );
  2662. path = ViewController;
  2663. sourceTree = "<group>";
  2664. };
  2665. A7A98E19227EEE30005306E9 /* View */ = {
  2666. isa = PBXGroup;
  2667. children = (
  2668. A7A98E1A227EEE49005306E9 /* SpecialView.swift */,
  2669. A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */,
  2670. );
  2671. path = View;
  2672. sourceTree = "<group>";
  2673. };
  2674. A7A98E29228015BA005306E9 /* SwiftMoyaServiceCMS */ = {
  2675. isa = PBXGroup;
  2676. children = (
  2677. A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */,
  2678. A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */,
  2679. );
  2680. path = SwiftMoyaServiceCMS;
  2681. sourceTree = "<group>";
  2682. };
  2683. A7A98E3422802A60005306E9 /* ShoppingMallBanner */ = {
  2684. isa = PBXGroup;
  2685. children = (
  2686. A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */,
  2687. A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */,
  2688. );
  2689. path = ShoppingMallBanner;
  2690. sourceTree = "<group>";
  2691. };
  2692. A7A98E38228030F8005306E9 /* ShoppingMallCategory */ = {
  2693. isa = PBXGroup;
  2694. children = (
  2695. A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */,
  2696. A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */,
  2697. );
  2698. path = ShoppingMallCategory;
  2699. sourceTree = "<group>";
  2700. };
  2701. A7A98E3E22804647005306E9 /* ShoppingMallSepcial */ = {
  2702. isa = PBXGroup;
  2703. children = (
  2704. A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */,
  2705. A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */,
  2706. A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */,
  2707. );
  2708. path = ShoppingMallSepcial;
  2709. sourceTree = "<group>";
  2710. };
  2711. A7B4E71B22812D390012914A /* ShoppingMallSlidingLeftRight */ = {
  2712. isa = PBXGroup;
  2713. children = (
  2714. A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */,
  2715. );
  2716. path = ShoppingMallSlidingLeftRight;
  2717. sourceTree = "<group>";
  2718. };
  2719. A7B4E730228177A90012914A /* ShoppingMallFloor */ = {
  2720. isa = PBXGroup;
  2721. children = (
  2722. A7B4E752228276270012914A /* Floor */,
  2723. A70B2C0522841F1B00B2449F /* FloorCell */,
  2724. );
  2725. path = ShoppingMallFloor;
  2726. sourceTree = "<group>";
  2727. };
  2728. A7B4E732228177BC0012914A /* ProductCollectionReusableView */ = {
  2729. isa = PBXGroup;
  2730. children = (
  2731. A7B4E720228151F40012914A /* ProductFloorTitleView.swift */,
  2732. A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */,
  2733. A7B4E722228154750012914A /* ProductFloorBannerView.swift */,
  2734. A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */,
  2735. A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */,
  2736. A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */,
  2737. );
  2738. path = ProductCollectionReusableView;
  2739. sourceTree = "<group>";
  2740. };
  2741. A7B4E733228190630012914A /* CMSModel */ = {
  2742. isa = PBXGroup;
  2743. children = (
  2744. A7B4E739228192D10012914A /* CMSTemplateModel.swift */,
  2745. A7B4E7342281907A0012914A /* CMSModel.swift */,
  2746. );
  2747. path = CMSModel;
  2748. sourceTree = "<group>";
  2749. };
  2750. A7B4E736228190810012914A /* CommonModel */ = {
  2751. isa = PBXGroup;
  2752. children = (
  2753. A7B4E737228191CC0012914A /* CommondModel.swift */,
  2754. );
  2755. path = CommonModel;
  2756. sourceTree = "<group>";
  2757. };
  2758. A7B4E752228276270012914A /* Floor */ = {
  2759. isa = PBXGroup;
  2760. children = (
  2761. A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */,
  2762. );
  2763. path = Floor;
  2764. sourceTree = "<group>";
  2765. };
  2766. A7BB68512268DCF800AB07A2 /* SelfRecommendation */ = {
  2767. isa = PBXGroup;
  2768. children = (
  2769. A7BB68522268DE6400AB07A2 /* View */,
  2770. A7BB68532268DE7100AB07A2 /* ViewController */,
  2771. );
  2772. path = SelfRecommendation;
  2773. sourceTree = "<group>";
  2774. };
  2775. A7BB68522268DE6400AB07A2 /* View */ = {
  2776. isa = PBXGroup;
  2777. children = (
  2778. A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */,
  2779. A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */,
  2780. A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */,
  2781. );
  2782. path = View;
  2783. sourceTree = "<group>";
  2784. };
  2785. A7BB68532268DE7100AB07A2 /* ViewController */ = {
  2786. isa = PBXGroup;
  2787. children = (
  2788. A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */,
  2789. );
  2790. path = ViewController;
  2791. sourceTree = "<group>";
  2792. };
  2793. A7BB68612269B1DD00AB07A2 /* AddressPOI */ = {
  2794. isa = PBXGroup;
  2795. children = (
  2796. A7BB68622269B1DD00AB07A2 /* View */,
  2797. A7BB68642269B1DD00AB07A2 /* ViewController */,
  2798. );
  2799. path = AddressPOI;
  2800. sourceTree = "<group>";
  2801. };
  2802. A7BB68622269B1DD00AB07A2 /* View */ = {
  2803. isa = PBXGroup;
  2804. children = (
  2805. A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */,
  2806. A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */,
  2807. );
  2808. path = View;
  2809. sourceTree = "<group>";
  2810. };
  2811. A7BB68642269B1DD00AB07A2 /* ViewController */ = {
  2812. isa = PBXGroup;
  2813. children = (
  2814. A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */,
  2815. );
  2816. path = ViewController;
  2817. sourceTree = "<group>";
  2818. };
  2819. A7BF202822B396D100396DB3 /* TitleContent */ = {
  2820. isa = PBXGroup;
  2821. children = (
  2822. A7BF202922B396F300396DB3 /* CardContentTitleTableViewCell.swift */,
  2823. );
  2824. path = TitleContent;
  2825. sourceTree = "<group>";
  2826. };
  2827. A7BF202F22B47CA000396DB3 /* Comment */ = {
  2828. isa = PBXGroup;
  2829. children = (
  2830. A7BF203022B47CC000396DB3 /* CardContentCommnetTableViewCell.swift */,
  2831. );
  2832. path = Comment;
  2833. sourceTree = "<group>";
  2834. };
  2835. A7BF203222B47D6200396DB3 /* Action */ = {
  2836. isa = PBXGroup;
  2837. children = (
  2838. A7BF203322B47E8600396DB3 /* CardContentActionTableViewCell.swift */,
  2839. );
  2840. path = Action;
  2841. sourceTree = "<group>";
  2842. };
  2843. A7C0FDE522B4A36F00BC1E86 /* CommentList */ = {
  2844. isa = PBXGroup;
  2845. children = (
  2846. A7C0FDE622B4A38500BC1E86 /* CardContentCommentListTableViewCell.swift */,
  2847. A7C0FDE822B4BC5600BC1E86 /* CardContentCommentListContentTableViewCell.swift */,
  2848. A7C0FDEA22B4C6C300BC1E86 /* CardContentCommentListFooterView.swift */,
  2849. );
  2850. path = CommentList;
  2851. sourceTree = "<group>";
  2852. };
  2853. A7C3DD182264229900FA262E /* SwiftMoyaServiceSMS */ = {
  2854. isa = PBXGroup;
  2855. children = (
  2856. A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */,
  2857. A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */,
  2858. );
  2859. path = SwiftMoyaServiceSMS;
  2860. sourceTree = "<group>";
  2861. };
  2862. A7CC74D2226FF190003C4F38 /* View */ = {
  2863. isa = PBXGroup;
  2864. children = (
  2865. A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */,
  2866. A7CC74D3226FF1AA003C4F38 /* MineView.swift */,
  2867. A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */,
  2868. A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */,
  2869. A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */,
  2870. A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */,
  2871. A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */,
  2872. );
  2873. path = View;
  2874. sourceTree = "<group>";
  2875. };
  2876. A7CC74E722706A06003C4F38 /* Message */ = {
  2877. isa = PBXGroup;
  2878. children = (
  2879. A7CC74EB22706CA9003C4F38 /* View */,
  2880. A7CC74E822706AAC003C4F38 /* ViewController */,
  2881. );
  2882. path = Message;
  2883. sourceTree = "<group>";
  2884. };
  2885. A7CC74E822706AAC003C4F38 /* ViewController */ = {
  2886. isa = PBXGroup;
  2887. children = (
  2888. A7CC74E922706ACD003C4F38 /* MessageViewController.swift */,
  2889. );
  2890. path = ViewController;
  2891. sourceTree = "<group>";
  2892. };
  2893. A7CC74EB22706CA9003C4F38 /* View */ = {
  2894. isa = PBXGroup;
  2895. children = (
  2896. A7CC74EE22706CCA003C4F38 /* MessageView.swift */,
  2897. A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */,
  2898. A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */,
  2899. A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */,
  2900. );
  2901. path = View;
  2902. sourceTree = "<group>";
  2903. };
  2904. A7CC7507227151C7003C4F38 /* MessageDetailes */ = {
  2905. isa = PBXGroup;
  2906. children = (
  2907. A7CC750B2271578F003C4F38 /* View */,
  2908. A7CC7508227151D0003C4F38 /* ViewController */,
  2909. );
  2910. path = MessageDetailes;
  2911. sourceTree = "<group>";
  2912. };
  2913. A7CC7508227151D0003C4F38 /* ViewController */ = {
  2914. isa = PBXGroup;
  2915. children = (
  2916. A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */,
  2917. );
  2918. path = ViewController;
  2919. sourceTree = "<group>";
  2920. };
  2921. A7CC750B2271578F003C4F38 /* View */ = {
  2922. isa = PBXGroup;
  2923. children = (
  2924. A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */,
  2925. A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */,
  2926. A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */,
  2927. );
  2928. path = View;
  2929. sourceTree = "<group>";
  2930. };
  2931. A7CC751222716194003C4F38 /* Set */ = {
  2932. isa = PBXGroup;
  2933. children = (
  2934. A7CC7513227161B1003C4F38 /* View */,
  2935. A7CC7514227161B8003C4F38 /* ViewController */,
  2936. );
  2937. path = Set;
  2938. sourceTree = "<group>";
  2939. };
  2940. A7CC7513227161B1003C4F38 /* View */ = {
  2941. isa = PBXGroup;
  2942. children = (
  2943. A7CC751722716202003C4F38 /* SetView.swift */,
  2944. A7CC751922716254003C4F38 /* SetTableViewCell.swift */,
  2945. A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */,
  2946. );
  2947. path = View;
  2948. sourceTree = "<group>";
  2949. };
  2950. A7CC7514227161B8003C4F38 /* ViewController */ = {
  2951. isa = PBXGroup;
  2952. children = (
  2953. A7CC7515227161D5003C4F38 /* SetViewController.swift */,
  2954. );
  2955. path = ViewController;
  2956. sourceTree = "<group>";
  2957. };
  2958. A7CC751D22719091003C4F38 /* AccountSecurity */ = {
  2959. isa = PBXGroup;
  2960. children = (
  2961. A7CC7522227190EF003C4F38 /* View */,
  2962. A7CC7521227190E8003C4F38 /* ViewController */,
  2963. );
  2964. path = AccountSecurity;
  2965. sourceTree = "<group>";
  2966. };
  2967. A7CC7521227190E8003C4F38 /* ViewController */ = {
  2968. isa = PBXGroup;
  2969. children = (
  2970. A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */,
  2971. );
  2972. path = ViewController;
  2973. sourceTree = "<group>";
  2974. };
  2975. A7CC7522227190EF003C4F38 /* View */ = {
  2976. isa = PBXGroup;
  2977. children = (
  2978. A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */,
  2979. A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */,
  2980. A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */,
  2981. );
  2982. path = View;
  2983. sourceTree = "<group>";
  2984. };
  2985. A7CC75292271A169003C4F38 /* SetPassword */ = {
  2986. isa = PBXGroup;
  2987. children = (
  2988. A7CC752D2271A1E5003C4F38 /* View */,
  2989. A7CC752A2271A184003C4F38 /* ViewController */,
  2990. );
  2991. path = SetPassword;
  2992. sourceTree = "<group>";
  2993. };
  2994. A7CC752A2271A184003C4F38 /* ViewController */ = {
  2995. isa = PBXGroup;
  2996. children = (
  2997. A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */,
  2998. );
  2999. path = ViewController;
  3000. sourceTree = "<group>";
  3001. };
  3002. A7CC752D2271A1E5003C4F38 /* View */ = {
  3003. isa = PBXGroup;
  3004. children = (
  3005. A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */,
  3006. );
  3007. path = View;
  3008. sourceTree = "<group>";
  3009. };
  3010. A7CC75302271AB6C003C4F38 /* AddressManager */ = {
  3011. isa = PBXGroup;
  3012. children = (
  3013. A7CC75342271ABFB003C4F38 /* View */,
  3014. A7CC75312271AB83003C4F38 /* ViewController */,
  3015. );
  3016. path = AddressManager;
  3017. sourceTree = "<group>";
  3018. };
  3019. A7CC75312271AB83003C4F38 /* ViewController */ = {
  3020. isa = PBXGroup;
  3021. children = (
  3022. A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */,
  3023. );
  3024. path = ViewController;
  3025. sourceTree = "<group>";
  3026. };
  3027. A7CC75342271ABFB003C4F38 /* View */ = {
  3028. isa = PBXGroup;
  3029. children = (
  3030. A7CC75352271AC14003C4F38 /* AddressManagerView.swift */,
  3031. A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */,
  3032. A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */,
  3033. A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */,
  3034. );
  3035. path = View;
  3036. sourceTree = "<group>";
  3037. };
  3038. A7CC753F2271DFF3003C4F38 /* SelfMentionContactsList */ = {
  3039. isa = PBXGroup;
  3040. children = (
  3041. A7CC75412271E023003C4F38 /* View */,
  3042. A7CC75402271E01D003C4F38 /* ViewController */,
  3043. );
  3044. path = SelfMentionContactsList;
  3045. sourceTree = "<group>";
  3046. };
  3047. A7CC75402271E01D003C4F38 /* ViewController */ = {
  3048. isa = PBXGroup;
  3049. children = (
  3050. A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */,
  3051. );
  3052. path = ViewController;
  3053. sourceTree = "<group>";
  3054. };
  3055. A7CC75412271E023003C4F38 /* View */ = {
  3056. isa = PBXGroup;
  3057. children = (
  3058. A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */,
  3059. A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */,
  3060. );
  3061. path = View;
  3062. sourceTree = "<group>";
  3063. };
  3064. A7D4608C227616E600A5A54E /* FMDB */ = {
  3065. isa = PBXGroup;
  3066. children = (
  3067. A7D4608D227616F800A5A54E /* SQLiteManager.swift */,
  3068. A7D4608F227617D200A5A54E /* SQLModel.swift */,
  3069. );
  3070. path = FMDB;
  3071. sourceTree = "<group>";
  3072. };
  3073. A7DF50D922A556C300998908 /* BrowsePictures */ = {
  3074. isa = PBXGroup;
  3075. children = (
  3076. A7DF50DD22A558D400998908 /* ViewController */,
  3077. A7DF50DC22A558C500998908 /* View */,
  3078. );
  3079. path = BrowsePictures;
  3080. sourceTree = "<group>";
  3081. };
  3082. A7DF50DC22A558C500998908 /* View */ = {
  3083. isa = PBXGroup;
  3084. children = (
  3085. A7DF50E222A55AB600998908 /* BrowsePicturesPagerViewCell.swift */,
  3086. );
  3087. path = View;
  3088. sourceTree = "<group>";
  3089. };
  3090. A7DF50DD22A558D400998908 /* ViewController */ = {
  3091. isa = PBXGroup;
  3092. children = (
  3093. A7DF50DE22A5590200998908 /* BrowsePicturesViewController.swift */,
  3094. );
  3095. path = ViewController;
  3096. sourceTree = "<group>";
  3097. };
  3098. A7F2D6C322B0DBBB0093000B /* Header */ = {
  3099. isa = PBXGroup;
  3100. children = (
  3101. A7F2D6C022B0D1CB0093000B /* CommunityFollowTableHeaderView.swift */,
  3102. A7F2D6C522B0DC7B0093000B /* CommunityCommonSectionHeaderView.swift */,
  3103. );
  3104. path = Header;
  3105. sourceTree = "<group>";
  3106. };
  3107. A7F2D6C422B0DBCB0093000B /* Cell */ = {
  3108. isa = PBXGroup;
  3109. children = (
  3110. A7F2D6D522B1ED100093000B /* CardContent */,
  3111. A7F2D6CC22B0FEF60093000B /* FollowStatus */,
  3112. A7F2D6C922B0E2FE0093000B /* RecommendFollow */,
  3113. );
  3114. path = Cell;
  3115. sourceTree = "<group>";
  3116. };
  3117. A7F2D6C922B0E2FE0093000B /* RecommendFollow */ = {
  3118. isa = PBXGroup;
  3119. children = (
  3120. A7F2D6C722B0E2F60093000B /* CommunityRecommendFollowTableViewCell.swift */,
  3121. A7F2D6CA22B0E4270093000B /* CommunityRecommendFollowCollectionViewCell.swift */,
  3122. );
  3123. path = RecommendFollow;
  3124. sourceTree = "<group>";
  3125. };
  3126. A7F2D6CC22B0FEF60093000B /* FollowStatus */ = {
  3127. isa = PBXGroup;
  3128. children = (
  3129. A7F2D6CD22B0FF180093000B /* CommunityFollowStatusTableViewCell.swift */,
  3130. );
  3131. path = FollowStatus;
  3132. sourceTree = "<group>";
  3133. };
  3134. A7F2D6D522B1ED100093000B /* CardContent */ = {
  3135. isa = PBXGroup;
  3136. children = (
  3137. A7C0FDE522B4A36F00BC1E86 /* CommentList */,
  3138. A7BF203222B47D6200396DB3 /* Action */,
  3139. A7BF202F22B47CA000396DB3 /* Comment */,
  3140. A7BF202822B396D100396DB3 /* TitleContent */,
  3141. A7F2D6DB22B252520093000B /* PicVideo */,
  3142. A7F2D6DA22B2524A0093000B /* User */,
  3143. );
  3144. path = CardContent;
  3145. sourceTree = "<group>";
  3146. };
  3147. A7F2D6DA22B2524A0093000B /* User */ = {
  3148. isa = PBXGroup;
  3149. children = (
  3150. A7F2D6D622B1ED370093000B /* CardContentUserTableViewCell.swift */,
  3151. );
  3152. path = User;
  3153. sourceTree = "<group>";
  3154. };
  3155. A7F2D6DB22B252520093000B /* PicVideo */ = {
  3156. isa = PBXGroup;
  3157. children = (
  3158. A7F2D6D822B250EF0093000B /* CardContentPicVideoTableViewCell.swift */,
  3159. A7F2D6DC22B2536F0093000B /* CardContentPicVideoCollectionViewCell.swift */,
  3160. A7F2D6DE22B25B5D0093000B /* CardContentPicVideoCollectionViewLayout.swift */,
  3161. A7F2D6E022B25EF30093000B /* CardContentPicVideoModel.swift */,
  3162. );
  3163. path = PicVideo;
  3164. sourceTree = "<group>";
  3165. };
  3166. A7FF1550228AC22700A85748 /* ProductAllComment */ = {
  3167. isa = PBXGroup;
  3168. children = (
  3169. A7FF1553228AC25000A85748 /* ViewController */,
  3170. A7FF1552228AC24B00A85748 /* View */,
  3171. );
  3172. path = ProductAllComment;
  3173. sourceTree = "<group>";
  3174. };
  3175. A7FF1552228AC24B00A85748 /* View */ = {
  3176. isa = PBXGroup;
  3177. children = (
  3178. A7FF1554228AC27600A85748 /* ProductAllCommentView.swift */,
  3179. A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */,
  3180. A7DF50D722A4FAFC00998908 /* ProductDetailEvaluationImageCollectionViewCell.swift */,
  3181. );
  3182. path = View;
  3183. sourceTree = "<group>";
  3184. };
  3185. A7FF1553228AC25000A85748 /* ViewController */ = {
  3186. isa = PBXGroup;
  3187. children = (
  3188. A7FF1556228AC3E800A85748 /* ProductAllCommentViewController.swift */,
  3189. );
  3190. path = ViewController;
  3191. sourceTree = "<group>";
  3192. };
  3193. A7FF155A228C689C00A85748 /* OrderModule */ = {
  3194. isa = PBXGroup;
  3195. children = (
  3196. A7FF155B228C68B200A85748 /* Order */,
  3197. A7FF155C228C68C900A85748 /* OrderDetail */,
  3198. A7FF158A228C910600A85748 /* OrderRefunddetails */,
  3199. BD77BE1B228D8D320060E23C /* OrderLogistics */,
  3200. BD77BE18228D8C2E0060E23C /* OrderComment */,
  3201. BDF862A3228E4266000DEF84 /* OrderApplyRefund */,
  3202. BD3474FA228597E8000908C5 /* OrderFinishPay */,
  3203. BD3474F722859788000908C5 /* OrderPayOrder */,
  3204. );
  3205. path = OrderModule;
  3206. sourceTree = "<group>";
  3207. };
  3208. A7FF155B228C68B200A85748 /* Order */ = {
  3209. isa = PBXGroup;
  3210. children = (
  3211. A7FF155E228C692000A85748 /* View */,
  3212. A7FF155D228C691900A85748 /* ViewController */,
  3213. );
  3214. path = Order;
  3215. sourceTree = "<group>";
  3216. };
  3217. A7FF155C228C68C900A85748 /* OrderDetail */ = {
  3218. isa = PBXGroup;
  3219. children = (
  3220. A7FF1573228C81DD00A85748 /* View */,
  3221. A7FF1574228C81E300A85748 /* ViewController */,
  3222. );
  3223. path = OrderDetail;
  3224. sourceTree = "<group>";
  3225. };
  3226. A7FF155D228C691900A85748 /* ViewController */ = {
  3227. isa = PBXGroup;
  3228. children = (
  3229. A7FF155F228C693D00A85748 /* OrderViewController.swift */,
  3230. A7FF1595228CFA8100A85748 /* OrderListViewController.swift */,
  3231. );
  3232. path = ViewController;
  3233. sourceTree = "<group>";
  3234. };
  3235. A7FF155E228C692000A85748 /* View */ = {
  3236. isa = PBXGroup;
  3237. children = (
  3238. A7FF1563228C696B00A85748 /* OrderListView.swift */,
  3239. A7FF1565228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift */,
  3240. A7FF1567228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift */,
  3241. A7FF1569228C6E3600A85748 /* OrderProductTableViewCell.swift */,
  3242. A7FF156B228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift */,
  3243. A7FF156D228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift */,
  3244. A7FF156F228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift */,
  3245. A7FF1571228C7D4600A85748 /* OrderButtonTableViewCell.swift */,
  3246. A75C474D22938B3900139C0C /* OrderFreightTableViewCell.swift */,
  3247. );
  3248. path = View;
  3249. sourceTree = "<group>";
  3250. };
  3251. A7FF1573228C81DD00A85748 /* View */ = {
  3252. isa = PBXGroup;
  3253. children = (
  3254. A7FF157C228C837100A85748 /* OrderDetailStatusTableViewCell.swift */,
  3255. A7FF1584228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift */,
  3256. A7FF1582228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift */,
  3257. A7FF1586228C851100A85748 /* OrderDetailInfoTableViewCell.swift */,
  3258. A7DF50D522A4E8B400998908 /* OrderDetailProductTableViewCell.swift */,
  3259. A7FF1588228C854900A85748 /* OrderDetailBottomView.swift */,
  3260. );
  3261. path = View;
  3262. sourceTree = "<group>";
  3263. };
  3264. A7FF1574228C81E300A85748 /* ViewController */ = {
  3265. isa = PBXGroup;
  3266. children = (
  3267. A7FF1578228C82CE00A85748 /* OrderDetailViewController.swift */,
  3268. );
  3269. path = ViewController;
  3270. sourceTree = "<group>";
  3271. };
  3272. A7FF158A228C910600A85748 /* OrderRefunddetails */ = {
  3273. isa = PBXGroup;
  3274. children = (
  3275. A7FF158E228C913000A85748 /* ViewController */,
  3276. A7FF158D228C912200A85748 /* View */,
  3277. );
  3278. path = OrderRefunddetails;
  3279. sourceTree = "<group>";
  3280. };
  3281. A7FF158D228C912200A85748 /* View */ = {
  3282. isa = PBXGroup;
  3283. children = (
  3284. A7FF1591228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift */,
  3285. A7FF1593228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift */,
  3286. );
  3287. path = View;
  3288. sourceTree = "<group>";
  3289. };
  3290. A7FF158E228C913000A85748 /* ViewController */ = {
  3291. isa = PBXGroup;
  3292. children = (
  3293. A7FF158B228C911C00A85748 /* OrderRefunddetailsViewController.swift */,
  3294. );
  3295. path = ViewController;
  3296. sourceTree = "<group>";
  3297. };
  3298. BD108C8D22A60A2000837DAB /* HGImagePicker */ = {
  3299. isa = PBXGroup;
  3300. children = (
  3301. BD108C9222A60C2100837DAB /* HGImagePickerController.swift */,
  3302. BD108C9122A60C2100837DAB /* HGImagePickerCell.swift */,
  3303. BD108C8F22A60C2100837DAB /* HGImageCollectionViewController.swift */,
  3304. BD108C9022A60C2100837DAB /* HGImageCollectionViewCell.swift */,
  3305. BD108C8E22A60C2100837DAB /* HGImageCompleteButton.swift */,
  3306. BD108C9922A60C3300837DAB /* HGImage.storyboard */,
  3307. BD108C9822A60C3200837DAB /* HGImage.xcassets */,
  3308. );
  3309. path = HGImagePicker;
  3310. sourceTree = "<group>";
  3311. };
  3312. BD12203222AF803A0051C7C2 /* MessagePlanetActivity */ = {
  3313. isa = PBXGroup;
  3314. children = (
  3315. BD12203422AF80610051C7C2 /* View */,
  3316. BD12203322AF805A0051C7C2 /* Controller */,
  3317. );
  3318. path = MessagePlanetActivity;
  3319. sourceTree = "<group>";
  3320. };
  3321. BD12203322AF805A0051C7C2 /* Controller */ = {
  3322. isa = PBXGroup;
  3323. children = (
  3324. BD12203522AF807C0051C7C2 /* MessagePlanetActivityController.swift */,
  3325. );
  3326. path = Controller;
  3327. sourceTree = "<group>";
  3328. };
  3329. BD12203422AF80610051C7C2 /* View */ = {
  3330. isa = PBXGroup;
  3331. children = (
  3332. BD12203922AF80AD0051C7C2 /* MessageActivityTableCell.swift */,
  3333. );
  3334. path = View;
  3335. sourceTree = "<group>";
  3336. };
  3337. BD12203B22AF8DCA0051C7C2 /* MessagePlanetNotification */ = {
  3338. isa = PBXGroup;
  3339. children = (
  3340. BD12203D22AF8DF10051C7C2 /* View */,
  3341. BD12203C22AF8DE90051C7C2 /* Controller */,
  3342. );
  3343. path = MessagePlanetNotification;
  3344. sourceTree = "<group>";
  3345. };
  3346. BD12203C22AF8DE90051C7C2 /* Controller */ = {
  3347. isa = PBXGroup;
  3348. children = (
  3349. BD12203E22AF8E190051C7C2 /* MessagePlanetNotiController.swift */,
  3350. );
  3351. path = Controller;
  3352. sourceTree = "<group>";
  3353. };
  3354. BD12203D22AF8DF10051C7C2 /* View */ = {
  3355. isa = PBXGroup;
  3356. children = (
  3357. BD12204022AF8E320051C7C2 /* MessagePlanetNotiTableCell.swift */,
  3358. );
  3359. path = View;
  3360. sourceTree = "<group>";
  3361. };
  3362. BD12204222AF99520051C7C2 /* MessageComment */ = {
  3363. isa = PBXGroup;
  3364. children = (
  3365. BD12204322AF996E0051C7C2 /* MessageCommentController.swift */,
  3366. BD12204522AF997E0051C7C2 /* MessageCommentTableCell.swift */,
  3367. );
  3368. path = MessageComment;
  3369. sourceTree = "<group>";
  3370. };
  3371. BD12204722AF999C0051C7C2 /* MessageFollowNoti */ = {
  3372. isa = PBXGroup;
  3373. children = (
  3374. BD12204822AF99B90051C7C2 /* MessageFollowNotiController.swift */,
  3375. BD12204A22AF99C80051C7C2 /* MessageFollowNotiTableCell.swift */,
  3376. );
  3377. path = MessageFollowNoti;
  3378. sourceTree = "<group>";
  3379. };
  3380. BD12204C22AFB02B0051C7C2 /* MessagePlanetThumb */ = {
  3381. isa = PBXGroup;
  3382. children = (
  3383. BD12204D22AFB07E0051C7C2 /* MessageThumbController.swift */,
  3384. BD12204F22AFB08B0051C7C2 /* MessageThumbTableCell.swift */,
  3385. );
  3386. path = MessagePlanetThumb;
  3387. sourceTree = "<group>";
  3388. };
  3389. BD12B67122B4E96100AEB10B /* PublishModule */ = {
  3390. isa = PBXGroup;
  3391. children = (
  3392. BD12B67222B4E99800AEB10B /* PublishMediaPicker */,
  3393. BD28077422B72175002AB976 /* PublishEditController */,
  3394. );
  3395. path = PublishModule;
  3396. sourceTree = "<group>";
  3397. };
  3398. BD12B67222B4E99800AEB10B /* PublishMediaPicker */ = {
  3399. isa = PBXGroup;
  3400. children = (
  3401. BD12B6A422B502C200AEB10B /* KSVideoPlayerView */,
  3402. BD12B6AE22B5076800AEB10B /* KSLayout.h */,
  3403. BD12B68722B4F28F00AEB10B /* KSExtension.swift */,
  3404. BD24FABE22B50C4B00C7AA3B /* KSMediaPicker.strings */,
  3405. BD12B69F22B4FC9B00AEB10B /* KSButton */,
  3406. BD12B68922B4F4FF00AEB10B /* KSSegmentedControl */,
  3407. BD12B67522B4ECE200AEB10B /* Controller */,
  3408. BD12B67622B4ED8800AEB10B /* Model */,
  3409. BD12B67922B4EE1A00AEB10B /* View */,
  3410. );
  3411. path = PublishMediaPicker;
  3412. sourceTree = "<group>";
  3413. };
  3414. BD12B67522B4ECE200AEB10B /* Controller */ = {
  3415. isa = PBXGroup;
  3416. children = (
  3417. BD12B67322B4EC9700AEB10B /* KSMediaPickerController.swift */,
  3418. );
  3419. path = Controller;
  3420. sourceTree = "<group>";
  3421. };
  3422. BD12B67622B4ED8800AEB10B /* Model */ = {
  3423. isa = PBXGroup;
  3424. children = (
  3425. BD12B67A22B4EE6C00AEB10B /* KSMediaPickerAlbumModel.swift */,
  3426. BD12B67B22B4EE6D00AEB10B /* KSMediaPickerItemModel.swift */,
  3427. BD12B67722B4ED9200AEB10B /* KSMediaPickerOutputModel.swift */,
  3428. );
  3429. path = Model;
  3430. sourceTree = "<group>";
  3431. };
  3432. BD12B67922B4EE1A00AEB10B /* View */ = {
  3433. isa = PBXGroup;
  3434. children = (
  3435. BD12B68D22B4F5DD00AEB10B /* KSMediaPickerCameraToolBar.swift */,
  3436. BD12B68422B4F15300AEB10B /* KSMediaPickerCameraView.swift */,
  3437. BD12B69222B4F68400AEB10B /* KSMediaPickerCollectionView.h */,
  3438. BD12B69322B4F68400AEB10B /* KSMediaPickerCollectionView.m */,
  3439. BD12B69D22B4FAF000AEB10B /* KSMediaPickerNavigationView.swift */,
  3440. BD12B69522B4F72900AEB10B /* KSMediaPickerPreviewView.swift */,
  3441. BD12B69B22B4FAC800AEB10B /* KSMediaPickerRECButton.swift */,
  3442. BD12B68F22B4F60200AEB10B /* KSMediaPickerScrollView.h */,
  3443. BD12B69022B4F60200AEB10B /* KSMediaPickerScrollView.m */,
  3444. BD12B69922B4FA8400AEB10B /* KSMediaPickerSelectIndicator.swift */,
  3445. BD12B68222B4EFF000AEB10B /* KSMediaPickerView.swift */,
  3446. BD12B67E22B4EF2600AEB10B /* KSMediaPickerViewImageCell.swift */,
  3447. BD12B67F22B4EF2600AEB10B /* KSMediaPickerViewVideoCell.swift */,
  3448. );
  3449. path = View;
  3450. sourceTree = "<group>";
  3451. };
  3452. BD12B68922B4F4FF00AEB10B /* KSSegmentedControl */ = {
  3453. isa = PBXGroup;
  3454. children = (
  3455. BD12B68A22B4F4FF00AEB10B /* KSSegmentedControl.h */,
  3456. BD12B68B22B4F4FF00AEB10B /* KSSegmentedControl.m */,
  3457. );
  3458. path = KSSegmentedControl;
  3459. sourceTree = "<group>";
  3460. };
  3461. BD12B69F22B4FC9B00AEB10B /* KSButton */ = {
  3462. isa = PBXGroup;
  3463. children = (
  3464. BD12B6A022B4FC9B00AEB10B /* KSBorderButton.swift */,
  3465. BD12B6A122B4FC9B00AEB10B /* KSButton.swift */,
  3466. );
  3467. path = KSButton;
  3468. sourceTree = "<group>";
  3469. };
  3470. BD12B6A422B502C200AEB10B /* KSVideoPlayerView */ = {
  3471. isa = PBXGroup;
  3472. children = (
  3473. BD12B6A522B502C200AEB10B /* KSVideoPlayerLiteView.m */,
  3474. BD12B6A622B502C200AEB10B /* KSVideoLayer.h */,
  3475. BD12B6A722B502C200AEB10B /* KSVideoPlayerBaseView.m */,
  3476. BD12B6A822B502C200AEB10B /* KSVideoPlayerLiteView.h */,
  3477. BD12B6A922B502C200AEB10B /* KSVideoPlayerBaseView.h */,
  3478. BD12B6AA22B502C200AEB10B /* KSVideoLayer.m */,
  3479. );
  3480. path = KSVideoPlayerView;
  3481. sourceTree = "<group>";
  3482. };
  3483. BD1DC6C2228CFD0B00B89C57 /* SwiftMoyaServiceOrder */ = {
  3484. isa = PBXGroup;
  3485. children = (
  3486. BD1DC6C4228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift */,
  3487. BD1DC6C3228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift */,
  3488. );
  3489. path = SwiftMoyaServiceOrder;
  3490. sourceTree = "<group>";
  3491. };
  3492. BD1DC6C7228D002200B89C57 /* OrderModel */ = {
  3493. isa = PBXGroup;
  3494. children = (
  3495. A7FF1597228D092A00A85748 /* OrderListModel.swift */,
  3496. BD1DC6C8228D005000B89C57 /* OrderCreateParameterModel.swift */,
  3497. BD1DC6CA228D157000B89C57 /* OrderCreateBackModel.swift */,
  3498. BD1DC6CC228D160D00B89C57 /* OrderPurchaseModel.swift */,
  3499. A7FF159B228D9E3C00A85748 /* OrderRefundDetailModel.swift */,
  3500. BD6EDF47229007EA009A20FE /* OrderApplyRefundModel.swift */,
  3501. );
  3502. path = OrderModel;
  3503. sourceTree = "<group>";
  3504. };
  3505. BD1FC17D22B08CEB00D55081 /* CommunityMyFollowTopic */ = {
  3506. isa = PBXGroup;
  3507. children = (
  3508. BD1FC17E22B08D3C00D55081 /* CommunityMyFollowTopicController.swift */,
  3509. BD1FC18022B08D7A00D55081 /* CommunityMyFollowTopicCell.swift */,
  3510. );
  3511. path = CommunityMyFollowTopic;
  3512. sourceTree = "<group>";
  3513. };
  3514. BD1FC18222B09F4700D55081 /* CommunitySubComment */ = {
  3515. isa = PBXGroup;
  3516. children = (
  3517. BD1FC18522B09F9800D55081 /* CommunitySubCommentController.swift */,
  3518. BD1FC18722B0A30300D55081 /* CommunityMajorCommentCell.swift */,
  3519. BD1FC18922B0A32100D55081 /* CommunityReplyCommentCell.swift */,
  3520. );
  3521. path = CommunitySubComment;
  3522. sourceTree = "<group>";
  3523. };
  3524. BD1FC19022B1075E00D55081 /* CommentKeyboard */ = {
  3525. isa = PBXGroup;
  3526. children = (
  3527. BD1FC19222B1075E00D55081 /* Category */,
  3528. BD1FC19F22B1075F00D55081 /* LXKeyBoard.h */,
  3529. BD1FC1A122B1075F00D55081 /* LXKeyBoard.m */,
  3530. BD1FC19122B1075E00D55081 /* LXTextView.h */,
  3531. BD1FC1A022B1075F00D55081 /* LXTextView.m */,
  3532. );
  3533. path = CommentKeyboard;
  3534. sourceTree = "<group>";
  3535. };
  3536. BD1FC19222B1075E00D55081 /* Category */ = {
  3537. isa = PBXGroup;
  3538. children = (
  3539. BD1FC19722B1075F00D55081 /* LxButton.h */,
  3540. BD1FC19C22B1075F00D55081 /* LxButton.m */,
  3541. BD1FC19822B1075F00D55081 /* UIColor+Expanded.h */,
  3542. BD1FC19E22B1075F00D55081 /* UIColor+Expanded.m */,
  3543. BD1FC19522B1075E00D55081 /* UIView+LX_Frame.h */,
  3544. BD1FC19922B1075F00D55081 /* UIView+LX_Frame.m */,
  3545. );
  3546. path = Category;
  3547. sourceTree = "<group>";
  3548. };
  3549. BD28077422B72175002AB976 /* PublishEditController */ = {
  3550. isa = PBXGroup;
  3551. children = (
  3552. BD28077622B721AC002AB976 /* View */,
  3553. BD28077522B721A2002AB976 /* Controller */,
  3554. );
  3555. path = PublishEditController;
  3556. sourceTree = "<group>";
  3557. };
  3558. BD28077522B721A2002AB976 /* Controller */ = {
  3559. isa = PBXGroup;
  3560. children = (
  3561. BD28077722B721BF002AB976 /* PublishEditController.swift */,
  3562. );
  3563. path = Controller;
  3564. sourceTree = "<group>";
  3565. };
  3566. BD28077622B721AC002AB976 /* View */ = {
  3567. isa = PBXGroup;
  3568. children = (
  3569. BD28078122B727BD002AB976 /* PublishEditAddPicCell.swift */,
  3570. BD28077922B72734002AB976 /* PublishEditTitleCell.swift */,
  3571. BD28077B22B72761002AB976 /* PublishEditDescribeCell.swift */,
  3572. BD28077D22B72797002AB976 /* PublishEditAddTopicCell.swift */,
  3573. BD28077F22B727A6002AB976 /* PublishEditAddAddressCell.swift */,
  3574. );
  3575. path = View;
  3576. sourceTree = "<group>";
  3577. };
  3578. BD2FCBDE22B21BE00006D974 /* CommunityRecommendDetail */ = {
  3579. isa = PBXGroup;
  3580. children = (
  3581. BD2FCBE022B21C600006D974 /* View */,
  3582. BD2FCBDF22B21C3F0006D974 /* Controller */,
  3583. );
  3584. path = CommunityRecommendDetail;
  3585. sourceTree = "<group>";
  3586. };
  3587. BD2FCBDF22B21C3F0006D974 /* Controller */ = {
  3588. isa = PBXGroup;
  3589. children = (
  3590. BD2FCBE122B21CF70006D974 /* CommunityRecommendController.swift */,
  3591. );
  3592. path = Controller;
  3593. sourceTree = "<group>";
  3594. };
  3595. BD2FCBE022B21C600006D974 /* View */ = {
  3596. isa = PBXGroup;
  3597. children = (
  3598. BDAF83AE22B3B6150004BCC3 /* 全部评论的Cell */,
  3599. BDAF83A922B388F20004BCC3 /* RecommendDefaultBackCell.swift */,
  3600. BD2FCBE322B244250006D974 /* RecommendDetailContentCell.swift */,
  3601. BD2FCBE522B2586C0006D974 /* CommunityTagCollectionCell.swift */,
  3602. BD2FCBE922B267280006D974 /* RecommendNoneCommentCell.swift */,
  3603. BDAF83A122B330540004BCC3 /* RecommendSimilarCell.swift */,
  3604. BDAF83A522B334D90004BCC3 /* RecommendSimilarCollectionCell.swift */,
  3605. BDAF83A722B343C50004BCC3 /* RecommendBottomCommentView.swift */,
  3606. );
  3607. path = View;
  3608. sourceTree = "<group>";
  3609. };
  3610. BD3474F722859788000908C5 /* OrderPayOrder */ = {
  3611. isa = PBXGroup;
  3612. children = (
  3613. BD3474F9228597B6000908C5 /* View */,
  3614. BD3474F8228597AC000908C5 /* ViewController */,
  3615. );
  3616. path = OrderPayOrder;
  3617. sourceTree = "<group>";
  3618. };
  3619. BD3474F8228597AC000908C5 /* ViewController */ = {
  3620. isa = PBXGroup;
  3621. children = (
  3622. BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */,
  3623. );
  3624. path = ViewController;
  3625. sourceTree = "<group>";
  3626. };
  3627. BD3474F9228597B6000908C5 /* View */ = {
  3628. isa = PBXGroup;
  3629. children = (
  3630. BD7AB83B228437940030646A /* AdressCell */,
  3631. BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */,
  3632. BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */,
  3633. BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */,
  3634. BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */,
  3635. BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */,
  3636. BD0E678422A4C23B00B980BA /* ShoppingCartOrderPayFreightCell.swift */,
  3637. );
  3638. path = View;
  3639. sourceTree = "<group>";
  3640. };
  3641. BD3474FA228597E8000908C5 /* OrderFinishPay */ = {
  3642. isa = PBXGroup;
  3643. children = (
  3644. BD3474FB2285980D000908C5 /* View */,
  3645. BD3474FC22859815000908C5 /* ViewController */,
  3646. );
  3647. path = OrderFinishPay;
  3648. sourceTree = "<group>";
  3649. };
  3650. BD3474FB2285980D000908C5 /* View */ = {
  3651. isa = PBXGroup;
  3652. children = (
  3653. BD20F1CE2283CE2300677D8E /* OrderFinishPayView.swift */,
  3654. BD20F1D22283D0ED00677D8E /* OrderFinishPaySuccessCell.swift */,
  3655. BD20F1D42283D15500677D8E /* OrderFinishPayFailureCell.swift */,
  3656. );
  3657. path = View;
  3658. sourceTree = "<group>";
  3659. };
  3660. BD3474FC22859815000908C5 /* ViewController */ = {
  3661. isa = PBXGroup;
  3662. children = (
  3663. BD20F1CC2283C51300677D8E /* OrderFinishPayController.swift */,
  3664. );
  3665. path = ViewController;
  3666. sourceTree = "<group>";
  3667. };
  3668. BD3AA45422AE635700EF4F20 /* MessageModule */ = {
  3669. isa = PBXGroup;
  3670. children = (
  3671. BD3AA45522AE63A200EF4F20 /* MessageMain */,
  3672. BD12203222AF803A0051C7C2 /* MessagePlanetActivity */,
  3673. BD12203B22AF8DCA0051C7C2 /* MessagePlanetNotification */,
  3674. BD12204222AF99520051C7C2 /* MessageComment */,
  3675. BD12204C22AFB02B0051C7C2 /* MessagePlanetThumb */,
  3676. BD12204722AF999C0051C7C2 /* MessageFollowNoti */,
  3677. );
  3678. path = MessageModule;
  3679. sourceTree = "<group>";
  3680. };
  3681. BD3AA45522AE63A200EF4F20 /* MessageMain */ = {
  3682. isa = PBXGroup;
  3683. children = (
  3684. BD3AA45922AE63FB00EF4F20 /* View */,
  3685. BD3AA45622AE63B800EF4F20 /* ViewController */,
  3686. );
  3687. path = MessageMain;
  3688. sourceTree = "<group>";
  3689. };
  3690. BD3AA45622AE63B800EF4F20 /* ViewController */ = {
  3691. isa = PBXGroup;
  3692. children = (
  3693. BD3AA45722AE63EC00EF4F20 /* MessageMainViewController.swift */,
  3694. );
  3695. path = ViewController;
  3696. sourceTree = "<group>";
  3697. };
  3698. BD3AA45922AE63FB00EF4F20 /* View */ = {
  3699. isa = PBXGroup;
  3700. children = (
  3701. BD3AA45E22AE6F2500EF4F20 /* MessagePlanetTableCell.swift */,
  3702. BD12203022AF4A010051C7C2 /* MessageMainItemView.swift */,
  3703. );
  3704. path = View;
  3705. sourceTree = "<group>";
  3706. };
  3707. BD77BE18228D8C2E0060E23C /* OrderComment */ = {
  3708. isa = PBXGroup;
  3709. children = (
  3710. BDF862A8228E438E000DEF84 /* View */,
  3711. BD77BE1A228D8C570060E23C /* ViewController */,
  3712. );
  3713. path = OrderComment;
  3714. sourceTree = "<group>";
  3715. };
  3716. BD77BE1A228D8C570060E23C /* ViewController */ = {
  3717. isa = PBXGroup;
  3718. children = (
  3719. BDF8629B228E4125000DEF84 /* OrderCommentController.swift */,
  3720. );
  3721. path = ViewController;
  3722. sourceTree = "<group>";
  3723. };
  3724. BD77BE1B228D8D320060E23C /* OrderLogistics */ = {
  3725. isa = PBXGroup;
  3726. children = (
  3727. BDF8629F228E41CC000DEF84 /* View */,
  3728. BDF8629D228E41CC000DEF84 /* ViewController */,
  3729. );
  3730. path = OrderLogistics;
  3731. sourceTree = "<group>";
  3732. };
  3733. BD7AB83B228437940030646A /* AdressCell */ = {
  3734. isa = PBXGroup;
  3735. children = (
  3736. BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */,
  3737. BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */,
  3738. BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */,
  3739. BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */,
  3740. BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */,
  3741. );
  3742. path = AdressCell;
  3743. sourceTree = "<group>";
  3744. };
  3745. BDAF83AE22B3B6150004BCC3 /* 全部评论的Cell */ = {
  3746. isa = PBXGroup;
  3747. children = (
  3748. BDAF83AF22B3B63B0004BCC3 /* RecommendCommentHeader.swift */,
  3749. BDAF83B322B3B6DF0004BCC3 /* RecommendMajorCommentCell.swift */,
  3750. BDAF83B122B3B67D0004BCC3 /* RecommendCommentFooter.swift */,
  3751. BD12B66822B47D4700AEB10B /* RecommendSubCommentCollectionCell.swift */,
  3752. BD12B66A22B4A01300AEB10B /* RecommendSubCommentCollectionFooter.swift */,
  3753. );
  3754. path = "全部评论的Cell";
  3755. sourceTree = "<group>";
  3756. };
  3757. BDEF778F228571C200ED0AC0 /* PayManagerView */ = {
  3758. isa = PBXGroup;
  3759. children = (
  3760. BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */,
  3761. BD3474F422857B85000908C5 /* CommonPayHeader.swift */,
  3762. BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */,
  3763. );
  3764. path = PayManagerView;
  3765. sourceTree = "<group>";
  3766. };
  3767. BDF47D782282645900941AB9 /* View */ = {
  3768. isa = PBXGroup;
  3769. children = (
  3770. BDF47D882282D94D00941AB9 /* ShoppingCartList */,
  3771. BDF47D832282BF4300941AB9 /* ShoppingCartHotSale */,
  3772. BDF47D79228271F600941AB9 /* ShoppingCartView.swift */,
  3773. BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */,
  3774. );
  3775. path = View;
  3776. sourceTree = "<group>";
  3777. };
  3778. BDF47D832282BF4300941AB9 /* ShoppingCartHotSale */ = {
  3779. isa = PBXGroup;
  3780. children = (
  3781. BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */,
  3782. );
  3783. path = ShoppingCartHotSale;
  3784. sourceTree = "<group>";
  3785. };
  3786. BDF47D882282D94D00941AB9 /* ShoppingCartList */ = {
  3787. isa = PBXGroup;
  3788. children = (
  3789. BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */,
  3790. BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */,
  3791. BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */,
  3792. );
  3793. path = ShoppingCartList;
  3794. sourceTree = "<group>";
  3795. };
  3796. BDF8629D228E41CC000DEF84 /* ViewController */ = {
  3797. isa = PBXGroup;
  3798. children = (
  3799. BDF8629E228E41CC000DEF84 /* OrderLogisticsController.swift */,
  3800. );
  3801. path = ViewController;
  3802. sourceTree = "<group>";
  3803. };
  3804. BDF8629F228E41CC000DEF84 /* View */ = {
  3805. isa = PBXGroup;
  3806. children = (
  3807. BDF862A0228E41CC000DEF84 /* OrderLogisticsInfoCell.swift */,
  3808. );
  3809. path = View;
  3810. sourceTree = "<group>";
  3811. };
  3812. BDF862A3228E4266000DEF84 /* OrderApplyRefund */ = {
  3813. isa = PBXGroup;
  3814. children = (
  3815. BDF862AF228E64D5000DEF84 /* View */,
  3816. BDF862A4228E42CA000DEF84 /* ViewController */,
  3817. );
  3818. path = OrderApplyRefund;
  3819. sourceTree = "<group>";
  3820. };
  3821. BDF862A4228E42CA000DEF84 /* ViewController */ = {
  3822. isa = PBXGroup;
  3823. children = (
  3824. BDF862A6228E42FA000DEF84 /* OrderApplyRefundController.swift */,
  3825. );
  3826. path = ViewController;
  3827. sourceTree = "<group>";
  3828. };
  3829. BDF862A8228E438E000DEF84 /* View */ = {
  3830. isa = PBXGroup;
  3831. children = (
  3832. BDF862A9228E43A4000DEF84 /* OrderCommentTableViewCell.swift */,
  3833. BDF862AB228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift */,
  3834. BDF862AD228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift */,
  3835. );
  3836. path = View;
  3837. sourceTree = "<group>";
  3838. };
  3839. BDF862AF228E64D5000DEF84 /* View */ = {
  3840. isa = PBXGroup;
  3841. children = (
  3842. BDF862B0228E6690000DEF84 /* OrderApplyRefundProductCell.swift */,
  3843. BDAA40F6228E947500CF841D /* OrderApplyRefundAccountCell.swift */,
  3844. BDAA40F8228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift */,
  3845. BDAA40FC228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift */,
  3846. BDAA40FA228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift */,
  3847. BDAA40FE228EA37900CF841D /* OrderApplyRefundPhotoCell.swift */,
  3848. );
  3849. path = View;
  3850. sourceTree = "<group>";
  3851. };
  3852. FA8AAFBADE8BD144A5C36FDB /* Frameworks */ = {
  3853. isa = PBXGroup;
  3854. children = (
  3855. A76390EA2248E27A0067EEE0 /* UserNotifications.framework */,
  3856. A72A73592233577000B21995 /* libc++.1.tbd */,
  3857. A72A730322321EFA00B21995 /* libc++.tbd */,
  3858. A72A730122321EEE00B21995 /* libz.tbd */,
  3859. A72A72FF22321EE900B21995 /* SystemConfiguration.framework */,
  3860. A72A72FD22321EE200B21995 /* QuartzCore.framework */,
  3861. A72A72FB22321ECD00B21995 /* CoreTelephony.framework */,
  3862. A72A72F922321EBF00B21995 /* CoreText.framework */,
  3863. A72A72F722321EB600B21995 /* CoreGraphics.framework */,
  3864. A72A72F522321EA000B21995 /* UIKit.framework */,
  3865. A72A72F322321E9A00B21995 /* Foundation.framework */,
  3866. A72A72F122321E9300B21995 /* CFNetwork.framework */,
  3867. A72A72EF22321E8800B21995 /* CoreMotion.framework */,
  3868. D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */,
  3869. A7E03A30F40582782EC5DA89 /* Pods_RainbowPlanetTests.framework */,
  3870. 88DF1EFD2E202DA7C627E8A7 /* Pods_RainbowPlanetUITests.framework */,
  3871. );
  3872. name = Frameworks;
  3873. sourceTree = "<group>";
  3874. };
  3875. /* End PBXGroup section */
  3876. /* Begin PBXNativeTarget section */
  3877. A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */ = {
  3878. isa = PBXNativeTarget;
  3879. buildConfigurationList = A77F2C852231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanet" */;
  3880. buildPhases = (
  3881. D3A9893FB9EA18608E79E053 /* [CP] Check Pods Manifest.lock */,
  3882. A77F2C592231FB49001BD3F6 /* Sources */,
  3883. A77F2C5A2231FB49001BD3F6 /* Frameworks */,
  3884. A77F2C5B2231FB49001BD3F6 /* Resources */,
  3885. 696EB1DDE9DE019617B4DAD7 /* [CP] Embed Pods Frameworks */,
  3886. 59501F6F4334279DFBD164A0 /* [CP] Copy Pods Resources */,
  3887. );
  3888. buildRules = (
  3889. );
  3890. dependencies = (
  3891. );
  3892. name = RainbowPlanet;
  3893. productName = RainbowPlanet;
  3894. productReference = A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */;
  3895. productType = "com.apple.product-type.application";
  3896. };
  3897. A77F2C702231FB4A001BD3F6 /* RainbowPlanetTests */ = {
  3898. isa = PBXNativeTarget;
  3899. buildConfigurationList = A77F2C882231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetTests" */;
  3900. buildPhases = (
  3901. A77F2C6D2231FB4A001BD3F6 /* Sources */,
  3902. A77F2C6E2231FB4A001BD3F6 /* Frameworks */,
  3903. A77F2C6F2231FB4A001BD3F6 /* Resources */,
  3904. );
  3905. buildRules = (
  3906. );
  3907. dependencies = (
  3908. A77F2C732231FB4A001BD3F6 /* PBXTargetDependency */,
  3909. );
  3910. name = RainbowPlanetTests;
  3911. productName = RainbowPlanetTests;
  3912. productReference = A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */;
  3913. productType = "com.apple.product-type.bundle.unit-test";
  3914. };
  3915. A77F2C7B2231FB4A001BD3F6 /* RainbowPlanetUITests */ = {
  3916. isa = PBXNativeTarget;
  3917. buildConfigurationList = A77F2C8B2231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetUITests" */;
  3918. buildPhases = (
  3919. A77F2C782231FB4A001BD3F6 /* Sources */,
  3920. A77F2C792231FB4A001BD3F6 /* Frameworks */,
  3921. A77F2C7A2231FB4A001BD3F6 /* Resources */,
  3922. );
  3923. buildRules = (
  3924. );
  3925. dependencies = (
  3926. A77F2C7E2231FB4A001BD3F6 /* PBXTargetDependency */,
  3927. );
  3928. name = RainbowPlanetUITests;
  3929. productName = RainbowPlanetUITests;
  3930. productReference = A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */;
  3931. productType = "com.apple.product-type.bundle.ui-testing";
  3932. };
  3933. /* End PBXNativeTarget section */
  3934. /* Begin PBXProject section */
  3935. A77F2C552231FB49001BD3F6 /* Project object */ = {
  3936. isa = PBXProject;
  3937. attributes = {
  3938. LastSwiftUpdateCheck = 1010;
  3939. LastUpgradeCheck = 1010;
  3940. ORGANIZATIONNAME = RainbowPlanet;
  3941. TargetAttributes = {
  3942. A77F2C5C2231FB49001BD3F6 = {
  3943. CreatedOnToolsVersion = 10.1;
  3944. LastSwiftMigration = 1020;
  3945. SystemCapabilities = {
  3946. com.apple.BackgroundModes = {
  3947. enabled = 1;
  3948. };
  3949. com.apple.Push = {
  3950. enabled = 1;
  3951. };
  3952. };
  3953. };
  3954. A77F2C702231FB4A001BD3F6 = {
  3955. CreatedOnToolsVersion = 10.1;
  3956. LastSwiftMigration = 1020;
  3957. TestTargetID = A77F2C5C2231FB49001BD3F6;
  3958. };
  3959. A77F2C7B2231FB4A001BD3F6 = {
  3960. CreatedOnToolsVersion = 10.1;
  3961. LastSwiftMigration = 1020;
  3962. TestTargetID = A77F2C5C2231FB49001BD3F6;
  3963. };
  3964. };
  3965. };
  3966. buildConfigurationList = A77F2C582231FB49001BD3F6 /* Build configuration list for PBXProject "RainbowPlanet" */;
  3967. compatibilityVersion = "Xcode 9.3";
  3968. developmentRegion = en;
  3969. hasScannedForEncodings = 0;
  3970. knownRegions = (
  3971. en,
  3972. Base,
  3973. );
  3974. mainGroup = A77F2C542231FB49001BD3F6;
  3975. productRefGroup = A77F2C5E2231FB49001BD3F6 /* Products */;
  3976. projectDirPath = "";
  3977. projectRoot = "";
  3978. targets = (
  3979. A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */,
  3980. A77F2C702231FB4A001BD3F6 /* RainbowPlanetTests */,
  3981. A77F2C7B2231FB4A001BD3F6 /* RainbowPlanetUITests */,
  3982. );
  3983. };
  3984. /* End PBXProject section */
  3985. /* Begin PBXResourcesBuildPhase section */
  3986. A77F2C5B2231FB49001BD3F6 /* Resources */ = {
  3987. isa = PBXResourcesBuildPhase;
  3988. buildActionMask = 2147483647;
  3989. files = (
  3990. BD24FABF22B50C4B00C7AA3B /* KSMediaPicker.strings in Resources */,
  3991. A7CC74DE22703B4A003C4F38 /* MineModule.xcassets in Resources */,
  3992. A7BF202422B392D600396DB3 /* CommunityModule.xcassets in Resources */,
  3993. A71AF0BE226F1792001730FE /* ShoppingMallModule.xcassets in Resources */,
  3994. A7931DFE22AF827600297D0A /* Localizable.strings in Resources */,
  3995. A7778C9722438F5D00C7C47A /* AlipaySDK.bundle in Resources */,
  3996. A7190167227543DB00104A50 /* baidu_cityid_rel.json in Resources */,
  3997. A77F2C682231FB4A001BD3F6 /* Assets.xcassets in Resources */,
  3998. A72C01232275404A0065E0C3 /* province_city_area.json in Resources */,
  3999. BD108C9B22A60C3300837DAB /* HGImage.storyboard in Resources */,
  4000. A7FF1577228C824300A85748 /* OrderModule.xcassets in Resources */,
  4001. A7931E0822AF855E00297D0A /* RegisterLoginModule.xcassets in Resources */,
  4002. A7778C9922438F5D00C7C47A /* README.txt in Resources */,
  4003. A7BF202722B3930100396DB3 /* MessageModule.xcassets in Resources */,
  4004. BD108C9A22A60C3300837DAB /* HGImage.xcassets in Resources */,
  4005. A729B5AA2266F6FD004AE098 /* Launch Screen.storyboard in Resources */,
  4006. BD24FABB22B509CF00C7AA3B /* PublishModule.xcassets in Resources */,
  4007. );
  4008. runOnlyForDeploymentPostprocessing = 0;
  4009. };
  4010. A77F2C6F2231FB4A001BD3F6 /* Resources */ = {
  4011. isa = PBXResourcesBuildPhase;
  4012. buildActionMask = 2147483647;
  4013. files = (
  4014. );
  4015. runOnlyForDeploymentPostprocessing = 0;
  4016. };
  4017. A77F2C7A2231FB4A001BD3F6 /* Resources */ = {
  4018. isa = PBXResourcesBuildPhase;
  4019. buildActionMask = 2147483647;
  4020. files = (
  4021. );
  4022. runOnlyForDeploymentPostprocessing = 0;
  4023. };
  4024. /* End PBXResourcesBuildPhase section */
  4025. /* Begin PBXShellScriptBuildPhase section */
  4026. 59501F6F4334279DFBD164A0 /* [CP] Copy Pods Resources */ = {
  4027. isa = PBXShellScriptBuildPhase;
  4028. buildActionMask = 2147483647;
  4029. files = (
  4030. );
  4031. inputFileListPaths = (
  4032. "${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources-${CONFIGURATION}-input-files.xcfilelist",
  4033. );
  4034. name = "[CP] Copy Pods Resources";
  4035. outputFileListPaths = (
  4036. "${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources-${CONFIGURATION}-output-files.xcfilelist",
  4037. );
  4038. runOnlyForDeploymentPostprocessing = 0;
  4039. shellPath = /bin/sh;
  4040. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources.sh\"\n";
  4041. showEnvVarsInLog = 0;
  4042. };
  4043. 696EB1DDE9DE019617B4DAD7 /* [CP] Embed Pods Frameworks */ = {
  4044. isa = PBXShellScriptBuildPhase;
  4045. buildActionMask = 2147483647;
  4046. files = (
  4047. );
  4048. inputFileListPaths = (
  4049. "${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  4050. );
  4051. name = "[CP] Embed Pods Frameworks";
  4052. outputFileListPaths = (
  4053. "${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  4054. );
  4055. runOnlyForDeploymentPostprocessing = 0;
  4056. shellPath = /bin/sh;
  4057. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks.sh\"\n";
  4058. showEnvVarsInLog = 0;
  4059. };
  4060. D3A9893FB9EA18608E79E053 /* [CP] Check Pods Manifest.lock */ = {
  4061. isa = PBXShellScriptBuildPhase;
  4062. buildActionMask = 2147483647;
  4063. files = (
  4064. );
  4065. inputFileListPaths = (
  4066. );
  4067. inputPaths = (
  4068. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  4069. "${PODS_ROOT}/Manifest.lock",
  4070. );
  4071. name = "[CP] Check Pods Manifest.lock";
  4072. outputFileListPaths = (
  4073. );
  4074. outputPaths = (
  4075. "$(DERIVED_FILE_DIR)/Pods-RainbowPlanet-checkManifestLockResult.txt",
  4076. );
  4077. runOnlyForDeploymentPostprocessing = 0;
  4078. shellPath = /bin/sh;
  4079. 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";
  4080. showEnvVarsInLog = 0;
  4081. };
  4082. /* End PBXShellScriptBuildPhase section */
  4083. /* Begin PBXSourcesBuildPhase section */
  4084. A77F2C592231FB49001BD3F6 /* Sources */ = {
  4085. isa = PBXSourcesBuildPhase;
  4086. buildActionMask = 2147483647;
  4087. files = (
  4088. A70B2C3322880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift in Sources */,
  4089. BDF45F0D228C00B8004E2682 /* DefaultContactInfoModel.swift in Sources */,
  4090. A72A72BA22321DE000B21995 /* Extension+String.swift in Sources */,
  4091. BDAF83B222B3B67D0004BCC3 /* RecommendCommentFooter.swift in Sources */,
  4092. A70B8430228FF6D400882BC5 /* ProductCartCountModel.swift in Sources */,
  4093. A77F2CA02231FE45001BD3F6 /* BaseWebViewController.swift in Sources */,
  4094. BDAF83B422B3B6DF0004BCC3 /* RecommendMajorCommentCell.swift in Sources */,
  4095. BD20F1D52283D15500677D8E /* OrderFinishPayFailureCell.swift in Sources */,
  4096. A72A72C022321DE000B21995 /* Extension+UIView.swift in Sources */,
  4097. BDAF83B022B3B63B0004BCC3 /* RecommendCommentHeader.swift in Sources */,
  4098. BD7AB83A2284288D0030646A /* ShoppingCartPayOrderFooter.swift in Sources */,
  4099. A719EE6E22AF441F001AAC98 /* CommunityViewController.swift in Sources */,
  4100. A72A72C522321DE000B21995 /* WKWebViewConfig.swift in Sources */,
  4101. A72A72BB22321DE000B21995 /* Extension+UILabel.swift in Sources */,
  4102. A70B2C372288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift in Sources */,
  4103. BDAF83A822B343C50004BCC3 /* RecommendBottomCommentView.swift in Sources */,
  4104. BD12B66B22B4A01300AEB10B /* RecommendSubCommentCollectionFooter.swift in Sources */,
  4105. A77F2C9E2231FDDC001BD3F6 /* BaseViewController.swift in Sources */,
  4106. BD12B68122B4EF2600AEB10B /* KSMediaPickerViewVideoCell.swift in Sources */,
  4107. A7284A75225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift in Sources */,
  4108. A77F2CC722320627001BD3F6 /* WRNavigationBar.swift in Sources */,
  4109. A7274C5E228EE636000E3A07 /* LBXPermissions.swift in Sources */,
  4110. A7D46092227619CD00A5A54E /* BaiduToCityFactory.swift in Sources */,
  4111. A71AA51C227219EF008FF1A5 /* EditExpressAddressView.swift in Sources */,
  4112. BD12B68522B4F15300AEB10B /* KSMediaPickerCameraView.swift in Sources */,
  4113. BD1FC1A822B1075F00D55081 /* LXTextView.m in Sources */,
  4114. BDAA40FB228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift in Sources */,
  4115. A7DF50D622A4E8B400998908 /* OrderDetailProductTableViewCell.swift in Sources */,
  4116. A7CC751122715AE3003C4F38 /* MessageDetailesTimeView.swift in Sources */,
  4117. A73911AD229CD62F0033177E /* AlamofireReachabilityManager.swift in Sources */,
  4118. A7BB684F2268DCEC00AB07A2 /* SelfRecommendationViewController.swift in Sources */,
  4119. A7B4E7352281907A0012914A /* CMSModel.swift in Sources */,
  4120. A72A72BE22321DE000B21995 /* Extension+RxTimer.swift in Sources */,
  4121. A7F2D6CB22B0E4270093000B /* CommunityRecommendFollowCollectionViewCell.swift in Sources */,
  4122. A7CC74EA22706ACD003C4F38 /* MessageViewController.swift in Sources */,
  4123. A7931E1622AFAEF500297D0A /* TopicSelectionModel.swift in Sources */,
  4124. BDF47D7E22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift in Sources */,
  4125. BD108C9522A60C2100837DAB /* HGImageCollectionViewCell.swift in Sources */,
  4126. A7FF1589228C854900A85748 /* OrderDetailBottomView.swift in Sources */,
  4127. BD1FC1A722B1075F00D55081 /* UIColor+Expanded.m in Sources */,
  4128. BD12203122AF4A010051C7C2 /* MessageMainItemView.swift in Sources */,
  4129. BD1DC6C5228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift in Sources */,
  4130. BD7AB83D228438020030646A /* OrderPayExpressInfoShowCell.swift in Sources */,
  4131. A72A72C422321DE000B21995 /* Extension+CAGradientLayer.swift in Sources */,
  4132. A7778CA72243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift in Sources */,
  4133. A7B4E738228191CC0012914A /* CommondModel.swift in Sources */,
  4134. BD7AB841228438C80030646A /* OrderPaySelfPickAddressCell.swift in Sources */,
  4135. BDF862AC228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift in Sources */,
  4136. A7931E0222AF827600297D0A /* ESTabBarItem.swift in Sources */,
  4137. A7CC74D4226FF1AA003C4F38 /* MineView.swift in Sources */,
  4138. A71AA5152272160A008FF1A5 /* ExpressAddressListTableViewCell.swift in Sources */,
  4139. A72A72B722321DE000B21995 /* Extension+NSMutableAttributedString.swift in Sources */,
  4140. A7931E0D22AF874600297D0A /* GenderSelectionViewController.swift in Sources */,
  4141. BD28077E22B72797002AB976 /* PublishEditAddTopicCell.swift in Sources */,
  4142. A7F2D6D022B1119A0093000B /* CommunityEnum.swift in Sources */,
  4143. A7BB6857226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift in Sources */,
  4144. BDE3045F228554CA001D050F /* ProductCartAmountModel.swift in Sources */,
  4145. A7BB68672269B1DD00AB07A2 /* AddressPOIViewController.swift in Sources */,
  4146. A7284A7322546460000BAEC4 /* SwiftMoyaServicePayApi.swift in Sources */,
  4147. BDE3045D22851E4F001D050F /* ProductCartListModel.swift in Sources */,
  4148. BD12B68822B4F28F00AEB10B /* KSExtension.swift in Sources */,
  4149. A7A98DFF227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift in Sources */,
  4150. BDDF3B28228EBB72003A7D16 /* ProductRefundReasonModel.swift in Sources */,
  4151. A7CC74DC2270352F003C4F38 /* MineOrderCollectionViewCell.swift in Sources */,
  4152. BDD4FB1222840597006FE833 /* ShoppingCartPayOrderController.swift in Sources */,
  4153. BD3AA45F22AE6F2500EF4F20 /* MessagePlanetTableCell.swift in Sources */,
  4154. BD12203A22AF80AD0051C7C2 /* MessageActivityTableCell.swift in Sources */,
  4155. A7284404224DBFBD00F82F30 /* UserModel.swift in Sources */,
  4156. A7CC74D822700359003C4F38 /* MineTableViewHeaderView.swift in Sources */,
  4157. A7931E1122AF989B00297D0A /* TopicSelectionViewController.swift in Sources */,
  4158. A71D2A602265673A00A55D16 /* RegisterLoginView.swift in Sources */,
  4159. BD12B6AC22B502C200AEB10B /* KSVideoPlayerBaseView.m in Sources */,
  4160. BD2FCBE422B244250006D974 /* RecommendDetailContentCell.swift in Sources */,
  4161. BD28078022B727A6002AB976 /* PublishEditAddAddressCell.swift in Sources */,
  4162. A73D7C682268A032002A4CE3 /* SwiftyStarRatingView.swift in Sources */,
  4163. A7931E0122AF827600297D0A /* ESTabBarItemContentView.swift in Sources */,
  4164. A71AA5102272156A008FF1A5 /* ExpressAddressListViewController.swift in Sources */,
  4165. BDAA40FF228EA37900CF841D /* OrderApplyRefundPhotoCell.swift in Sources */,
  4166. A7A98E14227ED0E2005306E9 /* CategoryListModel.swift in Sources */,
  4167. A70B2C532288584500B2449F /* ShareView.swift in Sources */,
  4168. A71AF0AE226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift in Sources */,
  4169. A7636AC52268139C00374F9E /* LocationViewController.swift in Sources */,
  4170. A7D46090227617D200A5A54E /* SQLModel.swift in Sources */,
  4171. A72C01222275404A0065E0C3 /* ProvinceCityAreaModel.swift in Sources */,
  4172. A7FF1579228C82CE00A85748 /* OrderDetailViewController.swift in Sources */,
  4173. A7FF159C228D9E3D00A85748 /* OrderRefundDetailModel.swift in Sources */,
  4174. A7C3DD1C226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift in Sources */,
  4175. BDF862A2228E41CC000DEF84 /* OrderLogisticsInfoCell.swift in Sources */,
  4176. A739121D229F75F50033177E /* JXPagingListContainerView.swift in Sources */,
  4177. A72A7386223396CB00B21995 /* SwiftMoyaNetWorkManager.swift in Sources */,
  4178. A70B2C252286C03800B2449F /* NXLPageControl.swift in Sources */,
  4179. A7F2D6C122B0D1CB0093000B /* CommunityFollowTableHeaderView.swift in Sources */,
  4180. A7A98E12227ECA11005306E9 /* ProductSearchModel.swift in Sources */,
  4181. A71AF0B0226EF185001730FE /* SearchCollectionViewCell.swift in Sources */,
  4182. A7A98E1D227EF1CB005306E9 /* SpecialBannerView.swift in Sources */,
  4183. BDF47D852282C59F00941AB9 /* ShoppingCartListTableViewCell.swift in Sources */,
  4184. A7931DFF22AF827600297D0A /* ESTabBarItemMoreContentView.swift in Sources */,
  4185. A77F2CCA223209F2001BD3F6 /* BaseTabbarViewController.swift in Sources */,
  4186. A7BF202B22B396F300396DB3 /* CardContentTitleTableViewCell.swift in Sources */,
  4187. A70B2C1D2286B52400B2449F /* ProductDetailViewController.swift in Sources */,
  4188. A7CC75332271ABB0003C4F38 /* AddressManagerViewController.swift in Sources */,
  4189. A7FF158C228C911C00A85748 /* OrderRefunddetailsViewController.swift in Sources */,
  4190. A7CC750D227157DA003C4F38 /* MessageDetailesView.swift in Sources */,
  4191. BD12B67D22B4EE6D00AEB10B /* KSMediaPickerItemModel.swift in Sources */,
  4192. A7F2D6DD22B2536F0093000B /* CardContentPicVideoCollectionViewCell.swift in Sources */,
  4193. BD7AB83622841A8B0030646A /* ShoppingCartPayOrderItemCell.swift in Sources */,
  4194. A71AA519227219D7008FF1A5 /* EditExpressAddressViewController.swift in Sources */,
  4195. A7FF1568228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift in Sources */,
  4196. A71738A822897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift in Sources */,
  4197. BD20F1CD2283C51300677D8E /* OrderFinishPayController.swift in Sources */,
  4198. A729B5B022671310004AE098 /* MobileLoginView.swift in Sources */,
  4199. A71AA50C2272126A008FF1A5 /* EditAddressFooterView.swift in Sources */,
  4200. A70B2C35228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift in Sources */,
  4201. A7931E0522AF827600297D0A /* ESTabBarItemContainer.swift in Sources */,
  4202. A70B2C60228870CE00B2449F /* ShopSectionHeaderView.swift in Sources */,
  4203. A7CC7528227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift in Sources */,
  4204. A7F2D6E122B25EF30093000B /* CardContentPicVideoModel.swift in Sources */,
  4205. A70B2C292286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift in Sources */,
  4206. BD1FC1A922B1075F00D55081 /* LXKeyBoard.m in Sources */,
  4207. A72A726822321DBD00B21995 /* UMManager.swift in Sources */,
  4208. A70B2C042283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift in Sources */,
  4209. BD108C9322A60C2100837DAB /* HGImageCompleteButton.swift in Sources */,
  4210. A7B4E721228151F40012914A /* ProductFloorTitleView.swift in Sources */,
  4211. A729B5AD2266FF45004AE098 /* BindPhoneNumberView.swift in Sources */,
  4212. A75C474E22938B3900139C0C /* OrderFreightTableViewCell.swift in Sources */,
  4213. A7FF1592228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift in Sources */,
  4214. BD12B67822B4ED9200AEB10B /* KSMediaPickerOutputModel.swift in Sources */,
  4215. A7CC74E62270628B003C4F38 /* DeliveryMethodTypeModel.swift in Sources */,
  4216. BD12B68322B4EFF000AEB10B /* KSMediaPickerView.swift in Sources */,
  4217. BDAF83A222B330540004BCC3 /* RecommendSimilarCell.swift in Sources */,
  4218. BDAA40FD228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift in Sources */,
  4219. BD2FCBE222B21CF70006D974 /* CommunityRecommendController.swift in Sources */,
  4220. A71AA51F22729F35008FF1A5 /* AuthorizationSwift.swift in Sources */,
  4221. A7A98E3622802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift in Sources */,
  4222. BD12B6A222B4FC9B00AEB10B /* KSBorderButton.swift in Sources */,
  4223. BD12204E22AFB07E0051C7C2 /* MessageThumbController.swift in Sources */,
  4224. A7824AFD2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift in Sources */,
  4225. BD7AB83F228438290030646A /* OrderPayExpressAddInfoCell.swift in Sources */,
  4226. A7DF50DF22A5590200998908 /* BrowsePicturesViewController.swift in Sources */,
  4227. A7CC74DA22702E41003C4F38 /* MineOrderTableViewCell.swift in Sources */,
  4228. A77F2CB92232010F001BD3F6 /* ShoppingCartViewController.swift in Sources */,
  4229. A72A72B822321DE000B21995 /* Extension+UserDefaults.swift in Sources */,
  4230. A719016B22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift in Sources */,
  4231. BD12B6AD22B502C200AEB10B /* KSVideoLayer.m in Sources */,
  4232. A729B5B72267270B004AE098 /* PasswordLoginView.swift in Sources */,
  4233. A7778CB82244E97A00C7C47A /* BindPhoneNumberViewController.swift in Sources */,
  4234. A754150F224CACF9002480B5 /* SwiftSign.swift in Sources */,
  4235. A71AF0BA226F00F8001730FE /* SearchResultView.swift in Sources */,
  4236. A77F2CB52232010F001BD3F6 /* ShoppingMallViewController.swift in Sources */,
  4237. A71AA513227215B5008FF1A5 /* ExpressAddressListView.swift in Sources */,
  4238. A7B4E723228154750012914A /* ProductFloorBannerView.swift in Sources */,
  4239. A7003EA3229192CC004E51FB /* PayManagerPay.swift in Sources */,
  4240. A7DC467F22783A47001F3EFC /* EditExpressAddressTableViewCell.swift in Sources */,
  4241. A7A98E4522804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift in Sources */,
  4242. A7931E0022AF827600297D0A /* ESTabBarController.swift in Sources */,
  4243. A7824B082271F53A00ABA381 /* EditSetDefaultTableViewCell.swift in Sources */,
  4244. A77F2CC3223203BA001BD3F6 /* AppDelegate+Window.swift in Sources */,
  4245. A7824B062271F25400ABA381 /* EditAddressTableViewCell.swift in Sources */,
  4246. BD12B69E22B4FAF000AEB10B /* KSMediaPickerNavigationView.swift in Sources */,
  4247. A70B2C4C228845E800B2449F /* ProductDetailParameterTableViewCell.swift in Sources */,
  4248. A7FF156A228C6E3600A85748 /* OrderProductTableViewCell.swift in Sources */,
  4249. A7931DF022AF4C9100297D0A /* BaseBouncesContentView.swift in Sources */,
  4250. A715333E22980CC60017C861 /* ConfigModel.swift in Sources */,
  4251. BDAF83A622B334D90004BCC3 /* RecommendSimilarCollectionCell.swift in Sources */,
  4252. A70EBBC022561179000AD74F /* Extension+UITableView.swift in Sources */,
  4253. A72A72B022321DE000B21995 /* CGView.swift in Sources */,
  4254. A7A98E0B227EBD04005306E9 /* CategorySearchView.swift in Sources */,
  4255. A72A73142232475E00B21995 /* AlipayManager.swift in Sources */,
  4256. A7824B042271F10300ABA381 /* EditSelfMentionContactsView.swift in Sources */,
  4257. A7274C5B228EE636000E3A07 /* LBXScanViewController.swift in Sources */,
  4258. A7FF1566228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift in Sources */,
  4259. A7A98E332280272A005306E9 /* ShoppingMallBannerTableViewCell.swift in Sources */,
  4260. BD12204622AF997E0051C7C2 /* MessageCommentTableCell.swift in Sources */,
  4261. BDF862AA228E43A4000DEF84 /* OrderCommentTableViewCell.swift in Sources */,
  4262. A7B4E754228278320012914A /* ShoppingMallFloorTableViewCell.swift in Sources */,
  4263. BD3474F522857B85000908C5 /* CommonPayHeader.swift in Sources */,
  4264. BD1FC1A322B1075F00D55081 /* UIView+LX_Frame.m in Sources */,
  4265. A71AF0B6226EF99A001730FE /* SearchResultViewController.swift in Sources */,
  4266. A757C9302274839900226355 /* SelfMentionAddressListModel.swift in Sources */,
  4267. BDD22F0B228FAA5B00D43BFB /* ImageUrlModel.swift in Sources */,
  4268. A72A72D522321E2700B21995 /* ColorMacro.swift in Sources */,
  4269. A72A7333223256E100B21995 /* PayManager.swift in Sources */,
  4270. A70B2C6722887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift in Sources */,
  4271. BD1DC6CD228D160D00B89C57 /* OrderPurchaseModel.swift in Sources */,
  4272. A775CC00223774A300EBDCF8 /* ShoppingMallView.swift in Sources */,
  4273. A7FF1555228AC27600A85748 /* ProductAllCommentView.swift in Sources */,
  4274. A7CC7526227196A8003C4F38 /* AccountSecurityTableViewCell.swift in Sources */,
  4275. A7CC74F122706FE3003C4F38 /* MessageOneCollectionViewCell.swift in Sources */,
  4276. BDF47D80228288F900941AB9 /* ShoppingCartAccountView.swift in Sources */,
  4277. A7284401224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift in Sources */,
  4278. A7B4E728228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift in Sources */,
  4279. BDEF7793228575A800ED0AC0 /* CommonPayCell.swift in Sources */,
  4280. A70B2C75228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift in Sources */,
  4281. A7DF50D822A4FAFC00998908 /* ProductDetailEvaluationImageCollectionViewCell.swift in Sources */,
  4282. A7C0FDE922B4BC5600BC1E86 /* CardContentCommentListContentTableViewCell.swift in Sources */,
  4283. BD12B67C22B4EE6D00AEB10B /* KSMediaPickerAlbumModel.swift in Sources */,
  4284. A72843FC224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift in Sources */,
  4285. A7931DF122AF4C9100297D0A /* BaseIrregularityBasicContentView.swift in Sources */,
  4286. A7931DEF22AF4C9100297D0A /* BaseBasicContentView.swift in Sources */,
  4287. A7CC750622714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift in Sources */,
  4288. A7C3DD1A226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift in Sources */,
  4289. A7284A7722547333000BAEC4 /* AlipayResultModel.swift in Sources */,
  4290. A72A72B422321DE000B21995 /* Extension+UIImage.swift in Sources */,
  4291. A7BB68552268DE8600AB07A2 /* SelfRecommendationView.swift in Sources */,
  4292. BD12B69622B4F72900AEB10B /* KSMediaPickerPreviewView.swift in Sources */,
  4293. A7BF203122B47CC000396DB3 /* CardContentCommnetTableViewCell.swift in Sources */,
  4294. A72A72AF22321DE000B21995 /* AppInfo.swift in Sources */,
  4295. A70B843422911AF600882BC5 /* ProductDetailView.swift in Sources */,
  4296. A7FF1598228D092A00A85748 /* OrderListModel.swift in Sources */,
  4297. A7FF157D228C837100A85748 /* OrderDetailStatusTableViewCell.swift in Sources */,
  4298. BD12204B22AF99C80051C7C2 /* MessageFollowNotiTableCell.swift in Sources */,
  4299. A7A98E41228046C5005306E9 /* ShoppingMallSepcialTableViewCell.swift in Sources */,
  4300. A70B2C5E22886F4D00B2449F /* ShopViewTableViewCell.swift in Sources */,
  4301. A7CC753A2271B98B003C4F38 /* AddressManagerAddTableViewCell.swift in Sources */,
  4302. A7FF1570228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift in Sources */,
  4303. A71AF0AC226EDE37001730FE /* SearchNavigationbarView.swift in Sources */,
  4304. A70B2C6D2288815E00B2449F /* PickViewOneComponentsView.swift in Sources */,
  4305. BDD4FB1422840954006FE833 /* ShoppingCartOrderPayView.swift in Sources */,
  4306. A70B2C222286BF5900B2449F /* ProductDetailTableViewHeaderView.swift in Sources */,
  4307. A7CC75432271E038003C4F38 /* SelfMentionContactsListViewController.swift in Sources */,
  4308. BDF47D872282C92200941AB9 /* ShoppingCartListTableViewHeader.swift in Sources */,
  4309. A70B2C46228840B100B2449F /* ProductDetailHotSellTableViewCell.swift in Sources */,
  4310. BD12B69C22B4FAC800AEB10B /* KSMediaPickerRECButton.swift in Sources */,
  4311. A7778CDF22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift in Sources */,
  4312. A7A98E2D22801642005306E9 /* SwiftMoyaServiceCMSApi.swift in Sources */,
  4313. A70B2C402288312900B2449F /* ProductDetailSectionHeader.swift in Sources */,
  4314. A7A98E3122801B10005306E9 /* ShoppingMallListView.swift in Sources */,
  4315. BD1DC6C6228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift in Sources */,
  4316. A7F2D6CE22B0FF180093000B /* CommunityFollowStatusTableViewCell.swift in Sources */,
  4317. BD1FC18A22B0A32100D55081 /* CommunityReplyCommentCell.swift in Sources */,
  4318. A7F2D6D722B1ED370093000B /* CardContentUserTableViewCell.swift in Sources */,
  4319. A7CC751A22716254003C4F38 /* SetTableViewCell.swift in Sources */,
  4320. BD20F1D32283D0ED00677D8E /* OrderFinishPaySuccessCell.swift in Sources */,
  4321. A71AA52822732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift in Sources */,
  4322. A70B2C732289019200B2449F /* ProductDetailSkuView.swift in Sources */,
  4323. A70B2C4322883B4E00B2449F /* ProductDetailShopTableViewCell.swift in Sources */,
  4324. BD28078222B727BD002AB976 /* PublishEditAddPicCell.swift in Sources */,
  4325. A70B2C102286A3BC00B2449F /* ProductDetailModel.swift in Sources */,
  4326. A7A17E5F22A0CEF200B7A77E /* SwiftMoyaNetWorkManagerTools.swift in Sources */,
  4327. A72A72A922321DE000B21995 /* NumberKeyboard.swift in Sources */,
  4328. BD108C9422A60C2100837DAB /* HGImageCollectionViewController.swift in Sources */,
  4329. A70B2C272286C5D600B2449F /* ProductDetailFSPagerViewCell.swift in Sources */,
  4330. A7FF1585228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift in Sources */,
  4331. A72A72AA22321DE000B21995 /* Log.swift in Sources */,
  4332. A72A72B622321DE000B21995 /* Extension+NSRange.swift in Sources */,
  4333. BD0E678522A4C23B00B980BA /* ShoppingCartOrderPayFreightCell.swift in Sources */,
  4334. A75414FD224B5F28002480B5 /* MobileLoginViewController.swift in Sources */,
  4335. A771F07C226D4E1C007999DB /* AddressPOITableViewCell.swift in Sources */,
  4336. A70B842E228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift in Sources */,
  4337. A72A72AE22321DE000B21995 /* CountdownButton.swift in Sources */,
  4338. A71738AD228AB7B2000AEA6A /* ProductCommentListModel.swift in Sources */,
  4339. A7B4E71F228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift in Sources */,
  4340. A77F2CB72232010F001BD3F6 /* MineViewController.swift in Sources */,
  4341. A7778CA92244904500C7C47A /* Extension+Gifu.GIFImageView.swift in Sources */,
  4342. A71738AB22898660000AEA6A /* ShopModel.swift in Sources */,
  4343. A7FF1557228AC3E800A85748 /* ProductAllCommentViewController.swift in Sources */,
  4344. A7A98E02227E8900005306E9 /* ProductSearchListModel.swift in Sources */,
  4345. A7A98E17227EED76005306E9 /* SpecialViewController.swift in Sources */,
  4346. A7778CB32244D73400C7C47A /* RegisterLoginViewController.swift in Sources */,
  4347. BD7AB8432284390B0030646A /* OrderPaySelfPickInfoCell.swift in Sources */,
  4348. BD1FC18622B09F9800D55081 /* CommunitySubCommentController.swift in Sources */,
  4349. A7274C5F228EE636000E3A07 /* LBXScanWrapper.swift in Sources */,
  4350. A7CC752F2271A1F2003C4F38 /* SetPasswordView.swift in Sources */,
  4351. BD12B68E22B4F5DD00AEB10B /* KSMediaPickerCameraToolBar.swift in Sources */,
  4352. A7A98E09227EB8DD005306E9 /* CategoryView.swift in Sources */,
  4353. A7CC75362271AC14003C4F38 /* AddressManagerView.swift in Sources */,
  4354. A7146349228EFCE20066099B /* ORSKUDataFilter.m in Sources */,
  4355. BDF8629C228E4125000DEF84 /* OrderCommentController.swift in Sources */,
  4356. A7B4E75A228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift in Sources */,
  4357. A71901752275F71F00104A50 /* BaiduToCityModel.swift in Sources */,
  4358. BD12203F22AF8E190051C7C2 /* MessagePlanetNotiController.swift in Sources */,
  4359. A7BB685922696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift in Sources */,
  4360. BD12B69A22B4FA8400AEB10B /* KSMediaPickerSelectIndicator.swift in Sources */,
  4361. A7636AC822682BAF00374F9E /* LocationView.swift in Sources */,
  4362. A738D205225AF90D00EEE860 /* WeChatpayOrderModel.swift in Sources */,
  4363. A7F2D6BD22B09F930093000B /* CommunityNavigationBarView.swift in Sources */,
  4364. A7274C5C228EE636000E3A07 /* LBXScanLineAnimation.swift in Sources */,
  4365. A739121A229F75F50033177E /* JXPagingMainTableView.swift in Sources */,
  4366. A7CC7524227190FB003C4F38 /* AccountSecurityView.swift in Sources */,
  4367. A7931E1422AF9E4000297D0A /* TopicSelectionCollectionViewCell.swift in Sources */,
  4368. BD1DC6CB228D157000B89C57 /* OrderCreateBackModel.swift in Sources */,
  4369. A72A72BD22321DE000B21995 /* Extension+UIColor.swift in Sources */,
  4370. A7FF1596228CFA8100A85748 /* OrderListViewController.swift in Sources */,
  4371. A7A98E05227EB891005306E9 /* CategoryViewController.swift in Sources */,
  4372. A7DF50E322A55AB600998908 /* BrowsePicturesPagerViewCell.swift in Sources */,
  4373. A77F2CC822320627001BD3F6 /* WRCustomNavigationBar.swift in Sources */,
  4374. BD12B6A322B4FC9B00AEB10B /* KSButton.swift in Sources */,
  4375. A7FF1564228C696B00A85748 /* OrderListView.swift in Sources */,
  4376. A7CC74EF22706CCA003C4F38 /* MessageView.swift in Sources */,
  4377. A70B2C072284305400B2449F /* ProductModel.swift in Sources */,
  4378. A7CC74E0227042A4003C4F38 /* MineServiceTableViewCell.swift in Sources */,
  4379. A72A72BC22321DE000B21995 /* Extension+UIAlertController.swift in Sources */,
  4380. A7BB68662269B1DD00AB07A2 /* AddressPOIView.swift in Sources */,
  4381. BDF862A7228E42FA000DEF84 /* OrderApplyRefundController.swift in Sources */,
  4382. A7931E0422AF827600297D0A /* ESTabBar.swift in Sources */,
  4383. A72A72C322321DE000B21995 /* Extension+Date.swift in Sources */,
  4384. A7931E0322AF827600297D0A /* ESTabBarItemBadgeView.swift in Sources */,
  4385. A70B2C5522885AF500B2449F /* ShareCollectionViewCell.swift in Sources */,
  4386. A7A98E3A2280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift in Sources */,
  4387. BD12203622AF807C0051C7C2 /* MessagePlanetActivityController.swift in Sources */,
  4388. A7778CAB2244B12500C7C47A /* CountDownManager.swift in Sources */,
  4389. A775CBFE2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift in Sources */,
  4390. A71AA5212272E527008FF1A5 /* Extension+UINavigationController.swift in Sources */,
  4391. A7CC751822716202003C4F38 /* SetView.swift in Sources */,
  4392. BD2FCBEA22B267280006D974 /* RecommendNoneCommentCell.swift in Sources */,
  4393. A7FF1594228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift in Sources */,
  4394. A7B4E73A228192D20012914A /* CMSTemplateModel.swift in Sources */,
  4395. A72A72C622321DE000B21995 /* WebView.swift in Sources */,
  4396. A72A72D122321E2700B21995 /* HTMLURLMacro.swift in Sources */,
  4397. BD12B6AB22B502C200AEB10B /* KSVideoPlayerLiteView.m in Sources */,
  4398. BD1FC1A622B1075F00D55081 /* LxButton.m in Sources */,
  4399. BD12B66922B47D4800AEB10B /* RecommendSubCommentCollectionCell.swift in Sources */,
  4400. BDF862A1228E41CC000DEF84 /* OrderLogisticsController.swift in Sources */,
  4401. A72A73162232481600B21995 /* WeChatpayManager.swift in Sources */,
  4402. A7CC750F22715AAC003C4F38 /* MessageDetailesTableViewCell.swift in Sources */,
  4403. A7931E1822AFC1DF00297D0A /* CommunityListViewController.swift in Sources */,
  4404. A7F2D6D922B250EF0093000B /* CardContentPicVideoTableViewCell.swift in Sources */,
  4405. A7B4E72D228176060012914A /* ProductMallBarChartCollectionViewCell.swift in Sources */,
  4406. A70B2C4E22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift in Sources */,
  4407. A7649B6922977A4300BCE9D1 /* ShopSectionHeaderModel.swift in Sources */,
  4408. A7CC7516227161D5003C4F38 /* SetViewController.swift in Sources */,
  4409. A7778CBA2244F14B00C7C47A /* Extension+UIViewController.swift in Sources */,
  4410. A7CC752C2271A1AE003C4F38 /* SetPasswordViewController.swift in Sources */,
  4411. A7CC74E222704429003C4F38 /* MineServiceCollectionViewCell.swift in Sources */,
  4412. A738D202225AD6AD00EEE860 /* Extension+UICollectionView.swift in Sources */,
  4413. A7CC74D6226FF421003C4F38 /* MineNavigationBarView.swift in Sources */,
  4414. BDAF83AA22B388F20004BCC3 /* RecommendDefaultBackCell.swift in Sources */,
  4415. A71AF0BC226F099B001730FE /* ProductHBigTableViewCell.swift in Sources */,
  4416. BD12B69122B4F60300AEB10B /* KSMediaPickerScrollView.m in Sources */,
  4417. BD108C9622A60C2100837DAB /* HGImagePickerCell.swift in Sources */,
  4418. BD28077822B721BF002AB976 /* PublishEditController.swift in Sources */,
  4419. A7A98E3C228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift in Sources */,
  4420. A7C0FDEB22B4C6C300BC1E86 /* CardContentCommentListFooterView.swift in Sources */,
  4421. BD3AA45822AE63EC00EF4F20 /* MessageMainViewController.swift in Sources */,
  4422. BD12204922AF99B90051C7C2 /* MessageFollowNotiController.swift in Sources */,
  4423. A71AF0AA226EDDF5001730FE /* SearchView.swift in Sources */,
  4424. A7FF1583228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift in Sources */,
  4425. A7A98E0E227EC0C6005306E9 /* CategoryTableViewCell.swift in Sources */,
  4426. A7FF1572228C7D4600A85748 /* OrderButtonTableViewCell.swift in Sources */,
  4427. A7B4E72F2281773F0012914A /* ProductFloorCenterTitleView.swift in Sources */,
  4428. A7284A542252FB5C000BAEC4 /* PaginationModel.swift in Sources */,
  4429. A72A72D022321E2700B21995 /* FontMacro.swift in Sources */,
  4430. BD2FCBE622B2586C0006D974 /* CommunityTagCollectionCell.swift in Sources */,
  4431. BD1DC6C9228D005000B89C57 /* OrderCreateParameterModel.swift in Sources */,
  4432. A7BF203422B47E8600396DB3 /* CardContentActionTableViewCell.swift in Sources */,
  4433. BD12B68C22B4F4FF00AEB10B /* KSSegmentedControl.m in Sources */,
  4434. A71AA52622732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift in Sources */,
  4435. A77F2C982231FD25001BD3F6 /* BaseNavigationViewController.swift in Sources */,
  4436. A7274C5D228EE636000E3A07 /* LBXScanViewStyle.swift in Sources */,
  4437. BD28077C22B72761002AB976 /* PublishEditDescribeCell.swift in Sources */,
  4438. A73911B3229ECE340033177E /* UICollectionViewLeftAlignedLayout.m in Sources */,
  4439. A7A98E1B227EEE49005306E9 /* SpecialView.swift in Sources */,
  4440. BDF47D7A228271F600941AB9 /* ShoppingCartView.swift in Sources */,
  4441. A7824AFB2271EA2600ABA381 /* SelfMentionContactsListView.swift in Sources */,
  4442. A72A72AB22321DE000B21995 /* SwiftProgressHUD.swift in Sources */,
  4443. BDF862B1228E6690000DEF84 /* OrderApplyRefundProductCell.swift in Sources */,
  4444. A7CC751C22716426003C4F38 /* SetLogoutTableViewCell.swift in Sources */,
  4445. A7CC74F3227070D2003C4F38 /* MessageTwoCollectionViewCell.swift in Sources */,
  4446. A7778CD522460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift in Sources */,
  4447. A70B2C5C22886B0000B2449F /* ShopView.swift in Sources */,
  4448. A7CC750A22715755003C4F38 /* MessageDetailesViewController.swift in Sources */,
  4449. BDAA40F7228E947500CF841D /* OrderApplyRefundAccountCell.swift in Sources */,
  4450. A71AF0B8226EF9EC001730FE /* SearchResultNavigationbarView.swift in Sources */,
  4451. BD108C9722A60C2100837DAB /* HGImagePickerController.swift in Sources */,
  4452. BD09C84122955B480080D5A4 /* PopTopTriangleView.swift in Sources */,
  4453. A70B2C5A22886ADF00B2449F /* ShopViewController.swift in Sources */,
  4454. BDF862AE228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift in Sources */,
  4455. A70B2C3E228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift in Sources */,
  4456. A79057022276C9770037F823 /* SetPasswordModel.swift in Sources */,
  4457. BD12B68022B4EF2600AEB10B /* KSMediaPickerViewImageCell.swift in Sources */,
  4458. A7274C5A228EE636000E3A07 /* LBXScanView.swift in Sources */,
  4459. A7FF1560228C693D00A85748 /* OrderViewController.swift in Sources */,
  4460. A729B5B42267254B004AE098 /* PasswordLoginViewController.swift in Sources */,
  4461. A7B4E7582282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift in Sources */,
  4462. A7D4608E227616F800A5A54E /* SQLiteManager.swift in Sources */,
  4463. A70B2C6B2288815300B2449F /* PickHeaderView.swift in Sources */,
  4464. A7274C50228EE5F0000E3A07 /* PhotoAndCameraManager.swift in Sources */,
  4465. A77F2C612231FB49001BD3F6 /* AppDelegate.swift in Sources */,
  4466. A729B5A82266F2E0004AE098 /* AlertSheetView.swift in Sources */,
  4467. A7CC75382271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift in Sources */,
  4468. A738D66F225D9BD900EEE860 /* UMLoginModel.swift in Sources */,
  4469. A7FF156C228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift in Sources */,
  4470. A71738A622897892000AEA6A /* SwiftMoyaServiceShopApi.swift in Sources */,
  4471. A72A726722321DBD00B21995 /* LocationModel.swift in Sources */,
  4472. A7F2D6C622B0DC7B0093000B /* CommunityCommonSectionHeaderView.swift in Sources */,
  4473. A7F2D6DF22B25B5D0093000B /* CardContentPicVideoCollectionViewLayout.swift in Sources */,
  4474. A7A98E10227EC531005306E9 /* ProductHSmallTableViewCell.swift in Sources */,
  4475. A7A98DFD227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift in Sources */,
  4476. BD12205022AFB08B0051C7C2 /* MessageThumbTableCell.swift in Sources */,
  4477. A739121B229F75F50033177E /* JXPagingView.swift in Sources */,
  4478. BD7AB8452284398A0030646A /* OrderPaySelfPickAddInfoCell.swift in Sources */,
  4479. A72A72D222321E2700B21995 /* Common.swift in Sources */,
  4480. A70B2C64228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift in Sources */,
  4481. BD1FC17F22B08D3C00D55081 /* CommunityMyFollowTopicController.swift in Sources */,
  4482. BDEF7791228571DC00ED0AC0 /* CommonPayView.swift in Sources */,
  4483. A71AF0A6226EDDC8001730FE /* SearchViewController.swift in Sources */,
  4484. BD20F1CF2283CE2300677D8E /* OrderFinishPayView.swift in Sources */,
  4485. A7A98E4322804851005306E9 /* ShoppingMallSepcialFlowLayout.swift in Sources */,
  4486. BD12B69422B4F68400AEB10B /* KSMediaPickerCollectionView.m in Sources */,
  4487. BD12204122AF8E320051C7C2 /* MessagePlanetNotiTableCell.swift in Sources */,
  4488. A79057062276EA3D0037F823 /* OpenCityListModel.swift in Sources */,
  4489. BD7AB838228420310030646A /* ShoppingCartPayOrderHeader.swift in Sources */,
  4490. A7824B002271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift in Sources */,
  4491. A7CC751F227190C5003C4F38 /* AccountSecurityViewController.swift in Sources */,
  4492. A739121C229F75F50033177E /* JXPagingListRefreshView.swift in Sources */,
  4493. BD29A92E228F99780018CFC3 /* OrderCommentParameterModel.swift in Sources */,
  4494. A7284440224DFACD00F82F30 /* InfoModel.swift in Sources */,
  4495. A72A72B522321DE000B21995 /* Extension+UITextView.swift in Sources */,
  4496. BDF47D822282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift in Sources */,
  4497. BD20F1CB2283C12000677D8E /* ShoppingCartListNoneItemCell.swift in Sources */,
  4498. A7B4E756228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift in Sources */,
  4499. BD1FC18122B08D7A00D55081 /* CommunityMyFollowTopicCell.swift in Sources */,
  4500. A7C0FDE722B4A38500BC1E86 /* CardContentCommentListTableViewCell.swift in Sources */,
  4501. A757C92E22744ACE00226355 /* AddressManagerListModel.swift in Sources */,
  4502. BDAA40F9228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift in Sources */,
  4503. A7274C59228EE636000E3A07 /* LBXScanNetAnimation.swift in Sources */,
  4504. A7541502224C5ECB002480B5 /* BaiduMapManager.swift in Sources */,
  4505. A773D02F229FDC3B007A5751 /* DIYEmptyView.swift in Sources */,
  4506. A757C9342274882E00226355 /* UIScrollView+MJRefreshEX.m in Sources */,
  4507. A7F2D6C822B0E2F60093000B /* CommunityRecommendFollowTableViewCell.swift in Sources */,
  4508. A77F2C9C2231FDCF001BD3F6 /* BaseView.swift in Sources */,
  4509. A7A98E2F228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift in Sources */,
  4510. A7284A522252EE9A000BAEC4 /* RootModel.swift in Sources */,
  4511. BD1FC18822B0A30300D55081 /* CommunityMajorCommentCell.swift in Sources */,
  4512. BD6EDF48229007EA009A20FE /* OrderApplyRefundModel.swift in Sources */,
  4513. A72A7388223396CB00B21995 /* ApiMacro.swift in Sources */,
  4514. A72A72B922321DE000B21995 /* Extension+Array.swift in Sources */,
  4515. A70B2C492288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift in Sources */,
  4516. A71901692275464000104A50 /* ProvinceCityAreaView.swift in Sources */,
  4517. BD12204422AF996E0051C7C2 /* MessageCommentController.swift in Sources */,
  4518. A7778CDD2246121500C7C47A /* PhoneCountryAreaListMdoel.swift in Sources */,
  4519. A72A733522325A4B00B21995 /* AppDelegate+HandleOpen.swift in Sources */,
  4520. BD28077A22B72734002AB976 /* PublishEditTitleCell.swift in Sources */,
  4521. A7FF156E228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift in Sources */,
  4522. A72A72AC22321DE000B21995 /* Regex.swift in Sources */,
  4523. BD12B67422B4EC9700AEB10B /* KSMediaPickerController.swift in Sources */,
  4524. A7778CC52246035700C7C47A /* PhoneCountryAreaViewController.swift in Sources */,
  4525. A72A72CF22321E2700B21995 /* NotificationCenterMacro.swift in Sources */,
  4526. A72A72BF22321DE000B21995 /* Extension+UIButton.swift in Sources */,
  4527. BDD4FB1722840DD3006FE833 /* OrderPayAcountView.swift in Sources */,
  4528. A7CC753C2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift in Sources */,
  4529. A7FF1587228C851100A85748 /* OrderDetailInfoTableViewCell.swift in Sources */,
  4530. );
  4531. runOnlyForDeploymentPostprocessing = 0;
  4532. };
  4533. A77F2C6D2231FB4A001BD3F6 /* Sources */ = {
  4534. isa = PBXSourcesBuildPhase;
  4535. buildActionMask = 2147483647;
  4536. files = (
  4537. A77F2C762231FB4A001BD3F6 /* RainbowPlanetTests.swift in Sources */,
  4538. );
  4539. runOnlyForDeploymentPostprocessing = 0;
  4540. };
  4541. A77F2C782231FB4A001BD3F6 /* Sources */ = {
  4542. isa = PBXSourcesBuildPhase;
  4543. buildActionMask = 2147483647;
  4544. files = (
  4545. A77F2C812231FB4A001BD3F6 /* RainbowPlanetUITests.swift in Sources */,
  4546. );
  4547. runOnlyForDeploymentPostprocessing = 0;
  4548. };
  4549. /* End PBXSourcesBuildPhase section */
  4550. /* Begin PBXTargetDependency section */
  4551. A77F2C732231FB4A001BD3F6 /* PBXTargetDependency */ = {
  4552. isa = PBXTargetDependency;
  4553. target = A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */;
  4554. targetProxy = A77F2C722231FB4A001BD3F6 /* PBXContainerItemProxy */;
  4555. };
  4556. A77F2C7E2231FB4A001BD3F6 /* PBXTargetDependency */ = {
  4557. isa = PBXTargetDependency;
  4558. target = A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */;
  4559. targetProxy = A77F2C7D2231FB4A001BD3F6 /* PBXContainerItemProxy */;
  4560. };
  4561. /* End PBXTargetDependency section */
  4562. /* Begin PBXVariantGroup section */
  4563. A7931DF522AF827600297D0A /* Localizable.strings */ = {
  4564. isa = PBXVariantGroup;
  4565. children = (
  4566. A7931DF622AF827600297D0A /* en */,
  4567. );
  4568. name = Localizable.strings;
  4569. sourceTree = "<group>";
  4570. };
  4571. /* End PBXVariantGroup section */
  4572. /* Begin XCBuildConfiguration section */
  4573. A77F2C832231FB4A001BD3F6 /* Debug */ = {
  4574. isa = XCBuildConfiguration;
  4575. buildSettings = {
  4576. ALWAYS_SEARCH_USER_PATHS = NO;
  4577. CLANG_ANALYZER_NONNULL = YES;
  4578. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4579. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4580. CLANG_CXX_LIBRARY = "libc++";
  4581. CLANG_ENABLE_MODULES = YES;
  4582. CLANG_ENABLE_OBJC_ARC = YES;
  4583. CLANG_ENABLE_OBJC_WEAK = YES;
  4584. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4585. CLANG_WARN_BOOL_CONVERSION = YES;
  4586. CLANG_WARN_COMMA = YES;
  4587. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4588. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4589. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4590. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4591. CLANG_WARN_EMPTY_BODY = YES;
  4592. CLANG_WARN_ENUM_CONVERSION = YES;
  4593. CLANG_WARN_INFINITE_RECURSION = YES;
  4594. CLANG_WARN_INT_CONVERSION = YES;
  4595. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4596. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4597. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4598. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4599. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4600. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4601. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4602. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4603. CLANG_WARN_UNREACHABLE_CODE = YES;
  4604. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4605. CODE_SIGN_IDENTITY = "iPhone Developer";
  4606. COPY_PHASE_STRIP = NO;
  4607. DEBUG_INFORMATION_FORMAT = dwarf;
  4608. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4609. ENABLE_TESTABILITY = YES;
  4610. GCC_C_LANGUAGE_STANDARD = gnu11;
  4611. GCC_DYNAMIC_NO_PIC = NO;
  4612. GCC_NO_COMMON_BLOCKS = YES;
  4613. GCC_OPTIMIZATION_LEVEL = 0;
  4614. GCC_PREPROCESSOR_DEFINITIONS = (
  4615. "DEBUG=1",
  4616. "$(inherited)",
  4617. );
  4618. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4619. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4620. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4621. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4622. GCC_WARN_UNUSED_FUNCTION = YES;
  4623. GCC_WARN_UNUSED_VARIABLE = YES;
  4624. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4625. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4626. MTL_FAST_MATH = YES;
  4627. ONLY_ACTIVE_ARCH = YES;
  4628. OTHER_CFLAGS = "";
  4629. SDKROOT = iphoneos;
  4630. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4631. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4632. };
  4633. name = Debug;
  4634. };
  4635. A77F2C842231FB4A001BD3F6 /* Release */ = {
  4636. isa = XCBuildConfiguration;
  4637. buildSettings = {
  4638. ALWAYS_SEARCH_USER_PATHS = NO;
  4639. CLANG_ANALYZER_NONNULL = YES;
  4640. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4641. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4642. CLANG_CXX_LIBRARY = "libc++";
  4643. CLANG_ENABLE_MODULES = YES;
  4644. CLANG_ENABLE_OBJC_ARC = YES;
  4645. CLANG_ENABLE_OBJC_WEAK = YES;
  4646. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4647. CLANG_WARN_BOOL_CONVERSION = YES;
  4648. CLANG_WARN_COMMA = YES;
  4649. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4650. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4651. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4652. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4653. CLANG_WARN_EMPTY_BODY = YES;
  4654. CLANG_WARN_ENUM_CONVERSION = YES;
  4655. CLANG_WARN_INFINITE_RECURSION = YES;
  4656. CLANG_WARN_INT_CONVERSION = YES;
  4657. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4658. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4659. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4660. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4661. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4662. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4663. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4664. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4665. CLANG_WARN_UNREACHABLE_CODE = YES;
  4666. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4667. CODE_SIGN_IDENTITY = "iPhone Developer";
  4668. COPY_PHASE_STRIP = NO;
  4669. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4670. ENABLE_NS_ASSERTIONS = NO;
  4671. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4672. GCC_C_LANGUAGE_STANDARD = gnu11;
  4673. GCC_NO_COMMON_BLOCKS = YES;
  4674. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4675. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4676. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4677. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4678. GCC_WARN_UNUSED_FUNCTION = YES;
  4679. GCC_WARN_UNUSED_VARIABLE = YES;
  4680. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4681. MTL_ENABLE_DEBUG_INFO = NO;
  4682. MTL_FAST_MATH = YES;
  4683. OTHER_CFLAGS = "";
  4684. SDKROOT = iphoneos;
  4685. SWIFT_COMPILATION_MODE = wholemodule;
  4686. SWIFT_OPTIMIZATION_LEVEL = "-O";
  4687. VALIDATE_PRODUCT = YES;
  4688. };
  4689. name = Release;
  4690. };
  4691. A77F2C862231FB4A001BD3F6 /* Debug */ = {
  4692. isa = XCBuildConfiguration;
  4693. baseConfigurationReference = BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */;
  4694. buildSettings = {
  4695. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4696. CLANG_ENABLE_MODULES = YES;
  4697. CODE_SIGN_ENTITLEMENTS = RainbowPlanet/RainbowPlanet.entitlements;
  4698. CODE_SIGN_STYLE = Automatic;
  4699. DEFINES_MODULE = YES;
  4700. DEVELOPMENT_TEAM = B4UG6NNMLL;
  4701. ENABLE_BITCODE = YES;
  4702. FRAMEWORK_SEARCH_PATHS = (
  4703. "$(inherited)",
  4704. "$(PROJECT_DIR)/RainbowPlanet/Lib/AlipaySDK",
  4705. );
  4706. GCC_ENABLE_CPP_EXCEPTIONS = NO;
  4707. GCC_ENABLE_OBJC_EXCEPTIONS = NO;
  4708. HEADER_SEARCH_PATHS = (
  4709. "$(inherited)",
  4710. "\"${PODS_ROOT}/Headers/Public\"",
  4711. "\"${PODS_ROOT}/Headers/Public/UMCShare\"",
  4712. "\"$(SRCROOT)/RainbowPlanet/Lib/AlipaySDK\"",
  4713. );
  4714. INFOPLIST_FILE = "$(SRCROOT)/RainbowPlanet/Supporting Files/Info.plist";
  4715. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4716. LD_RUNPATH_SEARCH_PATHS = (
  4717. "$(inherited)",
  4718. "@executable_path/Frameworks",
  4719. );
  4720. LIBRARY_SEARCH_PATHS = (
  4721. "$(inherited)",
  4722. "$(PROJECT_DIR)/RainbowPlanet/Lib/WeChatSDK",
  4723. );
  4724. OTHER_CFLAGS = (
  4725. "$(inherited)",
  4726. "-isystem",
  4727. "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers\"",
  4728. "-isystem",
  4729. "\"${PODS_CONFIGURATION_BUILD_DIR}/Cache/Cache.framework/Headers\"",
  4730. "-isystem",
  4731. "\"${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit/DeviceKit.framework/Headers\"",
  4732. "-isystem",
  4733. "\"${PODS_CONFIGURATION_BUILD_DIR}/FMDB/FMDB.framework/Headers\"",
  4734. "-isystem",
  4735. "\"${PODS_CONFIGURATION_BUILD_DIR}/FSPagerView/FSPagerView.framework/Headers\"",
  4736. "-isystem",
  4737. "\"${PODS_CONFIGURATION_BUILD_DIR}/FWPopupView/FWPopupView.framework/Headers\"",
  4738. "-isystem",
  4739. "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers\"",
  4740. "-isystem",
  4741. "\"${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView/JXSegmentedView.framework/Headers\"",
  4742. "-isystem",
  4743. "\"${PODS_CONFIGURATION_BUILD_DIR}/KeychainAccess/KeychainAccess.framework/Headers\"",
  4744. "-isystem",
  4745. "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers\"",
  4746. "-isystem",
  4747. "\"${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView/LYEmptyView.framework/Headers\"",
  4748. "-isystem",
  4749. "\"${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers\"",
  4750. "-isystem",
  4751. "\"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers\"",
  4752. "-isystem",
  4753. "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers\"",
  4754. "-isystem",
  4755. "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper/ObjectMapper.framework/Headers\"",
  4756. "-isystem",
  4757. "\"${PODS_CONFIGURATION_BUILD_DIR}/PPBadgeViewSwift/PPBadgeViewSwift.framework/Headers\"",
  4758. "-isystem",
  4759. "\"${PODS_CONFIGURATION_BUILD_DIR}/Realm/Realm.framework/Headers\"",
  4760. "-isystem",
  4761. "\"${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift/RealmSwift.framework/Headers\"",
  4762. "-isystem",
  4763. "\"${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers\"",
  4764. "-isystem",
  4765. "\"${PODS_CONFIGURATION_BUILD_DIR}/RichEditorView/RichEditorView.framework/Headers\"",
  4766. "-isystem",
  4767. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers\"",
  4768. "-isystem",
  4769. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers\"",
  4770. "-isystem",
  4771. "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers\"",
  4772. "-isystem",
  4773. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers\"",
  4774. "-isystem",
  4775. "\"${PODS_CONFIGURATION_BUILD_DIR}/TangramKit/TangramKit.framework/Headers\"",
  4776. "-isystem",
  4777. "\"${PODS_ROOT}/Headers/Public\"",
  4778. "-iframework",
  4779. "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire\"",
  4780. "-iframework",
  4781. "\"${PODS_ROOT}/BMKLocationKit/framework\"",
  4782. "-iframework",
  4783. "\"${PODS_ROOT}/BaiduMapKit/BaiduMapKit\"",
  4784. "-iframework",
  4785. "\"${PODS_CONFIGURATION_BUILD_DIR}/Cache\"",
  4786. "-iframework",
  4787. "\"${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit\"",
  4788. "-iframework",
  4789. "\"${PODS_CONFIGURATION_BUILD_DIR}/FMDB\"",
  4790. "-iframework",
  4791. "\"${PODS_CONFIGURATION_BUILD_DIR}/FSPagerView\"",
  4792. "-iframework",
  4793. "\"${PODS_CONFIGURATION_BUILD_DIR}/FWPopupView\"",
  4794. "-iframework",
  4795. "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift\"",
  4796. "-iframework",
  4797. "\"${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView\"",
  4798. "-iframework",
  4799. "\"${PODS_CONFIGURATION_BUILD_DIR}/KeychainAccess\"",
  4800. "-iframework",
  4801. "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher\"",
  4802. "-iframework",
  4803. "\"${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView\"",
  4804. "-iframework",
  4805. "\"${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD\"",
  4806. "-iframework",
  4807. "\"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\"",
  4808. "-iframework",
  4809. "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya\"",
  4810. "-iframework",
  4811. "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper\"",
  4812. "-iframework",
  4813. "\"${PODS_CONFIGURATION_BUILD_DIR}/PPBadgeViewSwift\"",
  4814. "-iframework",
  4815. "\"${PODS_CONFIGURATION_BUILD_DIR}/Realm\"",
  4816. "-iframework",
  4817. "\"${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift\"",
  4818. "-iframework",
  4819. "\"${PODS_CONFIGURATION_BUILD_DIR}/Result\"",
  4820. "-iframework",
  4821. "\"${PODS_CONFIGURATION_BUILD_DIR}/RichEditorView\"",
  4822. "-iframework",
  4823. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa\"",
  4824. "-iframework",
  4825. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift\"",
  4826. "-iframework",
  4827. "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit\"",
  4828. "-iframework",
  4829. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON\"",
  4830. "-iframework",
  4831. "\"${PODS_CONFIGURATION_BUILD_DIR}/TangramKit\"",
  4832. "-iframework",
  4833. "\"${PODS_ROOT}/UMCAnalytics\"",
  4834. "-iframework",
  4835. "\"${PODS_ROOT}/UMCCommon\"",
  4836. "-iframework",
  4837. "\"${PODS_ROOT}/UMCCommonLog/UMCommonLog\"",
  4838. "-iframework",
  4839. "\"${PODS_ROOT}/UMCPush\"",
  4840. "-iframework",
  4841. "\"${PODS_ROOT}/UMCSecurityPlugins/thirdparties\"",
  4842. "-iframework",
  4843. "\"${PODS_ROOT}/UMCShare/UMShare\"",
  4844. "-iframework",
  4845. "\"${PODS_ROOT}/UMCShare/UMShare/UMSocialUI\"",
  4846. "-fno-exceptions",
  4847. );
  4848. OTHER_LDFLAGS = (
  4849. "$(inherited)",
  4850. "-ObjC",
  4851. "-l\"SocialQQ\"",
  4852. "-l\"SocialSina\"",
  4853. "-l\"SocialWeChat\"",
  4854. "-l\"c++\"",
  4855. "-l\"sqlite3\"",
  4856. "-l\"sqlite3.0\"",
  4857. "-l\"z\"",
  4858. "-framework",
  4859. "\"AdSupport\"",
  4860. "-framework",
  4861. "\"Alamofire\"",
  4862. "-framework",
  4863. "\"BMKLocationKit\"",
  4864. "-framework",
  4865. "\"CoreGraphics\"",
  4866. "-framework",
  4867. "\"CoreLocation\"",
  4868. "-framework",
  4869. "\"CoreTelephony\"",
  4870. "-framework",
  4871. "\"DeviceKit\"",
  4872. "-framework",
  4873. "\"Foundation\"",
  4874. "-framework",
  4875. "\"IQKeyboardManagerSwift\"",
  4876. "-framework",
  4877. "\"Kingfisher\"",
  4878. "-framework",
  4879. "\"MBProgressHUD\"",
  4880. "-framework",
  4881. "\"MJRefresh\"",
  4882. "-framework",
  4883. "\"Moya\"",
  4884. "-framework",
  4885. "\"ObjectMapper\"",
  4886. "-framework",
  4887. "\"Photos\"",
  4888. "-framework",
  4889. "\"QuartzCore\"",
  4890. "-framework",
  4891. "\"Result\"",
  4892. "-framework",
  4893. "\"RxCocoa\"",
  4894. "-framework",
  4895. "\"RxSwift\"",
  4896. "-framework",
  4897. "\"Security\"",
  4898. "-framework",
  4899. "\"SecurityEnvSDK\"",
  4900. "-framework",
  4901. "\"SnapKit\"",
  4902. "-framework",
  4903. "\"SwiftyJSON\"",
  4904. "-framework",
  4905. "\"SystemConfiguration\"",
  4906. "-framework",
  4907. "\"UIKit\"",
  4908. "-framework",
  4909. "\"UMAnalytics\"",
  4910. "-framework",
  4911. "\"UMCommon\"",
  4912. "-framework",
  4913. "\"UMCommonLog\"",
  4914. "-framework",
  4915. "\"UMPush\"",
  4916. "-framework",
  4917. "\"UMShare\"",
  4918. "-framework",
  4919. "\"UShareUI\"",
  4920. "-framework",
  4921. "\"UTDID\"",
  4922. "-framework",
  4923. "\"UserNotifications\"",
  4924. );
  4925. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.rainbowplanet;
  4926. PRODUCT_MODULE_NAME = RainbowPlanet;
  4927. PRODUCT_NAME = "$(TARGET_NAME)";
  4928. STRIP_INSTALLED_PRODUCT = NO;
  4929. SWIFT_OBJC_BRIDGING_HEADER = "RainbowPlanet/Macro/RainbowPlanet-Bridging-Header.h";
  4930. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4931. SWIFT_VERSION = 5.0;
  4932. TARGETED_DEVICE_FAMILY = 1;
  4933. VALID_ARCHS = "arm64 arm64e armv7s";
  4934. };
  4935. name = Debug;
  4936. };
  4937. A77F2C872231FB4A001BD3F6 /* Release */ = {
  4938. isa = XCBuildConfiguration;
  4939. baseConfigurationReference = 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */;
  4940. buildSettings = {
  4941. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4942. CLANG_ENABLE_MODULES = YES;
  4943. CODE_SIGN_ENTITLEMENTS = RainbowPlanet/RainbowPlanet.entitlements;
  4944. CODE_SIGN_STYLE = Automatic;
  4945. COPY_PHASE_STRIP = YES;
  4946. DEFINES_MODULE = YES;
  4947. DEVELOPMENT_TEAM = B4UG6NNMLL;
  4948. ENABLE_BITCODE = YES;
  4949. FRAMEWORK_SEARCH_PATHS = (
  4950. "$(inherited)",
  4951. "$(PROJECT_DIR)/RainbowPlanet/Lib/AlipaySDK",
  4952. );
  4953. GCC_ENABLE_CPP_EXCEPTIONS = NO;
  4954. GCC_ENABLE_OBJC_EXCEPTIONS = NO;
  4955. GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
  4956. HEADER_SEARCH_PATHS = (
  4957. "$(inherited)",
  4958. "\"${PODS_ROOT}/Headers/Public\"",
  4959. "\"${PODS_ROOT}/Headers/Public/UMCShare\"",
  4960. "\"$(SRCROOT)/RainbowPlanet/Lib/AlipaySDK\"",
  4961. );
  4962. INFOPLIST_FILE = "$(SRCROOT)/RainbowPlanet/Supporting Files/Info.plist";
  4963. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4964. LD_RUNPATH_SEARCH_PATHS = (
  4965. "$(inherited)",
  4966. "@executable_path/Frameworks",
  4967. );
  4968. LIBRARY_SEARCH_PATHS = (
  4969. "$(inherited)",
  4970. "$(PROJECT_DIR)/RainbowPlanet/Lib/WeChatSDK",
  4971. );
  4972. OTHER_CFLAGS = (
  4973. "$(inherited)",
  4974. "-isystem",
  4975. "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers\"",
  4976. "-isystem",
  4977. "\"${PODS_CONFIGURATION_BUILD_DIR}/Cache/Cache.framework/Headers\"",
  4978. "-isystem",
  4979. "\"${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit/DeviceKit.framework/Headers\"",
  4980. "-isystem",
  4981. "\"${PODS_CONFIGURATION_BUILD_DIR}/FMDB/FMDB.framework/Headers\"",
  4982. "-isystem",
  4983. "\"${PODS_CONFIGURATION_BUILD_DIR}/FSPagerView/FSPagerView.framework/Headers\"",
  4984. "-isystem",
  4985. "\"${PODS_CONFIGURATION_BUILD_DIR}/FWPopupView/FWPopupView.framework/Headers\"",
  4986. "-isystem",
  4987. "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers\"",
  4988. "-isystem",
  4989. "\"${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView/JXSegmentedView.framework/Headers\"",
  4990. "-isystem",
  4991. "\"${PODS_CONFIGURATION_BUILD_DIR}/KeychainAccess/KeychainAccess.framework/Headers\"",
  4992. "-isystem",
  4993. "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers\"",
  4994. "-isystem",
  4995. "\"${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView/LYEmptyView.framework/Headers\"",
  4996. "-isystem",
  4997. "\"${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers\"",
  4998. "-isystem",
  4999. "\"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers\"",
  5000. "-isystem",
  5001. "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers\"",
  5002. "-isystem",
  5003. "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper/ObjectMapper.framework/Headers\"",
  5004. "-isystem",
  5005. "\"${PODS_CONFIGURATION_BUILD_DIR}/PPBadgeViewSwift/PPBadgeViewSwift.framework/Headers\"",
  5006. "-isystem",
  5007. "\"${PODS_CONFIGURATION_BUILD_DIR}/Realm/Realm.framework/Headers\"",
  5008. "-isystem",
  5009. "\"${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift/RealmSwift.framework/Headers\"",
  5010. "-isystem",
  5011. "\"${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers\"",
  5012. "-isystem",
  5013. "\"${PODS_CONFIGURATION_BUILD_DIR}/RichEditorView/RichEditorView.framework/Headers\"",
  5014. "-isystem",
  5015. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers\"",
  5016. "-isystem",
  5017. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers\"",
  5018. "-isystem",
  5019. "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers\"",
  5020. "-isystem",
  5021. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers\"",
  5022. "-isystem",
  5023. "\"${PODS_CONFIGURATION_BUILD_DIR}/TangramKit/TangramKit.framework/Headers\"",
  5024. "-isystem",
  5025. "\"${PODS_ROOT}/Headers/Public\"",
  5026. "-iframework",
  5027. "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire\"",
  5028. "-iframework",
  5029. "\"${PODS_ROOT}/BMKLocationKit/framework\"",
  5030. "-iframework",
  5031. "\"${PODS_ROOT}/BaiduMapKit/BaiduMapKit\"",
  5032. "-iframework",
  5033. "\"${PODS_CONFIGURATION_BUILD_DIR}/Cache\"",
  5034. "-iframework",
  5035. "\"${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit\"",
  5036. "-iframework",
  5037. "\"${PODS_CONFIGURATION_BUILD_DIR}/FMDB\"",
  5038. "-iframework",
  5039. "\"${PODS_CONFIGURATION_BUILD_DIR}/FSPagerView\"",
  5040. "-iframework",
  5041. "\"${PODS_CONFIGURATION_BUILD_DIR}/FWPopupView\"",
  5042. "-iframework",
  5043. "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift\"",
  5044. "-iframework",
  5045. "\"${PODS_CONFIGURATION_BUILD_DIR}/JXSegmentedView\"",
  5046. "-iframework",
  5047. "\"${PODS_CONFIGURATION_BUILD_DIR}/KeychainAccess\"",
  5048. "-iframework",
  5049. "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher\"",
  5050. "-iframework",
  5051. "\"${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView\"",
  5052. "-iframework",
  5053. "\"${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD\"",
  5054. "-iframework",
  5055. "\"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\"",
  5056. "-iframework",
  5057. "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya\"",
  5058. "-iframework",
  5059. "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper\"",
  5060. "-iframework",
  5061. "\"${PODS_CONFIGURATION_BUILD_DIR}/PPBadgeViewSwift\"",
  5062. "-iframework",
  5063. "\"${PODS_CONFIGURATION_BUILD_DIR}/Realm\"",
  5064. "-iframework",
  5065. "\"${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift\"",
  5066. "-iframework",
  5067. "\"${PODS_CONFIGURATION_BUILD_DIR}/Result\"",
  5068. "-iframework",
  5069. "\"${PODS_CONFIGURATION_BUILD_DIR}/RichEditorView\"",
  5070. "-iframework",
  5071. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa\"",
  5072. "-iframework",
  5073. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift\"",
  5074. "-iframework",
  5075. "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit\"",
  5076. "-iframework",
  5077. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON\"",
  5078. "-iframework",
  5079. "\"${PODS_CONFIGURATION_BUILD_DIR}/TangramKit\"",
  5080. "-iframework",
  5081. "\"${PODS_ROOT}/UMCAnalytics\"",
  5082. "-iframework",
  5083. "\"${PODS_ROOT}/UMCCommon\"",
  5084. "-iframework",
  5085. "\"${PODS_ROOT}/UMCCommonLog/UMCommonLog\"",
  5086. "-iframework",
  5087. "\"${PODS_ROOT}/UMCPush\"",
  5088. "-iframework",
  5089. "\"${PODS_ROOT}/UMCSecurityPlugins/thirdparties\"",
  5090. "-iframework",
  5091. "\"${PODS_ROOT}/UMCShare/UMShare\"",
  5092. "-iframework",
  5093. "\"${PODS_ROOT}/UMCShare/UMShare/UMSocialUI\"",
  5094. "-fno-exceptions",
  5095. );
  5096. OTHER_LDFLAGS = (
  5097. "$(inherited)",
  5098. "-ObjC",
  5099. "-l\"SocialQQ\"",
  5100. "-l\"SocialSina\"",
  5101. "-l\"SocialWeChat\"",
  5102. "-l\"c++\"",
  5103. "-l\"sqlite3\"",
  5104. "-l\"sqlite3.0\"",
  5105. "-l\"z\"",
  5106. "-framework",
  5107. "\"AdSupport\"",
  5108. "-framework",
  5109. "\"Alamofire\"",
  5110. "-framework",
  5111. "\"BMKLocationKit\"",
  5112. "-framework",
  5113. "\"CoreGraphics\"",
  5114. "-framework",
  5115. "\"CoreLocation\"",
  5116. "-framework",
  5117. "\"CoreTelephony\"",
  5118. "-framework",
  5119. "\"DeviceKit\"",
  5120. "-framework",
  5121. "\"Foundation\"",
  5122. "-framework",
  5123. "\"IQKeyboardManagerSwift\"",
  5124. "-framework",
  5125. "\"Kingfisher\"",
  5126. "-framework",
  5127. "\"MBProgressHUD\"",
  5128. "-framework",
  5129. "\"MJRefresh\"",
  5130. "-framework",
  5131. "\"Moya\"",
  5132. "-framework",
  5133. "\"ObjectMapper\"",
  5134. "-framework",
  5135. "\"Photos\"",
  5136. "-framework",
  5137. "\"QuartzCore\"",
  5138. "-framework",
  5139. "\"Result\"",
  5140. "-framework",
  5141. "\"RxCocoa\"",
  5142. "-framework",
  5143. "\"RxSwift\"",
  5144. "-framework",
  5145. "\"Security\"",
  5146. "-framework",
  5147. "\"SecurityEnvSDK\"",
  5148. "-framework",
  5149. "\"SnapKit\"",
  5150. "-framework",
  5151. "\"SwiftyJSON\"",
  5152. "-framework",
  5153. "\"SystemConfiguration\"",
  5154. "-framework",
  5155. "\"UIKit\"",
  5156. "-framework",
  5157. "\"UMAnalytics\"",
  5158. "-framework",
  5159. "\"UMCommon\"",
  5160. "-framework",
  5161. "\"UMCommonLog\"",
  5162. "-framework",
  5163. "\"UMPush\"",
  5164. "-framework",
  5165. "\"UMShare\"",
  5166. "-framework",
  5167. "\"UShareUI\"",
  5168. "-framework",
  5169. "\"UTDID\"",
  5170. "-framework",
  5171. "\"UserNotifications\"",
  5172. );
  5173. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.rainbowplanet;
  5174. PRODUCT_MODULE_NAME = RainbowPlanet;
  5175. PRODUCT_NAME = "$(TARGET_NAME)";
  5176. SWIFT_OBJC_BRIDGING_HEADER = "RainbowPlanet/Macro/RainbowPlanet-Bridging-Header.h";
  5177. SWIFT_VERSION = 5.0;
  5178. TARGETED_DEVICE_FAMILY = 1;
  5179. VALID_ARCHS = "arm64 arm64e armv7s";
  5180. };
  5181. name = Release;
  5182. };
  5183. A77F2C892231FB4A001BD3F6 /* Debug */ = {
  5184. isa = XCBuildConfiguration;
  5185. buildSettings = {
  5186. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  5187. BUNDLE_LOADER = "$(TEST_HOST)";
  5188. CODE_SIGN_STYLE = Automatic;
  5189. DEVELOPMENT_TEAM = B4UG6NNMLL;
  5190. INFOPLIST_FILE = RainbowPlanetTests/Info.plist;
  5191. LD_RUNPATH_SEARCH_PATHS = (
  5192. "$(inherited)",
  5193. "@executable_path/Frameworks",
  5194. "@loader_path/Frameworks",
  5195. );
  5196. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetTests;
  5197. PRODUCT_NAME = "$(TARGET_NAME)";
  5198. SWIFT_VERSION = 5.0;
  5199. TARGETED_DEVICE_FAMILY = "1,2";
  5200. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RainbowPlanet.app/RainbowPlanet";
  5201. };
  5202. name = Debug;
  5203. };
  5204. A77F2C8A2231FB4A001BD3F6 /* Release */ = {
  5205. isa = XCBuildConfiguration;
  5206. buildSettings = {
  5207. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  5208. BUNDLE_LOADER = "$(TEST_HOST)";
  5209. CODE_SIGN_STYLE = Automatic;
  5210. DEVELOPMENT_TEAM = B4UG6NNMLL;
  5211. INFOPLIST_FILE = RainbowPlanetTests/Info.plist;
  5212. LD_RUNPATH_SEARCH_PATHS = (
  5213. "$(inherited)",
  5214. "@executable_path/Frameworks",
  5215. "@loader_path/Frameworks",
  5216. );
  5217. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetTests;
  5218. PRODUCT_NAME = "$(TARGET_NAME)";
  5219. SWIFT_VERSION = 5.0;
  5220. TARGETED_DEVICE_FAMILY = "1,2";
  5221. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RainbowPlanet.app/RainbowPlanet";
  5222. };
  5223. name = Release;
  5224. };
  5225. A77F2C8C2231FB4A001BD3F6 /* Debug */ = {
  5226. isa = XCBuildConfiguration;
  5227. buildSettings = {
  5228. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  5229. CODE_SIGN_IDENTITY = "iPhone Developer";
  5230. CODE_SIGN_STYLE = Automatic;
  5231. DEVELOPMENT_TEAM = B4UG6NNMLL;
  5232. INFOPLIST_FILE = RainbowPlanetUITests/Info.plist;
  5233. LD_RUNPATH_SEARCH_PATHS = (
  5234. "$(inherited)",
  5235. "@executable_path/Frameworks",
  5236. "@loader_path/Frameworks",
  5237. );
  5238. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetUITests;
  5239. PRODUCT_NAME = "$(TARGET_NAME)";
  5240. PROVISIONING_PROFILE_SPECIFIER = "";
  5241. SWIFT_VERSION = 5.0;
  5242. TARGETED_DEVICE_FAMILY = "1,2";
  5243. TEST_TARGET_NAME = RainbowPlanet;
  5244. };
  5245. name = Debug;
  5246. };
  5247. A77F2C8D2231FB4A001BD3F6 /* Release */ = {
  5248. isa = XCBuildConfiguration;
  5249. buildSettings = {
  5250. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  5251. CODE_SIGN_IDENTITY = "iPhone Developer";
  5252. CODE_SIGN_STYLE = Automatic;
  5253. DEVELOPMENT_TEAM = B4UG6NNMLL;
  5254. INFOPLIST_FILE = RainbowPlanetUITests/Info.plist;
  5255. LD_RUNPATH_SEARCH_PATHS = (
  5256. "$(inherited)",
  5257. "@executable_path/Frameworks",
  5258. "@loader_path/Frameworks",
  5259. );
  5260. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetUITests;
  5261. PRODUCT_NAME = "$(TARGET_NAME)";
  5262. PROVISIONING_PROFILE_SPECIFIER = "";
  5263. SWIFT_VERSION = 5.0;
  5264. TARGETED_DEVICE_FAMILY = "1,2";
  5265. TEST_TARGET_NAME = RainbowPlanet;
  5266. };
  5267. name = Release;
  5268. };
  5269. /* End XCBuildConfiguration section */
  5270. /* Begin XCConfigurationList section */
  5271. A77F2C582231FB49001BD3F6 /* Build configuration list for PBXProject "RainbowPlanet" */ = {
  5272. isa = XCConfigurationList;
  5273. buildConfigurations = (
  5274. A77F2C832231FB4A001BD3F6 /* Debug */,
  5275. A77F2C842231FB4A001BD3F6 /* Release */,
  5276. );
  5277. defaultConfigurationIsVisible = 0;
  5278. defaultConfigurationName = Release;
  5279. };
  5280. A77F2C852231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanet" */ = {
  5281. isa = XCConfigurationList;
  5282. buildConfigurations = (
  5283. A77F2C862231FB4A001BD3F6 /* Debug */,
  5284. A77F2C872231FB4A001BD3F6 /* Release */,
  5285. );
  5286. defaultConfigurationIsVisible = 0;
  5287. defaultConfigurationName = Release;
  5288. };
  5289. A77F2C882231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetTests" */ = {
  5290. isa = XCConfigurationList;
  5291. buildConfigurations = (
  5292. A77F2C892231FB4A001BD3F6 /* Debug */,
  5293. A77F2C8A2231FB4A001BD3F6 /* Release */,
  5294. );
  5295. defaultConfigurationIsVisible = 0;
  5296. defaultConfigurationName = Release;
  5297. };
  5298. A77F2C8B2231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetUITests" */ = {
  5299. isa = XCConfigurationList;
  5300. buildConfigurations = (
  5301. A77F2C8C2231FB4A001BD3F6 /* Debug */,
  5302. A77F2C8D2231FB4A001BD3F6 /* Release */,
  5303. );
  5304. defaultConfigurationIsVisible = 0;
  5305. defaultConfigurationName = Release;
  5306. };
  5307. /* End XCConfigurationList section */
  5308. };
  5309. rootObject = A77F2C552231FB49001BD3F6 /* Project object */;
  5310. }