project.pbxproj 443 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 55;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2723B5A227F1578300E0B90B /* CreateFansGroupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */; };
  10. 2723B5A327F1578300E0B90B /* KSChatListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */; };
  11. 2723B5A427F1578300E0B90B /* KSChatConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */; };
  12. 2723B5A527F1578300E0B90B /* ChatAddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */; };
  13. 2723B5BA27F157B100E0B90B /* ChatAddressHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */; };
  14. 2723B5BB27F157B100E0B90B /* ChatAddressBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */; };
  15. 2723B5BC27F157B100E0B90B /* GroupCreateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A827F157A300E0B90B /* GroupCreateView.m */; };
  16. 2723B5BD27F157B100E0B90B /* KSChatListSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */; };
  17. 2723B5BE27F157B100E0B90B /* ChatNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AA27F157A500E0B90B /* ChatNavView.m */; };
  18. 2723B5BF27F157B100E0B90B /* GroupCreateView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */; };
  19. 2723B5C027F157B100E0B90B /* ChatAddressHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */; };
  20. 2723B5C127F157B100E0B90B /* ContractListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AF27F157AA00E0B90B /* ContractListCell.m */; };
  21. 2723B5C227F157B100E0B90B /* GroupListViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */; };
  22. 2723B5C327F157B100E0B90B /* ChatNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B227F157AD00E0B90B /* ChatNavView.xib */; };
  23. 2723B5C427F157B100E0B90B /* KSChatListSearchView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */; };
  24. 2723B5C527F157B100E0B90B /* ContractListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B727F157B000E0B90B /* ContractListCell.xib */; };
  25. 2723B5C627F157B100E0B90B /* GroupListViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5B927F157B100E0B90B /* GroupListViewCell.m */; };
  26. 2723B5CD27F157BE00E0B90B /* GroupListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5C827F157B900E0B90B /* GroupListModel.m */; };
  27. 2723B5CE27F157BE00E0B90B /* KSRCloudMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */; };
  28. 2723B5CF27F157BE00E0B90B /* GroupMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */; };
  29. 2723B61827F157D500E0B90B /* KSSearchHistoryMessageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */; };
  30. 2723B61927F157D500E0B90B /* KSSearchResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */; };
  31. 2723B61A27F157D500E0B90B /* KSSearchResultViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */; };
  32. 2723B61B27F157D500E0B90B /* KSSearchRCLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */; };
  33. 2723B61C27F157D500E0B90B /* KSRCSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */; };
  34. 2723B61D27F157D500E0B90B /* GroupNoticeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */; };
  35. 2723B61E27F157D500E0B90B /* GroupNoticeEditController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */; };
  36. 2723B61F27F157D500E0B90B /* GroupNoticeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */; };
  37. 2723B62027F157D500E0B90B /* GroupNoticeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */; };
  38. 2723B62127F157D500E0B90B /* NoticeEditBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */; };
  39. 2723B62227F157D500E0B90B /* LFPopupMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */; };
  40. 2723B62327F157D500E0B90B /* LFPopupMenuDefaultConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */; };
  41. 2723B62427F157D500E0B90B /* NoticeEditBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */; };
  42. 2723B62527F157D500E0B90B /* GroupNoticeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */; };
  43. 2723B62627F157D500E0B90B /* GroupApplyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */; };
  44. 2723B62727F157D500E0B90B /* GroupMemberViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */; };
  45. 2723B62827F157D500E0B90B /* KSSelectConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */; };
  46. 2723B62927F157D500E0B90B /* KSChatComplainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F927F157D500E0B90B /* KSChatComplainController.m */; };
  47. 2723B62A27F157D500E0B90B /* GroupSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */; };
  48. 2723B62B27F157D500E0B90B /* ApplyMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60027F157D500E0B90B /* ApplyMemberModel.m */; };
  49. 2723B62C27F157D500E0B90B /* ApplyBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60427F157D500E0B90B /* ApplyBottomView.m */; };
  50. 2723B62D27F157D500E0B90B /* GroupApplyMemberCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */; };
  51. 2723B62E27F157D500E0B90B /* GroupApplyChooseAllCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */; };
  52. 2723B62F27F157D500E0B90B /* ChatComplainBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */; };
  53. 2723B63027F157D500E0B90B /* GroupApplyChooseAllCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */; };
  54. 2723B63127F157D500E0B90B /* GroupSettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */; };
  55. 2723B63227F157D500E0B90B /* GroupSettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */; };
  56. 2723B63327F157D500E0B90B /* ChatComplainBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */; };
  57. 2723B63427F157D500E0B90B /* GroupApplyMemberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */; };
  58. 2723B63527F157D500E0B90B /* GroupApplyChooseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */; };
  59. 2723B63627F157D500E0B90B /* GroupMemberListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61327F157D500E0B90B /* GroupMemberListCell.m */; };
  60. 2723B63727F157D500E0B90B /* ApplyBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61427F157D500E0B90B /* ApplyBottomView.xib */; };
  61. 2723B63827F157D500E0B90B /* GroupApplyChooseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */; };
  62. 2723B63927F157D500E0B90B /* GroupMemberListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */; };
  63. 2723B63C27F159BA00E0B90B /* KSBaseTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */; };
  64. 2723B64427F15B5900E0B90B /* SCIndexViewConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */; };
  65. 2723B64527F15B5900E0B90B /* SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64027F15B5800E0B90B /* SCIndexView.m */; };
  66. 2723B64627F15B5900E0B90B /* UITableView+SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */; };
  67. 2723B64927F15BDC00E0B90B /* KSJXBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */; };
  68. 2723B66127F15CFB00E0B90B /* SettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */; };
  69. 2723B66227F15CFC00E0B90B /* FeedbackBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */; };
  70. 2723B66327F15CFC00E0B90B /* ModifyNameBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */; };
  71. 2723B66427F15CFC00E0B90B /* VeriCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64E27F15CF800E0B90B /* VeriCheckView.m */; };
  72. 2723B66527F15CFC00E0B90B /* ModifyBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */; };
  73. 2723B66627F15CFC00E0B90B /* AboutUsBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */; };
  74. 2723B66727F15CFC00E0B90B /* ModifyBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65427F15CF900E0B90B /* ModifyBodyView.m */; };
  75. 2723B66827F15CFC00E0B90B /* FeedbackBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */; };
  76. 2723B66927F15CFC00E0B90B /* PhoneChangeBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */; };
  77. 2723B66A27F15CFC00E0B90B /* PhoneChangeBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */; };
  78. 2723B66B27F15CFC00E0B90B /* PhoneCheckBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */; };
  79. 2723B66C27F15CFC00E0B90B /* SettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */; };
  80. 2723B66D27F15CFC00E0B90B /* ModifyNameBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */; };
  81. 2723B66E27F15CFC00E0B90B /* PhoneCheckBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */; };
  82. 2723B66F27F15CFC00E0B90B /* AboutUsBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */; };
  83. 2723B67E27F15D3D00E0B90B /* ModifyPhoneCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */; };
  84. 2723B67F27F15D3D00E0B90B /* AboutUsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67227F15D3300E0B90B /* AboutUsViewController.m */; };
  85. 2723B68027F15D3D00E0B90B /* FeedbackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67327F15D3400E0B90B /* FeedbackViewController.m */; };
  86. 2723B68127F15D3D00E0B90B /* ModifyNameViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */; };
  87. 2723B68227F15D3D00E0B90B /* ModifyPhoneChangeController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */; };
  88. 2723B68327F15D3D00E0B90B /* ModifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67927F15D3B00E0B90B /* ModifyViewController.m */; };
  89. 2723B68427F15D3D00E0B90B /* AddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67B27F15D3C00E0B90B /* AddressViewController.m */; };
  90. 275E8AAA27E18F8800DD3F6E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AA927E18F8800DD3F6E /* AppDelegate.m */; };
  91. 275E8AB027E18F8800DD3F6E /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AAF27E18F8800DD3F6E /* ViewController.m */; };
  92. 275E8AB327E18F8800DD3F6E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB127E18F8800DD3F6E /* Main.storyboard */; };
  93. 275E8AB527E18F8B00DD3F6E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */; };
  94. 275E8AB827E18F8B00DD3F6E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */; };
  95. 275E8ABB27E18F8B00DD3F6E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8ABA27E18F8B00DD3F6E /* main.m */; };
  96. 275E8AC527E18F8C00DD3F6E /* KulexiuForStudentTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */; };
  97. 275E8ACF27E18F8C00DD3F6E /* KulexiuForStudentUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */; };
  98. 275E8AD127E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */; };
  99. 275FA1AD27E734C600CFEA2E /* KSImageAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */; };
  100. 275FA1AE27E734C600CFEA2E /* KSImageAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */; };
  101. 275FA1DA27E7351900CFEA2E /* KSNetworkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */; };
  102. 275FA1DB27E7351900CFEA2E /* UINavigationController+KSNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */; };
  103. 275FA1DC27E7351900CFEA2E /* KSAQRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */; };
  104. 275FA1DD27E7351900CFEA2E /* KSBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B727E7351500CFEA2E /* KSBaseModel.m */; };
  105. 275FA1DE27E7351900CFEA2E /* KSLocalWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */; };
  106. 275FA1DF27E7351900CFEA2E /* RCConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */; };
  107. 275FA1E027E7351900CFEA2E /* RecordCheckManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */; };
  108. 275FA1E127E7351900CFEA2E /* KSTabBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */; };
  109. 275FA1E227E7351900CFEA2E /* KSWebBackButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */; };
  110. 275FA1E327E7351900CFEA2E /* WeakWebViewScriptMessageDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */; };
  111. 275FA1E427E7351900CFEA2E /* KSWebNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C227E7351600CFEA2E /* KSWebNavView.m */; };
  112. 275FA1E527E7351900CFEA2E /* KSAccompanyWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */; };
  113. 275FA1E627E7351900CFEA2E /* KSUpdateAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */; };
  114. 275FA1E727E7351900CFEA2E /* KSWebSocketManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */; };
  115. 275FA1E827E7351900CFEA2E /* CustomNavViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */; };
  116. 275FA1E927E7351900CFEA2E /* KSNetTypeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */; };
  117. 275FA1EA27E7351900CFEA2E /* KSRCIMDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */; };
  118. 275FA1EB27E7351900CFEA2E /* KSBaseWKWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */; };
  119. 275FA1EC27E7351900CFEA2E /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CF27E7351800CFEA2E /* BaseViewController.m */; };
  120. 275FA1ED27E7351900CFEA2E /* KSUpdateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */; };
  121. 275FA1EE27E7351900CFEA2E /* KSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */; };
  122. 275FA1EF27E7351900CFEA2E /* KSUpdateAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */; };
  123. 275FA22B27E7356B00CFEA2E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1F327E7356A00CFEA2E /* HomeViewController.m */; };
  124. 275FA22C27E7356B00CFEA2E /* CourseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */; };
  125. 275FA22D27E7356B00CFEA2E /* ChatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */; };
  126. 275FA22E27E7356B00CFEA2E /* MineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA20627E7356B00CFEA2E /* MineViewController.m */; };
  127. 275FA22F27E7356B00CFEA2E /* ShopMallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */; };
  128. 275FA23027E7356B00CFEA2E /* PasswordLoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */; };
  129. 275FA23127E7356B00CFEA2E /* FirstSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */; };
  130. 275FA23227E7356B00CFEA2E /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21327E7356B00CFEA2E /* LoginViewController.m */; };
  131. 275FA23327E7356B00CFEA2E /* VefiCodeLoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */; };
  132. 275FA23427E7356B00CFEA2E /* UserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21A27E7356B00CFEA2E /* UserInfo.m */; };
  133. 275FA23527E7356B00CFEA2E /* UserInfoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */; };
  134. 275FA23627E7356B00CFEA2E /* LoginBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22027E7356B00CFEA2E /* LoginBodyView.m */; };
  135. 275FA23727E7356B00CFEA2E /* LoginBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */; };
  136. 275FA23827E7356B00CFEA2E /* FirstSettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */; };
  137. 275FA23927E7356B00CFEA2E /* FirstSettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */; };
  138. 275FA23A27E7356B00CFEA2E /* VefiBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */; };
  139. 275FA23B27E7356B00CFEA2E /* PasswordBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */; };
  140. 275FA23C27E7356B00CFEA2E /* VefiBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22927E7356B00CFEA2E /* VefiBodyView.m */; };
  141. 275FA23D27E7356B00CFEA2E /* PasswordBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */; };
  142. 275FA24327E73DF600CFEA2E /* InstrumentDescView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */; };
  143. 275FA24527E73E0100CFEA2E /* InstrumentDescView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */; };
  144. 275FA24827E7428200CFEA2E /* InstrumentChooseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */; };
  145. 275FA24A27E7428D00CFEA2E /* InstrumentChooseView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */; };
  146. 2779351227E324A50010E277 /* KSNetworkAccessibleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */; };
  147. 2779351327E324A50010E277 /* NSDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */; };
  148. 2779351427E324A50010E277 /* NSMutableDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */; };
  149. 2779351527E324A60010E277 /* NSArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */; };
  150. 2779351627E324A60010E277 /* NSMutableArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */; };
  151. 2779351727E324A60010E277 /* NSObject+KSSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */; };
  152. 2779351827E324A60010E277 /* NSObject+KSImpChangeTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */; };
  153. 2779351927E324A60010E277 /* NSMutableString+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */; };
  154. 2779351A27E324A60010E277 /* NSObject+AssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */; };
  155. 2779351B27E324A60010E277 /* UIControl+ButtonAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */; };
  156. 2779351C27E324A60010E277 /* UIDevice+zhDeviceType.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */; };
  157. 2779351D27E324A60010E277 /* NSString+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */; };
  158. 2779351E27E324A60010E277 /* UIViewController+zhStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */; };
  159. 2779351F27E324A60010E277 /* UITextView+ZWPlaceHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */; };
  160. 2779352027E324A60010E277 /* CALayer+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338027E3249D0010E277 /* CALayer+Color.m */; };
  161. 2779352127E324A60010E277 /* NSMutableAttributedString+CZHExtention.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */; };
  162. 2779352227E324A60010E277 /* UITextView+ZWLimitCounter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */; };
  163. 2779352327E324A60010E277 /* UILabel+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338527E3249D0010E277 /* UILabel+Extension.m */; };
  164. 2779352427E324A60010E277 /* KSUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338727E3249D0010E277 /* KSUtilities.m */; };
  165. 2779352527E324A60010E277 /* pinyin.c in Sources */ = {isa = PBXBuildFile; fileRef = 2779338A27E3249D0010E277 /* pinyin.c */; };
  166. 2779352627E324A60010E277 /* UIAlertController+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */; };
  167. 2779352727E324A60010E277 /* NSArray+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */; };
  168. 2779352827E324A60010E277 /* UIColor+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339227E3249D0010E277 /* UIColor+Extend.m */; };
  169. 2779352927E324A60010E277 /* zhPopupController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339327E3249D0010E277 /* zhPopupController.m */; };
  170. 2779352A27E324A60010E277 /* UIView+Dealloc.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339427E3249D0010E277 /* UIView+Dealloc.m */; };
  171. 2779352B27E324A60010E277 /* NSObject+Parse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339527E3249D0010E277 /* NSObject+Parse.m */; };
  172. 2779352C27E324A60010E277 /* UIView+AddConstraints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339627E3249D0010E277 /* UIView+AddConstraints.m */; };
  173. 2779352D27E324A60010E277 /* NSString+CZHSizeExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */; };
  174. 2779352E27E324A60010E277 /* NSDictionary+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */; };
  175. 2779352F27E324A60010E277 /* UIView+Hints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339F27E3249D0010E277 /* UIView+Hints.m */; };
  176. 2779353027E324A60010E277 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A327E3249D0010E277 /* NSDate+Extension.m */; };
  177. 2779353127E324A60010E277 /* NSString+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A527E3249D0010E277 /* NSString+Extension.m */; };
  178. 2779353227E324A60010E277 /* NSDate+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A627E3249D0010E277 /* NSDate+Transform.m */; };
  179. 2779353327E324A60010E277 /* UIScreen+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A927E3249D0010E277 /* UIScreen+Extend.m */; };
  180. 2779353427E324A60010E277 /* UIImageView+CornerRadius.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */; };
  181. 2779353527E324A60010E277 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */; };
  182. 2779353627E324A60010E277 /* CALayer+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AD27E3249E0010E277 /* CALayer+Layout.m */; };
  183. 2779353727E324A60010E277 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AE27E3249E0010E277 /* UIImage+Color.m */; };
  184. 2779353827E324A60010E277 /* UIView+KSExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AF27E3249E0010E277 /* UIView+KSExtension.m */; };
  185. 2779353927E324A60010E277 /* UIView+XIBView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B727E3249E0010E277 /* UIView+XIBView.m */; };
  186. 2779353A27E324A60010E277 /* UILabel+QWTopLeftLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */; };
  187. 2779353B27E324A60010E277 /* UrlDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B927E3249E0010E277 /* UrlDecode.m */; };
  188. 2779353C27E324A60010E277 /* UIButton+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BA27E3249E0010E277 /* UIButton+Property.m */; };
  189. 2779353D27E324A60010E277 /* UIScrollView+KSTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */; };
  190. 2779353E27E324A60010E277 /* UIDevice+TFDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */; };
  191. 2779353F27E324A60010E277 /* UIView+KSLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BE27E3249E0010E277 /* UIView+KSLayer.m */; };
  192. 2779354027E324A60010E277 /* UIImage+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BF27E3249E0010E277 /* UIImage+Property.m */; };
  193. 2779354127E324A60010E277 /* UIView+ShowProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C127E3249E0010E277 /* UIView+ShowProgress.m */; };
  194. 2779354227E324A60010E277 /* UIImage+ResizeImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */; };
  195. 2779354327E324A60010E277 /* UIButton+HasChooseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */; };
  196. 2779354427E324A60010E277 /* NSObject+AutoProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */; };
  197. 2779354527E324A60010E277 /* UIImage+UIImageScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */; };
  198. 2779354627E324A60010E277 /* UIView+Animation.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C827E3249E0010E277 /* UIView+Animation.m */; };
  199. 2779354727E324A60010E277 /* UIButton+EnlargeEdge.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */; };
  200. 2779354827E324A60010E277 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */; };
  201. 2779354927E324A60010E277 /* MBProgressHUD+KSShow.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */; };
  202. 2779354A27E324A60010E277 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DA27E3249E0010E277 /* UIImage+Resize.m */; };
  203. 2779354B27E324A60010E277 /* KSVideoEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DD27E3249E0010E277 /* KSVideoEditor.m */; };
  204. 2779354C27E324A70010E277 /* KSGifRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */; };
  205. 2779354D27E324A70010E277 /* KSGifRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */; };
  206. 2779354E27E324A70010E277 /* KSAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E427E3249E0010E277 /* KSAudioSessionManager.m */; };
  207. 2779354F27E324A70010E277 /* VoLRUManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E927E3249F0010E277 /* VoLRUManager.m */; };
  208. 2779355027E324A70010E277 /* VoDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EB27E3249F0010E277 /* VoDiskCache.m */; };
  209. 2779355127E324A70010E277 /* VoCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EC27E3249F0010E277 /* VoCacheManager.m */; };
  210. 2779355227E324A70010E277 /* VoMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EE27E3249F0010E277 /* VoMemoryCache.m */; };
  211. 2779355327E324A70010E277 /* VoNetworking+RequestManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */; };
  212. 2779355427E324A70010E277 /* VoNetWorking.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F227E3249F0010E277 /* VoNetWorking.m */; };
  213. 2779355527E324A70010E277 /* DiskFreeSpaceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */; };
  214. 2779355627E324A70010E277 /* KSPremissionAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F827E3249F0010E277 /* KSPremissionAlert.m */; };
  215. 2779355727E324A70010E277 /* KSPremissionAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 277933F927E3249F0010E277 /* KSPremissionAlert.xib */; };
  216. 2779355827E324A70010E277 /* UIImage+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933FC27E3249F0010E277 /* UIImage+Addtions.m */; };
  217. 2779355927E324A70010E277 /* GRCreateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933FD27E3249F0010E277 /* GRCreateManager.m */; };
  218. 2779355A27E324A70010E277 /* QCCountdownButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340127E3249F0010E277 /* QCCountdownButton.m */; };
  219. 2779355B27E324A70010E277 /* KSStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340427E3249F0010E277 /* KSStatusView.m */; };
  220. 2779355C27E324A70010E277 /* KSChoosePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340727E3249F0010E277 /* KSChoosePicker.m */; };
  221. 2779355D27E324A70010E277 /* KSHoldButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340B27E3249F0010E277 /* KSHoldButton.m */; };
  222. 2779355E27E324A70010E277 /* KSAudioRecordFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */; };
  223. 2779355F27E324A70010E277 /* UIView+ValueAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */; };
  224. 2779356027E324A70010E277 /* KSRecordStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340F27E3249F0010E277 /* KSRecordStatusView.m */; };
  225. 2779356127E324A70010E277 /* KSAudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341027E3249F0010E277 /* KSAudioRecordManager.m */; };
  226. 2779356227E324A70010E277 /* KSRecordPowerAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */; };
  227. 2779356327E324A70010E277 /* HomeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341527E3249F0010E277 /* HomeButton.m */; };
  228. 2779356427E324A70010E277 /* KSFullDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341727E3249F0010E277 /* KSFullDatePicker.m */; };
  229. 2779356527E324A70010E277 /* KSMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341927E3249F0010E277 /* KSMediaManager.m */; };
  230. 2779356627E324A70010E277 /* ShopMessBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341A27E3249F0010E277 /* ShopMessBtn.m */; };
  231. 2779356727E324A70010E277 /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341B27E324A00010E277 /* UIColor+Hex.m */; };
  232. 2779356827E324A70010E277 /* shopview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341C27E324A00010E277 /* shopview.m */; };
  233. 2779356927E324A70010E277 /* YKMultiLevelTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */; };
  234. 2779356A27E324A70010E277 /* YKNodeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341F27E324A00010E277 /* YKNodeModel.m */; };
  235. 2779356B27E324A70010E277 /* pickBut.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342227E324A00010E277 /* pickBut.m */; };
  236. 2779356C27E324A70010E277 /* MBProgressHUD+NJ.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */; };
  237. 2779356D27E324A70010E277 /* StoreShopCaterview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342827E324A00010E277 /* StoreShopCaterview.m */; };
  238. 2779356E27E324A70010E277 /* UITextField_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342A27E324A00010E277 /* UITextField_Toolbar.m */; };
  239. 2779356F27E324A70010E277 /* SkipTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342B27E324A00010E277 /* SkipTextField.m */; };
  240. 2779357027E324A70010E277 /* UITextView_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342E27E324A00010E277 /* UITextView_Toolbar.m */; };
  241. 2779357127E324A70010E277 /* SkipTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343127E324A00010E277 /* SkipTextView.m */; };
  242. 2779357227E324A70010E277 /* SearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343427E324A00010E277 /* SearchView.m */; };
  243. 2779357327E324A70010E277 /* prodectButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343A27E324A00010E277 /* prodectButton.m */; };
  244. 2779357427E324A70010E277 /* StoreButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343B27E324A00010E277 /* StoreButton.m */; };
  245. 2779357527E324A70010E277 /* LifeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343C27E324A00010E277 /* LifeButton.m */; };
  246. 2779357627E324A70010E277 /* ShoppCatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343D27E324A00010E277 /* ShoppCatView.m */; };
  247. 2779357727E324A70010E277 /* GRScanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343E27E324A00010E277 /* GRScanManager.m */; };
  248. 2779357827E324A70010E277 /* NSString+phone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344427E324A00010E277 /* NSString+phone.m */; };
  249. 2779357927E324A70010E277 /* KSImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344627E324A00010E277 /* KSImageButton.m */; };
  250. 2779357A27E324A70010E277 /* PIckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344927E324A00010E277 /* PIckView.m */; };
  251. 2779357B27E324A70010E277 /* ShopButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344B27E324A00010E277 /* ShopButton.m */; };
  252. 2779357C27E324A70010E277 /* NSString+MD5.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344C27E324A00010E277 /* NSString+MD5.m */; };
  253. 2779357D27E324A80010E277 /* KSMessageInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344D27E324A00010E277 /* KSMessageInputView.m */; };
  254. 2779357E27E324A80010E277 /* KSInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345027E324A00010E277 /* KSInputView.m */; };
  255. 2779357F27E324A80010E277 /* KeyChainTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345127E324A00010E277 /* KeyChainTools.m */; };
  256. 2779358027E324A80010E277 /* sortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345227E324A00010E277 /* sortButton.m */; };
  257. 2779358127E324A80010E277 /* StateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345327E324A00010E277 /* StateView.m */; };
  258. 2779358227E324A80010E277 /* NSDate+KSBaseDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */; };
  259. 2779358327E324A80010E277 /* LLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345727E324A10010E277 /* LLPhotoBrowser.m */; };
  260. 2779358427E324A80010E277 /* LLImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345A27E324A10010E277 /* LLImageCache.m */; };
  261. 2779358527E324A80010E277 /* LLFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345B27E324A10010E277 /* LLFileManager.m */; };
  262. 2779358627E324A80010E277 /* LLPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345E27E324A10010E277 /* LLPhoto.m */; };
  263. 2779358727E324A80010E277 /* LLCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345F27E324A10010E277 /* LLCollectionViewCell.m */; };
  264. 2779358827E324A80010E277 /* NSObject+Archiving.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346627E324A10010E277 /* NSObject+Archiving.m */; };
  265. 2779358927E324A80010E277 /* CoinModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346727E324A10010E277 /* CoinModel.m */; };
  266. 2779358A27E324A80010E277 /* ArchiveTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346827E324A10010E277 /* ArchiveTools.m */; };
  267. 2779358B27E324A80010E277 /* KLTNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347127E324A10010E277 /* KLTNavigationController.m */; };
  268. 2779358C27E324A80010E277 /* AnimationContoller.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347327E324A10010E277 /* AnimationContoller.m */; };
  269. 2779358D27E324A80010E277 /* DZNSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347527E324A10010E277 /* DZNSegmentedControl.m */; };
  270. 2779358E27E324A80010E277 /* WMPlayerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347927E324A10010E277 /* WMPlayerModel.m */; };
  271. 2779358F27E324A80010E277 /* WMPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2779347B27E324A10010E277 /* WMPlayer.bundle */; };
  272. 2779359027E324A80010E277 /* WMLightView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347E27E324A10010E277 /* WMLightView.m */; };
  273. 2779359127E324A80010E277 /* FastForwardView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347F27E324A10010E277 /* FastForwardView.m */; };
  274. 2779359227E324A80010E277 /* WMPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348027E324A10010E277 /* WMPlayer.m */; };
  275. 2779359327E324A80010E277 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348427E324A10010E277 /* TZImageCropManager.m */; };
  276. 2779359427E324A80010E277 /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348627E324A10010E277 /* TZAssetCell.m */; };
  277. 2779359527E324A80010E277 /* TZVideoEditedPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */; };
  278. 2779359627E324A80010E277 /* TZVideoCropController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348827E324A10010E277 /* TZVideoCropController.m */; };
  279. 2779359727E324A80010E277 /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348927E324A10010E277 /* TZVideoPlayerController.m */; };
  280. 2779359827E324A80010E277 /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348A27E324A10010E277 /* TZAssetModel.m */; };
  281. 2779359927E324A80010E277 /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */; };
  282. 2779359A27E324A80010E277 /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */; };
  283. 2779359B27E324A80010E277 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2779349027E324A10010E277 /* TZImagePickerController.bundle */; };
  284. 2779359C27E324A80010E277 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349127E324A10010E277 /* TZProgressView.m */; };
  285. 2779359D27E324A80010E277 /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349627E324A10010E277 /* TZImageManager.m */; };
  286. 2779359E27E324A80010E277 /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349827E324A20010E277 /* TZPhotoPickerController.m */; };
  287. 2779359F27E324A80010E277 /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */; };
  288. 277935A027E324A80010E277 /* UIView+TZLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349B27E324A20010E277 /* UIView+TZLayout.m */; };
  289. 277935A127E324A80010E277 /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A027E324A20010E277 /* TZImagePickerController.m */; };
  290. 277935A227E324A80010E277 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A127E324A20010E277 /* TZLocationManager.m */; };
  291. 277935A327E324A80010E277 /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */; };
  292. 277935A427E324A80010E277 /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A327E324A20010E277 /* TZImageRequestOperation.m */; };
  293. 277935A527E324A80010E277 /* MSSBrowseLoadingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */; };
  294. 277935A627E324A80010E277 /* MSSBrowseLocalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */; };
  295. 277935A727E324A80010E277 /* MSSBrowseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */; };
  296. 277935A827E324A80010E277 /* MSSBrowseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B127E324A20010E277 /* MSSBrowseModel.m */; };
  297. 277935A927E324A80010E277 /* MSSBrowseActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */; };
  298. 277935AA27E324A80010E277 /* MSSBrowseNetworkViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */; };
  299. 277935AB27E324A80010E277 /* UIImage+MSSScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B527E324A20010E277 /* UIImage+MSSScale.m */; };
  300. 277935AC27E324A80010E277 /* MSSBrowseBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */; };
  301. 277935AD27E324A80010E277 /* MSSBrowseZoomScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */; };
  302. 277935AE27E324A80010E277 /* MSSBrowseRemindView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B927E324A20010E277 /* MSSBrowseRemindView.m */; };
  303. 277935AF27E324A90010E277 /* mss_browseLoading@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */; };
  304. 277935B027E324A90010E277 /* MSSBrowseActionSheetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */; };
  305. 277935B127E324A90010E277 /* mss_browseLoading@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */; };
  306. 277935B227E324A90010E277 /* UIView+MSSLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C027E324A20010E277 /* UIView+MSSLayout.m */; };
  307. 277935B327E324A90010E277 /* FSCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C227E324A20010E277 /* FSCalendarCollectionView.m */; };
  308. 277935B427E324A90010E277 /* FSCalendarDelegationProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */; };
  309. 277935B527E324A90010E277 /* FSCalendarDelegationFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */; };
  310. 277935B627E324A90010E277 /* FSCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934CE27E324A30010E277 /* FSCalendarCell.m */; };
  311. 277935B727E324A90010E277 /* FSCalendarStickyHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */; };
  312. 277935B827E324A90010E277 /* FSCalendar.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D027E324A30010E277 /* FSCalendar.m */; };
  313. 277935B927E324A90010E277 /* FSCalendarCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */; };
  314. 277935BA27E324A90010E277 /* FSCalendarWeekdayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */; };
  315. 277935BB27E324A90010E277 /* FSCalendarSeparatorDecorationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */; };
  316. 277935BC27E324A90010E277 /* FSCalendarExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D727E324A30010E277 /* FSCalendarExtensions.m */; };
  317. 277935BD27E324A90010E277 /* FSCalendarConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D927E324A30010E277 /* FSCalendarConstants.m */; };
  318. 277935BE27E324A90010E277 /* FSCalendarCalculator.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DA27E324A30010E277 /* FSCalendarCalculator.m */; };
  319. 277935BF27E324A90010E277 /* FSCalendarHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */; };
  320. 277935C027E324A90010E277 /* FSCalendarTransitionCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */; };
  321. 277935C127E324A90010E277 /* FSCalendarAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E027E324A30010E277 /* FSCalendarAppearance.m */; };
  322. 277935C227E324A90010E277 /* QWdynamicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E227E324A30010E277 /* QWdynamicModel.m */; };
  323. 277935C327E324A90010E277 /* SDQWMaskCustomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */; };
  324. 277935C427E324A90010E277 /* SDCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E927E324A30010E277 /* SDCycleScrollView.m */; };
  325. 277935C527E324A90010E277 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934EA27E324A30010E277 /* UIView+SDExtension.m */; };
  326. 277935C627E324A90010E277 /* SDQWMaskCustomModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */; };
  327. 277935C727E324A90010E277 /* SDCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934ED27E324A30010E277 /* SDCollectionViewCell.m */; };
  328. 277935C827E324A90010E277 /* TADotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F027E324A30010E277 /* TADotView.m */; };
  329. 277935C927E324A90010E277 /* TAPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F127E324A30010E277 /* TAPageControl.m */; };
  330. 277935CA27E324A90010E277 /* TAAnimatedDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F227E324A30010E277 /* TAAnimatedDotView.m */; };
  331. 277935CB27E324A90010E277 /* TAAbstractDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F327E324A30010E277 /* TAAbstractDotView.m */; };
  332. 277935CC27E324A90010E277 /* SDQWMaskCustomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F727E324A30010E277 /* SDQWMaskCustomView.m */; };
  333. 277935CD27E324A90010E277 /* ALCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F927E324A30010E277 /* ALCalendarCell.m */; };
  334. 277935CE27E324A90010E277 /* ALCalendarConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FA27E324A30010E277 /* ALCalendarConfig.m */; };
  335. 277935CF27E324A90010E277 /* ALCalendarHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FB27E324A30010E277 /* ALCalendarHeader.m */; };
  336. 277935D027E324A90010E277 /* ALCalendarDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FC27E324A30010E277 /* ALCalendarDate.m */; };
  337. 277935D127E324A90010E277 /* ALCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */; };
  338. 277935D227E324A90010E277 /* ALCalendarHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FE27E324A30010E277 /* ALCalendarHelper.m */; };
  339. 277935D327E324A90010E277 /* ALCalendarPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350827E324A40010E277 /* ALCalendarPicker.m */; };
  340. 277935D427E324A90010E277 /* UIView+ALFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350927E324A40010E277 /* UIView+ALFrame.m */; };
  341. 277935D527E324A90010E277 /* ALCalendarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350A27E324A40010E277 /* ALCalendarManager.m */; };
  342. 27F9032927E87C2E00C08A19 /* NetworkingCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */; };
  343. 27F9032A27E87C2E00C08A19 /* NetworkBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */; };
  344. 27F9032B27E87C2E00C08A19 /* NetworkBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */; };
  345. 27F9032C27E87C2E00C08A19 /* KSNetworkAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */; };
  346. 27F9032D27E87C2E00C08A19 /* KSNetworkAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */; };
  347. 27F9032E27E87C2E00C08A19 /* DeviceCheckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */; };
  348. 27F9032F27E87C2E00C08A19 /* AudioPlayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */; };
  349. 27F9033027E87C2E00C08A19 /* AudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */; };
  350. 27F9033127E87C2E00C08A19 /* DeviceCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */; };
  351. 27F9033227E87C2E00C08A19 /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9032627E87C2E00C08A19 /* SettingViewController.m */; };
  352. 27F9033627E87C8B00C08A19 /* MineNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9033427E87C8A00C08A19 /* MineNavView.m */; };
  353. 27F9033727E87C8B00C08A19 /* MineNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9033527E87C8B00C08A19 /* MineNavView.xib */; };
  354. 27F9033A27E87FD500C08A19 /* MineBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9033927E87FD500C08A19 /* MineBodyView.m */; };
  355. 27F9033C27E87FE100C08A19 /* MineBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9033B27E87FE100C08A19 /* MineBodyView.xib */; };
  356. 82EE25CEB2BB5A0E1BB8D54B /* Pods_KulexiuForStudent.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */; };
  357. 93F0FA52C8A72F83D07C15A6 /* Pods_KulexiuForStudentTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */; };
  358. BC0212F727FC4A080040569F /* SubjectImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0212F527FC4A080040569F /* SubjectImageCell.m */; };
  359. BC0212F827FC4A080040569F /* SubjectImageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC0212F627FC4A080040569F /* SubjectImageCell.xib */; };
  360. BC0212FB27FC61D30040569F /* KSSegmentControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0212FA27FC61D30040569F /* KSSegmentControl.m */; };
  361. BC0212FE27FC66AA0040569F /* InstrumentMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0212FD27FC66AA0040569F /* InstrumentMessageModel.m */; };
  362. BC02130127FC6ADD0040569F /* UIView+SubViewExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = BC02130027FC6ADD0040569F /* UIView+SubViewExtension.m */; };
  363. BC0D1F6D281013DF00C5D9E5 /* MyVideoCourseBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0D1F6C281013DF00C5D9E5 /* MyVideoCourseBodyView.m */; };
  364. BC0D1F71281015B000C5D9E5 /* VideoCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0D1F6E281015AF00C5D9E5 /* VideoCourseCell.m */; };
  365. BC0D1F72281015B000C5D9E5 /* VideoCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC0D1F6F281015AF00C5D9E5 /* VideoCourseCell.xib */; };
  366. BC0D1F752810165500C5D9E5 /* VideoCourseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0D1F742810165400C5D9E5 /* VideoCourseModel.m */; };
  367. BC1191FF280ED64E00A716F7 /* MyCourseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC1191FE280ED64E00A716F7 /* MyCourseViewController.m */; };
  368. BC119213280ED6A900A716F7 /* MyLessonBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119200280ED6A600A716F7 /* MyLessonBodyView.m */; };
  369. BC119215280ED6A900A716F7 /* MyLiveCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119203280ED6A700A716F7 /* MyLiveCourseCell.xib */; };
  370. BC119216280ED6A900A716F7 /* MyLiveCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119204280ED6A700A716F7 /* MyLiveCourseCell.m */; };
  371. BC119217280ED6A900A716F7 /* MyLessonSearchView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119206280ED6A700A716F7 /* MyLessonSearchView.xib */; };
  372. BC119218280ED6A900A716F7 /* MyLessonSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119209280ED6A800A716F7 /* MyLessonSearchView.m */; };
  373. BC11921B280ED6A900A716F7 /* NewClassPopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11920F280ED6A900A716F7 /* NewClassPopCell.xib */; };
  374. BC11921C280ED6A900A716F7 /* NewClassPopView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119211280ED6A900A716F7 /* NewClassPopView.m */; };
  375. BC11921D280ED6A900A716F7 /* NewClassPopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119212280ED6A900A716F7 /* NewClassPopCell.m */; };
  376. BC119222280ED6F500A716F7 /* LiveLessonModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11921E280ED6F400A716F7 /* LiveLessonModel.m */; };
  377. BC119223280ED6F500A716F7 /* AccompanyLessonModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11921F280ED6F400A716F7 /* AccompanyLessonModel.m */; };
  378. BC11922A280ED8E800A716F7 /* LTSCalendarBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119224280ED8E700A716F7 /* LTSCalendarBottomView.m */; };
  379. BC11922B280ED8E800A716F7 /* CourseNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119226280ED8E800A716F7 /* CourseNavView.m */; };
  380. BC11922C280ED8E800A716F7 /* LTSCalendarBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119227280ED8E800A716F7 /* LTSCalendarBottomView.xib */; };
  381. BC11922D280ED8E800A716F7 /* CourseNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119229280ED8E800A716F7 /* CourseNavView.xib */; };
  382. BC119230280ED8F900A716F7 /* TableCourseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11922F280ED8F900A716F7 /* TableCourseModel.m */; };
  383. BC119234280ED97C00A716F7 /* CourseForLiveCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119231280ED97B00A716F7 /* CourseForLiveCell.m */; };
  384. BC119235280ED97C00A716F7 /* CourseForLiveCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119232280ED97C00A716F7 /* CourseForLiveCell.xib */; };
  385. BC119239280ED98E00A716F7 /* AccompanyCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119237280ED98E00A716F7 /* AccompanyCourseCell.xib */; };
  386. BC11923A280ED98E00A716F7 /* AccompanyCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119238280ED98E00A716F7 /* AccompanyCourseCell.m */; };
  387. BC119241280ED9E000A716F7 /* AccompanyDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119240280ED9E000A716F7 /* AccompanyDetailViewController.m */; };
  388. BC119244280EDA2400A716F7 /* NSObject+KSDateFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119243280EDA2400A716F7 /* NSObject+KSDateFormatter.m */; };
  389. BC119247280EDA5800A716F7 /* kSJXCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119245280EDA5800A716F7 /* kSJXCollectionView.m */; };
  390. BC11924E280EDD5500A716F7 /* HomeworkListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11924D280EDD5500A716F7 /* HomeworkListViewController.m */; };
  391. BC119258280FA85300A716F7 /* HomeworkListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119252280FA85200A716F7 /* HomeworkListCell.xib */; };
  392. BC119259280FA85300A716F7 /* HomeworkListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119253280FA85200A716F7 /* HomeworkListCell.m */; };
  393. BC11925A280FA85300A716F7 /* HomeworkSortView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119255280FA85300A716F7 /* HomeworkSortView.xib */; };
  394. BC11925B280FA85300A716F7 /* HomeworkSortView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119257280FA85300A716F7 /* HomeworkSortView.m */; };
  395. BC11925E280FA89A00A716F7 /* HomeworkBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11925D280FA89A00A716F7 /* HomeworkBodyView.m */; };
  396. BC119263280FA90100A716F7 /* HomeworkDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119261280FA90100A716F7 /* HomeworkDetailModel.m */; };
  397. BC119264280FA90100A716F7 /* HomeworkListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119262280FA90100A716F7 /* HomeworkListModel.m */; };
  398. BC119267280FA92700A716F7 /* HomeworkDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119266280FA92700A716F7 /* HomeworkDetailViewController.m */; };
  399. BC11926B280FAF5900A716F7 /* AccompanyAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119269280FAF5800A716F7 /* AccompanyAlertView.m */; };
  400. BC11926C280FAF5900A716F7 /* AccompanyAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11926A280FAF5900A716F7 /* AccompanyAlertView.xib */; };
  401. BC119270280FAF7D00A716F7 /* AccompanyCourseInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11926E280FAF7C00A716F7 /* AccompanyCourseInfoCell.xib */; };
  402. BC119271280FAF7D00A716F7 /* AccompanyCourseInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11926F280FAF7C00A716F7 /* AccompanyCourseInfoCell.m */; };
  403. BC119275280FB01100A716F7 /* AccompanyHomeworkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119272280FB01000A716F7 /* AccompanyHomeworkCell.xib */; };
  404. BC119276280FB01100A716F7 /* AccompanyHomeworkCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119273280FB01000A716F7 /* AccompanyHomeworkCell.m */; };
  405. BC11927A280FB07F00A716F7 /* AccompanyArrangeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119277280FB07F00A716F7 /* AccompanyArrangeCell.m */; };
  406. BC11927B280FB07F00A716F7 /* AccompanyArrangeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119278280FB07F00A716F7 /* AccompanyArrangeCell.xib */; };
  407. BC11927F280FB10900A716F7 /* AccompanyRemarkCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11927C280FB10700A716F7 /* AccompanyRemarkCell.m */; };
  408. BC119280280FB10900A716F7 /* AccompanyRemarkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11927D280FB10800A716F7 /* AccompanyRemarkCell.xib */; };
  409. BC119288280FB3B100A716F7 /* KSStarView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119287280FB3B100A716F7 /* KSStarView.m */; };
  410. BC11928C280FB44300A716F7 /* HomeworkVideoView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119289280FB44200A716F7 /* HomeworkVideoView.xib */; };
  411. BC11928D280FB44300A716F7 /* HomeworkVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11928B280FB44300A716F7 /* HomeworkVideoView.m */; };
  412. BC119290280FB46100A716F7 /* KSVideoHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11928F280FB46100A716F7 /* KSVideoHelper.m */; };
  413. BC119293280FBC1100A716F7 /* HomeworkAddView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119292280FBC1100A716F7 /* HomeworkAddView.m */; };
  414. BC119298280FBCB400A716F7 /* UIView+ExtensionForDotLine.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119297280FBCB400A716F7 /* UIView+ExtensionForDotLine.m */; };
  415. BC11929B280FD2E800A716F7 /* HomeworkBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11929A280FD2E800A716F7 /* HomeworkBottomView.m */; };
  416. BC11929D280FD2EF00A716F7 /* HomeworkBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11929C280FD2EF00A716F7 /* HomeworkBottomView.xib */; };
  417. BC27A06E280FF56C00F91E27 /* AccompanyEvaluateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC27A06A280FF56B00F91E27 /* AccompanyEvaluateCell.xib */; };
  418. BC27A06F280FF56C00F91E27 /* AccompanyStudentEvaCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC27A06B280FF56C00F91E27 /* AccompanyStudentEvaCell.m */; };
  419. BC27A070280FF56C00F91E27 /* AccompanyStudentEvaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC27A06C280FF56C00F91E27 /* AccompanyStudentEvaCell.xib */; };
  420. BC27A071280FF56C00F91E27 /* AccompanyEvaluateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC27A06D280FF56C00F91E27 /* AccompanyEvaluateCell.m */; };
  421. BC27A074280FF60B00F91E27 /* AccompanyDetailBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC27A073280FF60B00F91E27 /* AccompanyDetailBottomView.m */; };
  422. BC27A076280FF61300F91E27 /* AccompanyDetailBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC27A075280FF61300F91E27 /* AccompanyDetailBottomView.xib */; };
  423. BC27A079280FFA2200F91E27 /* EvaluateDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC27A078280FFA2200F91E27 /* EvaluateDetailModel.m */; };
  424. BC28582B2809036D0024697C /* StudentInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC28582A2809036D0024697C /* StudentInfoModel.m */; };
  425. BC40B9F82811767A00DEC0D1 /* HotInformationHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40B9F72811767A00DEC0D1 /* HotInformationHeadView.m */; };
  426. BC40B9FA2811768400DEC0D1 /* HotInformationHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40B9F92811768400DEC0D1 /* HotInformationHeadView.xib */; };
  427. BC40B9FE281177BD00DEC0D1 /* HomeInformationCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40B9FC281177BD00DEC0D1 /* HomeInformationCell.m */; };
  428. BC40B9FF281177BD00DEC0D1 /* HomeInformationCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40B9FD281177BD00DEC0D1 /* HomeInformationCell.xib */; };
  429. BC40BA0328117B0A00DEC0D1 /* HomeBannerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA0128117B0A00DEC0D1 /* HomeBannerCell.m */; };
  430. BC40BA0428117B0A00DEC0D1 /* HomeBannerCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40BA0228117B0A00DEC0D1 /* HomeBannerCell.xib */; };
  431. BC40BA0C28117B3B00DEC0D1 /* TYPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA0828117B3A00DEC0D1 /* TYPageControl.m */; };
  432. BC40BA0D28117B3B00DEC0D1 /* TYCyclePagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA0928117B3A00DEC0D1 /* TYCyclePagerView.m */; };
  433. BC40BA0E28117B3B00DEC0D1 /* TYCyclePagerTransformLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA0A28117B3A00DEC0D1 /* TYCyclePagerTransformLayout.m */; };
  434. BC40BA1828124D3D00DEC0D1 /* NoticeMessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA1728124D3D00DEC0D1 /* NoticeMessageViewController.m */; };
  435. BC40BA1B281251ED00DEC0D1 /* HomeMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA1A281251ED00DEC0D1 /* HomeMessageModel.m */; };
  436. BC40BA1F2812552300DEC0D1 /* KSHomeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA1C2812552200DEC0D1 /* KSHomeButton.m */; };
  437. BC40BA202812552300DEC0D1 /* KSHomeButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40BA1D2812552200DEC0D1 /* KSHomeButton.xib */; };
  438. BC40BA23281255F700DEC0D1 /* HomeCourseTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA22281255F700DEC0D1 /* HomeCourseTipsView.m */; };
  439. BC40BA252812560100DEC0D1 /* HomeCourseTipsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40BA242812560100DEC0D1 /* HomeCourseTipsView.xib */; };
  440. BC50171227FC0D5600F8BCBC /* SubjectChooseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC50171127FC0D5600F8BCBC /* SubjectChooseViewController.m */; };
  441. BC50171527FC0D8300F8BCBC /* SubjectChooseBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC50171427FC0D8300F8BCBC /* SubjectChooseBodyView.m */; };
  442. BC50171727FC0D8E00F8BCBC /* SubjectChooseBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC50171627FC0D8D00F8BCBC /* SubjectChooseBodyView.xib */; };
  443. BCB6345D27F6D29600ACFDCF /* KSLiveChatroomWelcome.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6340D27F6D29500ACFDCF /* KSLiveChatroomWelcome.m */; };
  444. BCB6345E27F6D29600ACFDCF /* KSLiveChatroomLeave.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6340E27F6D29500ACFDCF /* KSLiveChatroomLeave.m */; };
  445. BCB6345F27F6D29600ACFDCF /* KSLiveChatroomEnter.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6340F27F6D29500ACFDCF /* KSLiveChatroomEnter.m */; };
  446. BCB6346027F6D29600ACFDCF /* KSLiveChatroomKickOut.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341227F6D29500ACFDCF /* KSLiveChatroomKickOut.m */; };
  447. BCB6346127F6D29600ACFDCF /* KSChatroomMessageCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341527F6D29500ACFDCF /* KSChatroomMessageCenter.m */; };
  448. BCB6346227F6D29600ACFDCF /* KSLiveChatroomDownSeat.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341727F6D29500ACFDCF /* KSLiveChatroomDownSeat.m */; };
  449. BCB6346327F6D29600ACFDCF /* KSRCMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341A27F6D29500ACFDCF /* KSRCMessageModel.m */; };
  450. BCB6346427F6D29600ACFDCF /* KSLiveChatroomSeatApply.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341C27F6D29500ACFDCF /* KSLiveChatroomSeatApply.m */; };
  451. BCB6346527F6D29600ACFDCF /* KSLiveChatroomLike.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341D27F6D29500ACFDCF /* KSLiveChatroomLike.m */; };
  452. BCB6346627F6D29600ACFDCF /* KSLiveChatroomUserQuit.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341E27F6D29500ACFDCF /* KSLiveChatroomUserQuit.m */; };
  453. BCB6346727F6D29600ACFDCF /* KSLiveChatroomMemberCount.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6342027F6D29500ACFDCF /* KSLiveChatroomMemberCount.m */; };
  454. BCB6346827F6D29600ACFDCF /* KSLiveChatroomClose.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6342227F6D29500ACFDCF /* KSLiveChatroomClose.m */; };
  455. BCB6346927F6D29600ACFDCF /* KSLiveChatroomSeatResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6342427F6D29500ACFDCF /* KSLiveChatroomSeatResponse.m */; };
  456. BCB6346A27F6D29600ACFDCF /* LiveVideoRoomViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6342727F6D29500ACFDCF /* LiveVideoRoomViewController.m */; };
  457. BCB6346D27F6D29600ACFDCF /* KSEnterLiveroomManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343227F6D29500ACFDCF /* KSEnterLiveroomManager.m */; };
  458. BCB6346E27F6D29600ACFDCF /* KSLiveStreamVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343327F6D29500ACFDCF /* KSLiveStreamVideo.m */; };
  459. BCB6346F27F6D29600ACFDCF /* LiveroomTimeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343427F6D29500ACFDCF /* LiveroomTimeManager.m */; };
  460. BCB6347027F6D29600ACFDCF /* LiveSeatMember.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343527F6D29500ACFDCF /* LiveSeatMember.m */; };
  461. BCB6347127F6D29600ACFDCF /* KSChatEmojiBoardView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343827F6D29500ACFDCF /* KSChatEmojiBoardView.m */; };
  462. BCB6347227F6D29600ACFDCF /* KSChatInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343A27F6D29500ACFDCF /* KSChatInputView.m */; };
  463. BCB6347327F6D29600ACFDCF /* KSChatEmojiCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343D27F6D29500ACFDCF /* KSChatEmojiCollectionCell.m */; };
  464. BCB6347427F6D29600ACFDCF /* BaseEmoji.plist in Resources */ = {isa = PBXBuildFile; fileRef = BCB6343E27F6D29500ACFDCF /* BaseEmoji.plist */; };
  465. BCB6347527F6D29600ACFDCF /* KSChatInputBarControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6344027F6D29500ACFDCF /* KSChatInputBarControl.m */; };
  466. BCB6347727F6D29600ACFDCF /* LiveRoomLikeLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6344427F6D29500ACFDCF /* LiveRoomLikeLayer.m */; };
  467. BCB6348027F6D29600ACFDCF /* LiveSeatApplyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6345327F6D29600ACFDCF /* LiveSeatApplyView.m */; };
  468. BCB6348127F6D29600ACFDCF /* LiveSeatApplyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCB6345427F6D29600ACFDCF /* LiveSeatApplyCell.xib */; };
  469. BCB6348227F6D29600ACFDCF /* SeatContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6345627F6D29600ACFDCF /* SeatContentView.m */; };
  470. BCB6348327F6D29600ACFDCF /* LiveSeatApplyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCB6345827F6D29600ACFDCF /* LiveSeatApplyView.xib */; };
  471. BCB6348427F6D29600ACFDCF /* KSChatroomTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6345927F6D29600ACFDCF /* KSChatroomTextCell.m */; };
  472. BCB6348627F6D29600ACFDCF /* LiveSeatApplyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6345C27F6D29600ACFDCF /* LiveSeatApplyCell.m */; };
  473. BCB6353027F6D2A300ACFDCF /* SealClass.strings in Resources */ = {isa = PBXBuildFile; fileRef = BCB6348927F6D2A200ACFDCF /* SealClass.strings */; };
  474. BCB6353127F6D2A300ACFDCF /* ZoomControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6348F27F6D2A200ACFDCF /* ZoomControl.m */; };
  475. BCB6353227F6D2A300ACFDCF /* InputView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6349427F6D2A200ACFDCF /* InputView.m */; };
  476. BCB6353327F6D2A300ACFDCF /* CREmojiCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6349827F6D2A200ACFDCF /* CREmojiCollectionCell.m */; };
  477. BCB6353427F6D2A300ACFDCF /* InputBarControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6349A27F6D2A200ACFDCF /* InputBarControl.m */; };
  478. BCB6353527F6D2A300ACFDCF /* EmojiBoardView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6349B27F6D2A200ACFDCF /* EmojiBoardView.m */; };
  479. BCB6353627F6D2A300ACFDCF /* TimeStampCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A027F6D2A200ACFDCF /* TimeStampCell.m */; };
  480. BCB6353727F6D2A300ACFDCF /* TextMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A427F6D2A200ACFDCF /* TextMessageCell.m */; };
  481. BCB6353827F6D2A300ACFDCF /* TipMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A627F6D2A200ACFDCF /* TipMessageCell.m */; };
  482. BCB6353927F6D2A300ACFDCF /* MessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A727F6D2A200ACFDCF /* MessageCell.m */; };
  483. BCB6353A27F6D2A300ACFDCF /* MessageBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A827F6D2A200ACFDCF /* MessageBaseCell.m */; };
  484. BCB6353B27F6D2A300ACFDCF /* MessageDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A927F6D2A200ACFDCF /* MessageDataSource.m */; };
  485. BCB6353C27F6D2A300ACFDCF /* MessageHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634AA27F6D2A200ACFDCF /* MessageHelper.m */; };
  486. BCB6353D27F6D2A300ACFDCF /* MessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634AB27F6D2A200ACFDCF /* MessageModel.m */; };
  487. BCB6353E27F6D2A300ACFDCF /* TimeStampMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634AD27F6D2A200ACFDCF /* TimeStampMessage.m */; };
  488. BCB6353F27F6D2A300ACFDCF /* ChatAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634B227F6D2A300ACFDCF /* ChatAreaView.m */; };
  489. BCB6354027F6D2A300ACFDCF /* ClassroomTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634B427F6D2A300ACFDCF /* ClassroomTitleView.m */; };
  490. BCB6354127F6D2A300ACFDCF /* VideoListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634B727F6D2A300ACFDCF /* VideoListCell.m */; };
  491. BCB6354227F6D2A300ACFDCF /* VideoListView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634B827F6D2A300ACFDCF /* VideoListView.m */; };
  492. BCB6354327F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634BC27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m */; };
  493. BCB6354427F6D2A300ACFDCF /* RecentSharedView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634BD27F6D2A300ACFDCF /* RecentSharedView.m */; };
  494. BCB6354527F6D2A300ACFDCF /* RecentSharedVideoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634BE27F6D2A300ACFDCF /* RecentSharedVideoCell.m */; };
  495. BCB6354627F6D2A300ACFDCF /* UpgradeDidApplyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634C327F6D2A300ACFDCF /* UpgradeDidApplyView.m */; };
  496. BCB6354727F6D2A300ACFDCF /* PersonListView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634C627F6D2A300ACFDCF /* PersonListView.m */; };
  497. BCB6354827F6D2A300ACFDCF /* PersonListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634C727F6D2A300ACFDCF /* PersonListCell.m */; };
  498. BCB6354927F6D2A300ACFDCF /* PersonListSectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634CB27F6D2A300ACFDCF /* PersonListSectionView.m */; };
  499. BCB6354A27F6D2A300ACFDCF /* ToolPanelView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634CD27F6D2A300ACFDCF /* ToolPanelView.m */; };
  500. BCB6354B27F6D2A300ACFDCF /* MainContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634D027F6D2A300ACFDCF /* MainContainerView.m */; };
  501. BCB6354C27F6D2A300ACFDCF /* VideoMaskView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634D227F6D2A300ACFDCF /* VideoMaskView.m */; };
  502. BCB6354D27F6D2A300ACFDCF /* EmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634D427F6D2A300ACFDCF /* EmptyView.m */; };
  503. BCB6354E27F6D2A300ACFDCF /* KSWhiteboardView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634D827F6D2A300ACFDCF /* KSWhiteboardView.m */; };
  504. BCB6354F27F6D2A300ACFDCF /* KSWhiteboardControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634DB27F6D2A300ACFDCF /* KSWhiteboardControl.m */; };
  505. BCB6355027F6D2A300ACFDCF /* WhiteUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634DC27F6D2A300ACFDCF /* WhiteUtils.m */; };
  506. BCB6355127F6D2A300ACFDCF /* LoginHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634DE27F6D2A300ACFDCF /* LoginHelper.m */; };
  507. BCB6355227F6D2A300ACFDCF /* SelectionButton.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634E027F6D2A300ACFDCF /* SelectionButton.m */; };
  508. BCB6355327F6D2A300ACFDCF /* InputTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634E327F6D2A300ACFDCF /* InputTextField.m */; };
  509. BCB6355427F6D2A300ACFDCF /* UIView+MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634EA27F6D2A300ACFDCF /* UIView+MBProgressHUD.m */; };
  510. BCB6355527F6D2A300ACFDCF /* RolePortraitView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634EC27F6D2A300ACFDCF /* RolePortraitView.m */; };
  511. BCB6355627F6D2A300ACFDCF /* HTTPUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634F027F6D2A300ACFDCF /* HTTPUtility.m */; };
  512. BCB6355727F6D2A300ACFDCF /* HTTPResult.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634F127F6D2A300ACFDCF /* HTTPResult.m */; };
  513. BCB6355827F6D2A300ACFDCF /* NormalAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634F627F6D2A300ACFDCF /* NormalAlertView.m */; };
  514. BCB6355927F6D2A300ACFDCF /* class_stop.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = BCB634F727F6D2A300ACFDCF /* class_stop.mp3 */; };
  515. BCB6355A27F6D2A300ACFDCF /* KSRemoteUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634F827F6D2A300ACFDCF /* KSRemoteUserManager.m */; };
  516. BCB6355B27F6D2A300ACFDCF /* ApplySpeechMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350027F6D2A300ACFDCF /* ApplySpeechMessage.m */; };
  517. BCB6355C27F6D2A300ACFDCF /* DisplayCommandMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350227F6D2A300ACFDCF /* DisplayCommandMessage.m */; };
  518. BCB6355D27F6D2A300ACFDCF /* SongDownloadMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350427F6D2A300ACFDCF /* SongDownloadMessage.m */; };
  519. BCB6355E27F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350627F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m */; };
  520. BCB6355F27F6D2A300ACFDCF /* TicketExpiredMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350827F6D2A300ACFDCF /* TicketExpiredMessage.m */; };
  521. BCB6356027F6D2A300ACFDCF /* WhiteboardMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350C27F6D2A300ACFDCF /* WhiteboardMessage.m */; };
  522. BCB6356127F6D2A300ACFDCF /* SongDownloadCallbackMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350D27F6D2A300ACFDCF /* SongDownloadCallbackMessage.m */; };
  523. BCB6356227F6D2A300ACFDCF /* AssistantTransferMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350E27F6D2A300ACFDCF /* AssistantTransferMessage.m */; };
  524. BCB6356327F6D2A300ACFDCF /* RoleChangedMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350F27F6D2A300ACFDCF /* RoleChangedMessage.m */; };
  525. BCB6356427F6D2A300ACFDCF /* InviteUpgradeMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351027F6D2A300ACFDCF /* InviteUpgradeMessage.m */; };
  526. BCB6356527F6D2A300ACFDCF /* AccompanyDownloadMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351127F6D2A300ACFDCF /* AccompanyDownloadMessage.m */; };
  527. BCB6356627F6D2A300ACFDCF /* DeviceMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351327F6D2A300ACFDCF /* DeviceMessage.m */; };
  528. BCB6356727F6D2A300ACFDCF /* MemberChangeMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351527F6D2A300ACFDCF /* MemberChangeMessage.m */; };
  529. BCB6356827F6D2A300ACFDCF /* ApplySpeechResultMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351727F6D2A300ACFDCF /* ApplySpeechResultMessage.m */; };
  530. BCB6356927F6D2A300ACFDCF /* TurnPageMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351B27F6D2A300ACFDCF /* TurnPageMessage.m */; };
  531. BCB6356A27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351C27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m */; };
  532. BCB6356B27F6D2A300ACFDCF /* NodePlayMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351D27F6D2A300ACFDCF /* NodePlayMessage.m */; };
  533. BCB6356C27F6D2A300ACFDCF /* Whiteboard.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352027F6D2A300ACFDCF /* Whiteboard.m */; };
  534. BCB6356D27F6D2A300ACFDCF /* RoomMember.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352127F6D2A300ACFDCF /* RoomMember.m */; };
  535. BCB6356E27F6D2A300ACFDCF /* ClassSongMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352227F6D2A300ACFDCF /* ClassSongMessage.m */; };
  536. BCB6356F27F6D2A300ACFDCF /* Classroom.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352327F6D2A300ACFDCF /* Classroom.m */; };
  537. BCB6357027F6D2A300ACFDCF /* ClassroomService.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352927F6D2A300ACFDCF /* ClassroomService.m */; };
  538. BCB6357127F6D2A300ACFDCF /* RTCService.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352B27F6D2A300ACFDCF /* RTCService.m */; };
  539. BCB6357227F6D2A300ACFDCF /* KSIMService.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352F27F6D2A300ACFDCF /* KSIMService.m */; };
  540. BCB6359427F6D2AB00ACFDCF /* NewClassRoomViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6357627F6D2AB00ACFDCF /* NewClassRoomViewController.m */; };
  541. BCB6359527F6D2AB00ACFDCF /* OnlineClassManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6357927F6D2AB00ACFDCF /* OnlineClassManager.m */; };
  542. BCB6359627F6D2AB00ACFDCF /* LocalRenderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6357B27F6D2AB00ACFDCF /* LocalRenderManager.m */; };
  543. BCB6359727F6D2AB00ACFDCF /* ClassroomTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6357D27F6D2AB00ACFDCF /* ClassroomTimerManager.m */; };
  544. BCB6359827F6D2AB00ACFDCF /* KSTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358027F6D2AB00ACFDCF /* KSTipsView.m */; };
  545. BCB6359927F6D2AB00ACFDCF /* tick.wav in Resources */ = {isa = PBXBuildFile; fileRef = BCB6358227F6D2AB00ACFDCF /* tick.wav */; };
  546. BCB6359A27F6D2AB00ACFDCF /* ClassVideoListView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358727F6D2AB00ACFDCF /* ClassVideoListView.m */; };
  547. BCB6359B27F6D2AB00ACFDCF /* KSBeatView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358827F6D2AB00ACFDCF /* KSBeatView.m */; };
  548. BCB6359C27F6D2AB00ACFDCF /* ClassVideoListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358927F6D2AB00ACFDCF /* ClassVideoListCell.m */; };
  549. BCB6359D27F6D2AB00ACFDCF /* tock.wav in Resources */ = {isa = PBXBuildFile; fileRef = BCB6358A27F6D2AB00ACFDCF /* tock.wav */; };
  550. BCB6359E27F6D2AB00ACFDCF /* ClassroomMainContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358D27F6D2AB00ACFDCF /* ClassroomMainContainer.m */; };
  551. BCB6359F27F6D2AB00ACFDCF /* ClassTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6359027F6D2AB00ACFDCF /* ClassTitleView.m */; };
  552. BCB635A027F6D2AB00ACFDCF /* MainToolView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6359227F6D2AB00ACFDCF /* MainToolView.m */; };
  553. BCB635A327F6D3FE00ACFDCF /* KSNormalAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635A227F6D3FE00ACFDCF /* KSNormalAlertView.m */; };
  554. BCB635A627F6D90600ACFDCF /* KSLiveEmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635A427F6D90600ACFDCF /* KSLiveEmptyView.m */; };
  555. BCB635A927F6D93300ACFDCF /* KSChatVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635A727F6D93300ACFDCF /* KSChatVideoView.m */; };
  556. BCB635AD27F6E06500ACFDCF /* LiveRoomHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635AB27F6E06500ACFDCF /* LiveRoomHeadView.m */; };
  557. BCB635AE27F6E06500ACFDCF /* LiveRoomHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCB635AC27F6E06500ACFDCF /* LiveRoomHeadView.xib */; };
  558. BCB635B227F6E1A600ACFDCF /* LiveRoomBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635B027F6E1A600ACFDCF /* LiveRoomBottomView.m */; };
  559. BCB635B327F6E1A600ACFDCF /* LiveRoomBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCB635B127F6E1A600ACFDCF /* LiveRoomBottomView.xib */; };
  560. BCBFDF3728110C660052AFE5 /* HomeNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF3628110C660052AFE5 /* HomeNavView.m */; };
  561. BCBFDF3928110C6F0052AFE5 /* HomeNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF3828110C6F0052AFE5 /* HomeNavView.xib */; };
  562. BCBFDF3C281156430052AFE5 /* HomeBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF3B281156430052AFE5 /* HomeBannerView.m */; };
  563. BCBFDF3E2811564C0052AFE5 /* HomeBannerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF3D2811564C0052AFE5 /* HomeBannerView.xib */; };
  564. BCBFDF41281157340052AFE5 /* HomeButtonView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF40281157340052AFE5 /* HomeButtonView.m */; };
  565. BCBFDF432811573D0052AFE5 /* HomeButtonView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF422811573D0052AFE5 /* HomeButtonView.xib */; };
  566. BCBFDF46281159990052AFE5 /* HomeHotAlbumView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF45281159990052AFE5 /* HomeHotAlbumView.m */; };
  567. BCBFDF48281159A40052AFE5 /* HomeHotAlbumView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF47281159A40052AFE5 /* HomeHotAlbumView.xib */; };
  568. BCBFDF4B28115C6F0052AFE5 /* HomeHotCourseView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF4A28115C6F0052AFE5 /* HomeHotCourseView.m */; };
  569. BCBFDF4D28115C7A0052AFE5 /* HomeHotCourseView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF4C28115C7A0052AFE5 /* HomeHotCourseView.xib */; };
  570. BCBFDF5028115D9A0052AFE5 /* HomeIntroduceView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF4F28115D9A0052AFE5 /* HomeIntroduceView.m */; };
  571. BCBFDF5228115DA40052AFE5 /* HomeIntroduceView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF5128115DA40052AFE5 /* HomeIntroduceView.xib */; };
  572. BCFE53E72812765600AD6786 /* HomeHotAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53E52812765600AD6786 /* HomeHotAlbumCell.m */; };
  573. BCFE53E82812765600AD6786 /* HomeHotAlbumCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCFE53E62812765600AD6786 /* HomeHotAlbumCell.xib */; };
  574. BCFE53EC2812897600AD6786 /* HomeLiveCouseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53EA2812897600AD6786 /* HomeLiveCouseCell.m */; };
  575. BCFE53ED2812897600AD6786 /* HomeLiveCouseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCFE53EB2812897600AD6786 /* HomeLiveCouseCell.xib */; };
  576. BCFE53F12812898700AD6786 /* HomeVideoCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53EF2812898700AD6786 /* HomeVideoCourseCell.m */; };
  577. BCFE53F22812898700AD6786 /* HomeVideoCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCFE53F02812898700AD6786 /* HomeVideoCourseCell.xib */; };
  578. BCFE53F628128A9600AD6786 /* TeacherShowCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53F428128A9600AD6786 /* TeacherShowCell.m */; };
  579. BCFE53F728128A9600AD6786 /* TeacherShowCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCFE53F528128A9600AD6786 /* TeacherShowCell.xib */; };
  580. BCFE53FA28129A5600AD6786 /* TeacherStyleModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53F828129A5500AD6786 /* TeacherStyleModel.m */; };
  581. BCFE53FF2814E1BE00AD6786 /* HomeLiveGroupModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53FD2814E1BE00AD6786 /* HomeLiveGroupModel.m */; };
  582. BCFE54002814E1BE00AD6786 /* HomeVideoGroupModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53FE2814E1BE00AD6786 /* HomeVideoGroupModel.m */; };
  583. C56C141D9D9D478077F14C1E /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */; };
  584. /* End PBXBuildFile section */
  585. /* Begin PBXContainerItemProxy section */
  586. 275E8AC127E18F8C00DD3F6E /* PBXContainerItemProxy */ = {
  587. isa = PBXContainerItemProxy;
  588. containerPortal = 275E8A9D27E18F8800DD3F6E /* Project object */;
  589. proxyType = 1;
  590. remoteGlobalIDString = 275E8AA427E18F8800DD3F6E;
  591. remoteInfo = KulexiuForStudent;
  592. };
  593. 275E8ACB27E18F8C00DD3F6E /* PBXContainerItemProxy */ = {
  594. isa = PBXContainerItemProxy;
  595. containerPortal = 275E8A9D27E18F8800DD3F6E /* Project object */;
  596. proxyType = 1;
  597. remoteGlobalIDString = 275E8AA427E18F8800DD3F6E;
  598. remoteInfo = KulexiuForStudent;
  599. };
  600. /* End PBXContainerItemProxy section */
  601. /* Begin PBXFileReference section */
  602. 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig"; sourceTree = "<group>"; };
  603. 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudent.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  604. 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudentTests.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudentTests/Pods-KulexiuForStudentTests.debug.xcconfig"; sourceTree = "<group>"; };
  605. 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent.release.xcconfig"; sourceTree = "<group>"; };
  606. 2723B59A27F1577E00E0B90B /* CreateFansGroupViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CreateFansGroupViewController.h; sourceTree = "<group>"; };
  607. 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CreateFansGroupViewController.m; sourceTree = "<group>"; };
  608. 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatListViewController.m; sourceTree = "<group>"; };
  609. 2723B59D27F1577F00E0B90B /* ChatAddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressViewController.h; sourceTree = "<group>"; };
  610. 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatConversationViewController.m; sourceTree = "<group>"; };
  611. 2723B59F27F1578100E0B90B /* KSChatListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatListViewController.h; sourceTree = "<group>"; };
  612. 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressViewController.m; sourceTree = "<group>"; };
  613. 2723B5A127F1578200E0B90B /* KSChatConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatConversationViewController.h; sourceTree = "<group>"; };
  614. 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatAddressHeaderView.xib; sourceTree = "<group>"; };
  615. 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressBodyView.m; sourceTree = "<group>"; };
  616. 2723B5A827F157A300E0B90B /* GroupCreateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupCreateView.m; sourceTree = "<group>"; };
  617. 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatListSearchView.m; sourceTree = "<group>"; };
  618. 2723B5AA27F157A500E0B90B /* ChatNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatNavView.m; sourceTree = "<group>"; };
  619. 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupCreateView.xib; sourceTree = "<group>"; };
  620. 2723B5AC27F157A600E0B90B /* KSChatListSearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatListSearchView.h; sourceTree = "<group>"; };
  621. 2723B5AD27F157A700E0B90B /* ContractListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContractListCell.h; sourceTree = "<group>"; };
  622. 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressHeaderView.m; sourceTree = "<group>"; };
  623. 2723B5AF27F157AA00E0B90B /* ContractListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContractListCell.m; sourceTree = "<group>"; };
  624. 2723B5B027F157AB00E0B90B /* ChatAddressBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressBodyView.h; sourceTree = "<group>"; };
  625. 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupListViewCell.xib; sourceTree = "<group>"; };
  626. 2723B5B227F157AD00E0B90B /* ChatNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatNavView.xib; sourceTree = "<group>"; };
  627. 2723B5B327F157AE00E0B90B /* GroupListViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListViewCell.h; sourceTree = "<group>"; };
  628. 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSChatListSearchView.xib; sourceTree = "<group>"; };
  629. 2723B5B527F157AF00E0B90B /* ChatNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatNavView.h; sourceTree = "<group>"; };
  630. 2723B5B627F157AF00E0B90B /* ChatAddressHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressHeaderView.h; sourceTree = "<group>"; };
  631. 2723B5B727F157B000E0B90B /* ContractListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ContractListCell.xib; sourceTree = "<group>"; };
  632. 2723B5B827F157B000E0B90B /* GroupCreateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupCreateView.h; sourceTree = "<group>"; };
  633. 2723B5B927F157B100E0B90B /* GroupListViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListViewCell.m; sourceTree = "<group>"; };
  634. 2723B5C727F157B800E0B90B /* KSRCloudMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCloudMediaManager.h; sourceTree = "<group>"; };
  635. 2723B5C827F157B900E0B90B /* GroupListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListModel.m; sourceTree = "<group>"; };
  636. 2723B5C927F157BA00E0B90B /* GroupListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListModel.h; sourceTree = "<group>"; };
  637. 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCloudMediaManager.m; sourceTree = "<group>"; };
  638. 2723B5CB27F157BD00E0B90B /* GroupMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberModel.h; sourceTree = "<group>"; };
  639. 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberModel.m; sourceTree = "<group>"; };
  640. 2723B5D227F157D300E0B90B /* KSSearchHistoryMessageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchHistoryMessageController.h; sourceTree = "<group>"; };
  641. 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchHistoryMessageController.m; sourceTree = "<group>"; };
  642. 2723B5D527F157D300E0B90B /* KSSearchResultModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchResultModel.h; sourceTree = "<group>"; };
  643. 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchResultModel.m; sourceTree = "<group>"; };
  644. 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchResultViewCell.m; sourceTree = "<group>"; };
  645. 2723B5D927F157D300E0B90B /* KSRCSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCSearchBar.h; sourceTree = "<group>"; };
  646. 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchRCLabel.m; sourceTree = "<group>"; };
  647. 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCSearchBar.m; sourceTree = "<group>"; };
  648. 2723B5DC27F157D300E0B90B /* KSSearchResultViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchResultViewCell.h; sourceTree = "<group>"; };
  649. 2723B5DD27F157D300E0B90B /* KSSearchRCLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchRCLabel.h; sourceTree = "<group>"; };
  650. 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeViewController.m; sourceTree = "<group>"; };
  651. 2723B5E127F157D400E0B90B /* GroupNoticeEditController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeEditController.h; sourceTree = "<group>"; };
  652. 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeEditController.m; sourceTree = "<group>"; };
  653. 2723B5E327F157D400E0B90B /* GroupNoticeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeViewController.h; sourceTree = "<group>"; };
  654. 2723B5E527F157D400E0B90B /* GroupNoticeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeModel.h; sourceTree = "<group>"; };
  655. 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeModel.m; sourceTree = "<group>"; };
  656. 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeCell.m; sourceTree = "<group>"; };
  657. 2723B5E927F157D400E0B90B /* NoticeEditBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeEditBodyView.h; sourceTree = "<group>"; };
  658. 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoticeEditBodyView.xib; sourceTree = "<group>"; };
  659. 2723B5EC27F157D400E0B90B /* LFPopupMenuDefaultConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFPopupMenuDefaultConfig.h; sourceTree = "<group>"; };
  660. 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFPopupMenu.m; sourceTree = "<group>"; };
  661. 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFPopupMenuDefaultConfig.m; sourceTree = "<group>"; };
  662. 2723B5EF27F157D400E0B90B /* LFPopupMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFPopupMenu.h; sourceTree = "<group>"; };
  663. 2723B5F027F157D400E0B90B /* GroupNoticeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeCell.h; sourceTree = "<group>"; };
  664. 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeEditBodyView.m; sourceTree = "<group>"; };
  665. 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupNoticeCell.xib; sourceTree = "<group>"; };
  666. 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyViewController.m; sourceTree = "<group>"; };
  667. 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberViewController.m; sourceTree = "<group>"; };
  668. 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSelectConversationViewController.m; sourceTree = "<group>"; };
  669. 2723B5F827F157D500E0B90B /* GroupSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSettingViewController.h; sourceTree = "<group>"; };
  670. 2723B5F927F157D500E0B90B /* KSChatComplainController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatComplainController.m; sourceTree = "<group>"; };
  671. 2723B5FA27F157D500E0B90B /* GroupMemberViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberViewController.h; sourceTree = "<group>"; };
  672. 2723B5FB27F157D500E0B90B /* GroupApplyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyViewController.h; sourceTree = "<group>"; };
  673. 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSettingViewController.m; sourceTree = "<group>"; };
  674. 2723B5FD27F157D500E0B90B /* KSSelectConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSelectConversationViewController.h; sourceTree = "<group>"; };
  675. 2723B5FE27F157D500E0B90B /* KSChatComplainController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatComplainController.h; sourceTree = "<group>"; };
  676. 2723B60027F157D500E0B90B /* ApplyMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplyMemberModel.m; sourceTree = "<group>"; };
  677. 2723B60127F157D500E0B90B /* ApplyMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyMemberModel.h; sourceTree = "<group>"; };
  678. 2723B60327F157D500E0B90B /* ChatComplainBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatComplainBodyView.h; sourceTree = "<group>"; };
  679. 2723B60427F157D500E0B90B /* ApplyBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplyBottomView.m; sourceTree = "<group>"; };
  680. 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyMemberCell.xib; sourceTree = "<group>"; };
  681. 2723B60627F157D500E0B90B /* GroupMemberListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberListCell.h; sourceTree = "<group>"; };
  682. 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyChooseAllCell.xib; sourceTree = "<group>"; };
  683. 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatComplainBodyView.xib; sourceTree = "<group>"; };
  684. 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyChooseAllCell.m; sourceTree = "<group>"; };
  685. 2723B60A27F157D500E0B90B /* GroupApplyMemberCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyMemberCell.h; sourceTree = "<group>"; };
  686. 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSettingBodyView.m; sourceTree = "<group>"; };
  687. 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupSettingBodyView.xib; sourceTree = "<group>"; };
  688. 2723B60D27F157D500E0B90B /* GroupApplyChooseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyChooseCell.h; sourceTree = "<group>"; };
  689. 2723B60E27F157D500E0B90B /* ApplyBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyBottomView.h; sourceTree = "<group>"; };
  690. 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatComplainBodyView.m; sourceTree = "<group>"; };
  691. 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyMemberCell.m; sourceTree = "<group>"; };
  692. 2723B61127F157D500E0B90B /* GroupApplyChooseAllCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyChooseAllCell.h; sourceTree = "<group>"; };
  693. 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyChooseCell.xib; sourceTree = "<group>"; };
  694. 2723B61327F157D500E0B90B /* GroupMemberListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberListCell.m; sourceTree = "<group>"; };
  695. 2723B61427F157D500E0B90B /* ApplyBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApplyBottomView.xib; sourceTree = "<group>"; };
  696. 2723B61527F157D500E0B90B /* GroupSettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSettingBodyView.h; sourceTree = "<group>"; };
  697. 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyChooseCell.m; sourceTree = "<group>"; };
  698. 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupMemberListCell.xib; sourceTree = "<group>"; };
  699. 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseTableViewController.m; sourceTree = "<group>"; };
  700. 2723B63B27F159BA00E0B90B /* KSBaseTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseTableViewController.h; sourceTree = "<group>"; };
  701. 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexViewConfiguration.m; sourceTree = "<group>"; };
  702. 2723B63F27F15B5800E0B90B /* UITableView+SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SCIndexView.h"; sourceTree = "<group>"; };
  703. 2723B64027F15B5800E0B90B /* SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexView.m; sourceTree = "<group>"; };
  704. 2723B64127F15B5800E0B90B /* SCIndexViewConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexViewConfiguration.h; sourceTree = "<group>"; };
  705. 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SCIndexView.m"; sourceTree = "<group>"; };
  706. 2723B64327F15B5800E0B90B /* SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexView.h; sourceTree = "<group>"; };
  707. 2723B64727F15BDB00E0B90B /* KSJXBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSJXBodyView.h; sourceTree = "<group>"; };
  708. 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSJXBodyView.m; sourceTree = "<group>"; };
  709. 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = SettingBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.xib; sourceTree = SOURCE_ROOT; };
  710. 2723B64B27F15CF800E0B90B /* ModifyNameBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModifyNameBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.h; sourceTree = SOURCE_ROOT; };
  711. 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = FeedbackBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.xib; sourceTree = SOURCE_ROOT; };
  712. 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = ModifyNameBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.xib; sourceTree = SOURCE_ROOT; };
  713. 2723B64E27F15CF800E0B90B /* VeriCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VeriCheckView.m; path = KulexiuForStudent/Module/Mine/Setting/View/VeriCheckView.m; sourceTree = SOURCE_ROOT; };
  714. 2723B64F27F15CF900E0B90B /* ModifyBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModifyBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.h; sourceTree = SOURCE_ROOT; };
  715. 2723B65027F15CF900E0B90B /* AboutUsBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutUsBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.h; sourceTree = SOURCE_ROOT; };
  716. 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = ModifyBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.xib; sourceTree = SOURCE_ROOT; };
  717. 2723B65227F15CF900E0B90B /* FeedbackBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FeedbackBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.h; sourceTree = SOURCE_ROOT; };
  718. 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutUsBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.m; sourceTree = SOURCE_ROOT; };
  719. 2723B65427F15CF900E0B90B /* ModifyBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModifyBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.m; sourceTree = SOURCE_ROOT; };
  720. 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FeedbackBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.m; sourceTree = SOURCE_ROOT; };
  721. 2723B65627F15CFA00E0B90B /* PhoneChangeBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhoneChangeBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.h; sourceTree = SOURCE_ROOT; };
  722. 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhoneChangeBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.m; sourceTree = SOURCE_ROOT; };
  723. 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = PhoneChangeBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.xib; sourceTree = SOURCE_ROOT; };
  724. 2723B65927F15CFA00E0B90B /* PhoneCheckBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhoneCheckBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.h; sourceTree = SOURCE_ROOT; };
  725. 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhoneCheckBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.m; sourceTree = SOURCE_ROOT; };
  726. 2723B65B27F15CFA00E0B90B /* SettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.h; sourceTree = SOURCE_ROOT; };
  727. 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.m; sourceTree = SOURCE_ROOT; };
  728. 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModifyNameBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.m; sourceTree = SOURCE_ROOT; };
  729. 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = PhoneCheckBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.xib; sourceTree = SOURCE_ROOT; };
  730. 2723B65F27F15CFB00E0B90B /* VeriCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VeriCheckView.h; path = KulexiuForStudent/Module/Mine/Setting/View/VeriCheckView.h; sourceTree = SOURCE_ROOT; };
  731. 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = AboutUsBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.xib; sourceTree = SOURCE_ROOT; };
  732. 2723B67027F15D3200E0B90B /* ModifyPhoneCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneCheckController.h; sourceTree = "<group>"; };
  733. 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneCheckController.m; sourceTree = "<group>"; };
  734. 2723B67227F15D3300E0B90B /* AboutUsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutUsViewController.m; sourceTree = "<group>"; };
  735. 2723B67327F15D3400E0B90B /* FeedbackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
  736. 2723B67427F15D3600E0B90B /* AboutUsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutUsViewController.h; sourceTree = "<group>"; };
  737. 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyNameViewController.m; sourceTree = "<group>"; };
  738. 2723B67627F15D3800E0B90B /* FeedbackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
  739. 2723B67727F15D3900E0B90B /* AddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressViewController.h; sourceTree = "<group>"; };
  740. 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneChangeController.m; sourceTree = "<group>"; };
  741. 2723B67927F15D3B00E0B90B /* ModifyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyViewController.m; sourceTree = "<group>"; };
  742. 2723B67A27F15D3B00E0B90B /* ModifyNameViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyNameViewController.h; sourceTree = "<group>"; };
  743. 2723B67B27F15D3C00E0B90B /* AddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressViewController.m; sourceTree = "<group>"; };
  744. 2723B67C27F15D3D00E0B90B /* ModifyPhoneChangeController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneChangeController.h; sourceTree = "<group>"; };
  745. 2723B67D27F15D3D00E0B90B /* ModifyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyViewController.h; sourceTree = "<group>"; };
  746. 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KulexiuForStudent.app; sourceTree = BUILT_PRODUCTS_DIR; };
  747. 275E8AA827E18F8800DD3F6E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  748. 275E8AA927E18F8800DD3F6E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  749. 275E8AAE27E18F8800DD3F6E /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
  750. 275E8AAF27E18F8800DD3F6E /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
  751. 275E8AB227E18F8800DD3F6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  752. 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  753. 275E8AB727E18F8B00DD3F6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  754. 275E8AB927E18F8B00DD3F6E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  755. 275E8ABA27E18F8B00DD3F6E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  756. 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KulexiuForStudentTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  757. 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentTests.m; sourceTree = "<group>"; };
  758. 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KulexiuForStudentUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  759. 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentUITests.m; sourceTree = "<group>"; };
  760. 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentUITestsLaunchTests.m; sourceTree = "<group>"; };
  761. 275FA1AA27E734C500CFEA2E /* KSImageAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageAlert.h; sourceTree = "<group>"; };
  762. 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSImageAlert.xib; sourceTree = "<group>"; };
  763. 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageAlert.m; sourceTree = "<group>"; };
  764. 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkingManager.m; sourceTree = "<group>"; };
  765. 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+KSNavigationBar.m"; sourceTree = "<group>"; };
  766. 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAQRecordManager.m; sourceTree = "<group>"; };
  767. 275FA1B227E7351400CFEA2E /* KSUpdateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateManager.h; sourceTree = "<group>"; };
  768. 275FA1B327E7351400CFEA2E /* KSBaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseModel.h; sourceTree = "<group>"; };
  769. 275FA1B427E7351400CFEA2E /* UINavigationController+KSNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+KSNavigationBar.h"; sourceTree = "<group>"; };
  770. 275FA1B527E7351400CFEA2E /* KSRCIMDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCIMDataSource.h; sourceTree = "<group>"; };
  771. 275FA1B627E7351500CFEA2E /* KSAQRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAQRecordManager.h; sourceTree = "<group>"; };
  772. 275FA1B727E7351500CFEA2E /* KSBaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseModel.m; sourceTree = "<group>"; };
  773. 275FA1B827E7351500CFEA2E /* KSWebNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebNavView.h; sourceTree = "<group>"; };
  774. 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLocalWebViewController.m; sourceTree = "<group>"; };
  775. 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCConnectionManager.m; sourceTree = "<group>"; };
  776. 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordCheckManager.m; sourceTree = "<group>"; };
  777. 275FA1BC27E7351500CFEA2E /* CustomNavViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNavViewController.h; sourceTree = "<group>"; };
  778. 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTabBarViewController.m; sourceTree = "<group>"; };
  779. 275FA1BE27E7351600CFEA2E /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
  780. 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebBackButton.m; sourceTree = "<group>"; };
  781. 275FA1C027E7351600CFEA2E /* KSLocalWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLocalWebViewController.h; sourceTree = "<group>"; };
  782. 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WeakWebViewScriptMessageDelegate.m; sourceTree = "<group>"; };
  783. 275FA1C227E7351600CFEA2E /* KSWebNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebNavView.m; sourceTree = "<group>"; };
  784. 275FA1C327E7351600CFEA2E /* KSAccompanyWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAccompanyWebViewController.h; sourceTree = "<group>"; };
  785. 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAccompanyWebViewController.m; sourceTree = "<group>"; };
  786. 275FA1C527E7351600CFEA2E /* KSBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseViewController.h; sourceTree = "<group>"; };
  787. 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateAlert.m; sourceTree = "<group>"; };
  788. 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebSocketManager.m; sourceTree = "<group>"; };
  789. 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNavViewController.m; sourceTree = "<group>"; };
  790. 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetTypeManager.m; sourceTree = "<group>"; };
  791. 275FA1CA27E7351700CFEA2E /* KSNetTypeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetTypeManager.h; sourceTree = "<group>"; };
  792. 275FA1CB27E7351700CFEA2E /* KSUpdateAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateAlert.h; sourceTree = "<group>"; };
  793. 275FA1CC27E7351700CFEA2E /* WeakWebViewScriptMessageDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeakWebViewScriptMessageDelegate.h; sourceTree = "<group>"; };
  794. 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCIMDataSource.m; sourceTree = "<group>"; };
  795. 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseWKWebViewController.m; sourceTree = "<group>"; };
  796. 275FA1CF27E7351800CFEA2E /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
  797. 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateManager.m; sourceTree = "<group>"; };
  798. 275FA1D127E7351800CFEA2E /* KSWebBackButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebBackButton.h; sourceTree = "<group>"; };
  799. 275FA1D227E7351800CFEA2E /* KSWebSocketManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebSocketManager.h; sourceTree = "<group>"; };
  800. 275FA1D327E7351800CFEA2E /* RCConnectionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCConnectionManager.h; sourceTree = "<group>"; };
  801. 275FA1D427E7351800CFEA2E /* KSNetworkingManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkingManager.h; sourceTree = "<group>"; };
  802. 275FA1D527E7351800CFEA2E /* KSBaseWKWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseWKWebViewController.h; sourceTree = "<group>"; };
  803. 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseViewController.m; sourceTree = "<group>"; };
  804. 275FA1D727E7351900CFEA2E /* KSTabBarViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTabBarViewController.h; sourceTree = "<group>"; };
  805. 275FA1D827E7351900CFEA2E /* RecordCheckManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordCheckManager.h; sourceTree = "<group>"; };
  806. 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSUpdateAlert.xib; sourceTree = "<group>"; };
  807. 275FA1F327E7356A00CFEA2E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
  808. 275FA1F427E7356A00CFEA2E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
  809. 275FA1F927E7356A00CFEA2E /* CourseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CourseViewController.h; sourceTree = "<group>"; };
  810. 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CourseViewController.m; sourceTree = "<group>"; };
  811. 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatViewController.m; sourceTree = "<group>"; };
  812. 275FA20027E7356B00CFEA2E /* ChatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatViewController.h; sourceTree = "<group>"; };
  813. 275FA20527E7356B00CFEA2E /* MineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineViewController.h; sourceTree = "<group>"; };
  814. 275FA20627E7356B00CFEA2E /* MineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineViewController.m; sourceTree = "<group>"; };
  815. 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopMallViewController.m; sourceTree = "<group>"; };
  816. 275FA20C27E7356B00CFEA2E /* ShopMallViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopMallViewController.h; sourceTree = "<group>"; };
  817. 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordLoginController.m; sourceTree = "<group>"; };
  818. 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingViewController.m; sourceTree = "<group>"; };
  819. 275FA21327E7356B00CFEA2E /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  820. 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiCodeLoginController.m; sourceTree = "<group>"; };
  821. 275FA21527E7356B00CFEA2E /* PasswordLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordLoginController.h; sourceTree = "<group>"; };
  822. 275FA21627E7356B00CFEA2E /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  823. 275FA21727E7356B00CFEA2E /* FirstSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingViewController.h; sourceTree = "<group>"; };
  824. 275FA21827E7356B00CFEA2E /* VefiCodeLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiCodeLoginController.h; sourceTree = "<group>"; };
  825. 275FA21A27E7356B00CFEA2E /* UserInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfo.m; sourceTree = "<group>"; };
  826. 275FA21B27E7356B00CFEA2E /* UserInfoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoManager.h; sourceTree = "<group>"; };
  827. 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoManager.m; sourceTree = "<group>"; };
  828. 275FA21D27E7356B00CFEA2E /* UserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfo.h; sourceTree = "<group>"; };
  829. 275FA21F27E7356B00CFEA2E /* FirstSettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingBodyView.h; sourceTree = "<group>"; };
  830. 275FA22027E7356B00CFEA2E /* LoginBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginBodyView.m; sourceTree = "<group>"; };
  831. 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginBodyView.xib; sourceTree = "<group>"; };
  832. 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FirstSettingBodyView.xib; sourceTree = "<group>"; };
  833. 275FA22327E7356B00CFEA2E /* VefiBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiBodyView.h; sourceTree = "<group>"; };
  834. 275FA22427E7356B00CFEA2E /* PasswordBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordBodyView.h; sourceTree = "<group>"; };
  835. 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingBodyView.m; sourceTree = "<group>"; };
  836. 275FA22627E7356B00CFEA2E /* LoginBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginBodyView.h; sourceTree = "<group>"; };
  837. 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VefiBodyView.xib; sourceTree = "<group>"; };
  838. 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordBodyView.m; sourceTree = "<group>"; };
  839. 275FA22927E7356B00CFEA2E /* VefiBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiBodyView.m; sourceTree = "<group>"; };
  840. 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PasswordBodyView.xib; sourceTree = "<group>"; };
  841. 275FA24127E73DF600CFEA2E /* InstrumentDescView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstrumentDescView.h; sourceTree = "<group>"; };
  842. 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstrumentDescView.m; sourceTree = "<group>"; };
  843. 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InstrumentDescView.xib; sourceTree = "<group>"; };
  844. 275FA24627E7428200CFEA2E /* InstrumentChooseView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstrumentChooseView.h; sourceTree = "<group>"; };
  845. 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstrumentChooseView.m; sourceTree = "<group>"; };
  846. 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InstrumentChooseView.xib; sourceTree = "<group>"; };
  847. 2779336427E3249C0010E277 /* KSNetworkAccessibleManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAccessibleManager.h; sourceTree = "<group>"; };
  848. 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAccessibleManager.m; sourceTree = "<group>"; };
  849. 2779336727E3249C0010E277 /* KSSafeObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSafeObject.h; sourceTree = "<group>"; };
  850. 2779336827E3249C0010E277 /* NSObject+KSSwizzling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSSwizzling.h"; sourceTree = "<group>"; };
  851. 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+KSSafe.m"; sourceTree = "<group>"; };
  852. 2779336A27E3249C0010E277 /* NSObject+KSImpChangeTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSImpChangeTool.h"; sourceTree = "<group>"; };
  853. 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+KSSafe.m"; sourceTree = "<group>"; };
  854. 2779336C27E3249C0010E277 /* NSMutableString+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableString+KSSafe.h"; sourceTree = "<group>"; };
  855. 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+KSSafe.m"; sourceTree = "<group>"; };
  856. 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+KSSafe.m"; sourceTree = "<group>"; };
  857. 2779336F27E3249C0010E277 /* NSDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+KSSafe.h"; sourceTree = "<group>"; };
  858. 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSSwizzling.m"; sourceTree = "<group>"; };
  859. 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSImpChangeTool.m"; sourceTree = "<group>"; };
  860. 2779337227E3249C0010E277 /* NSMutableArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+KSSafe.h"; sourceTree = "<group>"; };
  861. 2779337327E3249C0010E277 /* NSArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+KSSafe.h"; sourceTree = "<group>"; };
  862. 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableString+KSSafe.m"; sourceTree = "<group>"; };
  863. 2779337527E3249C0010E277 /* NSMutableDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+KSSafe.h"; sourceTree = "<group>"; };
  864. 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AssociatedObject.m"; sourceTree = "<group>"; };
  865. 2779337827E3249C0010E277 /* UIView+Hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hints.h"; sourceTree = "<group>"; };
  866. 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+ButtonAction.m"; sourceTree = "<group>"; };
  867. 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+zhDeviceType.m"; sourceTree = "<group>"; };
  868. 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+zh_SafeAccess.m"; sourceTree = "<group>"; };
  869. 2779337C27E3249D0010E277 /* NSDictionary+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Extension.h"; sourceTree = "<group>"; };
  870. 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+zhStatusBarStyle.m"; sourceTree = "<group>"; };
  871. 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWPlaceHolder.m"; sourceTree = "<group>"; };
  872. 2779337F27E3249D0010E277 /* NSString+CZHSizeExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+CZHSizeExtension.h"; sourceTree = "<group>"; };
  873. 2779338027E3249D0010E277 /* CALayer+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Color.m"; sourceTree = "<group>"; };
  874. 2779338127E3249D0010E277 /* NSDate+Transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Transform.h"; sourceTree = "<group>"; };
  875. 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+CZHExtention.m"; sourceTree = "<group>"; };
  876. 2779338327E3249D0010E277 /* NSString+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extension.h"; sourceTree = "<group>"; };
  877. 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWLimitCounter.m"; sourceTree = "<group>"; };
  878. 2779338527E3249D0010E277 /* UILabel+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extension.m"; sourceTree = "<group>"; };
  879. 2779338627E3249D0010E277 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
  880. 2779338727E3249D0010E277 /* KSUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUtilities.m; sourceTree = "<group>"; };
  881. 2779338927E3249D0010E277 /* pinyin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pinyin.h; sourceTree = "<group>"; };
  882. 2779338A27E3249D0010E277 /* pinyin.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; path = pinyin.c; sourceTree = "<group>"; };
  883. 2779338B27E3249D0010E277 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
  884. 2779338C27E3249D0010E277 /* CALayer+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Layout.h"; sourceTree = "<group>"; };
  885. 2779338D27E3249D0010E277 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  886. 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+Extend.m"; sourceTree = "<group>"; };
  887. 2779338F27E3249D0010E277 /* UIImageView+CornerRadius.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+CornerRadius.h"; sourceTree = "<group>"; };
  888. 2779339027E3249D0010E277 /* UIScreen+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+Extend.h"; sourceTree = "<group>"; };
  889. 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+zh_SafeAccess.m"; sourceTree = "<group>"; };
  890. 2779339227E3249D0010E277 /* UIColor+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extend.m"; sourceTree = "<group>"; };
  891. 2779339327E3249D0010E277 /* zhPopupController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = zhPopupController.m; sourceTree = "<group>"; };
  892. 2779339427E3249D0010E277 /* UIView+Dealloc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Dealloc.m"; sourceTree = "<group>"; };
  893. 2779339527E3249D0010E277 /* NSObject+Parse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Parse.m"; sourceTree = "<group>"; };
  894. 2779339627E3249D0010E277 /* UIView+AddConstraints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AddConstraints.m"; sourceTree = "<group>"; };
  895. 2779339727E3249D0010E277 /* UIView+KSExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSExtension.h"; sourceTree = "<group>"; };
  896. 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+CZHSizeExtension.m"; sourceTree = "<group>"; };
  897. 2779339927E3249D0010E277 /* UITextView+ZWPlaceHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWPlaceHolder.h"; sourceTree = "<group>"; };
  898. 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Extension.m"; sourceTree = "<group>"; };
  899. 2779339B27E3249D0010E277 /* UIViewController+zhStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+zhStatusBarStyle.h"; sourceTree = "<group>"; };
  900. 2779339C27E3249D0010E277 /* NSString+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+zh_SafeAccess.h"; sourceTree = "<group>"; };
  901. 2779339D27E3249D0010E277 /* UIDevice+zhDeviceType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+zhDeviceType.h"; sourceTree = "<group>"; };
  902. 2779339E27E3249D0010E277 /* UIControl+ButtonAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+ButtonAction.h"; sourceTree = "<group>"; };
  903. 2779339F27E3249D0010E277 /* UIView+Hints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hints.m"; sourceTree = "<group>"; };
  904. 277933A027E3249D0010E277 /* NSObject+AssociatedObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AssociatedObject.h"; sourceTree = "<group>"; };
  905. 277933A127E3249D0010E277 /* KSUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUtilities.h; sourceTree = "<group>"; };
  906. 277933A227E3249D0010E277 /* UILabel+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extension.h"; sourceTree = "<group>"; };
  907. 277933A327E3249D0010E277 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
  908. 277933A427E3249D0010E277 /* UITextView+ZWLimitCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWLimitCounter.h"; sourceTree = "<group>"; };
  909. 277933A527E3249D0010E277 /* NSString+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extension.m"; sourceTree = "<group>"; };
  910. 277933A627E3249D0010E277 /* NSDate+Transform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Transform.m"; sourceTree = "<group>"; };
  911. 277933A727E3249D0010E277 /* NSMutableAttributedString+CZHExtention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+CZHExtention.h"; sourceTree = "<group>"; };
  912. 277933A827E3249D0010E277 /* CALayer+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Color.h"; sourceTree = "<group>"; };
  913. 277933A927E3249D0010E277 /* UIScreen+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+Extend.m"; sourceTree = "<group>"; };
  914. 277933AA27E3249D0010E277 /* UIAlertController+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+Extend.h"; sourceTree = "<group>"; };
  915. 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+CornerRadius.m"; sourceTree = "<group>"; };
  916. 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  917. 277933AD27E3249E0010E277 /* CALayer+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Layout.m"; sourceTree = "<group>"; };
  918. 277933AE27E3249E0010E277 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
  919. 277933AF27E3249E0010E277 /* UIView+KSExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSExtension.m"; sourceTree = "<group>"; };
  920. 277933B027E3249E0010E277 /* NSObject+Parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Parse.h"; sourceTree = "<group>"; };
  921. 277933B127E3249E0010E277 /* UIView+AddConstraints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AddConstraints.h"; sourceTree = "<group>"; };
  922. 277933B227E3249E0010E277 /* UIView+Dealloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Dealloc.h"; sourceTree = "<group>"; };
  923. 277933B327E3249E0010E277 /* zhPopupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zhPopupController.h; sourceTree = "<group>"; };
  924. 277933B427E3249E0010E277 /* UIColor+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extend.h"; sourceTree = "<group>"; };
  925. 277933B527E3249E0010E277 /* NSArray+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+zh_SafeAccess.h"; sourceTree = "<group>"; };
  926. 277933B727E3249E0010E277 /* UIView+XIBView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIBView.m"; sourceTree = "<group>"; };
  927. 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+QWTopLeftLabel.m"; sourceTree = "<group>"; };
  928. 277933B927E3249E0010E277 /* UrlDecode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UrlDecode.m; sourceTree = "<group>"; };
  929. 277933BA27E3249E0010E277 /* UIButton+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Property.m"; sourceTree = "<group>"; };
  930. 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+KSTouch.m"; sourceTree = "<group>"; };
  931. 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+TFDevice.m"; sourceTree = "<group>"; };
  932. 277933BD27E3249E0010E277 /* MBProgressHUD+KSShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+KSShow.h"; sourceTree = "<group>"; };
  933. 277933BE27E3249E0010E277 /* UIView+KSLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSLayer.m"; sourceTree = "<group>"; };
  934. 277933BF27E3249E0010E277 /* UIImage+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Property.m"; sourceTree = "<group>"; };
  935. 277933C027E3249E0010E277 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  936. 277933C127E3249E0010E277 /* UIView+ShowProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ShowProgress.m"; sourceTree = "<group>"; };
  937. 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ResizeImage.m"; sourceTree = "<group>"; };
  938. 277933C327E3249E0010E277 /* UIButton+EnlargeEdge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+EnlargeEdge.h"; sourceTree = "<group>"; };
  939. 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+HasChooseImage.m"; sourceTree = "<group>"; };
  940. 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AutoProperty.m"; sourceTree = "<group>"; };
  941. 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+UIImageScale.m"; sourceTree = "<group>"; };
  942. 277933C727E3249E0010E277 /* UIImage+Resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resize.h"; sourceTree = "<group>"; };
  943. 277933C827E3249E0010E277 /* UIView+Animation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Animation.m"; sourceTree = "<group>"; };
  944. 277933C927E3249E0010E277 /* UIView+XIBView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIBView.h"; sourceTree = "<group>"; };
  945. 277933CA27E3249E0010E277 /* UIDevice+TFDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+TFDevice.h"; sourceTree = "<group>"; };
  946. 277933CB27E3249E0010E277 /* UIScrollView+KSTouch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+KSTouch.h"; sourceTree = "<group>"; };
  947. 277933CC27E3249E0010E277 /* UIButton+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Property.h"; sourceTree = "<group>"; };
  948. 277933CD27E3249E0010E277 /* UrlDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UrlDecode.h; sourceTree = "<group>"; };
  949. 277933CE27E3249E0010E277 /* UILabel+QWTopLeftLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+QWTopLeftLabel.h"; sourceTree = "<group>"; };
  950. 277933CF27E3249E0010E277 /* UIImage+UIImageScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+UIImageScale.h"; sourceTree = "<group>"; };
  951. 277933D027E3249E0010E277 /* NSObject+AutoProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AutoProperty.h"; sourceTree = "<group>"; };
  952. 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+EnlargeEdge.m"; sourceTree = "<group>"; };
  953. 277933D227E3249E0010E277 /* UIButton+HasChooseImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+HasChooseImage.h"; sourceTree = "<group>"; };
  954. 277933D327E3249E0010E277 /* UIImage+ResizeImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ResizeImage.h"; sourceTree = "<group>"; };
  955. 277933D427E3249E0010E277 /* UIView+ShowProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ShowProgress.h"; sourceTree = "<group>"; };
  956. 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  957. 277933D627E3249E0010E277 /* UIImage+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Property.h"; sourceTree = "<group>"; };
  958. 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+KSShow.m"; sourceTree = "<group>"; };
  959. 277933D827E3249E0010E277 /* UIView+KSLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSLayer.h"; sourceTree = "<group>"; };
  960. 277933D927E3249E0010E277 /* UIView+Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Animation.h"; sourceTree = "<group>"; };
  961. 277933DA27E3249E0010E277 /* UIImage+Resize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resize.m"; sourceTree = "<group>"; };
  962. 277933DC27E3249E0010E277 /* KSVideoEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoEditor.h; sourceTree = "<group>"; };
  963. 277933DD27E3249E0010E277 /* KSVideoEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoEditor.m; sourceTree = "<group>"; };
  964. 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSGifRefreshHeader.m; sourceTree = "<group>"; };
  965. 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSGifRefreshFooter.m; sourceTree = "<group>"; };
  966. 277933E127E3249E0010E277 /* KSGifRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSGifRefreshFooter.h; sourceTree = "<group>"; };
  967. 277933E227E3249E0010E277 /* KSGifRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSGifRefreshHeader.h; sourceTree = "<group>"; };
  968. 277933E427E3249E0010E277 /* KSAudioSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioSessionManager.m; sourceTree = "<group>"; };
  969. 277933E527E3249F0010E277 /* KSAudioSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioSessionManager.h; sourceTree = "<group>"; };
  970. 277933E727E3249F0010E277 /* VoNetWorking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoNetWorking.h; sourceTree = "<group>"; };
  971. 277933E927E3249F0010E277 /* VoLRUManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoLRUManager.m; sourceTree = "<group>"; };
  972. 277933EA27E3249F0010E277 /* VoMemoryCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoMemoryCache.h; sourceTree = "<group>"; };
  973. 277933EB27E3249F0010E277 /* VoDiskCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoDiskCache.m; sourceTree = "<group>"; };
  974. 277933EC27E3249F0010E277 /* VoCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoCacheManager.m; sourceTree = "<group>"; };
  975. 277933ED27E3249F0010E277 /* VoLRUManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoLRUManager.h; sourceTree = "<group>"; };
  976. 277933EE27E3249F0010E277 /* VoMemoryCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoMemoryCache.m; sourceTree = "<group>"; };
  977. 277933EF27E3249F0010E277 /* VoCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoCacheManager.h; sourceTree = "<group>"; };
  978. 277933F027E3249F0010E277 /* VoDiskCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoDiskCache.h; sourceTree = "<group>"; };
  979. 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "VoNetworking+RequestManager.m"; sourceTree = "<group>"; };
  980. 277933F227E3249F0010E277 /* VoNetWorking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoNetWorking.m; sourceTree = "<group>"; };
  981. 277933F327E3249F0010E277 /* VoNetworking+RequestManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "VoNetworking+RequestManager.h"; sourceTree = "<group>"; };
  982. 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DiskFreeSpaceManager.m; sourceTree = "<group>"; };
  983. 277933F627E3249F0010E277 /* DiskFreeSpaceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiskFreeSpaceManager.h; sourceTree = "<group>"; };
  984. 277933F827E3249F0010E277 /* KSPremissionAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSPremissionAlert.m; sourceTree = "<group>"; };
  985. 277933F927E3249F0010E277 /* KSPremissionAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSPremissionAlert.xib; sourceTree = "<group>"; };
  986. 277933FA27E3249F0010E277 /* KSPremissionAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSPremissionAlert.h; sourceTree = "<group>"; };
  987. 277933FC27E3249F0010E277 /* UIImage+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
  988. 277933FD27E3249F0010E277 /* GRCreateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRCreateManager.m; sourceTree = "<group>"; };
  989. 277933FE27E3249F0010E277 /* GRScanManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRScanManager.h; sourceTree = "<group>"; };
  990. 277933FF27E3249F0010E277 /* ShoppCatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppCatView.h; sourceTree = "<group>"; };
  991. 2779340127E3249F0010E277 /* QCCountdownButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QCCountdownButton.m; sourceTree = "<group>"; };
  992. 2779340227E3249F0010E277 /* QCCountdownButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QCCountdownButton.h; sourceTree = "<group>"; };
  993. 2779340327E3249F0010E277 /* LifeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LifeButton.h; sourceTree = "<group>"; };
  994. 2779340427E3249F0010E277 /* KSStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSStatusView.m; sourceTree = "<group>"; };
  995. 2779340527E3249F0010E277 /* prodectButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prodectButton.h; sourceTree = "<group>"; };
  996. 2779340627E3249F0010E277 /* StoreButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreButton.h; sourceTree = "<group>"; };
  997. 2779340727E3249F0010E277 /* KSChoosePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChoosePicker.m; sourceTree = "<group>"; };
  998. 2779340927E3249F0010E277 /* KSAudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordManager.h; sourceTree = "<group>"; };
  999. 2779340A27E3249F0010E277 /* KSRecordStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordStatusView.h; sourceTree = "<group>"; };
  1000. 2779340B27E3249F0010E277 /* KSHoldButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHoldButton.m; sourceTree = "<group>"; };
  1001. 2779340C27E3249F0010E277 /* KSRecordPowerAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordPowerAnimationView.h; sourceTree = "<group>"; };
  1002. 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordFileManager.m; sourceTree = "<group>"; };
  1003. 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ValueAdd.m"; sourceTree = "<group>"; };
  1004. 2779340F27E3249F0010E277 /* KSRecordStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordStatusView.m; sourceTree = "<group>"; };
  1005. 2779341027E3249F0010E277 /* KSAudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordManager.m; sourceTree = "<group>"; };
  1006. 2779341127E3249F0010E277 /* KSHoldButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHoldButton.h; sourceTree = "<group>"; };
  1007. 2779341227E3249F0010E277 /* UIView+ValueAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ValueAdd.h"; sourceTree = "<group>"; };
  1008. 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordPowerAnimationView.m; sourceTree = "<group>"; };
  1009. 2779341427E3249F0010E277 /* KSAudioRecordFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordFileManager.h; sourceTree = "<group>"; };
  1010. 2779341527E3249F0010E277 /* HomeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeButton.m; sourceTree = "<group>"; };
  1011. 2779341627E3249F0010E277 /* KSImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageButton.h; sourceTree = "<group>"; };
  1012. 2779341727E3249F0010E277 /* KSFullDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSFullDatePicker.m; sourceTree = "<group>"; };
  1013. 2779341827E3249F0010E277 /* NSString+phone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+phone.h"; sourceTree = "<group>"; };
  1014. 2779341927E3249F0010E277 /* KSMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaManager.m; sourceTree = "<group>"; };
  1015. 2779341A27E3249F0010E277 /* ShopMessBtn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopMessBtn.m; sourceTree = "<group>"; };
  1016. 2779341B27E324A00010E277 /* UIColor+Hex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
  1017. 2779341C27E324A00010E277 /* shopview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = shopview.m; sourceTree = "<group>"; };
  1018. 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YKMultiLevelTableView.m; sourceTree = "<group>"; };
  1019. 2779341F27E324A00010E277 /* YKNodeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YKNodeModel.m; sourceTree = "<group>"; };
  1020. 2779342027E324A00010E277 /* YKNodeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YKNodeModel.h; sourceTree = "<group>"; };
  1021. 2779342127E324A00010E277 /* YKMultiLevelTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YKMultiLevelTableView.h; sourceTree = "<group>"; };
  1022. 2779342227E324A00010E277 /* pickBut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = pickBut.m; sourceTree = "<group>"; };
  1023. 2779342327E324A00010E277 /* KSMessageInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMessageInputView.h; sourceTree = "<group>"; };
  1024. 2779342427E324A00010E277 /* NSString+MD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MD5.h"; sourceTree = "<group>"; };
  1025. 2779342527E324A00010E277 /* ShopButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopButton.h; sourceTree = "<group>"; };
  1026. 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+NJ.m"; sourceTree = "<group>"; };
  1027. 2779342727E324A00010E277 /* PIckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PIckView.h; sourceTree = "<group>"; };
  1028. 2779342827E324A00010E277 /* StoreShopCaterview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreShopCaterview.m; sourceTree = "<group>"; };
  1029. 2779342A27E324A00010E277 /* UITextField_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextField_Toolbar.m; sourceTree = "<group>"; };
  1030. 2779342B27E324A00010E277 /* SkipTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextField.m; sourceTree = "<group>"; };
  1031. 2779342C27E324A00010E277 /* SkipTextProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextProtocol.h; sourceTree = "<group>"; };
  1032. 2779342D27E324A00010E277 /* SkipTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextView.h; sourceTree = "<group>"; };
  1033. 2779342E27E324A00010E277 /* UITextView_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextView_Toolbar.m; sourceTree = "<group>"; };
  1034. 2779342F27E324A00010E277 /* UITextField_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField_Toolbar.h; sourceTree = "<group>"; };
  1035. 2779343027E324A00010E277 /* SkipTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextField.h; sourceTree = "<group>"; };
  1036. 2779343127E324A00010E277 /* SkipTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextView.m; sourceTree = "<group>"; };
  1037. 2779343227E324A00010E277 /* UITextView_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextView_Toolbar.h; sourceTree = "<group>"; };
  1038. 2779343327E324A00010E277 /* NSDate+KSBaseDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+KSBaseDatePicker.h"; sourceTree = "<group>"; };
  1039. 2779343427E324A00010E277 /* SearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchView.m; sourceTree = "<group>"; };
  1040. 2779343527E324A00010E277 /* StateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateView.h; sourceTree = "<group>"; };
  1041. 2779343627E324A00010E277 /* sortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sortButton.h; sourceTree = "<group>"; };
  1042. 2779343727E324A00010E277 /* KSInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSInputView.h; sourceTree = "<group>"; };
  1043. 2779343827E324A00010E277 /* KeyChainTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyChainTools.h; sourceTree = "<group>"; };
  1044. 2779343927E324A00010E277 /* KSStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSStatusView.h; sourceTree = "<group>"; };
  1045. 2779343A27E324A00010E277 /* prodectButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = prodectButton.m; sourceTree = "<group>"; };
  1046. 2779343B27E324A00010E277 /* StoreButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreButton.m; sourceTree = "<group>"; };
  1047. 2779343C27E324A00010E277 /* LifeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LifeButton.m; sourceTree = "<group>"; };
  1048. 2779343D27E324A00010E277 /* ShoppCatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppCatView.m; sourceTree = "<group>"; };
  1049. 2779343E27E324A00010E277 /* GRScanManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRScanManager.m; sourceTree = "<group>"; };
  1050. 2779343F27E324A00010E277 /* GRCreateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRCreateManager.h; sourceTree = "<group>"; };
  1051. 2779344027E324A00010E277 /* UIImage+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
  1052. 2779344127E324A00010E277 /* UIColor+Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
  1053. 2779344227E324A00010E277 /* ShopMessBtn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopMessBtn.h; sourceTree = "<group>"; };
  1054. 2779344327E324A00010E277 /* KSMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaManager.h; sourceTree = "<group>"; };
  1055. 2779344427E324A00010E277 /* NSString+phone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+phone.m"; sourceTree = "<group>"; };
  1056. 2779344527E324A00010E277 /* KSFullDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSFullDatePicker.h; sourceTree = "<group>"; };
  1057. 2779344627E324A00010E277 /* KSImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageButton.m; sourceTree = "<group>"; };
  1058. 2779344727E324A00010E277 /* HomeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeButton.h; sourceTree = "<group>"; };
  1059. 2779344827E324A00010E277 /* KSChoosePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChoosePicker.h; sourceTree = "<group>"; };
  1060. 2779344927E324A00010E277 /* PIckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PIckView.m; sourceTree = "<group>"; };
  1061. 2779344A27E324A00010E277 /* MBProgressHUD+NJ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+NJ.h"; sourceTree = "<group>"; };
  1062. 2779344B27E324A00010E277 /* ShopButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopButton.m; sourceTree = "<group>"; };
  1063. 2779344C27E324A00010E277 /* NSString+MD5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MD5.m"; sourceTree = "<group>"; };
  1064. 2779344D27E324A00010E277 /* KSMessageInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMessageInputView.m; sourceTree = "<group>"; };
  1065. 2779344E27E324A00010E277 /* pickBut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pickBut.h; sourceTree = "<group>"; };
  1066. 2779344F27E324A00010E277 /* shopview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopview.h; sourceTree = "<group>"; };
  1067. 2779345027E324A00010E277 /* KSInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSInputView.m; sourceTree = "<group>"; };
  1068. 2779345127E324A00010E277 /* KeyChainTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KeyChainTools.m; sourceTree = "<group>"; };
  1069. 2779345227E324A00010E277 /* sortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = sortButton.m; sourceTree = "<group>"; };
  1070. 2779345327E324A00010E277 /* StateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateView.m; sourceTree = "<group>"; };
  1071. 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+KSBaseDatePicker.m"; sourceTree = "<group>"; };
  1072. 2779345527E324A00010E277 /* SearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchView.h; sourceTree = "<group>"; };
  1073. 2779345727E324A10010E277 /* LLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhotoBrowser.m; sourceTree = "<group>"; };
  1074. 2779345827E324A10010E277 /* LLCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLCollectionViewCell.h; sourceTree = "<group>"; };
  1075. 2779345A27E324A10010E277 /* LLImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLImageCache.m; sourceTree = "<group>"; };
  1076. 2779345B27E324A10010E277 /* LLFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLFileManager.m; sourceTree = "<group>"; };
  1077. 2779345C27E324A10010E277 /* LLImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLImageCache.h; sourceTree = "<group>"; };
  1078. 2779345D27E324A10010E277 /* LLFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLFileManager.h; sourceTree = "<group>"; };
  1079. 2779345E27E324A10010E277 /* LLPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhoto.m; sourceTree = "<group>"; };
  1080. 2779345F27E324A10010E277 /* LLCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLCollectionViewCell.m; sourceTree = "<group>"; };
  1081. 2779346027E324A10010E277 /* LLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhotoBrowser.h; sourceTree = "<group>"; };
  1082. 2779346127E324A10010E277 /* LLPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhoto.h; sourceTree = "<group>"; };
  1083. 2779346227E324A10010E277 /* StoreShopCaterview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreShopCaterview.h; sourceTree = "<group>"; };
  1084. 2779346427E324A10010E277 /* CoinModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoinModel.h; sourceTree = "<group>"; };
  1085. 2779346527E324A10010E277 /* ArchiveTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchiveTools.h; sourceTree = "<group>"; };
  1086. 2779346627E324A10010E277 /* NSObject+Archiving.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Archiving.m"; sourceTree = "<group>"; };
  1087. 2779346727E324A10010E277 /* CoinModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CoinModel.m; sourceTree = "<group>"; };
  1088. 2779346827E324A10010E277 /* ArchiveTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArchiveTools.m; sourceTree = "<group>"; };
  1089. 2779346927E324A10010E277 /* NSObject+Archiving.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Archiving.h"; sourceTree = "<group>"; };
  1090. 2779346B27E324A10010E277 /* UserKeyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserKeyHeader.h; sourceTree = "<group>"; };
  1091. 2779346C27E324A10010E277 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
  1092. 2779346D27E324A10010E277 /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  1093. 2779347027E324A10010E277 /* AnimationContoller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationContoller.h; sourceTree = "<group>"; };
  1094. 2779347127E324A10010E277 /* KLTNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KLTNavigationController.m; sourceTree = "<group>"; };
  1095. 2779347227E324A10010E277 /* KLTNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KLTNavigationController.h; sourceTree = "<group>"; };
  1096. 2779347327E324A10010E277 /* AnimationContoller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnimationContoller.m; sourceTree = "<group>"; };
  1097. 2779347527E324A10010E277 /* DZNSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DZNSegmentedControl.m; sourceTree = "<group>"; };
  1098. 2779347627E324A10010E277 /* DZNSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DZNSegmentedControl.h; sourceTree = "<group>"; };
  1099. 2779347827E324A10010E277 /* WMLightView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMLightView.h; sourceTree = "<group>"; };
  1100. 2779347927E324A10010E277 /* WMPlayerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayerModel.m; sourceTree = "<group>"; };
  1101. 2779347A27E324A10010E277 /* FastForwardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FastForwardView.h; sourceTree = "<group>"; };
  1102. 2779347B27E324A10010E277 /* WMPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WMPlayer.bundle; sourceTree = "<group>"; };
  1103. 2779347C27E324A10010E277 /* WMPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayer.h; sourceTree = "<group>"; };
  1104. 2779347D27E324A10010E277 /* WMPlayerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayerModel.h; sourceTree = "<group>"; };
  1105. 2779347E27E324A10010E277 /* WMLightView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMLightView.m; sourceTree = "<group>"; };
  1106. 2779347F27E324A10010E277 /* FastForwardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FastForwardView.m; sourceTree = "<group>"; };
  1107. 2779348027E324A10010E277 /* WMPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayer.m; sourceTree = "<group>"; };
  1108. 2779348227E324A10010E277 /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewCell.h; sourceTree = "<group>"; };
  1109. 2779348327E324A10010E277 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPickerController.h; sourceTree = "<group>"; };
  1110. 2779348427E324A10010E277 /* TZImageCropManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageCropManager.m; sourceTree = "<group>"; };
  1111. 2779348527E324A10010E277 /* TZImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageManager.h; sourceTree = "<group>"; };
  1112. 2779348627E324A10010E277 /* TZAssetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetCell.m; sourceTree = "<group>"; };
  1113. 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoEditedPreviewController.m; sourceTree = "<group>"; };
  1114. 2779348827E324A10010E277 /* TZVideoCropController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoCropController.m; sourceTree = "<group>"; };
  1115. 2779348927E324A10010E277 /* TZVideoPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoPlayerController.m; sourceTree = "<group>"; };
  1116. 2779348A27E324A10010E277 /* TZAssetModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetModel.m; sourceTree = "<group>"; };
  1117. 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+TZImagePicker.m"; sourceTree = "<group>"; };
  1118. 2779348C27E324A10010E277 /* UIView+TZLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+TZLayout.h"; sourceTree = "<group>"; };
  1119. 2779348D27E324A10010E277 /* TZLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZLocationManager.h; sourceTree = "<group>"; };
  1120. 2779348E27E324A10010E277 /* TZImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImagePickerController.h; sourceTree = "<group>"; };
  1121. 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewController.m; sourceTree = "<group>"; };
  1122. 2779349027E324A10010E277 /* TZImagePickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TZImagePickerController.bundle; sourceTree = "<group>"; };
  1123. 2779349127E324A10010E277 /* TZProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZProgressView.m; sourceTree = "<group>"; };
  1124. 2779349227E324A10010E277 /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZGifPhotoPreviewController.h; sourceTree = "<group>"; };
  1125. 2779349327E324A10010E277 /* TZImageRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageRequestOperation.h; sourceTree = "<group>"; };
  1126. 2779349427E324A10010E277 /* TZVideoEditedPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoEditedPreviewController.h; sourceTree = "<group>"; };
  1127. 2779349527E324A10010E277 /* TZAssetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetCell.h; sourceTree = "<group>"; };
  1128. 2779349627E324A10010E277 /* TZImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageManager.m; sourceTree = "<group>"; };
  1129. 2779349727E324A20010E277 /* TZImageCropManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageCropManager.h; sourceTree = "<group>"; };
  1130. 2779349827E324A20010E277 /* TZPhotoPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPickerController.m; sourceTree = "<group>"; };
  1131. 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewCell.m; sourceTree = "<group>"; };
  1132. 2779349A27E324A20010E277 /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+TZImagePicker.h"; sourceTree = "<group>"; };
  1133. 2779349B27E324A20010E277 /* UIView+TZLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+TZLayout.m"; sourceTree = "<group>"; };
  1134. 2779349C27E324A20010E277 /* TZAssetModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetModel.h; sourceTree = "<group>"; };
  1135. 2779349D27E324A20010E277 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoPlayerController.h; sourceTree = "<group>"; };
  1136. 2779349E27E324A20010E277 /* TZVideoCropController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoCropController.h; sourceTree = "<group>"; };
  1137. 2779349F27E324A20010E277 /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewController.h; sourceTree = "<group>"; };
  1138. 277934A027E324A20010E277 /* TZImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImagePickerController.m; sourceTree = "<group>"; };
  1139. 277934A127E324A20010E277 /* TZLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZLocationManager.m; sourceTree = "<group>"; };
  1140. 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZGifPhotoPreviewController.m; sourceTree = "<group>"; };
  1141. 277934A327E324A20010E277 /* TZImageRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageRequestOperation.m; sourceTree = "<group>"; };
  1142. 277934A427E324A20010E277 /* TZProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZProgressView.h; sourceTree = "<group>"; };
  1143. 277934A627E324A20010E277 /* MSSBrowseRemindView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseRemindView.h; sourceTree = "<group>"; };
  1144. 277934A727E324A20010E277 /* MSSBrowseZoomScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseZoomScrollView.h; sourceTree = "<group>"; };
  1145. 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLoadingImageView.m; sourceTree = "<group>"; };
  1146. 277934A927E324A20010E277 /* MSSBrowseBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseBaseViewController.h; sourceTree = "<group>"; };
  1147. 277934AA27E324A20010E277 /* UIImage+MSSScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MSSScale.h"; sourceTree = "<group>"; };
  1148. 277934AB27E324A20010E277 /* MSSBrowseNetworkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseNetworkViewController.h; sourceTree = "<group>"; };
  1149. 277934AC27E324A20010E277 /* MSSBrowseActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheet.h; sourceTree = "<group>"; };
  1150. 277934AD27E324A20010E277 /* MSSBrowseActionSheetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheetCell.h; sourceTree = "<group>"; };
  1151. 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLocalViewController.m; sourceTree = "<group>"; };
  1152. 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseCollectionViewCell.m; sourceTree = "<group>"; };
  1153. 277934B027E324A20010E277 /* UIView+MSSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MSSLayout.h"; sourceTree = "<group>"; };
  1154. 277934B127E324A20010E277 /* MSSBrowseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseModel.m; sourceTree = "<group>"; };
  1155. 277934B227E324A20010E277 /* MSSBrowseDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseDefine.h; sourceTree = "<group>"; };
  1156. 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheet.m; sourceTree = "<group>"; };
  1157. 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseNetworkViewController.m; sourceTree = "<group>"; };
  1158. 277934B527E324A20010E277 /* UIImage+MSSScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MSSScale.m"; sourceTree = "<group>"; };
  1159. 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseBaseViewController.m; sourceTree = "<group>"; };
  1160. 277934B727E324A20010E277 /* MSSBrowseLoadingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLoadingImageView.h; sourceTree = "<group>"; };
  1161. 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseZoomScrollView.m; sourceTree = "<group>"; };
  1162. 277934B927E324A20010E277 /* MSSBrowseRemindView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseRemindView.m; sourceTree = "<group>"; };
  1163. 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@3x.png"; sourceTree = "<group>"; };
  1164. 277934BB27E324A20010E277 /* MSSBrowseCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseCollectionViewCell.h; sourceTree = "<group>"; };
  1165. 277934BC27E324A20010E277 /* MSSBrowseLocalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLocalViewController.h; sourceTree = "<group>"; };
  1166. 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheetCell.m; sourceTree = "<group>"; };
  1167. 277934BE27E324A20010E277 /* MSSBrowseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseModel.h; sourceTree = "<group>"; };
  1168. 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@2x.png"; sourceTree = "<group>"; };
  1169. 277934C027E324A20010E277 /* UIView+MSSLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MSSLayout.m"; sourceTree = "<group>"; };
  1170. 277934C227E324A20010E277 /* FSCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCollectionView.m; sourceTree = "<group>"; };
  1171. 277934C327E324A20010E277 /* FSCalendarWeekdayView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarWeekdayView.h; sourceTree = "<group>"; };
  1172. 277934C427E324A20010E277 /* FSCalendarCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCollectionViewLayout.h; sourceTree = "<group>"; };
  1173. 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarDelegationProxy.m; sourceTree = "<group>"; };
  1174. 277934C627E324A20010E277 /* FSCalendarExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarExtensions.h; sourceTree = "<group>"; };
  1175. 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarDelegationFactory.m; sourceTree = "<group>"; };
  1176. 277934C827E324A20010E277 /* FSCalendarSeparatorDecorationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarSeparatorDecorationView.h; sourceTree = "<group>"; };
  1177. 277934C927E324A20010E277 /* FSCalendarCalculator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCalculator.h; sourceTree = "<group>"; };
  1178. 277934CA27E324A20010E277 /* FSCalendarHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarHeaderView.h; sourceTree = "<group>"; };
  1179. 277934CB27E324A20010E277 /* FSCalendarConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarConstants.h; sourceTree = "<group>"; };
  1180. 277934CC27E324A20010E277 /* FSCalendarAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarAppearance.h; sourceTree = "<group>"; };
  1181. 277934CD27E324A20010E277 /* FSCalendarTransitionCoordinator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarTransitionCoordinator.h; sourceTree = "<group>"; };
  1182. 277934CE27E324A30010E277 /* FSCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCell.m; sourceTree = "<group>"; };
  1183. 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarStickyHeader.m; sourceTree = "<group>"; };
  1184. 277934D027E324A30010E277 /* FSCalendar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendar.m; sourceTree = "<group>"; };
  1185. 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCollectionViewLayout.m; sourceTree = "<group>"; };
  1186. 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarWeekdayView.m; sourceTree = "<group>"; };
  1187. 277934D327E324A30010E277 /* FSCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCollectionView.h; sourceTree = "<group>"; };
  1188. 277934D427E324A30010E277 /* FSCalendarDynamicHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDynamicHeader.h; sourceTree = "<group>"; };
  1189. 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarSeparatorDecorationView.m; sourceTree = "<group>"; };
  1190. 277934D627E324A30010E277 /* FSCalendarDelegationFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDelegationFactory.h; sourceTree = "<group>"; };
  1191. 277934D727E324A30010E277 /* FSCalendarExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarExtensions.m; sourceTree = "<group>"; };
  1192. 277934D827E324A30010E277 /* FSCalendarDelegationProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDelegationProxy.h; sourceTree = "<group>"; };
  1193. 277934D927E324A30010E277 /* FSCalendarConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarConstants.m; sourceTree = "<group>"; };
  1194. 277934DA27E324A30010E277 /* FSCalendarCalculator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCalculator.m; sourceTree = "<group>"; };
  1195. 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarHeaderView.m; sourceTree = "<group>"; };
  1196. 277934DC27E324A30010E277 /* FSCalendarStickyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarStickyHeader.h; sourceTree = "<group>"; };
  1197. 277934DD27E324A30010E277 /* FSCalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendar.h; sourceTree = "<group>"; };
  1198. 277934DE27E324A30010E277 /* FSCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCell.h; sourceTree = "<group>"; };
  1199. 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarTransitionCoordinator.m; sourceTree = "<group>"; };
  1200. 277934E027E324A30010E277 /* FSCalendarAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarAppearance.m; sourceTree = "<group>"; };
  1201. 277934E227E324A30010E277 /* QWdynamicModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QWdynamicModel.m; sourceTree = "<group>"; };
  1202. 277934E327E324A30010E277 /* UIView+SDExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SDExtension.h"; sourceTree = "<group>"; };
  1203. 277934E427E324A30010E277 /* SDQWMaskCustomModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDQWMaskCustomModel.h; sourceTree = "<group>"; };
  1204. 277934E527E324A30010E277 /* SDCycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCycleScrollView.h; sourceTree = "<group>"; };
  1205. 277934E627E324A30010E277 /* SDCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCollectionViewCell.h; sourceTree = "<group>"; };
  1206. 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SDQWMaskCustomView.xib; sourceTree = "<group>"; };
  1207. 277934E827E324A30010E277 /* SDQWMaskCustomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDQWMaskCustomView.h; sourceTree = "<group>"; };
  1208. 277934E927E324A30010E277 /* SDCycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCycleScrollView.m; sourceTree = "<group>"; };
  1209. 277934EA27E324A30010E277 /* UIView+SDExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SDExtension.m"; sourceTree = "<group>"; };
  1210. 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDQWMaskCustomModel.m; sourceTree = "<group>"; };
  1211. 277934EC27E324A30010E277 /* QWdynamicModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QWdynamicModel.h; sourceTree = "<group>"; };
  1212. 277934ED27E324A30010E277 /* SDCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCollectionViewCell.m; sourceTree = "<group>"; };
  1213. 277934EF27E324A30010E277 /* TAAbstractDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAbstractDotView.h; sourceTree = "<group>"; };
  1214. 277934F027E324A30010E277 /* TADotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TADotView.m; sourceTree = "<group>"; };
  1215. 277934F127E324A30010E277 /* TAPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAPageControl.m; sourceTree = "<group>"; };
  1216. 277934F227E324A30010E277 /* TAAnimatedDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAnimatedDotView.m; sourceTree = "<group>"; };
  1217. 277934F327E324A30010E277 /* TAAbstractDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAbstractDotView.m; sourceTree = "<group>"; };
  1218. 277934F427E324A30010E277 /* TADotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TADotView.h; sourceTree = "<group>"; };
  1219. 277934F527E324A30010E277 /* TAAnimatedDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAnimatedDotView.h; sourceTree = "<group>"; };
  1220. 277934F627E324A30010E277 /* TAPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAPageControl.h; sourceTree = "<group>"; };
  1221. 277934F727E324A30010E277 /* SDQWMaskCustomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDQWMaskCustomView.m; sourceTree = "<group>"; };
  1222. 277934F927E324A30010E277 /* ALCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCell.m; sourceTree = "<group>"; };
  1223. 277934FA27E324A30010E277 /* ALCalendarConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarConfig.m; sourceTree = "<group>"; };
  1224. 277934FB27E324A30010E277 /* ALCalendarHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHeader.m; sourceTree = "<group>"; };
  1225. 277934FC27E324A30010E277 /* ALCalendarDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarDate.m; sourceTree = "<group>"; };
  1226. 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCollectionView.m; sourceTree = "<group>"; };
  1227. 277934FE27E324A30010E277 /* ALCalendarHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHelper.m; sourceTree = "<group>"; };
  1228. 277934FF27E324A30010E277 /* UIView+ALFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ALFrame.h"; sourceTree = "<group>"; };
  1229. 2779350027E324A30010E277 /* ALCalendarPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarPicker.h; sourceTree = "<group>"; };
  1230. 2779350127E324A30010E277 /* ALCalendarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarManager.h; sourceTree = "<group>"; };
  1231. 2779350227E324A30010E277 /* ALCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCollectionView.h; sourceTree = "<group>"; };
  1232. 2779350327E324A30010E277 /* ALCalendarDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarDate.h; sourceTree = "<group>"; };
  1233. 2779350427E324A30010E277 /* ALCalendarHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHeader.h; sourceTree = "<group>"; };
  1234. 2779350527E324A30010E277 /* ALCalendarConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarConfig.h; sourceTree = "<group>"; };
  1235. 2779350627E324A30010E277 /* ALCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCell.h; sourceTree = "<group>"; };
  1236. 2779350727E324A40010E277 /* ALCalendarHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHelper.h; sourceTree = "<group>"; };
  1237. 2779350827E324A40010E277 /* ALCalendarPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarPicker.m; sourceTree = "<group>"; };
  1238. 2779350927E324A40010E277 /* UIView+ALFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ALFrame.m"; sourceTree = "<group>"; };
  1239. 2779350A27E324A40010E277 /* ALCalendarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarManager.m; sourceTree = "<group>"; };
  1240. 27F9031127E87C2C00C08A19 /* NetworkingCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkingCheckController.h; sourceTree = "<group>"; };
  1241. 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkingCheckController.m; sourceTree = "<group>"; };
  1242. 27F9031527E87C2C00C08A19 /* KSNetworkAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAlert.h; sourceTree = "<group>"; };
  1243. 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkBodyView.m; sourceTree = "<group>"; };
  1244. 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetworkBodyView.xib; sourceTree = "<group>"; };
  1245. 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAlert.m; sourceTree = "<group>"; };
  1246. 27F9031927E87C2D00C08A19 /* NetworkBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkBodyView.h; sourceTree = "<group>"; };
  1247. 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSNetworkAlert.xib; sourceTree = "<group>"; };
  1248. 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceCheckView.xib; sourceTree = "<group>"; };
  1249. 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioPlayManager.m; sourceTree = "<group>"; };
  1250. 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioRecordManager.m; sourceTree = "<group>"; };
  1251. 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceCheckView.m; sourceTree = "<group>"; };
  1252. 27F9032027E87C2D00C08A19 /* AudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioRecordManager.h; sourceTree = "<group>"; };
  1253. 27F9032127E87C2D00C08A19 /* DeviceCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceCheckView.h; sourceTree = "<group>"; };
  1254. 27F9032227E87C2D00C08A19 /* AudioPlayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioPlayManager.h; sourceTree = "<group>"; };
  1255. 27F9032527E87C2E00C08A19 /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingViewController.h; sourceTree = "<group>"; };
  1256. 27F9032627E87C2E00C08A19 /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingViewController.m; sourceTree = "<group>"; };
  1257. 27F9033327E87C8A00C08A19 /* MineNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineNavView.h; sourceTree = "<group>"; };
  1258. 27F9033427E87C8A00C08A19 /* MineNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineNavView.m; sourceTree = "<group>"; };
  1259. 27F9033527E87C8B00C08A19 /* MineNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MineNavView.xib; sourceTree = "<group>"; };
  1260. 27F9033827E87FD500C08A19 /* MineBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MineBodyView.h; sourceTree = "<group>"; };
  1261. 27F9033927E87FD500C08A19 /* MineBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MineBodyView.m; sourceTree = "<group>"; };
  1262. 27F9033B27E87FE100C08A19 /* MineBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MineBodyView.xib; sourceTree = "<group>"; };
  1263. 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent.debug.xcconfig"; sourceTree = "<group>"; };
  1264. BC0212F427FC4A080040569F /* SubjectImageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubjectImageCell.h; sourceTree = "<group>"; };
  1265. BC0212F527FC4A080040569F /* SubjectImageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubjectImageCell.m; sourceTree = "<group>"; };
  1266. BC0212F627FC4A080040569F /* SubjectImageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SubjectImageCell.xib; sourceTree = "<group>"; };
  1267. BC0212F927FC61D30040569F /* KSSegmentControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KSSegmentControl.h; sourceTree = "<group>"; };
  1268. BC0212FA27FC61D30040569F /* KSSegmentControl.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KSSegmentControl.m; sourceTree = "<group>"; };
  1269. BC0212FC27FC66AA0040569F /* InstrumentMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InstrumentMessageModel.h; sourceTree = "<group>"; };
  1270. BC0212FD27FC66AA0040569F /* InstrumentMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InstrumentMessageModel.m; sourceTree = "<group>"; };
  1271. BC0212FF27FC6ADD0040569F /* UIView+SubViewExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SubViewExtension.h"; sourceTree = "<group>"; };
  1272. BC02130027FC6ADD0040569F /* UIView+SubViewExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SubViewExtension.m"; sourceTree = "<group>"; };
  1273. BC0D1F6B281013DF00C5D9E5 /* MyVideoCourseBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyVideoCourseBodyView.h; sourceTree = "<group>"; };
  1274. BC0D1F6C281013DF00C5D9E5 /* MyVideoCourseBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyVideoCourseBodyView.m; sourceTree = "<group>"; };
  1275. BC0D1F6E281015AF00C5D9E5 /* VideoCourseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoCourseCell.m; sourceTree = "<group>"; };
  1276. BC0D1F6F281015AF00C5D9E5 /* VideoCourseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VideoCourseCell.xib; sourceTree = "<group>"; };
  1277. BC0D1F70281015B000C5D9E5 /* VideoCourseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoCourseCell.h; sourceTree = "<group>"; };
  1278. BC0D1F732810165400C5D9E5 /* VideoCourseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoCourseModel.h; sourceTree = "<group>"; };
  1279. BC0D1F742810165400C5D9E5 /* VideoCourseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoCourseModel.m; sourceTree = "<group>"; };
  1280. BC1191FD280ED64E00A716F7 /* MyCourseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCourseViewController.h; sourceTree = "<group>"; };
  1281. BC1191FE280ED64E00A716F7 /* MyCourseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCourseViewController.m; sourceTree = "<group>"; };
  1282. BC119200280ED6A600A716F7 /* MyLessonBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyLessonBodyView.m; sourceTree = "<group>"; };
  1283. BC119202280ED6A600A716F7 /* MyLessonBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyLessonBodyView.h; sourceTree = "<group>"; };
  1284. BC119203280ED6A700A716F7 /* MyLiveCourseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyLiveCourseCell.xib; sourceTree = "<group>"; };
  1285. BC119204280ED6A700A716F7 /* MyLiveCourseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyLiveCourseCell.m; sourceTree = "<group>"; };
  1286. BC119205280ED6A700A716F7 /* MyLiveCourseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyLiveCourseCell.h; sourceTree = "<group>"; };
  1287. BC119206280ED6A700A716F7 /* MyLessonSearchView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyLessonSearchView.xib; sourceTree = "<group>"; };
  1288. BC119208280ED6A800A716F7 /* MyLessonSearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyLessonSearchView.h; sourceTree = "<group>"; };
  1289. BC119209280ED6A800A716F7 /* MyLessonSearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyLessonSearchView.m; sourceTree = "<group>"; };
  1290. BC11920E280ED6A900A716F7 /* NewClassPopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewClassPopView.h; sourceTree = "<group>"; };
  1291. BC11920F280ED6A900A716F7 /* NewClassPopCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NewClassPopCell.xib; sourceTree = "<group>"; };
  1292. BC119210280ED6A900A716F7 /* NewClassPopCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewClassPopCell.h; sourceTree = "<group>"; };
  1293. BC119211280ED6A900A716F7 /* NewClassPopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewClassPopView.m; sourceTree = "<group>"; };
  1294. BC119212280ED6A900A716F7 /* NewClassPopCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewClassPopCell.m; sourceTree = "<group>"; };
  1295. BC11921E280ED6F400A716F7 /* LiveLessonModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveLessonModel.m; sourceTree = "<group>"; };
  1296. BC11921F280ED6F400A716F7 /* AccompanyLessonModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyLessonModel.m; sourceTree = "<group>"; };
  1297. BC119220280ED6F500A716F7 /* AccompanyLessonModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyLessonModel.h; sourceTree = "<group>"; };
  1298. BC119221280ED6F500A716F7 /* LiveLessonModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveLessonModel.h; sourceTree = "<group>"; };
  1299. BC119224280ED8E700A716F7 /* LTSCalendarBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LTSCalendarBottomView.m; sourceTree = "<group>"; };
  1300. BC119225280ED8E800A716F7 /* CourseNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CourseNavView.h; sourceTree = "<group>"; };
  1301. BC119226280ED8E800A716F7 /* CourseNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CourseNavView.m; sourceTree = "<group>"; };
  1302. BC119227280ED8E800A716F7 /* LTSCalendarBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LTSCalendarBottomView.xib; sourceTree = "<group>"; };
  1303. BC119228280ED8E800A716F7 /* LTSCalendarBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LTSCalendarBottomView.h; sourceTree = "<group>"; };
  1304. BC119229280ED8E800A716F7 /* CourseNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CourseNavView.xib; sourceTree = "<group>"; };
  1305. BC11922E280ED8F800A716F7 /* TableCourseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCourseModel.h; sourceTree = "<group>"; };
  1306. BC11922F280ED8F900A716F7 /* TableCourseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCourseModel.m; sourceTree = "<group>"; };
  1307. BC119231280ED97B00A716F7 /* CourseForLiveCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CourseForLiveCell.m; sourceTree = "<group>"; };
  1308. BC119232280ED97C00A716F7 /* CourseForLiveCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CourseForLiveCell.xib; sourceTree = "<group>"; };
  1309. BC119233280ED97C00A716F7 /* CourseForLiveCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CourseForLiveCell.h; sourceTree = "<group>"; };
  1310. BC119236280ED98D00A716F7 /* AccompanyCourseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyCourseCell.h; sourceTree = "<group>"; };
  1311. BC119237280ED98E00A716F7 /* AccompanyCourseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyCourseCell.xib; sourceTree = "<group>"; };
  1312. BC119238280ED98E00A716F7 /* AccompanyCourseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyCourseCell.m; sourceTree = "<group>"; };
  1313. BC11923F280ED9E000A716F7 /* AccompanyDetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AccompanyDetailViewController.h; sourceTree = "<group>"; };
  1314. BC119240280ED9E000A716F7 /* AccompanyDetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AccompanyDetailViewController.m; sourceTree = "<group>"; };
  1315. BC119242280EDA2400A716F7 /* NSObject+KSDateFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSDateFormatter.h"; sourceTree = "<group>"; };
  1316. BC119243280EDA2400A716F7 /* NSObject+KSDateFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSDateFormatter.m"; sourceTree = "<group>"; };
  1317. BC119245280EDA5800A716F7 /* kSJXCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = kSJXCollectionView.m; sourceTree = "<group>"; };
  1318. BC119246280EDA5800A716F7 /* kSJXCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kSJXCollectionView.h; sourceTree = "<group>"; };
  1319. BC11924C280EDD5500A716F7 /* HomeworkListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkListViewController.h; sourceTree = "<group>"; };
  1320. BC11924D280EDD5500A716F7 /* HomeworkListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkListViewController.m; sourceTree = "<group>"; };
  1321. BC119252280FA85200A716F7 /* HomeworkListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeworkListCell.xib; sourceTree = "<group>"; };
  1322. BC119253280FA85200A716F7 /* HomeworkListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkListCell.m; sourceTree = "<group>"; };
  1323. BC119254280FA85200A716F7 /* HomeworkListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkListCell.h; sourceTree = "<group>"; };
  1324. BC119255280FA85300A716F7 /* HomeworkSortView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeworkSortView.xib; sourceTree = "<group>"; };
  1325. BC119256280FA85300A716F7 /* HomeworkSortView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkSortView.h; sourceTree = "<group>"; };
  1326. BC119257280FA85300A716F7 /* HomeworkSortView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkSortView.m; sourceTree = "<group>"; };
  1327. BC11925C280FA89A00A716F7 /* HomeworkBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkBodyView.h; sourceTree = "<group>"; };
  1328. BC11925D280FA89A00A716F7 /* HomeworkBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkBodyView.m; sourceTree = "<group>"; };
  1329. BC11925F280FA90000A716F7 /* HomeworkDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkDetailModel.h; sourceTree = "<group>"; };
  1330. BC119260280FA90000A716F7 /* HomeworkListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkListModel.h; sourceTree = "<group>"; };
  1331. BC119261280FA90100A716F7 /* HomeworkDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkDetailModel.m; sourceTree = "<group>"; };
  1332. BC119262280FA90100A716F7 /* HomeworkListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkListModel.m; sourceTree = "<group>"; };
  1333. BC119265280FA92700A716F7 /* HomeworkDetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkDetailViewController.h; sourceTree = "<group>"; };
  1334. BC119266280FA92700A716F7 /* HomeworkDetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkDetailViewController.m; sourceTree = "<group>"; };
  1335. BC119268280FAF5800A716F7 /* AccompanyAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyAlertView.h; sourceTree = "<group>"; };
  1336. BC119269280FAF5800A716F7 /* AccompanyAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyAlertView.m; sourceTree = "<group>"; };
  1337. BC11926A280FAF5900A716F7 /* AccompanyAlertView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyAlertView.xib; sourceTree = "<group>"; };
  1338. BC11926D280FAF7C00A716F7 /* AccompanyCourseInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyCourseInfoCell.h; sourceTree = "<group>"; };
  1339. BC11926E280FAF7C00A716F7 /* AccompanyCourseInfoCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyCourseInfoCell.xib; sourceTree = "<group>"; };
  1340. BC11926F280FAF7C00A716F7 /* AccompanyCourseInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyCourseInfoCell.m; sourceTree = "<group>"; };
  1341. BC119272280FB01000A716F7 /* AccompanyHomeworkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyHomeworkCell.xib; sourceTree = "<group>"; };
  1342. BC119273280FB01000A716F7 /* AccompanyHomeworkCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyHomeworkCell.m; sourceTree = "<group>"; };
  1343. BC119274280FB01100A716F7 /* AccompanyHomeworkCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyHomeworkCell.h; sourceTree = "<group>"; };
  1344. BC119277280FB07F00A716F7 /* AccompanyArrangeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyArrangeCell.m; sourceTree = "<group>"; };
  1345. BC119278280FB07F00A716F7 /* AccompanyArrangeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyArrangeCell.xib; sourceTree = "<group>"; };
  1346. BC119279280FB07F00A716F7 /* AccompanyArrangeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyArrangeCell.h; sourceTree = "<group>"; };
  1347. BC11927C280FB10700A716F7 /* AccompanyRemarkCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyRemarkCell.m; sourceTree = "<group>"; };
  1348. BC11927D280FB10800A716F7 /* AccompanyRemarkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyRemarkCell.xib; sourceTree = "<group>"; };
  1349. BC11927E280FB10900A716F7 /* AccompanyRemarkCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyRemarkCell.h; sourceTree = "<group>"; };
  1350. BC119286280FB3B000A716F7 /* KSStarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSStarView.h; sourceTree = "<group>"; };
  1351. BC119287280FB3B100A716F7 /* KSStarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSStarView.m; sourceTree = "<group>"; };
  1352. BC119289280FB44200A716F7 /* HomeworkVideoView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeworkVideoView.xib; sourceTree = "<group>"; };
  1353. BC11928A280FB44300A716F7 /* HomeworkVideoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkVideoView.h; sourceTree = "<group>"; };
  1354. BC11928B280FB44300A716F7 /* HomeworkVideoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkVideoView.m; sourceTree = "<group>"; };
  1355. BC11928E280FB46100A716F7 /* KSVideoHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoHelper.h; sourceTree = "<group>"; };
  1356. BC11928F280FB46100A716F7 /* KSVideoHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoHelper.m; sourceTree = "<group>"; };
  1357. BC119291280FBC1100A716F7 /* HomeworkAddView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkAddView.h; sourceTree = "<group>"; };
  1358. BC119292280FBC1100A716F7 /* HomeworkAddView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkAddView.m; sourceTree = "<group>"; };
  1359. BC119296280FBCB300A716F7 /* UIView+ExtensionForDotLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ExtensionForDotLine.h"; sourceTree = "<group>"; };
  1360. BC119297280FBCB400A716F7 /* UIView+ExtensionForDotLine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ExtensionForDotLine.m"; sourceTree = "<group>"; };
  1361. BC119299280FD2E800A716F7 /* HomeworkBottomView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkBottomView.h; sourceTree = "<group>"; };
  1362. BC11929A280FD2E800A716F7 /* HomeworkBottomView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkBottomView.m; sourceTree = "<group>"; };
  1363. BC11929C280FD2EF00A716F7 /* HomeworkBottomView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeworkBottomView.xib; sourceTree = "<group>"; };
  1364. BC27A068280FF56B00F91E27 /* AccompanyEvaluateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyEvaluateCell.h; sourceTree = "<group>"; };
  1365. BC27A069280FF56B00F91E27 /* AccompanyStudentEvaCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyStudentEvaCell.h; sourceTree = "<group>"; };
  1366. BC27A06A280FF56B00F91E27 /* AccompanyEvaluateCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyEvaluateCell.xib; sourceTree = "<group>"; };
  1367. BC27A06B280FF56C00F91E27 /* AccompanyStudentEvaCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyStudentEvaCell.m; sourceTree = "<group>"; };
  1368. BC27A06C280FF56C00F91E27 /* AccompanyStudentEvaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyStudentEvaCell.xib; sourceTree = "<group>"; };
  1369. BC27A06D280FF56C00F91E27 /* AccompanyEvaluateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyEvaluateCell.m; sourceTree = "<group>"; };
  1370. BC27A072280FF60B00F91E27 /* AccompanyDetailBottomView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AccompanyDetailBottomView.h; sourceTree = "<group>"; };
  1371. BC27A073280FF60B00F91E27 /* AccompanyDetailBottomView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AccompanyDetailBottomView.m; sourceTree = "<group>"; };
  1372. BC27A075280FF61300F91E27 /* AccompanyDetailBottomView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AccompanyDetailBottomView.xib; sourceTree = "<group>"; };
  1373. BC27A077280FFA2100F91E27 /* EvaluateDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EvaluateDetailModel.h; sourceTree = "<group>"; };
  1374. BC27A078280FFA2200F91E27 /* EvaluateDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EvaluateDetailModel.m; sourceTree = "<group>"; };
  1375. BC2858292809036C0024697C /* StudentInfoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StudentInfoModel.h; sourceTree = "<group>"; };
  1376. BC28582A2809036D0024697C /* StudentInfoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StudentInfoModel.m; sourceTree = "<group>"; };
  1377. BC40B9F62811767A00DEC0D1 /* HotInformationHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HotInformationHeadView.h; sourceTree = "<group>"; };
  1378. BC40B9F72811767A00DEC0D1 /* HotInformationHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HotInformationHeadView.m; sourceTree = "<group>"; };
  1379. BC40B9F92811768400DEC0D1 /* HotInformationHeadView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HotInformationHeadView.xib; sourceTree = "<group>"; };
  1380. BC40B9FB281177BD00DEC0D1 /* HomeInformationCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeInformationCell.h; sourceTree = "<group>"; };
  1381. BC40B9FC281177BD00DEC0D1 /* HomeInformationCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeInformationCell.m; sourceTree = "<group>"; };
  1382. BC40B9FD281177BD00DEC0D1 /* HomeInformationCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeInformationCell.xib; sourceTree = "<group>"; };
  1383. BC40BA0028117B0A00DEC0D1 /* HomeBannerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBannerCell.h; sourceTree = "<group>"; };
  1384. BC40BA0128117B0A00DEC0D1 /* HomeBannerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBannerCell.m; sourceTree = "<group>"; };
  1385. BC40BA0228117B0A00DEC0D1 /* HomeBannerCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeBannerCell.xib; sourceTree = "<group>"; };
  1386. BC40BA0628117B3A00DEC0D1 /* TYCyclePagerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerView.h; sourceTree = "<group>"; };
  1387. BC40BA0728117B3A00DEC0D1 /* TYCyclePagerTransformLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerTransformLayout.h; sourceTree = "<group>"; };
  1388. BC40BA0828117B3A00DEC0D1 /* TYPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYPageControl.m; sourceTree = "<group>"; };
  1389. BC40BA0928117B3A00DEC0D1 /* TYCyclePagerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerView.m; sourceTree = "<group>"; };
  1390. BC40BA0A28117B3A00DEC0D1 /* TYCyclePagerTransformLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerTransformLayout.m; sourceTree = "<group>"; };
  1391. BC40BA0B28117B3A00DEC0D1 /* TYPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYPageControl.h; sourceTree = "<group>"; };
  1392. BC40BA1628124D3D00DEC0D1 /* NoticeMessageViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoticeMessageViewController.h; sourceTree = "<group>"; };
  1393. BC40BA1728124D3D00DEC0D1 /* NoticeMessageViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoticeMessageViewController.m; sourceTree = "<group>"; };
  1394. BC40BA19281251EC00DEC0D1 /* HomeMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeMessageModel.h; sourceTree = "<group>"; };
  1395. BC40BA1A281251ED00DEC0D1 /* HomeMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeMessageModel.m; sourceTree = "<group>"; };
  1396. BC40BA1C2812552200DEC0D1 /* KSHomeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHomeButton.m; sourceTree = "<group>"; };
  1397. BC40BA1D2812552200DEC0D1 /* KSHomeButton.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSHomeButton.xib; sourceTree = "<group>"; };
  1398. BC40BA1E2812552300DEC0D1 /* KSHomeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHomeButton.h; sourceTree = "<group>"; };
  1399. BC40BA21281255F700DEC0D1 /* HomeCourseTipsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeCourseTipsView.h; sourceTree = "<group>"; };
  1400. BC40BA22281255F700DEC0D1 /* HomeCourseTipsView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeCourseTipsView.m; sourceTree = "<group>"; };
  1401. BC40BA242812560100DEC0D1 /* HomeCourseTipsView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeCourseTipsView.xib; sourceTree = "<group>"; };
  1402. BC50171027FC0D5600F8BCBC /* SubjectChooseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubjectChooseViewController.h; sourceTree = "<group>"; };
  1403. BC50171127FC0D5600F8BCBC /* SubjectChooseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubjectChooseViewController.m; sourceTree = "<group>"; };
  1404. BC50171327FC0D8300F8BCBC /* SubjectChooseBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubjectChooseBodyView.h; sourceTree = "<group>"; };
  1405. BC50171427FC0D8300F8BCBC /* SubjectChooseBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubjectChooseBodyView.m; sourceTree = "<group>"; };
  1406. BC50171627FC0D8D00F8BCBC /* SubjectChooseBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SubjectChooseBodyView.xib; sourceTree = "<group>"; };
  1407. BCB6340C27F6D29500ACFDCF /* KSRCMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCMessageModel.h; sourceTree = "<group>"; };
  1408. BCB6340D27F6D29500ACFDCF /* KSLiveChatroomWelcome.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomWelcome.m; sourceTree = "<group>"; };
  1409. BCB6340E27F6D29500ACFDCF /* KSLiveChatroomLeave.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomLeave.m; sourceTree = "<group>"; };
  1410. BCB6340F27F6D29500ACFDCF /* KSLiveChatroomEnter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomEnter.m; sourceTree = "<group>"; };
  1411. BCB6341027F6D29500ACFDCF /* KSLiveChatroomMemberCount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomMemberCount.h; sourceTree = "<group>"; };
  1412. BCB6341127F6D29500ACFDCF /* KSLiveChatroomUserQuit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomUserQuit.h; sourceTree = "<group>"; };
  1413. BCB6341227F6D29500ACFDCF /* KSLiveChatroomKickOut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomKickOut.m; sourceTree = "<group>"; };
  1414. BCB6341327F6D29500ACFDCF /* KSLiveChatroomLike.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomLike.h; sourceTree = "<group>"; };
  1415. BCB6341427F6D29500ACFDCF /* KSLiveChatroomSeatApply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomSeatApply.h; sourceTree = "<group>"; };
  1416. BCB6341527F6D29500ACFDCF /* KSChatroomMessageCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatroomMessageCenter.m; sourceTree = "<group>"; };
  1417. BCB6341627F6D29500ACFDCF /* KSLiveChatroomSeatResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomSeatResponse.h; sourceTree = "<group>"; };
  1418. BCB6341727F6D29500ACFDCF /* KSLiveChatroomDownSeat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomDownSeat.m; sourceTree = "<group>"; };
  1419. BCB6341827F6D29500ACFDCF /* KSLiveChatroomClose.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomClose.h; sourceTree = "<group>"; };
  1420. BCB6341927F6D29500ACFDCF /* KSLiveChatroomWelcome.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomWelcome.h; sourceTree = "<group>"; };
  1421. BCB6341A27F6D29500ACFDCF /* KSRCMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCMessageModel.m; sourceTree = "<group>"; };
  1422. BCB6341B27F6D29500ACFDCF /* KSLiveChatroomLeave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomLeave.h; sourceTree = "<group>"; };
  1423. BCB6341C27F6D29500ACFDCF /* KSLiveChatroomSeatApply.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomSeatApply.m; sourceTree = "<group>"; };
  1424. BCB6341D27F6D29500ACFDCF /* KSLiveChatroomLike.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomLike.m; sourceTree = "<group>"; };
  1425. BCB6341E27F6D29500ACFDCF /* KSLiveChatroomUserQuit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomUserQuit.m; sourceTree = "<group>"; };
  1426. BCB6341F27F6D29500ACFDCF /* KSLiveChatroomKickOut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomKickOut.h; sourceTree = "<group>"; };
  1427. BCB6342027F6D29500ACFDCF /* KSLiveChatroomMemberCount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomMemberCount.m; sourceTree = "<group>"; };
  1428. BCB6342127F6D29500ACFDCF /* KSLiveChatroomEnter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomEnter.h; sourceTree = "<group>"; };
  1429. BCB6342227F6D29500ACFDCF /* KSLiveChatroomClose.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomClose.m; sourceTree = "<group>"; };
  1430. BCB6342327F6D29500ACFDCF /* KSLiveChatroomDownSeat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomDownSeat.h; sourceTree = "<group>"; };
  1431. BCB6342427F6D29500ACFDCF /* KSLiveChatroomSeatResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomSeatResponse.m; sourceTree = "<group>"; };
  1432. BCB6342527F6D29500ACFDCF /* KSChatroomMessageCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatroomMessageCenter.h; sourceTree = "<group>"; };
  1433. BCB6342727F6D29500ACFDCF /* LiveVideoRoomViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveVideoRoomViewController.m; sourceTree = "<group>"; };
  1434. BCB6342A27F6D29500ACFDCF /* LiveVideoRoomViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveVideoRoomViewController.h; sourceTree = "<group>"; };
  1435. BCB6342E27F6D29500ACFDCF /* KSEnterLiveroomManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSEnterLiveroomManager.h; sourceTree = "<group>"; };
  1436. BCB6342F27F6D29500ACFDCF /* KSLiveStreamVideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveStreamVideo.h; sourceTree = "<group>"; };
  1437. BCB6343027F6D29500ACFDCF /* LiveroomTimeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveroomTimeManager.h; sourceTree = "<group>"; };
  1438. BCB6343127F6D29500ACFDCF /* LiveSeatMember.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveSeatMember.h; sourceTree = "<group>"; };
  1439. BCB6343227F6D29500ACFDCF /* KSEnterLiveroomManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSEnterLiveroomManager.m; sourceTree = "<group>"; };
  1440. BCB6343327F6D29500ACFDCF /* KSLiveStreamVideo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveStreamVideo.m; sourceTree = "<group>"; };
  1441. BCB6343427F6D29500ACFDCF /* LiveroomTimeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveroomTimeManager.m; sourceTree = "<group>"; };
  1442. BCB6343527F6D29500ACFDCF /* LiveSeatMember.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveSeatMember.m; sourceTree = "<group>"; };
  1443. BCB6343827F6D29500ACFDCF /* KSChatEmojiBoardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatEmojiBoardView.m; sourceTree = "<group>"; };
  1444. BCB6343927F6D29500ACFDCF /* KSChatInputBarControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatInputBarControl.h; sourceTree = "<group>"; };
  1445. BCB6343A27F6D29500ACFDCF /* KSChatInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatInputView.m; sourceTree = "<group>"; };
  1446. BCB6343C27F6D29500ACFDCF /* KSChatEmojiCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatEmojiCollectionCell.h; sourceTree = "<group>"; };
  1447. BCB6343D27F6D29500ACFDCF /* KSChatEmojiCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatEmojiCollectionCell.m; sourceTree = "<group>"; };
  1448. BCB6343E27F6D29500ACFDCF /* BaseEmoji.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = BaseEmoji.plist; sourceTree = "<group>"; };
  1449. BCB6343F27F6D29500ACFDCF /* KSChatEmojiBoardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatEmojiBoardView.h; sourceTree = "<group>"; };
  1450. BCB6344027F6D29500ACFDCF /* KSChatInputBarControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatInputBarControl.m; sourceTree = "<group>"; };
  1451. BCB6344127F6D29500ACFDCF /* KSChatInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatInputView.h; sourceTree = "<group>"; };
  1452. BCB6344427F6D29500ACFDCF /* LiveRoomLikeLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveRoomLikeLayer.m; sourceTree = "<group>"; };
  1453. BCB6344627F6D29500ACFDCF /* SeatContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SeatContentView.h; sourceTree = "<group>"; };
  1454. BCB6344927F6D29500ACFDCF /* LiveSeatApplyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveSeatApplyView.h; sourceTree = "<group>"; };
  1455. BCB6344A27F6D29500ACFDCF /* LiveSeatApplyCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveSeatApplyCell.h; sourceTree = "<group>"; };
  1456. BCB6344D27F6D29500ACFDCF /* KSChatroomTextCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatroomTextCell.h; sourceTree = "<group>"; };
  1457. BCB6345227F6D29500ACFDCF /* LiveRoomLikeLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveRoomLikeLayer.h; sourceTree = "<group>"; };
  1458. BCB6345327F6D29600ACFDCF /* LiveSeatApplyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveSeatApplyView.m; sourceTree = "<group>"; };
  1459. BCB6345427F6D29600ACFDCF /* LiveSeatApplyCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveSeatApplyCell.xib; sourceTree = "<group>"; };
  1460. BCB6345627F6D29600ACFDCF /* SeatContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SeatContentView.m; sourceTree = "<group>"; };
  1461. BCB6345827F6D29600ACFDCF /* LiveSeatApplyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveSeatApplyView.xib; sourceTree = "<group>"; };
  1462. BCB6345927F6D29600ACFDCF /* KSChatroomTextCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatroomTextCell.m; sourceTree = "<group>"; };
  1463. BCB6345C27F6D29600ACFDCF /* LiveSeatApplyCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveSeatApplyCell.m; sourceTree = "<group>"; };
  1464. BCB6348827F6D2A200ACFDCF /* KSRemoteUserManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRemoteUserManager.h; sourceTree = "<group>"; };
  1465. BCB6348A27F6D2A200ACFDCF /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SealClass.strings"; sourceTree = "<group>"; };
  1466. BCB6348F27F6D2A200ACFDCF /* ZoomControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZoomControl.m; sourceTree = "<group>"; };
  1467. BCB6349027F6D2A200ACFDCF /* ZoomControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZoomControl.h; sourceTree = "<group>"; };
  1468. BCB6349327F6D2A200ACFDCF /* InputBarControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputBarControl.h; sourceTree = "<group>"; };
  1469. BCB6349427F6D2A200ACFDCF /* InputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InputView.m; sourceTree = "<group>"; };
  1470. BCB6349527F6D2A200ACFDCF /* EmojiBoardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmojiBoardView.h; sourceTree = "<group>"; };
  1471. BCB6349627F6D2A200ACFDCF /* InputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputView.h; sourceTree = "<group>"; };
  1472. BCB6349827F6D2A200ACFDCF /* CREmojiCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CREmojiCollectionCell.m; sourceTree = "<group>"; };
  1473. BCB6349927F6D2A200ACFDCF /* CREmojiCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CREmojiCollectionCell.h; sourceTree = "<group>"; };
  1474. BCB6349A27F6D2A200ACFDCF /* InputBarControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InputBarControl.m; sourceTree = "<group>"; };
  1475. BCB6349B27F6D2A200ACFDCF /* EmojiBoardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmojiBoardView.m; sourceTree = "<group>"; };
  1476. BCB6349C27F6D2A200ACFDCF /* ChatAreaView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAreaView.h; sourceTree = "<group>"; };
  1477. BCB6349F27F6D2A200ACFDCF /* TextMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextMessageCell.h; sourceTree = "<group>"; };
  1478. BCB634A027F6D2A200ACFDCF /* TimeStampCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeStampCell.m; sourceTree = "<group>"; };
  1479. BCB634A127F6D2A200ACFDCF /* TipMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TipMessageCell.h; sourceTree = "<group>"; };
  1480. BCB634A227F6D2A200ACFDCF /* MessageBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageBaseCell.h; sourceTree = "<group>"; };
  1481. BCB634A327F6D2A200ACFDCF /* MessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageCell.h; sourceTree = "<group>"; };
  1482. BCB634A427F6D2A200ACFDCF /* TextMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextMessageCell.m; sourceTree = "<group>"; };
  1483. BCB634A527F6D2A200ACFDCF /* TimeStampCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeStampCell.h; sourceTree = "<group>"; };
  1484. BCB634A627F6D2A200ACFDCF /* TipMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TipMessageCell.m; sourceTree = "<group>"; };
  1485. BCB634A727F6D2A200ACFDCF /* MessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageCell.m; sourceTree = "<group>"; };
  1486. BCB634A827F6D2A200ACFDCF /* MessageBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageBaseCell.m; sourceTree = "<group>"; };
  1487. BCB634A927F6D2A200ACFDCF /* MessageDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageDataSource.m; sourceTree = "<group>"; };
  1488. BCB634AA27F6D2A200ACFDCF /* MessageHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageHelper.m; sourceTree = "<group>"; };
  1489. BCB634AB27F6D2A200ACFDCF /* MessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageModel.m; sourceTree = "<group>"; };
  1490. BCB634AD27F6D2A200ACFDCF /* TimeStampMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeStampMessage.m; sourceTree = "<group>"; };
  1491. BCB634AE27F6D2A200ACFDCF /* TimeStampMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeStampMessage.h; sourceTree = "<group>"; };
  1492. BCB634AF27F6D2A300ACFDCF /* MessageHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageHelper.h; sourceTree = "<group>"; };
  1493. BCB634B027F6D2A300ACFDCF /* MessageDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDataSource.h; sourceTree = "<group>"; };
  1494. BCB634B127F6D2A300ACFDCF /* MessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageModel.h; sourceTree = "<group>"; };
  1495. BCB634B227F6D2A300ACFDCF /* ChatAreaView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAreaView.m; sourceTree = "<group>"; };
  1496. BCB634B427F6D2A300ACFDCF /* ClassroomTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomTitleView.m; sourceTree = "<group>"; };
  1497. BCB634B527F6D2A300ACFDCF /* ClassroomTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomTitleView.h; sourceTree = "<group>"; };
  1498. BCB634B727F6D2A300ACFDCF /* VideoListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoListCell.m; sourceTree = "<group>"; };
  1499. BCB634B827F6D2A300ACFDCF /* VideoListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoListView.m; sourceTree = "<group>"; };
  1500. BCB634B927F6D2A300ACFDCF /* VideoListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoListCell.h; sourceTree = "<group>"; };
  1501. BCB634BA27F6D2A300ACFDCF /* VideoListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoListView.h; sourceTree = "<group>"; };
  1502. BCB634BC27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecentSharedWhiteboardCell.m; sourceTree = "<group>"; };
  1503. BCB634BD27F6D2A300ACFDCF /* RecentSharedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecentSharedView.m; sourceTree = "<group>"; };
  1504. BCB634BE27F6D2A300ACFDCF /* RecentSharedVideoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecentSharedVideoCell.m; sourceTree = "<group>"; };
  1505. BCB634BF27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecentSharedWhiteboardCell.h; sourceTree = "<group>"; };
  1506. BCB634C027F6D2A300ACFDCF /* RecentSharedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecentSharedView.h; sourceTree = "<group>"; };
  1507. BCB634C127F6D2A300ACFDCF /* RecentSharedVideoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecentSharedVideoCell.h; sourceTree = "<group>"; };
  1508. BCB634C327F6D2A300ACFDCF /* UpgradeDidApplyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UpgradeDidApplyView.m; sourceTree = "<group>"; };
  1509. BCB634C427F6D2A300ACFDCF /* UpgradeDidApplyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpgradeDidApplyView.h; sourceTree = "<group>"; };
  1510. BCB634C627F6D2A300ACFDCF /* PersonListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonListView.m; sourceTree = "<group>"; };
  1511. BCB634C727F6D2A300ACFDCF /* PersonListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonListCell.m; sourceTree = "<group>"; };
  1512. BCB634C827F6D2A300ACFDCF /* PersonListSectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonListSectionView.h; sourceTree = "<group>"; };
  1513. BCB634C927F6D2A300ACFDCF /* PersonListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonListView.h; sourceTree = "<group>"; };
  1514. BCB634CA27F6D2A300ACFDCF /* PersonListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonListCell.h; sourceTree = "<group>"; };
  1515. BCB634CB27F6D2A300ACFDCF /* PersonListSectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonListSectionView.m; sourceTree = "<group>"; };
  1516. BCB634CD27F6D2A300ACFDCF /* ToolPanelView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToolPanelView.m; sourceTree = "<group>"; };
  1517. BCB634CE27F6D2A300ACFDCF /* ToolPanelView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToolPanelView.h; sourceTree = "<group>"; };
  1518. BCB634D027F6D2A300ACFDCF /* MainContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainContainerView.m; sourceTree = "<group>"; };
  1519. BCB634D127F6D2A300ACFDCF /* EmptyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmptyView.h; sourceTree = "<group>"; };
  1520. BCB634D227F6D2A300ACFDCF /* VideoMaskView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoMaskView.m; sourceTree = "<group>"; };
  1521. BCB634D327F6D2A300ACFDCF /* MainContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainContainerView.h; sourceTree = "<group>"; };
  1522. BCB634D427F6D2A300ACFDCF /* EmptyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmptyView.m; sourceTree = "<group>"; };
  1523. BCB634D527F6D2A300ACFDCF /* VideoMaskView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoMaskView.h; sourceTree = "<group>"; };
  1524. BCB634D727F6D2A300ACFDCF /* KSWhiteboardControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWhiteboardControl.h; sourceTree = "<group>"; };
  1525. BCB634D827F6D2A300ACFDCF /* KSWhiteboardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWhiteboardView.m; sourceTree = "<group>"; };
  1526. BCB634D927F6D2A300ACFDCF /* WhiteUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WhiteUtils.h; sourceTree = "<group>"; };
  1527. BCB634DA27F6D2A300ACFDCF /* KSWhiteboardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWhiteboardView.h; sourceTree = "<group>"; };
  1528. BCB634DB27F6D2A300ACFDCF /* KSWhiteboardControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWhiteboardControl.m; sourceTree = "<group>"; };
  1529. BCB634DC27F6D2A300ACFDCF /* WhiteUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WhiteUtils.m; sourceTree = "<group>"; };
  1530. BCB634DE27F6D2A300ACFDCF /* LoginHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginHelper.m; sourceTree = "<group>"; };
  1531. BCB634E027F6D2A300ACFDCF /* SelectionButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectionButton.m; sourceTree = "<group>"; };
  1532. BCB634E127F6D2A300ACFDCF /* InputTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputTextField.h; sourceTree = "<group>"; };
  1533. BCB634E227F6D2A300ACFDCF /* SelectionButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectionButton.h; sourceTree = "<group>"; };
  1534. BCB634E327F6D2A300ACFDCF /* InputTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InputTextField.m; sourceTree = "<group>"; };
  1535. BCB634E427F6D2A300ACFDCF /* LoginHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginHelper.h; sourceTree = "<group>"; };
  1536. BCB634E527F6D2A300ACFDCF /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SealClass.strings; sourceTree = "<group>"; };
  1537. BCB634E727F6D2A300ACFDCF /* ErrorCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ErrorCode.h; sourceTree = "<group>"; };
  1538. BCB634E927F6D2A300ACFDCF /* UIView+MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MBProgressHUD.h"; sourceTree = "<group>"; };
  1539. BCB634EA27F6D2A300ACFDCF /* UIView+MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MBProgressHUD.m"; sourceTree = "<group>"; };
  1540. BCB634EC27F6D2A300ACFDCF /* RolePortraitView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RolePortraitView.m; sourceTree = "<group>"; };
  1541. BCB634ED27F6D2A300ACFDCF /* RolePortraitView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RolePortraitView.h; sourceTree = "<group>"; };
  1542. BCB634EE27F6D2A300ACFDCF /* Macro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Macro.h; sourceTree = "<group>"; };
  1543. BCB634F027F6D2A300ACFDCF /* HTTPUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPUtility.m; sourceTree = "<group>"; };
  1544. BCB634F127F6D2A300ACFDCF /* HTTPResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPResult.m; sourceTree = "<group>"; };
  1545. BCB634F227F6D2A300ACFDCF /* HTTPUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPUtility.h; sourceTree = "<group>"; };
  1546. BCB634F327F6D2A300ACFDCF /* HTTPResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPResult.h; sourceTree = "<group>"; };
  1547. BCB634F527F6D2A300ACFDCF /* NormalAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NormalAlertView.h; sourceTree = "<group>"; };
  1548. BCB634F627F6D2A300ACFDCF /* NormalAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NormalAlertView.m; sourceTree = "<group>"; };
  1549. BCB634F727F6D2A300ACFDCF /* class_stop.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = class_stop.mp3; sourceTree = "<group>"; };
  1550. BCB634F827F6D2A300ACFDCF /* KSRemoteUserManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRemoteUserManager.m; sourceTree = "<group>"; };
  1551. BCB634FB27F6D2A300ACFDCF /* ClassroomService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomService.h; sourceTree = "<group>"; };
  1552. BCB634FD27F6D2A300ACFDCF /* RoleChangedMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoleChangedMessage.h; sourceTree = "<group>"; };
  1553. BCB634FE27F6D2A300ACFDCF /* AssistantTransferMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AssistantTransferMessage.h; sourceTree = "<group>"; };
  1554. BCB634FF27F6D2A300ACFDCF /* InviteUpgradeMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InviteUpgradeMessage.h; sourceTree = "<group>"; };
  1555. BCB6350027F6D2A300ACFDCF /* ApplySpeechMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechMessage.m; sourceTree = "<group>"; };
  1556. BCB6350127F6D2A300ACFDCF /* ApplySpeechResultMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechResultMessage.h; sourceTree = "<group>"; };
  1557. BCB6350227F6D2A300ACFDCF /* DisplayCommandMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DisplayCommandMessage.m; sourceTree = "<group>"; };
  1558. BCB6350327F6D2A300ACFDCF /* MemberChangeMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemberChangeMessage.h; sourceTree = "<group>"; };
  1559. BCB6350427F6D2A300ACFDCF /* SongDownloadMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongDownloadMessage.m; sourceTree = "<group>"; };
  1560. BCB6350527F6D2A300ACFDCF /* DeviceMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceMessage.h; sourceTree = "<group>"; };
  1561. BCB6350627F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ControlDeviceNotifyMessage.m; sourceTree = "<group>"; };
  1562. BCB6350727F6D2A300ACFDCF /* AccompanyDownloadMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyDownloadMessage.h; sourceTree = "<group>"; };
  1563. BCB6350827F6D2A300ACFDCF /* TicketExpiredMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketExpiredMessage.m; sourceTree = "<group>"; };
  1564. BCB6350927F6D2A300ACFDCF /* NodePlayMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NodePlayMessage.h; sourceTree = "<group>"; };
  1565. BCB6350A27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyDownloadCallbackMessage.h; sourceTree = "<group>"; };
  1566. BCB6350B27F6D2A300ACFDCF /* TurnPageMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TurnPageMessage.h; sourceTree = "<group>"; };
  1567. BCB6350C27F6D2A300ACFDCF /* WhiteboardMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WhiteboardMessage.m; sourceTree = "<group>"; };
  1568. BCB6350D27F6D2A300ACFDCF /* SongDownloadCallbackMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongDownloadCallbackMessage.m; sourceTree = "<group>"; };
  1569. BCB6350E27F6D2A300ACFDCF /* AssistantTransferMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AssistantTransferMessage.m; sourceTree = "<group>"; };
  1570. BCB6350F27F6D2A300ACFDCF /* RoleChangedMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoleChangedMessage.m; sourceTree = "<group>"; };
  1571. BCB6351027F6D2A300ACFDCF /* InviteUpgradeMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InviteUpgradeMessage.m; sourceTree = "<group>"; };
  1572. BCB6351127F6D2A300ACFDCF /* AccompanyDownloadMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyDownloadMessage.m; sourceTree = "<group>"; };
  1573. BCB6351227F6D2A300ACFDCF /* ControlDeviceNotifyMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlDeviceNotifyMessage.h; sourceTree = "<group>"; };
  1574. BCB6351327F6D2A300ACFDCF /* DeviceMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceMessage.m; sourceTree = "<group>"; };
  1575. BCB6351427F6D2A300ACFDCF /* SongDownloadMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongDownloadMessage.h; sourceTree = "<group>"; };
  1576. BCB6351527F6D2A300ACFDCF /* MemberChangeMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MemberChangeMessage.m; sourceTree = "<group>"; };
  1577. BCB6351627F6D2A300ACFDCF /* DisplayCommandMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisplayCommandMessage.h; sourceTree = "<group>"; };
  1578. BCB6351727F6D2A300ACFDCF /* ApplySpeechResultMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechResultMessage.m; sourceTree = "<group>"; };
  1579. BCB6351827F6D2A300ACFDCF /* ApplySpeechMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechMessage.h; sourceTree = "<group>"; };
  1580. BCB6351927F6D2A300ACFDCF /* SongDownloadCallbackMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongDownloadCallbackMessage.h; sourceTree = "<group>"; };
  1581. BCB6351A27F6D2A300ACFDCF /* WhiteboardMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WhiteboardMessage.h; sourceTree = "<group>"; };
  1582. BCB6351B27F6D2A300ACFDCF /* TurnPageMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TurnPageMessage.m; sourceTree = "<group>"; };
  1583. BCB6351C27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyDownloadCallbackMessage.m; sourceTree = "<group>"; };
  1584. BCB6351D27F6D2A300ACFDCF /* NodePlayMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NodePlayMessage.m; sourceTree = "<group>"; };
  1585. BCB6351E27F6D2A300ACFDCF /* TicketExpiredMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketExpiredMessage.h; sourceTree = "<group>"; };
  1586. BCB6352027F6D2A300ACFDCF /* Whiteboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Whiteboard.m; sourceTree = "<group>"; };
  1587. BCB6352127F6D2A300ACFDCF /* RoomMember.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomMember.m; sourceTree = "<group>"; };
  1588. BCB6352227F6D2A300ACFDCF /* ClassSongMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassSongMessage.m; sourceTree = "<group>"; };
  1589. BCB6352327F6D2A300ACFDCF /* Classroom.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Classroom.m; sourceTree = "<group>"; };
  1590. BCB6352427F6D2A300ACFDCF /* Whiteboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Whiteboard.h; sourceTree = "<group>"; };
  1591. BCB6352527F6D2A300ACFDCF /* Classroom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Classroom.h; sourceTree = "<group>"; };
  1592. BCB6352627F6D2A300ACFDCF /* ClassSongMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassSongMessage.h; sourceTree = "<group>"; };
  1593. BCB6352727F6D2A300ACFDCF /* RoomMember.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomMember.h; sourceTree = "<group>"; };
  1594. BCB6352827F6D2A300ACFDCF /* ClassroomDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomDefine.h; sourceTree = "<group>"; };
  1595. BCB6352927F6D2A300ACFDCF /* ClassroomService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomService.m; sourceTree = "<group>"; };
  1596. BCB6352B27F6D2A300ACFDCF /* RTCService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTCService.m; sourceTree = "<group>"; };
  1597. BCB6352C27F6D2A300ACFDCF /* RTCService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCService.h; sourceTree = "<group>"; };
  1598. BCB6352E27F6D2A300ACFDCF /* KSIMService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSIMService.h; sourceTree = "<group>"; };
  1599. BCB6352F27F6D2A300ACFDCF /* KSIMService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSIMService.m; sourceTree = "<group>"; };
  1600. BCB6357527F6D2AB00ACFDCF /* NewClassRoomViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewClassRoomViewController.h; sourceTree = "<group>"; };
  1601. BCB6357627F6D2AB00ACFDCF /* NewClassRoomViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewClassRoomViewController.m; sourceTree = "<group>"; };
  1602. BCB6357827F6D2AB00ACFDCF /* LocalRenderManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalRenderManager.h; sourceTree = "<group>"; };
  1603. BCB6357927F6D2AB00ACFDCF /* OnlineClassManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlineClassManager.m; sourceTree = "<group>"; };
  1604. BCB6357A27F6D2AB00ACFDCF /* ClassroomTimerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomTimerManager.h; sourceTree = "<group>"; };
  1605. BCB6357B27F6D2AB00ACFDCF /* LocalRenderManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalRenderManager.m; sourceTree = "<group>"; };
  1606. BCB6357C27F6D2AB00ACFDCF /* OnlineClassManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlineClassManager.h; sourceTree = "<group>"; };
  1607. BCB6357D27F6D2AB00ACFDCF /* ClassroomTimerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomTimerManager.m; sourceTree = "<group>"; };
  1608. BCB6358027F6D2AB00ACFDCF /* KSTipsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTipsView.m; sourceTree = "<group>"; };
  1609. BCB6358127F6D2AB00ACFDCF /* KSTipsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTipsView.h; sourceTree = "<group>"; };
  1610. BCB6358227F6D2AB00ACFDCF /* tick.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = tick.wav; sourceTree = "<group>"; };
  1611. BCB6358427F6D2AB00ACFDCF /* ClassVideoListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListView.h; sourceTree = "<group>"; };
  1612. BCB6358527F6D2AB00ACFDCF /* ClassVideoListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListCell.h; sourceTree = "<group>"; };
  1613. BCB6358627F6D2AB00ACFDCF /* KSBeatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBeatView.h; sourceTree = "<group>"; };
  1614. BCB6358727F6D2AB00ACFDCF /* ClassVideoListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListView.m; sourceTree = "<group>"; };
  1615. BCB6358827F6D2AB00ACFDCF /* KSBeatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBeatView.m; sourceTree = "<group>"; };
  1616. BCB6358927F6D2AB00ACFDCF /* ClassVideoListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListCell.m; sourceTree = "<group>"; };
  1617. BCB6358A27F6D2AB00ACFDCF /* tock.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = tock.wav; sourceTree = "<group>"; };
  1618. BCB6358C27F6D2AB00ACFDCF /* ClassroomMainContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomMainContainer.h; sourceTree = "<group>"; };
  1619. BCB6358D27F6D2AB00ACFDCF /* ClassroomMainContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomMainContainer.m; sourceTree = "<group>"; };
  1620. BCB6358F27F6D2AB00ACFDCF /* ClassTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassTitleView.h; sourceTree = "<group>"; };
  1621. BCB6359027F6D2AB00ACFDCF /* ClassTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassTitleView.m; sourceTree = "<group>"; };
  1622. BCB6359227F6D2AB00ACFDCF /* MainToolView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainToolView.m; sourceTree = "<group>"; };
  1623. BCB6359327F6D2AB00ACFDCF /* MainToolView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainToolView.h; sourceTree = "<group>"; };
  1624. BCB635A127F6D3FE00ACFDCF /* KSNormalAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNormalAlertView.h; sourceTree = "<group>"; };
  1625. BCB635A227F6D3FE00ACFDCF /* KSNormalAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNormalAlertView.m; sourceTree = "<group>"; };
  1626. BCB635A427F6D90600ACFDCF /* KSLiveEmptyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveEmptyView.m; sourceTree = "<group>"; };
  1627. BCB635A527F6D90600ACFDCF /* KSLiveEmptyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveEmptyView.h; sourceTree = "<group>"; };
  1628. BCB635A727F6D93300ACFDCF /* KSChatVideoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatVideoView.m; sourceTree = "<group>"; };
  1629. BCB635A827F6D93300ACFDCF /* KSChatVideoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatVideoView.h; sourceTree = "<group>"; };
  1630. BCB635AA27F6E06500ACFDCF /* LiveRoomHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveRoomHeadView.h; sourceTree = "<group>"; };
  1631. BCB635AB27F6E06500ACFDCF /* LiveRoomHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveRoomHeadView.m; sourceTree = "<group>"; };
  1632. BCB635AC27F6E06500ACFDCF /* LiveRoomHeadView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveRoomHeadView.xib; sourceTree = "<group>"; };
  1633. BCB635AF27F6E1A600ACFDCF /* LiveRoomBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveRoomBottomView.h; sourceTree = "<group>"; };
  1634. BCB635B027F6E1A600ACFDCF /* LiveRoomBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveRoomBottomView.m; sourceTree = "<group>"; };
  1635. BCB635B127F6E1A600ACFDCF /* LiveRoomBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveRoomBottomView.xib; sourceTree = "<group>"; };
  1636. BCBFDF3528110C660052AFE5 /* HomeNavView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeNavView.h; sourceTree = "<group>"; };
  1637. BCBFDF3628110C660052AFE5 /* HomeNavView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeNavView.m; sourceTree = "<group>"; };
  1638. BCBFDF3828110C6F0052AFE5 /* HomeNavView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeNavView.xib; sourceTree = "<group>"; };
  1639. BCBFDF3A281156430052AFE5 /* HomeBannerView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBannerView.h; sourceTree = "<group>"; };
  1640. BCBFDF3B281156430052AFE5 /* HomeBannerView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBannerView.m; sourceTree = "<group>"; };
  1641. BCBFDF3D2811564C0052AFE5 /* HomeBannerView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeBannerView.xib; sourceTree = "<group>"; };
  1642. BCBFDF3F281157340052AFE5 /* HomeButtonView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeButtonView.h; sourceTree = "<group>"; };
  1643. BCBFDF40281157340052AFE5 /* HomeButtonView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeButtonView.m; sourceTree = "<group>"; };
  1644. BCBFDF422811573D0052AFE5 /* HomeButtonView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeButtonView.xib; sourceTree = "<group>"; };
  1645. BCBFDF44281159990052AFE5 /* HomeHotAlbumView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeHotAlbumView.h; sourceTree = "<group>"; };
  1646. BCBFDF45281159990052AFE5 /* HomeHotAlbumView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeHotAlbumView.m; sourceTree = "<group>"; };
  1647. BCBFDF47281159A40052AFE5 /* HomeHotAlbumView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeHotAlbumView.xib; sourceTree = "<group>"; };
  1648. BCBFDF4928115C6F0052AFE5 /* HomeHotCourseView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeHotCourseView.h; sourceTree = "<group>"; };
  1649. BCBFDF4A28115C6F0052AFE5 /* HomeHotCourseView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeHotCourseView.m; sourceTree = "<group>"; };
  1650. BCBFDF4C28115C7A0052AFE5 /* HomeHotCourseView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeHotCourseView.xib; sourceTree = "<group>"; };
  1651. BCBFDF4E28115D9A0052AFE5 /* HomeIntroduceView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeIntroduceView.h; sourceTree = "<group>"; };
  1652. BCBFDF4F28115D9A0052AFE5 /* HomeIntroduceView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeIntroduceView.m; sourceTree = "<group>"; };
  1653. BCBFDF5128115DA40052AFE5 /* HomeIntroduceView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeIntroduceView.xib; sourceTree = "<group>"; };
  1654. BCFE53E42812765600AD6786 /* HomeHotAlbumCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeHotAlbumCell.h; sourceTree = "<group>"; };
  1655. BCFE53E52812765600AD6786 /* HomeHotAlbumCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeHotAlbumCell.m; sourceTree = "<group>"; };
  1656. BCFE53E62812765600AD6786 /* HomeHotAlbumCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeHotAlbumCell.xib; sourceTree = "<group>"; };
  1657. BCFE53E92812897600AD6786 /* HomeLiveCouseCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeLiveCouseCell.h; sourceTree = "<group>"; };
  1658. BCFE53EA2812897600AD6786 /* HomeLiveCouseCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeLiveCouseCell.m; sourceTree = "<group>"; };
  1659. BCFE53EB2812897600AD6786 /* HomeLiveCouseCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeLiveCouseCell.xib; sourceTree = "<group>"; };
  1660. BCFE53EE2812898700AD6786 /* HomeVideoCourseCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeVideoCourseCell.h; sourceTree = "<group>"; };
  1661. BCFE53EF2812898700AD6786 /* HomeVideoCourseCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeVideoCourseCell.m; sourceTree = "<group>"; };
  1662. BCFE53F02812898700AD6786 /* HomeVideoCourseCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeVideoCourseCell.xib; sourceTree = "<group>"; };
  1663. BCFE53F328128A9600AD6786 /* TeacherShowCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TeacherShowCell.h; sourceTree = "<group>"; };
  1664. BCFE53F428128A9600AD6786 /* TeacherShowCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TeacherShowCell.m; sourceTree = "<group>"; };
  1665. BCFE53F528128A9600AD6786 /* TeacherShowCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TeacherShowCell.xib; sourceTree = "<group>"; };
  1666. BCFE53F828129A5500AD6786 /* TeacherStyleModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TeacherStyleModel.m; sourceTree = "<group>"; };
  1667. BCFE53F928129A5500AD6786 /* TeacherStyleModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TeacherStyleModel.h; sourceTree = "<group>"; };
  1668. BCFE53FB2814E1BD00AD6786 /* HomeVideoGroupModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeVideoGroupModel.h; sourceTree = "<group>"; };
  1669. BCFE53FC2814E1BD00AD6786 /* HomeLiveGroupModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeLiveGroupModel.h; sourceTree = "<group>"; };
  1670. BCFE53FD2814E1BE00AD6786 /* HomeLiveGroupModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeLiveGroupModel.m; sourceTree = "<group>"; };
  1671. BCFE53FE2814E1BE00AD6786 /* HomeVideoGroupModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeVideoGroupModel.m; sourceTree = "<group>"; };
  1672. C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudent_KulexiuForStudentUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1673. D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig"; sourceTree = "<group>"; };
  1674. DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudentTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1675. ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudentTests.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudentTests/Pods-KulexiuForStudentTests.release.xcconfig"; sourceTree = "<group>"; };
  1676. /* End PBXFileReference section */
  1677. /* Begin PBXFrameworksBuildPhase section */
  1678. 275E8AA227E18F8800DD3F6E /* Frameworks */ = {
  1679. isa = PBXFrameworksBuildPhase;
  1680. buildActionMask = 2147483647;
  1681. files = (
  1682. 82EE25CEB2BB5A0E1BB8D54B /* Pods_KulexiuForStudent.framework in Frameworks */,
  1683. );
  1684. runOnlyForDeploymentPostprocessing = 0;
  1685. };
  1686. 275E8ABD27E18F8C00DD3F6E /* Frameworks */ = {
  1687. isa = PBXFrameworksBuildPhase;
  1688. buildActionMask = 2147483647;
  1689. files = (
  1690. 93F0FA52C8A72F83D07C15A6 /* Pods_KulexiuForStudentTests.framework in Frameworks */,
  1691. );
  1692. runOnlyForDeploymentPostprocessing = 0;
  1693. };
  1694. 275E8AC727E18F8C00DD3F6E /* Frameworks */ = {
  1695. isa = PBXFrameworksBuildPhase;
  1696. buildActionMask = 2147483647;
  1697. files = (
  1698. C56C141D9D9D478077F14C1E /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework in Frameworks */,
  1699. );
  1700. runOnlyForDeploymentPostprocessing = 0;
  1701. };
  1702. /* End PBXFrameworksBuildPhase section */
  1703. /* Begin PBXGroup section */
  1704. 0C35B95085341A122CBEF122 /* Pods */ = {
  1705. isa = PBXGroup;
  1706. children = (
  1707. 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */,
  1708. 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */,
  1709. 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */,
  1710. D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */,
  1711. 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */,
  1712. ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */,
  1713. );
  1714. path = Pods;
  1715. sourceTree = "<group>";
  1716. };
  1717. 2723B5D027F157D300E0B90B /* Search */ = {
  1718. isa = PBXGroup;
  1719. children = (
  1720. 2723B5D127F157D300E0B90B /* Controller */,
  1721. 2723B5D427F157D300E0B90B /* Model */,
  1722. 2723B5D727F157D300E0B90B /* View */,
  1723. );
  1724. path = Search;
  1725. sourceTree = "<group>";
  1726. };
  1727. 2723B5D127F157D300E0B90B /* Controller */ = {
  1728. isa = PBXGroup;
  1729. children = (
  1730. 2723B5D227F157D300E0B90B /* KSSearchHistoryMessageController.h */,
  1731. 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */,
  1732. );
  1733. path = Controller;
  1734. sourceTree = "<group>";
  1735. };
  1736. 2723B5D427F157D300E0B90B /* Model */ = {
  1737. isa = PBXGroup;
  1738. children = (
  1739. 2723B5D527F157D300E0B90B /* KSSearchResultModel.h */,
  1740. 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */,
  1741. );
  1742. path = Model;
  1743. sourceTree = "<group>";
  1744. };
  1745. 2723B5D727F157D300E0B90B /* View */ = {
  1746. isa = PBXGroup;
  1747. children = (
  1748. 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */,
  1749. 2723B5D927F157D300E0B90B /* KSRCSearchBar.h */,
  1750. 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */,
  1751. 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */,
  1752. 2723B5DC27F157D300E0B90B /* KSSearchResultViewCell.h */,
  1753. 2723B5DD27F157D300E0B90B /* KSSearchRCLabel.h */,
  1754. );
  1755. path = View;
  1756. sourceTree = "<group>";
  1757. };
  1758. 2723B5DE27F157D400E0B90B /* GroupNotice */ = {
  1759. isa = PBXGroup;
  1760. children = (
  1761. 2723B5DF27F157D400E0B90B /* Controller */,
  1762. 2723B5E427F157D400E0B90B /* Model */,
  1763. 2723B5E727F157D400E0B90B /* View */,
  1764. );
  1765. path = GroupNotice;
  1766. sourceTree = "<group>";
  1767. };
  1768. 2723B5DF27F157D400E0B90B /* Controller */ = {
  1769. isa = PBXGroup;
  1770. children = (
  1771. 2723B5E127F157D400E0B90B /* GroupNoticeEditController.h */,
  1772. 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */,
  1773. 2723B5E327F157D400E0B90B /* GroupNoticeViewController.h */,
  1774. 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */,
  1775. );
  1776. path = Controller;
  1777. sourceTree = "<group>";
  1778. };
  1779. 2723B5E427F157D400E0B90B /* Model */ = {
  1780. isa = PBXGroup;
  1781. children = (
  1782. 2723B5E527F157D400E0B90B /* GroupNoticeModel.h */,
  1783. 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */,
  1784. );
  1785. path = Model;
  1786. sourceTree = "<group>";
  1787. };
  1788. 2723B5E727F157D400E0B90B /* View */ = {
  1789. isa = PBXGroup;
  1790. children = (
  1791. 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */,
  1792. 2723B5E927F157D400E0B90B /* NoticeEditBodyView.h */,
  1793. 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */,
  1794. 2723B5EB27F157D400E0B90B /* LFPopupMenu */,
  1795. 2723B5F027F157D400E0B90B /* GroupNoticeCell.h */,
  1796. 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */,
  1797. 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */,
  1798. );
  1799. path = View;
  1800. sourceTree = "<group>";
  1801. };
  1802. 2723B5EB27F157D400E0B90B /* LFPopupMenu */ = {
  1803. isa = PBXGroup;
  1804. children = (
  1805. 2723B5EC27F157D400E0B90B /* LFPopupMenuDefaultConfig.h */,
  1806. 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */,
  1807. 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */,
  1808. 2723B5EF27F157D400E0B90B /* LFPopupMenu.h */,
  1809. );
  1810. path = LFPopupMenu;
  1811. sourceTree = "<group>";
  1812. };
  1813. 2723B5F327F157D500E0B90B /* Group */ = {
  1814. isa = PBXGroup;
  1815. children = (
  1816. 2723B5F427F157D500E0B90B /* Controller */,
  1817. 2723B5FF27F157D500E0B90B /* Model */,
  1818. 2723B60227F157D500E0B90B /* View */,
  1819. );
  1820. path = Group;
  1821. sourceTree = "<group>";
  1822. };
  1823. 2723B5F427F157D500E0B90B /* Controller */ = {
  1824. isa = PBXGroup;
  1825. children = (
  1826. 2723B5FB27F157D500E0B90B /* GroupApplyViewController.h */,
  1827. 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */,
  1828. 2723B5FA27F157D500E0B90B /* GroupMemberViewController.h */,
  1829. 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */,
  1830. 2723B5F827F157D500E0B90B /* GroupSettingViewController.h */,
  1831. 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */,
  1832. 2723B5FE27F157D500E0B90B /* KSChatComplainController.h */,
  1833. 2723B5F927F157D500E0B90B /* KSChatComplainController.m */,
  1834. 2723B5FD27F157D500E0B90B /* KSSelectConversationViewController.h */,
  1835. 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */,
  1836. );
  1837. path = Controller;
  1838. sourceTree = "<group>";
  1839. };
  1840. 2723B5FF27F157D500E0B90B /* Model */ = {
  1841. isa = PBXGroup;
  1842. children = (
  1843. 2723B60027F157D500E0B90B /* ApplyMemberModel.m */,
  1844. 2723B60127F157D500E0B90B /* ApplyMemberModel.h */,
  1845. );
  1846. path = Model;
  1847. sourceTree = "<group>";
  1848. };
  1849. 2723B60227F157D500E0B90B /* View */ = {
  1850. isa = PBXGroup;
  1851. children = (
  1852. 2723B60E27F157D500E0B90B /* ApplyBottomView.h */,
  1853. 2723B60427F157D500E0B90B /* ApplyBottomView.m */,
  1854. 2723B61427F157D500E0B90B /* ApplyBottomView.xib */,
  1855. 2723B60327F157D500E0B90B /* ChatComplainBodyView.h */,
  1856. 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */,
  1857. 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */,
  1858. 2723B61127F157D500E0B90B /* GroupApplyChooseAllCell.h */,
  1859. 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */,
  1860. 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */,
  1861. 2723B60D27F157D500E0B90B /* GroupApplyChooseCell.h */,
  1862. 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */,
  1863. 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */,
  1864. 2723B60A27F157D500E0B90B /* GroupApplyMemberCell.h */,
  1865. 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */,
  1866. 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */,
  1867. 2723B60627F157D500E0B90B /* GroupMemberListCell.h */,
  1868. 2723B61327F157D500E0B90B /* GroupMemberListCell.m */,
  1869. 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */,
  1870. 2723B61527F157D500E0B90B /* GroupSettingBodyView.h */,
  1871. 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */,
  1872. 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */,
  1873. );
  1874. path = View;
  1875. sourceTree = "<group>";
  1876. };
  1877. 2723B63D27F15B5800E0B90B /* SCIndexView */ = {
  1878. isa = PBXGroup;
  1879. children = (
  1880. 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */,
  1881. 2723B63F27F15B5800E0B90B /* UITableView+SCIndexView.h */,
  1882. 2723B64027F15B5800E0B90B /* SCIndexView.m */,
  1883. 2723B64127F15B5800E0B90B /* SCIndexViewConfiguration.h */,
  1884. 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */,
  1885. 2723B64327F15B5800E0B90B /* SCIndexView.h */,
  1886. );
  1887. path = SCIndexView;
  1888. sourceTree = "<group>";
  1889. };
  1890. 275E8A9C27E18F8800DD3F6E = {
  1891. isa = PBXGroup;
  1892. children = (
  1893. 275E8AA727E18F8800DD3F6E /* KulexiuForStudent */,
  1894. 275E8AC327E18F8C00DD3F6E /* KulexiuForStudentTests */,
  1895. 275E8ACD27E18F8C00DD3F6E /* KulexiuForStudentUITests */,
  1896. 275E8AA627E18F8800DD3F6E /* Products */,
  1897. 0C35B95085341A122CBEF122 /* Pods */,
  1898. 9BF683910A95A690331EF86A /* Frameworks */,
  1899. );
  1900. sourceTree = "<group>";
  1901. };
  1902. 275E8AA627E18F8800DD3F6E /* Products */ = {
  1903. isa = PBXGroup;
  1904. children = (
  1905. 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */,
  1906. 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */,
  1907. 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */,
  1908. );
  1909. name = Products;
  1910. sourceTree = "<group>";
  1911. };
  1912. 275E8AA727E18F8800DD3F6E /* KulexiuForStudent */ = {
  1913. isa = PBXGroup;
  1914. children = (
  1915. 275FA1F027E7356A00CFEA2E /* Module */,
  1916. 2779336127E3249C0010E277 /* Common */,
  1917. 275E8AA827E18F8800DD3F6E /* AppDelegate.h */,
  1918. 275E8AA927E18F8800DD3F6E /* AppDelegate.m */,
  1919. 275E8AAE27E18F8800DD3F6E /* ViewController.h */,
  1920. 275E8AAF27E18F8800DD3F6E /* ViewController.m */,
  1921. 275E8AB127E18F8800DD3F6E /* Main.storyboard */,
  1922. 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */,
  1923. 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */,
  1924. 275E8AB927E18F8B00DD3F6E /* Info.plist */,
  1925. 275E8ABA27E18F8B00DD3F6E /* main.m */,
  1926. );
  1927. path = KulexiuForStudent;
  1928. sourceTree = "<group>";
  1929. };
  1930. 275E8AC327E18F8C00DD3F6E /* KulexiuForStudentTests */ = {
  1931. isa = PBXGroup;
  1932. children = (
  1933. 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */,
  1934. );
  1935. path = KulexiuForStudentTests;
  1936. sourceTree = "<group>";
  1937. };
  1938. 275E8ACD27E18F8C00DD3F6E /* KulexiuForStudentUITests */ = {
  1939. isa = PBXGroup;
  1940. children = (
  1941. 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */,
  1942. 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */,
  1943. );
  1944. path = KulexiuForStudentUITests;
  1945. sourceTree = "<group>";
  1946. };
  1947. 275FA1F027E7356A00CFEA2E /* Module */ = {
  1948. isa = PBXGroup;
  1949. children = (
  1950. BCB6357327F6D2AB00ACFDCF /* Classroom */,
  1951. BCB6348727F6D2A200ACFDCF /* SealClass */,
  1952. BCB6340A27F6D29500ACFDCF /* Live */,
  1953. 275FA1F127E7356A00CFEA2E /* Home */,
  1954. 275FA1F727E7356A00CFEA2E /* Course */,
  1955. 275FA1FD27E7356B00CFEA2E /* Chat */,
  1956. 275FA20327E7356B00CFEA2E /* Mine */,
  1957. 275FA20927E7356B00CFEA2E /* Mall */,
  1958. 275FA20F27E7356B00CFEA2E /* Login */,
  1959. );
  1960. path = Module;
  1961. sourceTree = "<group>";
  1962. };
  1963. 275FA1F127E7356A00CFEA2E /* Home */ = {
  1964. isa = PBXGroup;
  1965. children = (
  1966. BC40BA0F28124D0C00DEC0D1 /* NoticeCenter */,
  1967. 275FA1F227E7356A00CFEA2E /* Controller */,
  1968. 275FA1F527E7356A00CFEA2E /* Model */,
  1969. 275FA1F627E7356A00CFEA2E /* View */,
  1970. );
  1971. path = Home;
  1972. sourceTree = "<group>";
  1973. };
  1974. 275FA1F227E7356A00CFEA2E /* Controller */ = {
  1975. isa = PBXGroup;
  1976. children = (
  1977. 275FA1F427E7356A00CFEA2E /* HomeViewController.h */,
  1978. 275FA1F327E7356A00CFEA2E /* HomeViewController.m */,
  1979. );
  1980. path = Controller;
  1981. sourceTree = "<group>";
  1982. };
  1983. 275FA1F527E7356A00CFEA2E /* Model */ = {
  1984. isa = PBXGroup;
  1985. children = (
  1986. BCFE53F928129A5500AD6786 /* TeacherStyleModel.h */,
  1987. BCFE53F828129A5500AD6786 /* TeacherStyleModel.m */,
  1988. BCFE53FC2814E1BD00AD6786 /* HomeLiveGroupModel.h */,
  1989. BCFE53FD2814E1BE00AD6786 /* HomeLiveGroupModel.m */,
  1990. BCFE53FB2814E1BD00AD6786 /* HomeVideoGroupModel.h */,
  1991. BCFE53FE2814E1BE00AD6786 /* HomeVideoGroupModel.m */,
  1992. );
  1993. path = Model;
  1994. sourceTree = "<group>";
  1995. };
  1996. 275FA1F627E7356A00CFEA2E /* View */ = {
  1997. isa = PBXGroup;
  1998. children = (
  1999. BCBFDF3528110C660052AFE5 /* HomeNavView.h */,
  2000. BCBFDF3628110C660052AFE5 /* HomeNavView.m */,
  2001. BCBFDF3828110C6F0052AFE5 /* HomeNavView.xib */,
  2002. BCBFDF3A281156430052AFE5 /* HomeBannerView.h */,
  2003. BCBFDF3B281156430052AFE5 /* HomeBannerView.m */,
  2004. BCBFDF3D2811564C0052AFE5 /* HomeBannerView.xib */,
  2005. BCBFDF3F281157340052AFE5 /* HomeButtonView.h */,
  2006. BCBFDF40281157340052AFE5 /* HomeButtonView.m */,
  2007. BCBFDF422811573D0052AFE5 /* HomeButtonView.xib */,
  2008. BC40BA1E2812552300DEC0D1 /* KSHomeButton.h */,
  2009. BC40BA1C2812552200DEC0D1 /* KSHomeButton.m */,
  2010. BC40BA1D2812552200DEC0D1 /* KSHomeButton.xib */,
  2011. BCBFDF44281159990052AFE5 /* HomeHotAlbumView.h */,
  2012. BCBFDF45281159990052AFE5 /* HomeHotAlbumView.m */,
  2013. BCBFDF47281159A40052AFE5 /* HomeHotAlbumView.xib */,
  2014. BCBFDF4928115C6F0052AFE5 /* HomeHotCourseView.h */,
  2015. BCBFDF4A28115C6F0052AFE5 /* HomeHotCourseView.m */,
  2016. BCBFDF4C28115C7A0052AFE5 /* HomeHotCourseView.xib */,
  2017. BCBFDF4E28115D9A0052AFE5 /* HomeIntroduceView.h */,
  2018. BCBFDF4F28115D9A0052AFE5 /* HomeIntroduceView.m */,
  2019. BCBFDF5128115DA40052AFE5 /* HomeIntroduceView.xib */,
  2020. BC40B9F62811767A00DEC0D1 /* HotInformationHeadView.h */,
  2021. BC40B9F72811767A00DEC0D1 /* HotInformationHeadView.m */,
  2022. BC40B9F92811768400DEC0D1 /* HotInformationHeadView.xib */,
  2023. BC40B9FB281177BD00DEC0D1 /* HomeInformationCell.h */,
  2024. BC40B9FC281177BD00DEC0D1 /* HomeInformationCell.m */,
  2025. BC40B9FD281177BD00DEC0D1 /* HomeInformationCell.xib */,
  2026. BC40BA0028117B0A00DEC0D1 /* HomeBannerCell.h */,
  2027. BC40BA0128117B0A00DEC0D1 /* HomeBannerCell.m */,
  2028. BC40BA0228117B0A00DEC0D1 /* HomeBannerCell.xib */,
  2029. BC40BA21281255F700DEC0D1 /* HomeCourseTipsView.h */,
  2030. BC40BA22281255F700DEC0D1 /* HomeCourseTipsView.m */,
  2031. BC40BA242812560100DEC0D1 /* HomeCourseTipsView.xib */,
  2032. BCFE53E42812765600AD6786 /* HomeHotAlbumCell.h */,
  2033. BCFE53E52812765600AD6786 /* HomeHotAlbumCell.m */,
  2034. BCFE53E62812765600AD6786 /* HomeHotAlbumCell.xib */,
  2035. BCFE53E92812897600AD6786 /* HomeLiveCouseCell.h */,
  2036. BCFE53EA2812897600AD6786 /* HomeLiveCouseCell.m */,
  2037. BCFE53EB2812897600AD6786 /* HomeLiveCouseCell.xib */,
  2038. BCFE53EE2812898700AD6786 /* HomeVideoCourseCell.h */,
  2039. BCFE53EF2812898700AD6786 /* HomeVideoCourseCell.m */,
  2040. BCFE53F02812898700AD6786 /* HomeVideoCourseCell.xib */,
  2041. BCFE53F328128A9600AD6786 /* TeacherShowCell.h */,
  2042. BCFE53F428128A9600AD6786 /* TeacherShowCell.m */,
  2043. BCFE53F528128A9600AD6786 /* TeacherShowCell.xib */,
  2044. );
  2045. path = View;
  2046. sourceTree = "<group>";
  2047. };
  2048. 275FA1F727E7356A00CFEA2E /* Course */ = {
  2049. isa = PBXGroup;
  2050. children = (
  2051. BC11923B280ED9CC00A716F7 /* AccompanyCourse */,
  2052. 275FA1F827E7356A00CFEA2E /* Controller */,
  2053. 275FA1FB27E7356B00CFEA2E /* Model */,
  2054. 275FA1FC27E7356B00CFEA2E /* View */,
  2055. );
  2056. path = Course;
  2057. sourceTree = "<group>";
  2058. };
  2059. 275FA1F827E7356A00CFEA2E /* Controller */ = {
  2060. isa = PBXGroup;
  2061. children = (
  2062. 275FA1F927E7356A00CFEA2E /* CourseViewController.h */,
  2063. 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */,
  2064. );
  2065. path = Controller;
  2066. sourceTree = "<group>";
  2067. };
  2068. 275FA1FB27E7356B00CFEA2E /* Model */ = {
  2069. isa = PBXGroup;
  2070. children = (
  2071. BC11922E280ED8F800A716F7 /* TableCourseModel.h */,
  2072. BC11922F280ED8F900A716F7 /* TableCourseModel.m */,
  2073. );
  2074. path = Model;
  2075. sourceTree = "<group>";
  2076. };
  2077. 275FA1FC27E7356B00CFEA2E /* View */ = {
  2078. isa = PBXGroup;
  2079. children = (
  2080. BC119225280ED8E800A716F7 /* CourseNavView.h */,
  2081. BC119226280ED8E800A716F7 /* CourseNavView.m */,
  2082. BC119229280ED8E800A716F7 /* CourseNavView.xib */,
  2083. BC119228280ED8E800A716F7 /* LTSCalendarBottomView.h */,
  2084. BC119224280ED8E700A716F7 /* LTSCalendarBottomView.m */,
  2085. BC119227280ED8E800A716F7 /* LTSCalendarBottomView.xib */,
  2086. BC119233280ED97C00A716F7 /* CourseForLiveCell.h */,
  2087. BC119231280ED97B00A716F7 /* CourseForLiveCell.m */,
  2088. BC119232280ED97C00A716F7 /* CourseForLiveCell.xib */,
  2089. BC119236280ED98D00A716F7 /* AccompanyCourseCell.h */,
  2090. BC119238280ED98E00A716F7 /* AccompanyCourseCell.m */,
  2091. BC119237280ED98E00A716F7 /* AccompanyCourseCell.xib */,
  2092. );
  2093. path = View;
  2094. sourceTree = "<group>";
  2095. };
  2096. 275FA1FD27E7356B00CFEA2E /* Chat */ = {
  2097. isa = PBXGroup;
  2098. children = (
  2099. 2723B5F327F157D500E0B90B /* Group */,
  2100. 2723B5DE27F157D400E0B90B /* GroupNotice */,
  2101. 2723B5D027F157D300E0B90B /* Search */,
  2102. 275FA1FE27E7356B00CFEA2E /* Controller */,
  2103. 275FA20127E7356B00CFEA2E /* Model */,
  2104. 275FA20227E7356B00CFEA2E /* View */,
  2105. );
  2106. path = Chat;
  2107. sourceTree = "<group>";
  2108. };
  2109. 275FA1FE27E7356B00CFEA2E /* Controller */ = {
  2110. isa = PBXGroup;
  2111. children = (
  2112. 275FA20027E7356B00CFEA2E /* ChatViewController.h */,
  2113. 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */,
  2114. 2723B59D27F1577F00E0B90B /* ChatAddressViewController.h */,
  2115. 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */,
  2116. 2723B59A27F1577E00E0B90B /* CreateFansGroupViewController.h */,
  2117. 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */,
  2118. 2723B5A127F1578200E0B90B /* KSChatConversationViewController.h */,
  2119. 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */,
  2120. 2723B59F27F1578100E0B90B /* KSChatListViewController.h */,
  2121. 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */,
  2122. );
  2123. path = Controller;
  2124. sourceTree = "<group>";
  2125. };
  2126. 275FA20127E7356B00CFEA2E /* Model */ = {
  2127. isa = PBXGroup;
  2128. children = (
  2129. 2723B5C927F157BA00E0B90B /* GroupListModel.h */,
  2130. 2723B5C827F157B900E0B90B /* GroupListModel.m */,
  2131. 2723B5CB27F157BD00E0B90B /* GroupMemberModel.h */,
  2132. 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */,
  2133. 2723B5C727F157B800E0B90B /* KSRCloudMediaManager.h */,
  2134. 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */,
  2135. );
  2136. path = Model;
  2137. sourceTree = "<group>";
  2138. };
  2139. 275FA20227E7356B00CFEA2E /* View */ = {
  2140. isa = PBXGroup;
  2141. children = (
  2142. 2723B5B027F157AB00E0B90B /* ChatAddressBodyView.h */,
  2143. 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */,
  2144. 2723B5B627F157AF00E0B90B /* ChatAddressHeaderView.h */,
  2145. 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */,
  2146. 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */,
  2147. 2723B5B527F157AF00E0B90B /* ChatNavView.h */,
  2148. 2723B5AA27F157A500E0B90B /* ChatNavView.m */,
  2149. 2723B5B227F157AD00E0B90B /* ChatNavView.xib */,
  2150. 2723B5AD27F157A700E0B90B /* ContractListCell.h */,
  2151. 2723B5AF27F157AA00E0B90B /* ContractListCell.m */,
  2152. 2723B5B727F157B000E0B90B /* ContractListCell.xib */,
  2153. 2723B5B827F157B000E0B90B /* GroupCreateView.h */,
  2154. 2723B5A827F157A300E0B90B /* GroupCreateView.m */,
  2155. 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */,
  2156. 2723B5B327F157AE00E0B90B /* GroupListViewCell.h */,
  2157. 2723B5B927F157B100E0B90B /* GroupListViewCell.m */,
  2158. 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */,
  2159. 2723B5AC27F157A600E0B90B /* KSChatListSearchView.h */,
  2160. 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */,
  2161. 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */,
  2162. );
  2163. path = View;
  2164. sourceTree = "<group>";
  2165. };
  2166. 275FA20327E7356B00CFEA2E /* Mine */ = {
  2167. isa = PBXGroup;
  2168. children = (
  2169. BC119248280EDD4600A716F7 /* Homework */,
  2170. BC1191F9280ED63C00A716F7 /* MineCourse */,
  2171. 27F9031B27E87C2D00C08A19 /* DeviceCheck */,
  2172. 27F9030F27E87C2C00C08A19 /* Networking */,
  2173. 27F9032327E87C2E00C08A19 /* Setting */,
  2174. 275FA20427E7356B00CFEA2E /* Controller */,
  2175. 275FA20727E7356B00CFEA2E /* Model */,
  2176. 275FA20827E7356B00CFEA2E /* View */,
  2177. );
  2178. path = Mine;
  2179. sourceTree = "<group>";
  2180. };
  2181. 275FA20427E7356B00CFEA2E /* Controller */ = {
  2182. isa = PBXGroup;
  2183. children = (
  2184. 275FA20527E7356B00CFEA2E /* MineViewController.h */,
  2185. 275FA20627E7356B00CFEA2E /* MineViewController.m */,
  2186. );
  2187. path = Controller;
  2188. sourceTree = "<group>";
  2189. };
  2190. 275FA20727E7356B00CFEA2E /* Model */ = {
  2191. isa = PBXGroup;
  2192. children = (
  2193. BC2858292809036C0024697C /* StudentInfoModel.h */,
  2194. BC28582A2809036D0024697C /* StudentInfoModel.m */,
  2195. );
  2196. path = Model;
  2197. sourceTree = "<group>";
  2198. };
  2199. 275FA20827E7356B00CFEA2E /* View */ = {
  2200. isa = PBXGroup;
  2201. children = (
  2202. 27F9033327E87C8A00C08A19 /* MineNavView.h */,
  2203. 27F9033427E87C8A00C08A19 /* MineNavView.m */,
  2204. 27F9033527E87C8B00C08A19 /* MineNavView.xib */,
  2205. 27F9033827E87FD500C08A19 /* MineBodyView.h */,
  2206. 27F9033927E87FD500C08A19 /* MineBodyView.m */,
  2207. 27F9033B27E87FE100C08A19 /* MineBodyView.xib */,
  2208. BC119286280FB3B000A716F7 /* KSStarView.h */,
  2209. BC119287280FB3B100A716F7 /* KSStarView.m */,
  2210. );
  2211. path = View;
  2212. sourceTree = "<group>";
  2213. };
  2214. 275FA20927E7356B00CFEA2E /* Mall */ = {
  2215. isa = PBXGroup;
  2216. children = (
  2217. 275FA20A27E7356B00CFEA2E /* Controller */,
  2218. 275FA20D27E7356B00CFEA2E /* Model */,
  2219. 275FA20E27E7356B00CFEA2E /* View */,
  2220. );
  2221. path = Mall;
  2222. sourceTree = "<group>";
  2223. };
  2224. 275FA20A27E7356B00CFEA2E /* Controller */ = {
  2225. isa = PBXGroup;
  2226. children = (
  2227. 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */,
  2228. 275FA20C27E7356B00CFEA2E /* ShopMallViewController.h */,
  2229. );
  2230. path = Controller;
  2231. sourceTree = "<group>";
  2232. };
  2233. 275FA20D27E7356B00CFEA2E /* Model */ = {
  2234. isa = PBXGroup;
  2235. children = (
  2236. );
  2237. path = Model;
  2238. sourceTree = "<group>";
  2239. };
  2240. 275FA20E27E7356B00CFEA2E /* View */ = {
  2241. isa = PBXGroup;
  2242. children = (
  2243. );
  2244. path = View;
  2245. sourceTree = "<group>";
  2246. };
  2247. 275FA20F27E7356B00CFEA2E /* Login */ = {
  2248. isa = PBXGroup;
  2249. children = (
  2250. 275FA21027E7356B00CFEA2E /* Controller */,
  2251. 275FA21927E7356B00CFEA2E /* Model */,
  2252. 275FA21E27E7356B00CFEA2E /* View */,
  2253. );
  2254. path = Login;
  2255. sourceTree = "<group>";
  2256. };
  2257. 275FA21027E7356B00CFEA2E /* Controller */ = {
  2258. isa = PBXGroup;
  2259. children = (
  2260. 275FA21727E7356B00CFEA2E /* FirstSettingViewController.h */,
  2261. 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */,
  2262. 275FA21627E7356B00CFEA2E /* LoginViewController.h */,
  2263. 275FA21327E7356B00CFEA2E /* LoginViewController.m */,
  2264. 275FA21527E7356B00CFEA2E /* PasswordLoginController.h */,
  2265. 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */,
  2266. 275FA21827E7356B00CFEA2E /* VefiCodeLoginController.h */,
  2267. 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */,
  2268. BC50171027FC0D5600F8BCBC /* SubjectChooseViewController.h */,
  2269. BC50171127FC0D5600F8BCBC /* SubjectChooseViewController.m */,
  2270. );
  2271. path = Controller;
  2272. sourceTree = "<group>";
  2273. };
  2274. 275FA21927E7356B00CFEA2E /* Model */ = {
  2275. isa = PBXGroup;
  2276. children = (
  2277. BC0212FC27FC66AA0040569F /* InstrumentMessageModel.h */,
  2278. BC0212FD27FC66AA0040569F /* InstrumentMessageModel.m */,
  2279. 275FA21D27E7356B00CFEA2E /* UserInfo.h */,
  2280. 275FA21A27E7356B00CFEA2E /* UserInfo.m */,
  2281. 275FA21B27E7356B00CFEA2E /* UserInfoManager.h */,
  2282. 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */,
  2283. );
  2284. path = Model;
  2285. sourceTree = "<group>";
  2286. };
  2287. 275FA21E27E7356B00CFEA2E /* View */ = {
  2288. isa = PBXGroup;
  2289. children = (
  2290. 275FA21F27E7356B00CFEA2E /* FirstSettingBodyView.h */,
  2291. 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */,
  2292. 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */,
  2293. 275FA22627E7356B00CFEA2E /* LoginBodyView.h */,
  2294. 275FA22027E7356B00CFEA2E /* LoginBodyView.m */,
  2295. 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */,
  2296. 275FA22427E7356B00CFEA2E /* PasswordBodyView.h */,
  2297. 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */,
  2298. 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */,
  2299. 275FA22327E7356B00CFEA2E /* VefiBodyView.h */,
  2300. 275FA22927E7356B00CFEA2E /* VefiBodyView.m */,
  2301. 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */,
  2302. 275FA24127E73DF600CFEA2E /* InstrumentDescView.h */,
  2303. 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */,
  2304. 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */,
  2305. 275FA24627E7428200CFEA2E /* InstrumentChooseView.h */,
  2306. 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */,
  2307. 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */,
  2308. BC50171327FC0D8300F8BCBC /* SubjectChooseBodyView.h */,
  2309. BC50171427FC0D8300F8BCBC /* SubjectChooseBodyView.m */,
  2310. BC50171627FC0D8D00F8BCBC /* SubjectChooseBodyView.xib */,
  2311. BC0212F927FC61D30040569F /* KSSegmentControl.h */,
  2312. BC0212FA27FC61D30040569F /* KSSegmentControl.m */,
  2313. BC0212F427FC4A080040569F /* SubjectImageCell.h */,
  2314. BC0212F527FC4A080040569F /* SubjectImageCell.m */,
  2315. BC0212F627FC4A080040569F /* SubjectImageCell.xib */,
  2316. );
  2317. path = View;
  2318. sourceTree = "<group>";
  2319. };
  2320. 2779336127E3249C0010E277 /* Common */ = {
  2321. isa = PBXGroup;
  2322. children = (
  2323. 2779336227E3249C0010E277 /* Tools */,
  2324. 2779346A27E324A10010E277 /* Define */,
  2325. 2779346E27E324A10010E277 /* ThirdPart */,
  2326. 2779350B27E324A40010E277 /* Base */,
  2327. );
  2328. path = Common;
  2329. sourceTree = "<group>";
  2330. };
  2331. 2779336227E3249C0010E277 /* Tools */ = {
  2332. isa = PBXGroup;
  2333. children = (
  2334. BC119296280FBCB300A716F7 /* UIView+ExtensionForDotLine.h */,
  2335. BC119297280FBCB400A716F7 /* UIView+ExtensionForDotLine.m */,
  2336. BC11928E280FB46100A716F7 /* KSVideoHelper.h */,
  2337. BC11928F280FB46100A716F7 /* KSVideoHelper.m */,
  2338. 275FA1AA27E734C500CFEA2E /* KSImageAlert.h */,
  2339. 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */,
  2340. 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */,
  2341. 2779336327E3249C0010E277 /* NetworkingAccessibity */,
  2342. 2779336627E3249C0010E277 /* SafeControl */,
  2343. 2779337627E3249C0010E277 /* Extension */,
  2344. 277933B627E3249E0010E277 /* Category */,
  2345. 277933DB27E3249E0010E277 /* VideoEditor */,
  2346. 277933DE27E3249E0010E277 /* GifRefresh */,
  2347. 277933E327E3249E0010E277 /* AudioSessionManager */,
  2348. 277933E627E3249F0010E277 /* VoNetworking */,
  2349. 277933F427E3249F0010E277 /* DiskSizeManager */,
  2350. 277933F727E3249F0010E277 /* MicAlert */,
  2351. 277933FB27E3249F0010E277 /* Custom */,
  2352. 2779346327E324A10010E277 /* ArchiveTools */,
  2353. );
  2354. path = Tools;
  2355. sourceTree = "<group>";
  2356. };
  2357. 2779336327E3249C0010E277 /* NetworkingAccessibity */ = {
  2358. isa = PBXGroup;
  2359. children = (
  2360. 2779336427E3249C0010E277 /* KSNetworkAccessibleManager.h */,
  2361. 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */,
  2362. );
  2363. path = NetworkingAccessibity;
  2364. sourceTree = "<group>";
  2365. };
  2366. 2779336627E3249C0010E277 /* SafeControl */ = {
  2367. isa = PBXGroup;
  2368. children = (
  2369. 2779336727E3249C0010E277 /* KSSafeObject.h */,
  2370. 2779336827E3249C0010E277 /* NSObject+KSSwizzling.h */,
  2371. 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */,
  2372. 2779336A27E3249C0010E277 /* NSObject+KSImpChangeTool.h */,
  2373. 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */,
  2374. 2779336C27E3249C0010E277 /* NSMutableString+KSSafe.h */,
  2375. 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */,
  2376. 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */,
  2377. 2779336F27E3249C0010E277 /* NSDictionary+KSSafe.h */,
  2378. 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */,
  2379. 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */,
  2380. 2779337227E3249C0010E277 /* NSMutableArray+KSSafe.h */,
  2381. 2779337327E3249C0010E277 /* NSArray+KSSafe.h */,
  2382. 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */,
  2383. 2779337527E3249C0010E277 /* NSMutableDictionary+KSSafe.h */,
  2384. );
  2385. path = SafeControl;
  2386. sourceTree = "<group>";
  2387. };
  2388. 2779337627E3249C0010E277 /* Extension */ = {
  2389. isa = PBXGroup;
  2390. children = (
  2391. BC0212FF27FC6ADD0040569F /* UIView+SubViewExtension.h */,
  2392. BC02130027FC6ADD0040569F /* UIView+SubViewExtension.m */,
  2393. 277933A827E3249D0010E277 /* CALayer+Color.h */,
  2394. 2779338027E3249D0010E277 /* CALayer+Color.m */,
  2395. 2779338C27E3249D0010E277 /* CALayer+Layout.h */,
  2396. 277933AD27E3249E0010E277 /* CALayer+Layout.m */,
  2397. 277933A127E3249D0010E277 /* KSUtilities.h */,
  2398. 2779338727E3249D0010E277 /* KSUtilities.m */,
  2399. 277933B527E3249E0010E277 /* NSArray+zh_SafeAccess.h */,
  2400. 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */,
  2401. 2779338627E3249D0010E277 /* NSDate+Extension.h */,
  2402. 277933A327E3249D0010E277 /* NSDate+Extension.m */,
  2403. 2779338127E3249D0010E277 /* NSDate+Transform.h */,
  2404. 277933A627E3249D0010E277 /* NSDate+Transform.m */,
  2405. 2779337C27E3249D0010E277 /* NSDictionary+Extension.h */,
  2406. 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */,
  2407. 277933A727E3249D0010E277 /* NSMutableAttributedString+CZHExtention.h */,
  2408. 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */,
  2409. 277933A027E3249D0010E277 /* NSObject+AssociatedObject.h */,
  2410. 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */,
  2411. 277933B027E3249E0010E277 /* NSObject+Parse.h */,
  2412. 2779339527E3249D0010E277 /* NSObject+Parse.m */,
  2413. 2779338D27E3249D0010E277 /* NSObject+ReadDocument.h */,
  2414. 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */,
  2415. 2779337F27E3249D0010E277 /* NSString+CZHSizeExtension.h */,
  2416. 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */,
  2417. 2779338327E3249D0010E277 /* NSString+Extension.h */,
  2418. 277933A527E3249D0010E277 /* NSString+Extension.m */,
  2419. 2779339C27E3249D0010E277 /* NSString+zh_SafeAccess.h */,
  2420. 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */,
  2421. 2779338827E3249D0010E277 /* Pinyin */,
  2422. 277933AA27E3249D0010E277 /* UIAlertController+Extend.h */,
  2423. 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */,
  2424. 277933B427E3249E0010E277 /* UIColor+Extend.h */,
  2425. 2779339227E3249D0010E277 /* UIColor+Extend.m */,
  2426. 2779339E27E3249D0010E277 /* UIControl+ButtonAction.h */,
  2427. 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */,
  2428. 2779339D27E3249D0010E277 /* UIDevice+zhDeviceType.h */,
  2429. 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */,
  2430. 2779338B27E3249D0010E277 /* UIImage+Color.h */,
  2431. 277933AE27E3249E0010E277 /* UIImage+Color.m */,
  2432. 2779338F27E3249D0010E277 /* UIImageView+CornerRadius.h */,
  2433. 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */,
  2434. 277933A227E3249D0010E277 /* UILabel+Extension.h */,
  2435. 2779338527E3249D0010E277 /* UILabel+Extension.m */,
  2436. 2779339027E3249D0010E277 /* UIScreen+Extend.h */,
  2437. 277933A927E3249D0010E277 /* UIScreen+Extend.m */,
  2438. 277933A427E3249D0010E277 /* UITextView+ZWLimitCounter.h */,
  2439. 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */,
  2440. 2779339927E3249D0010E277 /* UITextView+ZWPlaceHolder.h */,
  2441. 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */,
  2442. 277933B127E3249E0010E277 /* UIView+AddConstraints.h */,
  2443. 2779339627E3249D0010E277 /* UIView+AddConstraints.m */,
  2444. 277933B227E3249E0010E277 /* UIView+Dealloc.h */,
  2445. 2779339427E3249D0010E277 /* UIView+Dealloc.m */,
  2446. 2779337827E3249C0010E277 /* UIView+Hints.h */,
  2447. 2779339F27E3249D0010E277 /* UIView+Hints.m */,
  2448. 2779339727E3249D0010E277 /* UIView+KSExtension.h */,
  2449. 277933AF27E3249E0010E277 /* UIView+KSExtension.m */,
  2450. 2779339B27E3249D0010E277 /* UIViewController+zhStatusBarStyle.h */,
  2451. 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */,
  2452. 277933B327E3249E0010E277 /* zhPopupController.h */,
  2453. 2779339327E3249D0010E277 /* zhPopupController.m */,
  2454. );
  2455. path = Extension;
  2456. sourceTree = "<group>";
  2457. };
  2458. 2779338827E3249D0010E277 /* Pinyin */ = {
  2459. isa = PBXGroup;
  2460. children = (
  2461. 2779338927E3249D0010E277 /* pinyin.h */,
  2462. 2779338A27E3249D0010E277 /* pinyin.c */,
  2463. );
  2464. path = Pinyin;
  2465. sourceTree = "<group>";
  2466. };
  2467. 277933B627E3249E0010E277 /* Category */ = {
  2468. isa = PBXGroup;
  2469. children = (
  2470. BC119242280EDA2400A716F7 /* NSObject+KSDateFormatter.h */,
  2471. BC119243280EDA2400A716F7 /* NSObject+KSDateFormatter.m */,
  2472. 277933BD27E3249E0010E277 /* MBProgressHUD+KSShow.h */,
  2473. 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */,
  2474. 277933D027E3249E0010E277 /* NSObject+AutoProperty.h */,
  2475. 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */,
  2476. 277933C027E3249E0010E277 /* NSObject+ReadDocument.h */,
  2477. 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */,
  2478. 277933C327E3249E0010E277 /* UIButton+EnlargeEdge.h */,
  2479. 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */,
  2480. 277933D227E3249E0010E277 /* UIButton+HasChooseImage.h */,
  2481. 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */,
  2482. 277933CC27E3249E0010E277 /* UIButton+Property.h */,
  2483. 277933BA27E3249E0010E277 /* UIButton+Property.m */,
  2484. 277933CA27E3249E0010E277 /* UIDevice+TFDevice.h */,
  2485. 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */,
  2486. 277933D627E3249E0010E277 /* UIImage+Property.h */,
  2487. 277933BF27E3249E0010E277 /* UIImage+Property.m */,
  2488. 277933C727E3249E0010E277 /* UIImage+Resize.h */,
  2489. 277933DA27E3249E0010E277 /* UIImage+Resize.m */,
  2490. 277933D327E3249E0010E277 /* UIImage+ResizeImage.h */,
  2491. 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */,
  2492. 277933CF27E3249E0010E277 /* UIImage+UIImageScale.h */,
  2493. 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */,
  2494. 277933CE27E3249E0010E277 /* UILabel+QWTopLeftLabel.h */,
  2495. 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */,
  2496. 277933CB27E3249E0010E277 /* UIScrollView+KSTouch.h */,
  2497. 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */,
  2498. 277933D927E3249E0010E277 /* UIView+Animation.h */,
  2499. 277933C827E3249E0010E277 /* UIView+Animation.m */,
  2500. 277933D827E3249E0010E277 /* UIView+KSLayer.h */,
  2501. 277933BE27E3249E0010E277 /* UIView+KSLayer.m */,
  2502. 277933D427E3249E0010E277 /* UIView+ShowProgress.h */,
  2503. 277933C127E3249E0010E277 /* UIView+ShowProgress.m */,
  2504. 277933C927E3249E0010E277 /* UIView+XIBView.h */,
  2505. 277933B727E3249E0010E277 /* UIView+XIBView.m */,
  2506. 277933CD27E3249E0010E277 /* UrlDecode.h */,
  2507. 277933B927E3249E0010E277 /* UrlDecode.m */,
  2508. );
  2509. path = Category;
  2510. sourceTree = "<group>";
  2511. };
  2512. 277933DB27E3249E0010E277 /* VideoEditor */ = {
  2513. isa = PBXGroup;
  2514. children = (
  2515. 277933DC27E3249E0010E277 /* KSVideoEditor.h */,
  2516. 277933DD27E3249E0010E277 /* KSVideoEditor.m */,
  2517. );
  2518. path = VideoEditor;
  2519. sourceTree = "<group>";
  2520. };
  2521. 277933DE27E3249E0010E277 /* GifRefresh */ = {
  2522. isa = PBXGroup;
  2523. children = (
  2524. 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */,
  2525. 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */,
  2526. 277933E127E3249E0010E277 /* KSGifRefreshFooter.h */,
  2527. 277933E227E3249E0010E277 /* KSGifRefreshHeader.h */,
  2528. );
  2529. path = GifRefresh;
  2530. sourceTree = "<group>";
  2531. };
  2532. 277933E327E3249E0010E277 /* AudioSessionManager */ = {
  2533. isa = PBXGroup;
  2534. children = (
  2535. 277933E427E3249E0010E277 /* KSAudioSessionManager.m */,
  2536. 277933E527E3249F0010E277 /* KSAudioSessionManager.h */,
  2537. );
  2538. path = AudioSessionManager;
  2539. sourceTree = "<group>";
  2540. };
  2541. 277933E627E3249F0010E277 /* VoNetworking */ = {
  2542. isa = PBXGroup;
  2543. children = (
  2544. 277933E727E3249F0010E277 /* VoNetWorking.h */,
  2545. 277933E827E3249F0010E277 /* Cache */,
  2546. 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */,
  2547. 277933F227E3249F0010E277 /* VoNetWorking.m */,
  2548. 277933F327E3249F0010E277 /* VoNetworking+RequestManager.h */,
  2549. );
  2550. path = VoNetworking;
  2551. sourceTree = "<group>";
  2552. };
  2553. 277933E827E3249F0010E277 /* Cache */ = {
  2554. isa = PBXGroup;
  2555. children = (
  2556. 277933E927E3249F0010E277 /* VoLRUManager.m */,
  2557. 277933EA27E3249F0010E277 /* VoMemoryCache.h */,
  2558. 277933EB27E3249F0010E277 /* VoDiskCache.m */,
  2559. 277933EC27E3249F0010E277 /* VoCacheManager.m */,
  2560. 277933ED27E3249F0010E277 /* VoLRUManager.h */,
  2561. 277933EE27E3249F0010E277 /* VoMemoryCache.m */,
  2562. 277933EF27E3249F0010E277 /* VoCacheManager.h */,
  2563. 277933F027E3249F0010E277 /* VoDiskCache.h */,
  2564. );
  2565. path = Cache;
  2566. sourceTree = "<group>";
  2567. };
  2568. 277933F427E3249F0010E277 /* DiskSizeManager */ = {
  2569. isa = PBXGroup;
  2570. children = (
  2571. 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */,
  2572. 277933F627E3249F0010E277 /* DiskFreeSpaceManager.h */,
  2573. );
  2574. path = DiskSizeManager;
  2575. sourceTree = "<group>";
  2576. };
  2577. 277933F727E3249F0010E277 /* MicAlert */ = {
  2578. isa = PBXGroup;
  2579. children = (
  2580. 277933F827E3249F0010E277 /* KSPremissionAlert.m */,
  2581. 277933F927E3249F0010E277 /* KSPremissionAlert.xib */,
  2582. 277933FA27E3249F0010E277 /* KSPremissionAlert.h */,
  2583. );
  2584. path = MicAlert;
  2585. sourceTree = "<group>";
  2586. };
  2587. 277933FB27E3249F0010E277 /* Custom */ = {
  2588. isa = PBXGroup;
  2589. children = (
  2590. BCB635A127F6D3FE00ACFDCF /* KSNormalAlertView.h */,
  2591. BCB635A227F6D3FE00ACFDCF /* KSNormalAlertView.m */,
  2592. 2779343F27E324A00010E277 /* GRCreateManager.h */,
  2593. 277933FD27E3249F0010E277 /* GRCreateManager.m */,
  2594. 277933FE27E3249F0010E277 /* GRScanManager.h */,
  2595. 2779343E27E324A00010E277 /* GRScanManager.m */,
  2596. 2779344727E324A00010E277 /* HomeButton.h */,
  2597. 2779341527E3249F0010E277 /* HomeButton.m */,
  2598. 2779343827E324A00010E277 /* KeyChainTools.h */,
  2599. 2779345127E324A00010E277 /* KeyChainTools.m */,
  2600. 2779344827E324A00010E277 /* KSChoosePicker.h */,
  2601. 2779340727E3249F0010E277 /* KSChoosePicker.m */,
  2602. 2779344527E324A00010E277 /* KSFullDatePicker.h */,
  2603. 2779341727E3249F0010E277 /* KSFullDatePicker.m */,
  2604. 2779341627E3249F0010E277 /* KSImageButton.h */,
  2605. 2779344627E324A00010E277 /* KSImageButton.m */,
  2606. 2779342927E324A00010E277 /* KSInputView */,
  2607. 2779343727E324A00010E277 /* KSInputView.h */,
  2608. 2779345027E324A00010E277 /* KSInputView.m */,
  2609. 2779344327E324A00010E277 /* KSMediaManager.h */,
  2610. 2779341927E3249F0010E277 /* KSMediaManager.m */,
  2611. 2779342327E324A00010E277 /* KSMessageInputView.h */,
  2612. 2779344D27E324A00010E277 /* KSMessageInputView.m */,
  2613. 2779343927E324A00010E277 /* KSStatusView.h */,
  2614. 2779340427E3249F0010E277 /* KSStatusView.m */,
  2615. 2779340327E3249F0010E277 /* LifeButton.h */,
  2616. 2779343C27E324A00010E277 /* LifeButton.m */,
  2617. 2779345627E324A00010E277 /* LLPhotoBrowser */,
  2618. 2779344A27E324A00010E277 /* MBProgressHUD+NJ.h */,
  2619. 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */,
  2620. 2779343327E324A00010E277 /* NSDate+KSBaseDatePicker.h */,
  2621. 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */,
  2622. 2779342427E324A00010E277 /* NSString+MD5.h */,
  2623. 2779344C27E324A00010E277 /* NSString+MD5.m */,
  2624. 2779341827E3249F0010E277 /* NSString+phone.h */,
  2625. 2779344427E324A00010E277 /* NSString+phone.m */,
  2626. 2779344E27E324A00010E277 /* pickBut.h */,
  2627. 2779342227E324A00010E277 /* pickBut.m */,
  2628. 2779342727E324A00010E277 /* PIckView.h */,
  2629. 2779344927E324A00010E277 /* PIckView.m */,
  2630. 2779340827E3249F0010E277 /* PressRecord */,
  2631. 2779340527E3249F0010E277 /* prodectButton.h */,
  2632. 2779343A27E324A00010E277 /* prodectButton.m */,
  2633. 2779340027E3249F0010E277 /* QCCountdownButton */,
  2634. 2779345527E324A00010E277 /* SearchView.h */,
  2635. 2779343427E324A00010E277 /* SearchView.m */,
  2636. 2779342527E324A00010E277 /* ShopButton.h */,
  2637. 2779344B27E324A00010E277 /* ShopButton.m */,
  2638. 2779344227E324A00010E277 /* ShopMessBtn.h */,
  2639. 2779341A27E3249F0010E277 /* ShopMessBtn.m */,
  2640. 277933FF27E3249F0010E277 /* ShoppCatView.h */,
  2641. 2779343D27E324A00010E277 /* ShoppCatView.m */,
  2642. 2779344F27E324A00010E277 /* shopview.h */,
  2643. 2779341C27E324A00010E277 /* shopview.m */,
  2644. 2779343627E324A00010E277 /* sortButton.h */,
  2645. 2779345227E324A00010E277 /* sortButton.m */,
  2646. 2779343527E324A00010E277 /* StateView.h */,
  2647. 2779345327E324A00010E277 /* StateView.m */,
  2648. 2779340627E3249F0010E277 /* StoreButton.h */,
  2649. 2779343B27E324A00010E277 /* StoreButton.m */,
  2650. 2779346227E324A10010E277 /* StoreShopCaterview.h */,
  2651. 2779342827E324A00010E277 /* StoreShopCaterview.m */,
  2652. 2779344127E324A00010E277 /* UIColor+Hex.h */,
  2653. 2779341B27E324A00010E277 /* UIColor+Hex.m */,
  2654. 2779344027E324A00010E277 /* UIImage+Addtions.h */,
  2655. 277933FC27E3249F0010E277 /* UIImage+Addtions.m */,
  2656. 2779341D27E324A00010E277 /* YKMultiLevelTableView */,
  2657. );
  2658. path = Custom;
  2659. sourceTree = "<group>";
  2660. };
  2661. 2779340027E3249F0010E277 /* QCCountdownButton */ = {
  2662. isa = PBXGroup;
  2663. children = (
  2664. 2779340127E3249F0010E277 /* QCCountdownButton.m */,
  2665. 2779340227E3249F0010E277 /* QCCountdownButton.h */,
  2666. );
  2667. path = QCCountdownButton;
  2668. sourceTree = "<group>";
  2669. };
  2670. 2779340827E3249F0010E277 /* PressRecord */ = {
  2671. isa = PBXGroup;
  2672. children = (
  2673. 2779340927E3249F0010E277 /* KSAudioRecordManager.h */,
  2674. 2779340A27E3249F0010E277 /* KSRecordStatusView.h */,
  2675. 2779340B27E3249F0010E277 /* KSHoldButton.m */,
  2676. 2779340C27E3249F0010E277 /* KSRecordPowerAnimationView.h */,
  2677. 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */,
  2678. 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */,
  2679. 2779340F27E3249F0010E277 /* KSRecordStatusView.m */,
  2680. 2779341027E3249F0010E277 /* KSAudioRecordManager.m */,
  2681. 2779341127E3249F0010E277 /* KSHoldButton.h */,
  2682. 2779341227E3249F0010E277 /* UIView+ValueAdd.h */,
  2683. 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */,
  2684. 2779341427E3249F0010E277 /* KSAudioRecordFileManager.h */,
  2685. );
  2686. path = PressRecord;
  2687. sourceTree = "<group>";
  2688. };
  2689. 2779341D27E324A00010E277 /* YKMultiLevelTableView */ = {
  2690. isa = PBXGroup;
  2691. children = (
  2692. 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */,
  2693. 2779341F27E324A00010E277 /* YKNodeModel.m */,
  2694. 2779342027E324A00010E277 /* YKNodeModel.h */,
  2695. 2779342127E324A00010E277 /* YKMultiLevelTableView.h */,
  2696. );
  2697. path = YKMultiLevelTableView;
  2698. sourceTree = "<group>";
  2699. };
  2700. 2779342927E324A00010E277 /* KSInputView */ = {
  2701. isa = PBXGroup;
  2702. children = (
  2703. 2779342A27E324A00010E277 /* UITextField_Toolbar.m */,
  2704. 2779342B27E324A00010E277 /* SkipTextField.m */,
  2705. 2779342C27E324A00010E277 /* SkipTextProtocol.h */,
  2706. 2779342D27E324A00010E277 /* SkipTextView.h */,
  2707. 2779342E27E324A00010E277 /* UITextView_Toolbar.m */,
  2708. 2779342F27E324A00010E277 /* UITextField_Toolbar.h */,
  2709. 2779343027E324A00010E277 /* SkipTextField.h */,
  2710. 2779343127E324A00010E277 /* SkipTextView.m */,
  2711. 2779343227E324A00010E277 /* UITextView_Toolbar.h */,
  2712. );
  2713. path = KSInputView;
  2714. sourceTree = "<group>";
  2715. };
  2716. 2779345627E324A00010E277 /* LLPhotoBrowser */ = {
  2717. isa = PBXGroup;
  2718. children = (
  2719. 2779345727E324A10010E277 /* LLPhotoBrowser.m */,
  2720. 2779345827E324A10010E277 /* LLCollectionViewCell.h */,
  2721. 2779345927E324A10010E277 /* LLClasses */,
  2722. 2779345E27E324A10010E277 /* LLPhoto.m */,
  2723. 2779345F27E324A10010E277 /* LLCollectionViewCell.m */,
  2724. 2779346027E324A10010E277 /* LLPhotoBrowser.h */,
  2725. 2779346127E324A10010E277 /* LLPhoto.h */,
  2726. );
  2727. path = LLPhotoBrowser;
  2728. sourceTree = "<group>";
  2729. };
  2730. 2779345927E324A10010E277 /* LLClasses */ = {
  2731. isa = PBXGroup;
  2732. children = (
  2733. 2779345A27E324A10010E277 /* LLImageCache.m */,
  2734. 2779345B27E324A10010E277 /* LLFileManager.m */,
  2735. 2779345C27E324A10010E277 /* LLImageCache.h */,
  2736. 2779345D27E324A10010E277 /* LLFileManager.h */,
  2737. );
  2738. path = LLClasses;
  2739. sourceTree = "<group>";
  2740. };
  2741. 2779346327E324A10010E277 /* ArchiveTools */ = {
  2742. isa = PBXGroup;
  2743. children = (
  2744. 2779346427E324A10010E277 /* CoinModel.h */,
  2745. 2779346527E324A10010E277 /* ArchiveTools.h */,
  2746. 2779346627E324A10010E277 /* NSObject+Archiving.m */,
  2747. 2779346727E324A10010E277 /* CoinModel.m */,
  2748. 2779346827E324A10010E277 /* ArchiveTools.m */,
  2749. 2779346927E324A10010E277 /* NSObject+Archiving.h */,
  2750. );
  2751. path = ArchiveTools;
  2752. sourceTree = "<group>";
  2753. };
  2754. 2779346A27E324A10010E277 /* Define */ = {
  2755. isa = PBXGroup;
  2756. children = (
  2757. 2779346B27E324A10010E277 /* UserKeyHeader.h */,
  2758. 2779346C27E324A10010E277 /* Common.h */,
  2759. 2779346D27E324A10010E277 /* PrefixHeader.pch */,
  2760. );
  2761. path = Define;
  2762. sourceTree = "<group>";
  2763. };
  2764. 2779346E27E324A10010E277 /* ThirdPart */ = {
  2765. isa = PBXGroup;
  2766. children = (
  2767. BC40BA0528117B3A00DEC0D1 /* TYCyclePagerView */,
  2768. 2723B63D27F15B5800E0B90B /* SCIndexView */,
  2769. 2779346F27E324A10010E277 /* KLTAnimateNav */,
  2770. 2779347427E324A10010E277 /* DZSegmentCtrl */,
  2771. 2779347727E324A10010E277 /* WMPlayer */,
  2772. 2779348127E324A10010E277 /* TZImagePickerController */,
  2773. 277934A527E324A20010E277 /* MSSBrowse */,
  2774. 277934C127E324A20010E277 /* FSCalendar */,
  2775. 277934E127E324A30010E277 /* SDCycleScrollView */,
  2776. 277934F827E324A30010E277 /* ALCalendarPicker */,
  2777. );
  2778. path = ThirdPart;
  2779. sourceTree = "<group>";
  2780. };
  2781. 2779346F27E324A10010E277 /* KLTAnimateNav */ = {
  2782. isa = PBXGroup;
  2783. children = (
  2784. 2779347027E324A10010E277 /* AnimationContoller.h */,
  2785. 2779347127E324A10010E277 /* KLTNavigationController.m */,
  2786. 2779347227E324A10010E277 /* KLTNavigationController.h */,
  2787. 2779347327E324A10010E277 /* AnimationContoller.m */,
  2788. );
  2789. path = KLTAnimateNav;
  2790. sourceTree = "<group>";
  2791. };
  2792. 2779347427E324A10010E277 /* DZSegmentCtrl */ = {
  2793. isa = PBXGroup;
  2794. children = (
  2795. 2779347527E324A10010E277 /* DZNSegmentedControl.m */,
  2796. 2779347627E324A10010E277 /* DZNSegmentedControl.h */,
  2797. );
  2798. path = DZSegmentCtrl;
  2799. sourceTree = "<group>";
  2800. };
  2801. 2779347727E324A10010E277 /* WMPlayer */ = {
  2802. isa = PBXGroup;
  2803. children = (
  2804. 2779347827E324A10010E277 /* WMLightView.h */,
  2805. 2779347927E324A10010E277 /* WMPlayerModel.m */,
  2806. 2779347A27E324A10010E277 /* FastForwardView.h */,
  2807. 2779347B27E324A10010E277 /* WMPlayer.bundle */,
  2808. 2779347C27E324A10010E277 /* WMPlayer.h */,
  2809. 2779347D27E324A10010E277 /* WMPlayerModel.h */,
  2810. 2779347E27E324A10010E277 /* WMLightView.m */,
  2811. 2779347F27E324A10010E277 /* FastForwardView.m */,
  2812. 2779348027E324A10010E277 /* WMPlayer.m */,
  2813. );
  2814. path = WMPlayer;
  2815. sourceTree = "<group>";
  2816. };
  2817. 2779348127E324A10010E277 /* TZImagePickerController */ = {
  2818. isa = PBXGroup;
  2819. children = (
  2820. 2779348227E324A10010E277 /* TZPhotoPreviewCell.h */,
  2821. 2779348327E324A10010E277 /* TZPhotoPickerController.h */,
  2822. 2779348427E324A10010E277 /* TZImageCropManager.m */,
  2823. 2779348527E324A10010E277 /* TZImageManager.h */,
  2824. 2779348627E324A10010E277 /* TZAssetCell.m */,
  2825. 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */,
  2826. 2779348827E324A10010E277 /* TZVideoCropController.m */,
  2827. 2779348927E324A10010E277 /* TZVideoPlayerController.m */,
  2828. 2779348A27E324A10010E277 /* TZAssetModel.m */,
  2829. 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */,
  2830. 2779348C27E324A10010E277 /* UIView+TZLayout.h */,
  2831. 2779348D27E324A10010E277 /* TZLocationManager.h */,
  2832. 2779348E27E324A10010E277 /* TZImagePickerController.h */,
  2833. 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */,
  2834. 2779349027E324A10010E277 /* TZImagePickerController.bundle */,
  2835. 2779349127E324A10010E277 /* TZProgressView.m */,
  2836. 2779349227E324A10010E277 /* TZGifPhotoPreviewController.h */,
  2837. 2779349327E324A10010E277 /* TZImageRequestOperation.h */,
  2838. 2779349427E324A10010E277 /* TZVideoEditedPreviewController.h */,
  2839. 2779349527E324A10010E277 /* TZAssetCell.h */,
  2840. 2779349627E324A10010E277 /* TZImageManager.m */,
  2841. 2779349727E324A20010E277 /* TZImageCropManager.h */,
  2842. 2779349827E324A20010E277 /* TZPhotoPickerController.m */,
  2843. 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */,
  2844. 2779349A27E324A20010E277 /* NSBundle+TZImagePicker.h */,
  2845. 2779349B27E324A20010E277 /* UIView+TZLayout.m */,
  2846. 2779349C27E324A20010E277 /* TZAssetModel.h */,
  2847. 2779349D27E324A20010E277 /* TZVideoPlayerController.h */,
  2848. 2779349E27E324A20010E277 /* TZVideoCropController.h */,
  2849. 2779349F27E324A20010E277 /* TZPhotoPreviewController.h */,
  2850. 277934A027E324A20010E277 /* TZImagePickerController.m */,
  2851. 277934A127E324A20010E277 /* TZLocationManager.m */,
  2852. 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */,
  2853. 277934A327E324A20010E277 /* TZImageRequestOperation.m */,
  2854. 277934A427E324A20010E277 /* TZProgressView.h */,
  2855. );
  2856. path = TZImagePickerController;
  2857. sourceTree = "<group>";
  2858. };
  2859. 277934A527E324A20010E277 /* MSSBrowse */ = {
  2860. isa = PBXGroup;
  2861. children = (
  2862. 277934A627E324A20010E277 /* MSSBrowseRemindView.h */,
  2863. 277934A727E324A20010E277 /* MSSBrowseZoomScrollView.h */,
  2864. 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */,
  2865. 277934A927E324A20010E277 /* MSSBrowseBaseViewController.h */,
  2866. 277934AA27E324A20010E277 /* UIImage+MSSScale.h */,
  2867. 277934AB27E324A20010E277 /* MSSBrowseNetworkViewController.h */,
  2868. 277934AC27E324A20010E277 /* MSSBrowseActionSheet.h */,
  2869. 277934AD27E324A20010E277 /* MSSBrowseActionSheetCell.h */,
  2870. 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */,
  2871. 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */,
  2872. 277934B027E324A20010E277 /* UIView+MSSLayout.h */,
  2873. 277934B127E324A20010E277 /* MSSBrowseModel.m */,
  2874. 277934B227E324A20010E277 /* MSSBrowseDefine.h */,
  2875. 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */,
  2876. 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */,
  2877. 277934B527E324A20010E277 /* UIImage+MSSScale.m */,
  2878. 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */,
  2879. 277934B727E324A20010E277 /* MSSBrowseLoadingImageView.h */,
  2880. 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */,
  2881. 277934B927E324A20010E277 /* MSSBrowseRemindView.m */,
  2882. 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */,
  2883. 277934BB27E324A20010E277 /* MSSBrowseCollectionViewCell.h */,
  2884. 277934BC27E324A20010E277 /* MSSBrowseLocalViewController.h */,
  2885. 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */,
  2886. 277934BE27E324A20010E277 /* MSSBrowseModel.h */,
  2887. 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */,
  2888. 277934C027E324A20010E277 /* UIView+MSSLayout.m */,
  2889. );
  2890. path = MSSBrowse;
  2891. sourceTree = "<group>";
  2892. };
  2893. 277934C127E324A20010E277 /* FSCalendar */ = {
  2894. isa = PBXGroup;
  2895. children = (
  2896. 277934C227E324A20010E277 /* FSCalendarCollectionView.m */,
  2897. 277934C327E324A20010E277 /* FSCalendarWeekdayView.h */,
  2898. 277934C427E324A20010E277 /* FSCalendarCollectionViewLayout.h */,
  2899. 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */,
  2900. 277934C627E324A20010E277 /* FSCalendarExtensions.h */,
  2901. 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */,
  2902. 277934C827E324A20010E277 /* FSCalendarSeparatorDecorationView.h */,
  2903. 277934C927E324A20010E277 /* FSCalendarCalculator.h */,
  2904. 277934CA27E324A20010E277 /* FSCalendarHeaderView.h */,
  2905. 277934CB27E324A20010E277 /* FSCalendarConstants.h */,
  2906. 277934CC27E324A20010E277 /* FSCalendarAppearance.h */,
  2907. 277934CD27E324A20010E277 /* FSCalendarTransitionCoordinator.h */,
  2908. 277934CE27E324A30010E277 /* FSCalendarCell.m */,
  2909. 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */,
  2910. 277934D027E324A30010E277 /* FSCalendar.m */,
  2911. 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */,
  2912. 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */,
  2913. 277934D327E324A30010E277 /* FSCalendarCollectionView.h */,
  2914. 277934D427E324A30010E277 /* FSCalendarDynamicHeader.h */,
  2915. 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */,
  2916. 277934D627E324A30010E277 /* FSCalendarDelegationFactory.h */,
  2917. 277934D727E324A30010E277 /* FSCalendarExtensions.m */,
  2918. 277934D827E324A30010E277 /* FSCalendarDelegationProxy.h */,
  2919. 277934D927E324A30010E277 /* FSCalendarConstants.m */,
  2920. 277934DA27E324A30010E277 /* FSCalendarCalculator.m */,
  2921. 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */,
  2922. 277934DC27E324A30010E277 /* FSCalendarStickyHeader.h */,
  2923. 277934DD27E324A30010E277 /* FSCalendar.h */,
  2924. 277934DE27E324A30010E277 /* FSCalendarCell.h */,
  2925. 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */,
  2926. 277934E027E324A30010E277 /* FSCalendarAppearance.m */,
  2927. );
  2928. path = FSCalendar;
  2929. sourceTree = "<group>";
  2930. };
  2931. 277934E127E324A30010E277 /* SDCycleScrollView */ = {
  2932. isa = PBXGroup;
  2933. children = (
  2934. 277934EE27E324A30010E277 /* PageControl */,
  2935. 277934EC27E324A30010E277 /* QWdynamicModel.h */,
  2936. 277934E227E324A30010E277 /* QWdynamicModel.m */,
  2937. 277934E627E324A30010E277 /* SDCollectionViewCell.h */,
  2938. 277934ED27E324A30010E277 /* SDCollectionViewCell.m */,
  2939. 277934E527E324A30010E277 /* SDCycleScrollView.h */,
  2940. 277934E927E324A30010E277 /* SDCycleScrollView.m */,
  2941. 277934E427E324A30010E277 /* SDQWMaskCustomModel.h */,
  2942. 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */,
  2943. 277934E827E324A30010E277 /* SDQWMaskCustomView.h */,
  2944. 277934F727E324A30010E277 /* SDQWMaskCustomView.m */,
  2945. 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */,
  2946. 277934E327E324A30010E277 /* UIView+SDExtension.h */,
  2947. 277934EA27E324A30010E277 /* UIView+SDExtension.m */,
  2948. );
  2949. path = SDCycleScrollView;
  2950. sourceTree = "<group>";
  2951. };
  2952. 277934EE27E324A30010E277 /* PageControl */ = {
  2953. isa = PBXGroup;
  2954. children = (
  2955. 277934EF27E324A30010E277 /* TAAbstractDotView.h */,
  2956. 277934F327E324A30010E277 /* TAAbstractDotView.m */,
  2957. 277934F527E324A30010E277 /* TAAnimatedDotView.h */,
  2958. 277934F227E324A30010E277 /* TAAnimatedDotView.m */,
  2959. 277934F427E324A30010E277 /* TADotView.h */,
  2960. 277934F027E324A30010E277 /* TADotView.m */,
  2961. 277934F627E324A30010E277 /* TAPageControl.h */,
  2962. 277934F127E324A30010E277 /* TAPageControl.m */,
  2963. );
  2964. path = PageControl;
  2965. sourceTree = "<group>";
  2966. };
  2967. 277934F827E324A30010E277 /* ALCalendarPicker */ = {
  2968. isa = PBXGroup;
  2969. children = (
  2970. 277934F927E324A30010E277 /* ALCalendarCell.m */,
  2971. 277934FA27E324A30010E277 /* ALCalendarConfig.m */,
  2972. 277934FB27E324A30010E277 /* ALCalendarHeader.m */,
  2973. 277934FC27E324A30010E277 /* ALCalendarDate.m */,
  2974. 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */,
  2975. 277934FE27E324A30010E277 /* ALCalendarHelper.m */,
  2976. 277934FF27E324A30010E277 /* UIView+ALFrame.h */,
  2977. 2779350027E324A30010E277 /* ALCalendarPicker.h */,
  2978. 2779350127E324A30010E277 /* ALCalendarManager.h */,
  2979. 2779350227E324A30010E277 /* ALCalendarCollectionView.h */,
  2980. 2779350327E324A30010E277 /* ALCalendarDate.h */,
  2981. 2779350427E324A30010E277 /* ALCalendarHeader.h */,
  2982. 2779350527E324A30010E277 /* ALCalendarConfig.h */,
  2983. 2779350627E324A30010E277 /* ALCalendarCell.h */,
  2984. 2779350727E324A40010E277 /* ALCalendarHelper.h */,
  2985. 2779350827E324A40010E277 /* ALCalendarPicker.m */,
  2986. 2779350927E324A40010E277 /* UIView+ALFrame.m */,
  2987. 2779350A27E324A40010E277 /* ALCalendarManager.m */,
  2988. );
  2989. path = ALCalendarPicker;
  2990. sourceTree = "<group>";
  2991. };
  2992. 2779350B27E324A40010E277 /* Base */ = {
  2993. isa = PBXGroup;
  2994. children = (
  2995. BC119246280EDA5800A716F7 /* kSJXCollectionView.h */,
  2996. BC119245280EDA5800A716F7 /* kSJXCollectionView.m */,
  2997. 2723B64727F15BDB00E0B90B /* KSJXBodyView.h */,
  2998. 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */,
  2999. 2723B63B27F159BA00E0B90B /* KSBaseTableViewController.h */,
  3000. 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */,
  3001. 275FA1BE27E7351600CFEA2E /* BaseViewController.h */,
  3002. 275FA1CF27E7351800CFEA2E /* BaseViewController.m */,
  3003. 275FA1BC27E7351500CFEA2E /* CustomNavViewController.h */,
  3004. 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */,
  3005. 275FA1C327E7351600CFEA2E /* KSAccompanyWebViewController.h */,
  3006. 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */,
  3007. 275FA1B627E7351500CFEA2E /* KSAQRecordManager.h */,
  3008. 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */,
  3009. 275FA1B327E7351400CFEA2E /* KSBaseModel.h */,
  3010. 275FA1B727E7351500CFEA2E /* KSBaseModel.m */,
  3011. 275FA1C527E7351600CFEA2E /* KSBaseViewController.h */,
  3012. 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */,
  3013. 275FA1D527E7351800CFEA2E /* KSBaseWKWebViewController.h */,
  3014. 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */,
  3015. 275FA1C027E7351600CFEA2E /* KSLocalWebViewController.h */,
  3016. 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */,
  3017. 275FA1CA27E7351700CFEA2E /* KSNetTypeManager.h */,
  3018. 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */,
  3019. 275FA1B527E7351400CFEA2E /* KSRCIMDataSource.h */,
  3020. 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */,
  3021. 275FA1D727E7351900CFEA2E /* KSTabBarViewController.h */,
  3022. 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */,
  3023. 275FA1CB27E7351700CFEA2E /* KSUpdateAlert.h */,
  3024. 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */,
  3025. 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */,
  3026. 275FA1B227E7351400CFEA2E /* KSUpdateManager.h */,
  3027. 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */,
  3028. 275FA1D127E7351800CFEA2E /* KSWebBackButton.h */,
  3029. 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */,
  3030. 275FA1B827E7351500CFEA2E /* KSWebNavView.h */,
  3031. 275FA1C227E7351600CFEA2E /* KSWebNavView.m */,
  3032. 275FA1D227E7351800CFEA2E /* KSWebSocketManager.h */,
  3033. 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */,
  3034. 275FA1D327E7351800CFEA2E /* RCConnectionManager.h */,
  3035. 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */,
  3036. 275FA1D827E7351900CFEA2E /* RecordCheckManager.h */,
  3037. 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */,
  3038. 275FA1B427E7351400CFEA2E /* UINavigationController+KSNavigationBar.h */,
  3039. 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */,
  3040. 275FA1CC27E7351700CFEA2E /* WeakWebViewScriptMessageDelegate.h */,
  3041. 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */,
  3042. 275FA1D427E7351800CFEA2E /* KSNetworkingManager.h */,
  3043. 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */,
  3044. );
  3045. path = Base;
  3046. sourceTree = "<group>";
  3047. };
  3048. 27F9030F27E87C2C00C08A19 /* Networking */ = {
  3049. isa = PBXGroup;
  3050. children = (
  3051. 27F9031027E87C2C00C08A19 /* Controller */,
  3052. 27F9031327E87C2C00C08A19 /* Model */,
  3053. 27F9031427E87C2C00C08A19 /* View */,
  3054. );
  3055. path = Networking;
  3056. sourceTree = "<group>";
  3057. };
  3058. 27F9031027E87C2C00C08A19 /* Controller */ = {
  3059. isa = PBXGroup;
  3060. children = (
  3061. 27F9031127E87C2C00C08A19 /* NetworkingCheckController.h */,
  3062. 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */,
  3063. );
  3064. path = Controller;
  3065. sourceTree = "<group>";
  3066. };
  3067. 27F9031327E87C2C00C08A19 /* Model */ = {
  3068. isa = PBXGroup;
  3069. children = (
  3070. );
  3071. path = Model;
  3072. sourceTree = "<group>";
  3073. };
  3074. 27F9031427E87C2C00C08A19 /* View */ = {
  3075. isa = PBXGroup;
  3076. children = (
  3077. 27F9031527E87C2C00C08A19 /* KSNetworkAlert.h */,
  3078. 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */,
  3079. 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */,
  3080. 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */,
  3081. 27F9031927E87C2D00C08A19 /* NetworkBodyView.h */,
  3082. 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */,
  3083. );
  3084. path = View;
  3085. sourceTree = "<group>";
  3086. };
  3087. 27F9031B27E87C2D00C08A19 /* DeviceCheck */ = {
  3088. isa = PBXGroup;
  3089. children = (
  3090. 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */,
  3091. 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */,
  3092. 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */,
  3093. 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */,
  3094. 27F9032027E87C2D00C08A19 /* AudioRecordManager.h */,
  3095. 27F9032127E87C2D00C08A19 /* DeviceCheckView.h */,
  3096. 27F9032227E87C2D00C08A19 /* AudioPlayManager.h */,
  3097. );
  3098. path = DeviceCheck;
  3099. sourceTree = "<group>";
  3100. };
  3101. 27F9032327E87C2E00C08A19 /* Setting */ = {
  3102. isa = PBXGroup;
  3103. children = (
  3104. 27F9032427E87C2E00C08A19 /* Controller */,
  3105. 27F9032827E87C2E00C08A19 /* View */,
  3106. );
  3107. path = Setting;
  3108. sourceTree = "<group>";
  3109. };
  3110. 27F9032427E87C2E00C08A19 /* Controller */ = {
  3111. isa = PBXGroup;
  3112. children = (
  3113. 27F9032527E87C2E00C08A19 /* SettingViewController.h */,
  3114. 27F9032627E87C2E00C08A19 /* SettingViewController.m */,
  3115. 2723B67427F15D3600E0B90B /* AboutUsViewController.h */,
  3116. 2723B67227F15D3300E0B90B /* AboutUsViewController.m */,
  3117. 2723B67727F15D3900E0B90B /* AddressViewController.h */,
  3118. 2723B67B27F15D3C00E0B90B /* AddressViewController.m */,
  3119. 2723B67627F15D3800E0B90B /* FeedbackViewController.h */,
  3120. 2723B67327F15D3400E0B90B /* FeedbackViewController.m */,
  3121. 2723B67A27F15D3B00E0B90B /* ModifyNameViewController.h */,
  3122. 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */,
  3123. 2723B67C27F15D3D00E0B90B /* ModifyPhoneChangeController.h */,
  3124. 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */,
  3125. 2723B67027F15D3200E0B90B /* ModifyPhoneCheckController.h */,
  3126. 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */,
  3127. 2723B67D27F15D3D00E0B90B /* ModifyViewController.h */,
  3128. 2723B67927F15D3B00E0B90B /* ModifyViewController.m */,
  3129. );
  3130. path = Controller;
  3131. sourceTree = "<group>";
  3132. };
  3133. 27F9032827E87C2E00C08A19 /* View */ = {
  3134. isa = PBXGroup;
  3135. children = (
  3136. 2723B65027F15CF900E0B90B /* AboutUsBodyView.h */,
  3137. 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */,
  3138. 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */,
  3139. 2723B65227F15CF900E0B90B /* FeedbackBodyView.h */,
  3140. 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */,
  3141. 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */,
  3142. 2723B64F27F15CF900E0B90B /* ModifyBodyView.h */,
  3143. 2723B65427F15CF900E0B90B /* ModifyBodyView.m */,
  3144. 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */,
  3145. 2723B64B27F15CF800E0B90B /* ModifyNameBodyView.h */,
  3146. 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */,
  3147. 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */,
  3148. 2723B65627F15CFA00E0B90B /* PhoneChangeBodyView.h */,
  3149. 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */,
  3150. 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */,
  3151. 2723B65927F15CFA00E0B90B /* PhoneCheckBodyView.h */,
  3152. 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */,
  3153. 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */,
  3154. 2723B65B27F15CFA00E0B90B /* SettingBodyView.h */,
  3155. 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */,
  3156. 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */,
  3157. 2723B65F27F15CFB00E0B90B /* VeriCheckView.h */,
  3158. 2723B64E27F15CF800E0B90B /* VeriCheckView.m */,
  3159. );
  3160. path = View;
  3161. sourceTree = "<group>";
  3162. };
  3163. 9BF683910A95A690331EF86A /* Frameworks */ = {
  3164. isa = PBXGroup;
  3165. children = (
  3166. 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */,
  3167. C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */,
  3168. DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */,
  3169. );
  3170. name = Frameworks;
  3171. sourceTree = "<group>";
  3172. };
  3173. BC1191F9280ED63C00A716F7 /* MineCourse */ = {
  3174. isa = PBXGroup;
  3175. children = (
  3176. BC1191FA280ED63C00A716F7 /* Controller */,
  3177. BC1191FB280ED63C00A716F7 /* Model */,
  3178. BC1191FC280ED63C00A716F7 /* View */,
  3179. );
  3180. path = MineCourse;
  3181. sourceTree = "<group>";
  3182. };
  3183. BC1191FA280ED63C00A716F7 /* Controller */ = {
  3184. isa = PBXGroup;
  3185. children = (
  3186. BC1191FD280ED64E00A716F7 /* MyCourseViewController.h */,
  3187. BC1191FE280ED64E00A716F7 /* MyCourseViewController.m */,
  3188. );
  3189. path = Controller;
  3190. sourceTree = "<group>";
  3191. };
  3192. BC1191FB280ED63C00A716F7 /* Model */ = {
  3193. isa = PBXGroup;
  3194. children = (
  3195. BC119220280ED6F500A716F7 /* AccompanyLessonModel.h */,
  3196. BC11921F280ED6F400A716F7 /* AccompanyLessonModel.m */,
  3197. BC119221280ED6F500A716F7 /* LiveLessonModel.h */,
  3198. BC11921E280ED6F400A716F7 /* LiveLessonModel.m */,
  3199. BC0D1F732810165400C5D9E5 /* VideoCourseModel.h */,
  3200. BC0D1F742810165400C5D9E5 /* VideoCourseModel.m */,
  3201. );
  3202. path = Model;
  3203. sourceTree = "<group>";
  3204. };
  3205. BC1191FC280ED63C00A716F7 /* View */ = {
  3206. isa = PBXGroup;
  3207. children = (
  3208. BC119202280ED6A600A716F7 /* MyLessonBodyView.h */,
  3209. BC119200280ED6A600A716F7 /* MyLessonBodyView.m */,
  3210. BC119208280ED6A800A716F7 /* MyLessonSearchView.h */,
  3211. BC119209280ED6A800A716F7 /* MyLessonSearchView.m */,
  3212. BC119206280ED6A700A716F7 /* MyLessonSearchView.xib */,
  3213. BC119205280ED6A700A716F7 /* MyLiveCourseCell.h */,
  3214. BC119204280ED6A700A716F7 /* MyLiveCourseCell.m */,
  3215. BC119203280ED6A700A716F7 /* MyLiveCourseCell.xib */,
  3216. BC0D1F70281015B000C5D9E5 /* VideoCourseCell.h */,
  3217. BC0D1F6E281015AF00C5D9E5 /* VideoCourseCell.m */,
  3218. BC0D1F6F281015AF00C5D9E5 /* VideoCourseCell.xib */,
  3219. BC11920D280ED6A900A716F7 /* PopView */,
  3220. BC0D1F6B281013DF00C5D9E5 /* MyVideoCourseBodyView.h */,
  3221. BC0D1F6C281013DF00C5D9E5 /* MyVideoCourseBodyView.m */,
  3222. );
  3223. path = View;
  3224. sourceTree = "<group>";
  3225. };
  3226. BC11920D280ED6A900A716F7 /* PopView */ = {
  3227. isa = PBXGroup;
  3228. children = (
  3229. BC11920E280ED6A900A716F7 /* NewClassPopView.h */,
  3230. BC11920F280ED6A900A716F7 /* NewClassPopCell.xib */,
  3231. BC119210280ED6A900A716F7 /* NewClassPopCell.h */,
  3232. BC119211280ED6A900A716F7 /* NewClassPopView.m */,
  3233. BC119212280ED6A900A716F7 /* NewClassPopCell.m */,
  3234. );
  3235. path = PopView;
  3236. sourceTree = "<group>";
  3237. };
  3238. BC11923B280ED9CC00A716F7 /* AccompanyCourse */ = {
  3239. isa = PBXGroup;
  3240. children = (
  3241. BC11923C280ED9CC00A716F7 /* Controller */,
  3242. BC11923D280ED9CC00A716F7 /* Model */,
  3243. BC11923E280ED9CC00A716F7 /* View */,
  3244. );
  3245. path = AccompanyCourse;
  3246. sourceTree = "<group>";
  3247. };
  3248. BC11923C280ED9CC00A716F7 /* Controller */ = {
  3249. isa = PBXGroup;
  3250. children = (
  3251. BC11923F280ED9E000A716F7 /* AccompanyDetailViewController.h */,
  3252. BC119240280ED9E000A716F7 /* AccompanyDetailViewController.m */,
  3253. );
  3254. path = Controller;
  3255. sourceTree = "<group>";
  3256. };
  3257. BC11923D280ED9CC00A716F7 /* Model */ = {
  3258. isa = PBXGroup;
  3259. children = (
  3260. BC27A077280FFA2100F91E27 /* EvaluateDetailModel.h */,
  3261. BC27A078280FFA2200F91E27 /* EvaluateDetailModel.m */,
  3262. );
  3263. path = Model;
  3264. sourceTree = "<group>";
  3265. };
  3266. BC11923E280ED9CC00A716F7 /* View */ = {
  3267. isa = PBXGroup;
  3268. children = (
  3269. BC11926D280FAF7C00A716F7 /* AccompanyCourseInfoCell.h */,
  3270. BC11926F280FAF7C00A716F7 /* AccompanyCourseInfoCell.m */,
  3271. BC11926E280FAF7C00A716F7 /* AccompanyCourseInfoCell.xib */,
  3272. BC119279280FB07F00A716F7 /* AccompanyArrangeCell.h */,
  3273. BC119277280FB07F00A716F7 /* AccompanyArrangeCell.m */,
  3274. BC119278280FB07F00A716F7 /* AccompanyArrangeCell.xib */,
  3275. BC119274280FB01100A716F7 /* AccompanyHomeworkCell.h */,
  3276. BC119273280FB01000A716F7 /* AccompanyHomeworkCell.m */,
  3277. BC119272280FB01000A716F7 /* AccompanyHomeworkCell.xib */,
  3278. BC11927E280FB10900A716F7 /* AccompanyRemarkCell.h */,
  3279. BC11927C280FB10700A716F7 /* AccompanyRemarkCell.m */,
  3280. BC11927D280FB10800A716F7 /* AccompanyRemarkCell.xib */,
  3281. BC27A068280FF56B00F91E27 /* AccompanyEvaluateCell.h */,
  3282. BC27A06D280FF56C00F91E27 /* AccompanyEvaluateCell.m */,
  3283. BC27A06A280FF56B00F91E27 /* AccompanyEvaluateCell.xib */,
  3284. BC27A069280FF56B00F91E27 /* AccompanyStudentEvaCell.h */,
  3285. BC27A06B280FF56C00F91E27 /* AccompanyStudentEvaCell.m */,
  3286. BC27A06C280FF56C00F91E27 /* AccompanyStudentEvaCell.xib */,
  3287. BC27A072280FF60B00F91E27 /* AccompanyDetailBottomView.h */,
  3288. BC27A073280FF60B00F91E27 /* AccompanyDetailBottomView.m */,
  3289. BC27A075280FF61300F91E27 /* AccompanyDetailBottomView.xib */,
  3290. );
  3291. path = View;
  3292. sourceTree = "<group>";
  3293. };
  3294. BC119248280EDD4600A716F7 /* Homework */ = {
  3295. isa = PBXGroup;
  3296. children = (
  3297. BC119249280EDD4600A716F7 /* Controller */,
  3298. BC11924A280EDD4600A716F7 /* Model */,
  3299. BC11924B280EDD4600A716F7 /* View */,
  3300. );
  3301. path = Homework;
  3302. sourceTree = "<group>";
  3303. };
  3304. BC119249280EDD4600A716F7 /* Controller */ = {
  3305. isa = PBXGroup;
  3306. children = (
  3307. BC11924C280EDD5500A716F7 /* HomeworkListViewController.h */,
  3308. BC11924D280EDD5500A716F7 /* HomeworkListViewController.m */,
  3309. BC119265280FA92700A716F7 /* HomeworkDetailViewController.h */,
  3310. BC119266280FA92700A716F7 /* HomeworkDetailViewController.m */,
  3311. );
  3312. path = Controller;
  3313. sourceTree = "<group>";
  3314. };
  3315. BC11924A280EDD4600A716F7 /* Model */ = {
  3316. isa = PBXGroup;
  3317. children = (
  3318. BC11925F280FA90000A716F7 /* HomeworkDetailModel.h */,
  3319. BC119261280FA90100A716F7 /* HomeworkDetailModel.m */,
  3320. BC119260280FA90000A716F7 /* HomeworkListModel.h */,
  3321. BC119262280FA90100A716F7 /* HomeworkListModel.m */,
  3322. );
  3323. path = Model;
  3324. sourceTree = "<group>";
  3325. };
  3326. BC11924B280EDD4600A716F7 /* View */ = {
  3327. isa = PBXGroup;
  3328. children = (
  3329. BC119268280FAF5800A716F7 /* AccompanyAlertView.h */,
  3330. BC119269280FAF5800A716F7 /* AccompanyAlertView.m */,
  3331. BC11926A280FAF5900A716F7 /* AccompanyAlertView.xib */,
  3332. BC11925C280FA89A00A716F7 /* HomeworkBodyView.h */,
  3333. BC11925D280FA89A00A716F7 /* HomeworkBodyView.m */,
  3334. BC119254280FA85200A716F7 /* HomeworkListCell.h */,
  3335. BC119253280FA85200A716F7 /* HomeworkListCell.m */,
  3336. BC119252280FA85200A716F7 /* HomeworkListCell.xib */,
  3337. BC119256280FA85300A716F7 /* HomeworkSortView.h */,
  3338. BC119257280FA85300A716F7 /* HomeworkSortView.m */,
  3339. BC119255280FA85300A716F7 /* HomeworkSortView.xib */,
  3340. BC11928A280FB44300A716F7 /* HomeworkVideoView.h */,
  3341. BC11928B280FB44300A716F7 /* HomeworkVideoView.m */,
  3342. BC119289280FB44200A716F7 /* HomeworkVideoView.xib */,
  3343. BC119291280FBC1100A716F7 /* HomeworkAddView.h */,
  3344. BC119292280FBC1100A716F7 /* HomeworkAddView.m */,
  3345. BC119299280FD2E800A716F7 /* HomeworkBottomView.h */,
  3346. BC11929A280FD2E800A716F7 /* HomeworkBottomView.m */,
  3347. BC11929C280FD2EF00A716F7 /* HomeworkBottomView.xib */,
  3348. );
  3349. path = View;
  3350. sourceTree = "<group>";
  3351. };
  3352. BC40BA0528117B3A00DEC0D1 /* TYCyclePagerView */ = {
  3353. isa = PBXGroup;
  3354. children = (
  3355. BC40BA0628117B3A00DEC0D1 /* TYCyclePagerView.h */,
  3356. BC40BA0728117B3A00DEC0D1 /* TYCyclePagerTransformLayout.h */,
  3357. BC40BA0828117B3A00DEC0D1 /* TYPageControl.m */,
  3358. BC40BA0928117B3A00DEC0D1 /* TYCyclePagerView.m */,
  3359. BC40BA0A28117B3A00DEC0D1 /* TYCyclePagerTransformLayout.m */,
  3360. BC40BA0B28117B3A00DEC0D1 /* TYPageControl.h */,
  3361. );
  3362. path = TYCyclePagerView;
  3363. sourceTree = "<group>";
  3364. };
  3365. BC40BA0F28124D0C00DEC0D1 /* NoticeCenter */ = {
  3366. isa = PBXGroup;
  3367. children = (
  3368. BC40BA1028124D0C00DEC0D1 /* Controller */,
  3369. BC40BA1128124D0C00DEC0D1 /* Model */,
  3370. BC40BA1228124D0C00DEC0D1 /* View */,
  3371. );
  3372. path = NoticeCenter;
  3373. sourceTree = "<group>";
  3374. };
  3375. BC40BA1028124D0C00DEC0D1 /* Controller */ = {
  3376. isa = PBXGroup;
  3377. children = (
  3378. BC40BA1628124D3D00DEC0D1 /* NoticeMessageViewController.h */,
  3379. BC40BA1728124D3D00DEC0D1 /* NoticeMessageViewController.m */,
  3380. );
  3381. path = Controller;
  3382. sourceTree = "<group>";
  3383. };
  3384. BC40BA1128124D0C00DEC0D1 /* Model */ = {
  3385. isa = PBXGroup;
  3386. children = (
  3387. BC40BA19281251EC00DEC0D1 /* HomeMessageModel.h */,
  3388. BC40BA1A281251ED00DEC0D1 /* HomeMessageModel.m */,
  3389. );
  3390. path = Model;
  3391. sourceTree = "<group>";
  3392. };
  3393. BC40BA1228124D0C00DEC0D1 /* View */ = {
  3394. isa = PBXGroup;
  3395. children = (
  3396. );
  3397. path = View;
  3398. sourceTree = "<group>";
  3399. };
  3400. BCB6340A27F6D29500ACFDCF /* Live */ = {
  3401. isa = PBXGroup;
  3402. children = (
  3403. BCB6340B27F6D29500ACFDCF /* LiveRoomMessage */,
  3404. BCB6342627F6D29500ACFDCF /* Controller */,
  3405. BCB6342D27F6D29500ACFDCF /* Model */,
  3406. BCB6343627F6D29500ACFDCF /* View */,
  3407. );
  3408. path = Live;
  3409. sourceTree = "<group>";
  3410. };
  3411. BCB6340B27F6D29500ACFDCF /* LiveRoomMessage */ = {
  3412. isa = PBXGroup;
  3413. children = (
  3414. BCB6342527F6D29500ACFDCF /* KSChatroomMessageCenter.h */,
  3415. BCB6341527F6D29500ACFDCF /* KSChatroomMessageCenter.m */,
  3416. BCB6341827F6D29500ACFDCF /* KSLiveChatroomClose.h */,
  3417. BCB6342227F6D29500ACFDCF /* KSLiveChatroomClose.m */,
  3418. BCB6342327F6D29500ACFDCF /* KSLiveChatroomDownSeat.h */,
  3419. BCB6341727F6D29500ACFDCF /* KSLiveChatroomDownSeat.m */,
  3420. BCB6342127F6D29500ACFDCF /* KSLiveChatroomEnter.h */,
  3421. BCB6340F27F6D29500ACFDCF /* KSLiveChatroomEnter.m */,
  3422. BCB6341F27F6D29500ACFDCF /* KSLiveChatroomKickOut.h */,
  3423. BCB6341227F6D29500ACFDCF /* KSLiveChatroomKickOut.m */,
  3424. BCB6341B27F6D29500ACFDCF /* KSLiveChatroomLeave.h */,
  3425. BCB6340E27F6D29500ACFDCF /* KSLiveChatroomLeave.m */,
  3426. BCB6341327F6D29500ACFDCF /* KSLiveChatroomLike.h */,
  3427. BCB6341D27F6D29500ACFDCF /* KSLiveChatroomLike.m */,
  3428. BCB6341027F6D29500ACFDCF /* KSLiveChatroomMemberCount.h */,
  3429. BCB6342027F6D29500ACFDCF /* KSLiveChatroomMemberCount.m */,
  3430. BCB6341427F6D29500ACFDCF /* KSLiveChatroomSeatApply.h */,
  3431. BCB6341C27F6D29500ACFDCF /* KSLiveChatroomSeatApply.m */,
  3432. BCB6341627F6D29500ACFDCF /* KSLiveChatroomSeatResponse.h */,
  3433. BCB6342427F6D29500ACFDCF /* KSLiveChatroomSeatResponse.m */,
  3434. BCB6341127F6D29500ACFDCF /* KSLiveChatroomUserQuit.h */,
  3435. BCB6341E27F6D29500ACFDCF /* KSLiveChatroomUserQuit.m */,
  3436. BCB6341927F6D29500ACFDCF /* KSLiveChatroomWelcome.h */,
  3437. BCB6340D27F6D29500ACFDCF /* KSLiveChatroomWelcome.m */,
  3438. BCB6340C27F6D29500ACFDCF /* KSRCMessageModel.h */,
  3439. BCB6341A27F6D29500ACFDCF /* KSRCMessageModel.m */,
  3440. );
  3441. path = LiveRoomMessage;
  3442. sourceTree = "<group>";
  3443. };
  3444. BCB6342627F6D29500ACFDCF /* Controller */ = {
  3445. isa = PBXGroup;
  3446. children = (
  3447. BCB6342A27F6D29500ACFDCF /* LiveVideoRoomViewController.h */,
  3448. BCB6342727F6D29500ACFDCF /* LiveVideoRoomViewController.m */,
  3449. );
  3450. path = Controller;
  3451. sourceTree = "<group>";
  3452. };
  3453. BCB6342D27F6D29500ACFDCF /* Model */ = {
  3454. isa = PBXGroup;
  3455. children = (
  3456. BCB6342E27F6D29500ACFDCF /* KSEnterLiveroomManager.h */,
  3457. BCB6343227F6D29500ACFDCF /* KSEnterLiveroomManager.m */,
  3458. BCB6342F27F6D29500ACFDCF /* KSLiveStreamVideo.h */,
  3459. BCB6343327F6D29500ACFDCF /* KSLiveStreamVideo.m */,
  3460. BCB6343027F6D29500ACFDCF /* LiveroomTimeManager.h */,
  3461. BCB6343427F6D29500ACFDCF /* LiveroomTimeManager.m */,
  3462. BCB6343127F6D29500ACFDCF /* LiveSeatMember.h */,
  3463. BCB6343527F6D29500ACFDCF /* LiveSeatMember.m */,
  3464. );
  3465. path = Model;
  3466. sourceTree = "<group>";
  3467. };
  3468. BCB6343627F6D29500ACFDCF /* View */ = {
  3469. isa = PBXGroup;
  3470. children = (
  3471. BCB635A827F6D93300ACFDCF /* KSChatVideoView.h */,
  3472. BCB635A727F6D93300ACFDCF /* KSChatVideoView.m */,
  3473. BCB635A527F6D90600ACFDCF /* KSLiveEmptyView.h */,
  3474. BCB635A427F6D90600ACFDCF /* KSLiveEmptyView.m */,
  3475. BCB6343727F6D29500ACFDCF /* InputBar */,
  3476. BCB6344D27F6D29500ACFDCF /* KSChatroomTextCell.h */,
  3477. BCB6345927F6D29600ACFDCF /* KSChatroomTextCell.m */,
  3478. BCB635AA27F6E06500ACFDCF /* LiveRoomHeadView.h */,
  3479. BCB635AB27F6E06500ACFDCF /* LiveRoomHeadView.m */,
  3480. BCB635AC27F6E06500ACFDCF /* LiveRoomHeadView.xib */,
  3481. BCB635AF27F6E1A600ACFDCF /* LiveRoomBottomView.h */,
  3482. BCB635B027F6E1A600ACFDCF /* LiveRoomBottomView.m */,
  3483. BCB635B127F6E1A600ACFDCF /* LiveRoomBottomView.xib */,
  3484. BCB6345227F6D29500ACFDCF /* LiveRoomLikeLayer.h */,
  3485. BCB6344427F6D29500ACFDCF /* LiveRoomLikeLayer.m */,
  3486. BCB6344A27F6D29500ACFDCF /* LiveSeatApplyCell.h */,
  3487. BCB6345C27F6D29600ACFDCF /* LiveSeatApplyCell.m */,
  3488. BCB6345427F6D29600ACFDCF /* LiveSeatApplyCell.xib */,
  3489. BCB6344927F6D29500ACFDCF /* LiveSeatApplyView.h */,
  3490. BCB6345327F6D29600ACFDCF /* LiveSeatApplyView.m */,
  3491. BCB6345827F6D29600ACFDCF /* LiveSeatApplyView.xib */,
  3492. BCB6344627F6D29500ACFDCF /* SeatContentView.h */,
  3493. BCB6345627F6D29600ACFDCF /* SeatContentView.m */,
  3494. );
  3495. path = View;
  3496. sourceTree = "<group>";
  3497. };
  3498. BCB6343727F6D29500ACFDCF /* InputBar */ = {
  3499. isa = PBXGroup;
  3500. children = (
  3501. BCB6343B27F6D29500ACFDCF /* Cell */,
  3502. BCB6343F27F6D29500ACFDCF /* KSChatEmojiBoardView.h */,
  3503. BCB6343827F6D29500ACFDCF /* KSChatEmojiBoardView.m */,
  3504. BCB6343927F6D29500ACFDCF /* KSChatInputBarControl.h */,
  3505. BCB6344027F6D29500ACFDCF /* KSChatInputBarControl.m */,
  3506. BCB6344127F6D29500ACFDCF /* KSChatInputView.h */,
  3507. BCB6343A27F6D29500ACFDCF /* KSChatInputView.m */,
  3508. );
  3509. path = InputBar;
  3510. sourceTree = "<group>";
  3511. };
  3512. BCB6343B27F6D29500ACFDCF /* Cell */ = {
  3513. isa = PBXGroup;
  3514. children = (
  3515. BCB6343C27F6D29500ACFDCF /* KSChatEmojiCollectionCell.h */,
  3516. BCB6343D27F6D29500ACFDCF /* KSChatEmojiCollectionCell.m */,
  3517. BCB6343E27F6D29500ACFDCF /* BaseEmoji.plist */,
  3518. );
  3519. path = Cell;
  3520. sourceTree = "<group>";
  3521. };
  3522. BCB6348727F6D2A200ACFDCF /* SealClass */ = {
  3523. isa = PBXGroup;
  3524. children = (
  3525. BCB634F727F6D2A300ACFDCF /* class_stop.mp3 */,
  3526. BCB6348827F6D2A200ACFDCF /* KSRemoteUserManager.h */,
  3527. BCB634F827F6D2A300ACFDCF /* KSRemoteUserManager.m */,
  3528. BCB6348927F6D2A200ACFDCF /* SealClass.strings */,
  3529. BCB6348B27F6D2A200ACFDCF /* Sections */,
  3530. BCB634F927F6D2A300ACFDCF /* Services */,
  3531. BCB634E627F6D2A300ACFDCF /* Util */,
  3532. );
  3533. path = SealClass;
  3534. sourceTree = "<group>";
  3535. };
  3536. BCB6348B27F6D2A200ACFDCF /* Sections */ = {
  3537. isa = PBXGroup;
  3538. children = (
  3539. BCB6348C27F6D2A200ACFDCF /* Classroom */,
  3540. BCB634D627F6D2A300ACFDCF /* NewWhiteboard */,
  3541. BCB634DD27F6D2A300ACFDCF /* Login */,
  3542. );
  3543. path = Sections;
  3544. sourceTree = "<group>";
  3545. };
  3546. BCB6348C27F6D2A200ACFDCF /* Classroom */ = {
  3547. isa = PBXGroup;
  3548. children = (
  3549. BCB6348D27F6D2A200ACFDCF /* View */,
  3550. );
  3551. path = Classroom;
  3552. sourceTree = "<group>";
  3553. };
  3554. BCB6348D27F6D2A200ACFDCF /* View */ = {
  3555. isa = PBXGroup;
  3556. children = (
  3557. BCB6348E27F6D2A200ACFDCF /* ZoomControl */,
  3558. BCB6349127F6D2A200ACFDCF /* Chat */,
  3559. BCB634B327F6D2A300ACFDCF /* Title */,
  3560. BCB634B627F6D2A300ACFDCF /* VideoList */,
  3561. BCB634BB27F6D2A300ACFDCF /* RecentShared */,
  3562. BCB634C227F6D2A300ACFDCF /* UpgradeApply */,
  3563. BCB634C527F6D2A300ACFDCF /* PersonList */,
  3564. BCB634CC27F6D2A300ACFDCF /* ToolPanel */,
  3565. BCB634CF27F6D2A300ACFDCF /* MainContainer */,
  3566. );
  3567. path = View;
  3568. sourceTree = "<group>";
  3569. };
  3570. BCB6348E27F6D2A200ACFDCF /* ZoomControl */ = {
  3571. isa = PBXGroup;
  3572. children = (
  3573. BCB6348F27F6D2A200ACFDCF /* ZoomControl.m */,
  3574. BCB6349027F6D2A200ACFDCF /* ZoomControl.h */,
  3575. );
  3576. path = ZoomControl;
  3577. sourceTree = "<group>";
  3578. };
  3579. BCB6349127F6D2A200ACFDCF /* Chat */ = {
  3580. isa = PBXGroup;
  3581. children = (
  3582. BCB6349227F6D2A200ACFDCF /* InputBar */,
  3583. BCB6349C27F6D2A200ACFDCF /* ChatAreaView.h */,
  3584. BCB6349D27F6D2A200ACFDCF /* MessageManager */,
  3585. BCB634B227F6D2A300ACFDCF /* ChatAreaView.m */,
  3586. );
  3587. path = Chat;
  3588. sourceTree = "<group>";
  3589. };
  3590. BCB6349227F6D2A200ACFDCF /* InputBar */ = {
  3591. isa = PBXGroup;
  3592. children = (
  3593. BCB6349327F6D2A200ACFDCF /* InputBarControl.h */,
  3594. BCB6349427F6D2A200ACFDCF /* InputView.m */,
  3595. BCB6349527F6D2A200ACFDCF /* EmojiBoardView.h */,
  3596. BCB6349627F6D2A200ACFDCF /* InputView.h */,
  3597. BCB6349727F6D2A200ACFDCF /* Cell */,
  3598. BCB6349A27F6D2A200ACFDCF /* InputBarControl.m */,
  3599. BCB6349B27F6D2A200ACFDCF /* EmojiBoardView.m */,
  3600. );
  3601. path = InputBar;
  3602. sourceTree = "<group>";
  3603. };
  3604. BCB6349727F6D2A200ACFDCF /* Cell */ = {
  3605. isa = PBXGroup;
  3606. children = (
  3607. BCB6349827F6D2A200ACFDCF /* CREmojiCollectionCell.m */,
  3608. BCB6349927F6D2A200ACFDCF /* CREmojiCollectionCell.h */,
  3609. );
  3610. path = Cell;
  3611. sourceTree = "<group>";
  3612. };
  3613. BCB6349D27F6D2A200ACFDCF /* MessageManager */ = {
  3614. isa = PBXGroup;
  3615. children = (
  3616. BCB6349E27F6D2A200ACFDCF /* MessageCell */,
  3617. BCB634A927F6D2A200ACFDCF /* MessageDataSource.m */,
  3618. BCB634AA27F6D2A200ACFDCF /* MessageHelper.m */,
  3619. BCB634AB27F6D2A200ACFDCF /* MessageModel.m */,
  3620. BCB634AC27F6D2A200ACFDCF /* Message */,
  3621. BCB634AF27F6D2A300ACFDCF /* MessageHelper.h */,
  3622. BCB634B027F6D2A300ACFDCF /* MessageDataSource.h */,
  3623. BCB634B127F6D2A300ACFDCF /* MessageModel.h */,
  3624. );
  3625. path = MessageManager;
  3626. sourceTree = "<group>";
  3627. };
  3628. BCB6349E27F6D2A200ACFDCF /* MessageCell */ = {
  3629. isa = PBXGroup;
  3630. children = (
  3631. BCB6349F27F6D2A200ACFDCF /* TextMessageCell.h */,
  3632. BCB634A027F6D2A200ACFDCF /* TimeStampCell.m */,
  3633. BCB634A127F6D2A200ACFDCF /* TipMessageCell.h */,
  3634. BCB634A227F6D2A200ACFDCF /* MessageBaseCell.h */,
  3635. BCB634A327F6D2A200ACFDCF /* MessageCell.h */,
  3636. BCB634A427F6D2A200ACFDCF /* TextMessageCell.m */,
  3637. BCB634A527F6D2A200ACFDCF /* TimeStampCell.h */,
  3638. BCB634A627F6D2A200ACFDCF /* TipMessageCell.m */,
  3639. BCB634A727F6D2A200ACFDCF /* MessageCell.m */,
  3640. BCB634A827F6D2A200ACFDCF /* MessageBaseCell.m */,
  3641. );
  3642. path = MessageCell;
  3643. sourceTree = "<group>";
  3644. };
  3645. BCB634AC27F6D2A200ACFDCF /* Message */ = {
  3646. isa = PBXGroup;
  3647. children = (
  3648. BCB634AD27F6D2A200ACFDCF /* TimeStampMessage.m */,
  3649. BCB634AE27F6D2A200ACFDCF /* TimeStampMessage.h */,
  3650. );
  3651. path = Message;
  3652. sourceTree = "<group>";
  3653. };
  3654. BCB634B327F6D2A300ACFDCF /* Title */ = {
  3655. isa = PBXGroup;
  3656. children = (
  3657. BCB634B427F6D2A300ACFDCF /* ClassroomTitleView.m */,
  3658. BCB634B527F6D2A300ACFDCF /* ClassroomTitleView.h */,
  3659. );
  3660. path = Title;
  3661. sourceTree = "<group>";
  3662. };
  3663. BCB634B627F6D2A300ACFDCF /* VideoList */ = {
  3664. isa = PBXGroup;
  3665. children = (
  3666. BCB634B727F6D2A300ACFDCF /* VideoListCell.m */,
  3667. BCB634B827F6D2A300ACFDCF /* VideoListView.m */,
  3668. BCB634B927F6D2A300ACFDCF /* VideoListCell.h */,
  3669. BCB634BA27F6D2A300ACFDCF /* VideoListView.h */,
  3670. );
  3671. path = VideoList;
  3672. sourceTree = "<group>";
  3673. };
  3674. BCB634BB27F6D2A300ACFDCF /* RecentShared */ = {
  3675. isa = PBXGroup;
  3676. children = (
  3677. BCB634BC27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m */,
  3678. BCB634BD27F6D2A300ACFDCF /* RecentSharedView.m */,
  3679. BCB634BE27F6D2A300ACFDCF /* RecentSharedVideoCell.m */,
  3680. BCB634BF27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.h */,
  3681. BCB634C027F6D2A300ACFDCF /* RecentSharedView.h */,
  3682. BCB634C127F6D2A300ACFDCF /* RecentSharedVideoCell.h */,
  3683. );
  3684. path = RecentShared;
  3685. sourceTree = "<group>";
  3686. };
  3687. BCB634C227F6D2A300ACFDCF /* UpgradeApply */ = {
  3688. isa = PBXGroup;
  3689. children = (
  3690. BCB634C327F6D2A300ACFDCF /* UpgradeDidApplyView.m */,
  3691. BCB634C427F6D2A300ACFDCF /* UpgradeDidApplyView.h */,
  3692. );
  3693. path = UpgradeApply;
  3694. sourceTree = "<group>";
  3695. };
  3696. BCB634C527F6D2A300ACFDCF /* PersonList */ = {
  3697. isa = PBXGroup;
  3698. children = (
  3699. BCB634C627F6D2A300ACFDCF /* PersonListView.m */,
  3700. BCB634C727F6D2A300ACFDCF /* PersonListCell.m */,
  3701. BCB634C827F6D2A300ACFDCF /* PersonListSectionView.h */,
  3702. BCB634C927F6D2A300ACFDCF /* PersonListView.h */,
  3703. BCB634CA27F6D2A300ACFDCF /* PersonListCell.h */,
  3704. BCB634CB27F6D2A300ACFDCF /* PersonListSectionView.m */,
  3705. );
  3706. path = PersonList;
  3707. sourceTree = "<group>";
  3708. };
  3709. BCB634CC27F6D2A300ACFDCF /* ToolPanel */ = {
  3710. isa = PBXGroup;
  3711. children = (
  3712. BCB634CD27F6D2A300ACFDCF /* ToolPanelView.m */,
  3713. BCB634CE27F6D2A300ACFDCF /* ToolPanelView.h */,
  3714. );
  3715. path = ToolPanel;
  3716. sourceTree = "<group>";
  3717. };
  3718. BCB634CF27F6D2A300ACFDCF /* MainContainer */ = {
  3719. isa = PBXGroup;
  3720. children = (
  3721. BCB634D027F6D2A300ACFDCF /* MainContainerView.m */,
  3722. BCB634D127F6D2A300ACFDCF /* EmptyView.h */,
  3723. BCB634D227F6D2A300ACFDCF /* VideoMaskView.m */,
  3724. BCB634D327F6D2A300ACFDCF /* MainContainerView.h */,
  3725. BCB634D427F6D2A300ACFDCF /* EmptyView.m */,
  3726. BCB634D527F6D2A300ACFDCF /* VideoMaskView.h */,
  3727. );
  3728. path = MainContainer;
  3729. sourceTree = "<group>";
  3730. };
  3731. BCB634D627F6D2A300ACFDCF /* NewWhiteboard */ = {
  3732. isa = PBXGroup;
  3733. children = (
  3734. BCB634D727F6D2A300ACFDCF /* KSWhiteboardControl.h */,
  3735. BCB634D827F6D2A300ACFDCF /* KSWhiteboardView.m */,
  3736. BCB634D927F6D2A300ACFDCF /* WhiteUtils.h */,
  3737. BCB634DA27F6D2A300ACFDCF /* KSWhiteboardView.h */,
  3738. BCB634DB27F6D2A300ACFDCF /* KSWhiteboardControl.m */,
  3739. BCB634DC27F6D2A300ACFDCF /* WhiteUtils.m */,
  3740. );
  3741. path = NewWhiteboard;
  3742. sourceTree = "<group>";
  3743. };
  3744. BCB634DD27F6D2A300ACFDCF /* Login */ = {
  3745. isa = PBXGroup;
  3746. children = (
  3747. BCB634DE27F6D2A300ACFDCF /* LoginHelper.m */,
  3748. BCB634DF27F6D2A300ACFDCF /* View */,
  3749. BCB634E427F6D2A300ACFDCF /* LoginHelper.h */,
  3750. );
  3751. path = Login;
  3752. sourceTree = "<group>";
  3753. };
  3754. BCB634DF27F6D2A300ACFDCF /* View */ = {
  3755. isa = PBXGroup;
  3756. children = (
  3757. BCB634E027F6D2A300ACFDCF /* SelectionButton.m */,
  3758. BCB634E127F6D2A300ACFDCF /* InputTextField.h */,
  3759. BCB634E227F6D2A300ACFDCF /* SelectionButton.h */,
  3760. BCB634E327F6D2A300ACFDCF /* InputTextField.m */,
  3761. );
  3762. path = View;
  3763. sourceTree = "<group>";
  3764. };
  3765. BCB634E627F6D2A300ACFDCF /* Util */ = {
  3766. isa = PBXGroup;
  3767. children = (
  3768. BCB634E727F6D2A300ACFDCF /* ErrorCode.h */,
  3769. BCB634E827F6D2A300ACFDCF /* Category */,
  3770. BCB634EB27F6D2A300ACFDCF /* Portrait */,
  3771. BCB634EE27F6D2A300ACFDCF /* Macro.h */,
  3772. BCB634EF27F6D2A300ACFDCF /* HTTP */,
  3773. BCB634F427F6D2A300ACFDCF /* View */,
  3774. );
  3775. path = Util;
  3776. sourceTree = "<group>";
  3777. };
  3778. BCB634E827F6D2A300ACFDCF /* Category */ = {
  3779. isa = PBXGroup;
  3780. children = (
  3781. BCB634E927F6D2A300ACFDCF /* UIView+MBProgressHUD.h */,
  3782. BCB634EA27F6D2A300ACFDCF /* UIView+MBProgressHUD.m */,
  3783. );
  3784. path = Category;
  3785. sourceTree = "<group>";
  3786. };
  3787. BCB634EB27F6D2A300ACFDCF /* Portrait */ = {
  3788. isa = PBXGroup;
  3789. children = (
  3790. BCB634EC27F6D2A300ACFDCF /* RolePortraitView.m */,
  3791. BCB634ED27F6D2A300ACFDCF /* RolePortraitView.h */,
  3792. );
  3793. path = Portrait;
  3794. sourceTree = "<group>";
  3795. };
  3796. BCB634EF27F6D2A300ACFDCF /* HTTP */ = {
  3797. isa = PBXGroup;
  3798. children = (
  3799. BCB634F027F6D2A300ACFDCF /* HTTPUtility.m */,
  3800. BCB634F127F6D2A300ACFDCF /* HTTPResult.m */,
  3801. BCB634F227F6D2A300ACFDCF /* HTTPUtility.h */,
  3802. BCB634F327F6D2A300ACFDCF /* HTTPResult.h */,
  3803. );
  3804. path = HTTP;
  3805. sourceTree = "<group>";
  3806. };
  3807. BCB634F427F6D2A300ACFDCF /* View */ = {
  3808. isa = PBXGroup;
  3809. children = (
  3810. BCB634F527F6D2A300ACFDCF /* NormalAlertView.h */,
  3811. BCB634F627F6D2A300ACFDCF /* NormalAlertView.m */,
  3812. );
  3813. path = View;
  3814. sourceTree = "<group>";
  3815. };
  3816. BCB634F927F6D2A300ACFDCF /* Services */ = {
  3817. isa = PBXGroup;
  3818. children = (
  3819. BCB634FA27F6D2A300ACFDCF /* Classroom */,
  3820. BCB6352A27F6D2A300ACFDCF /* RTC */,
  3821. BCB6352D27F6D2A300ACFDCF /* IM */,
  3822. );
  3823. path = Services;
  3824. sourceTree = "<group>";
  3825. };
  3826. BCB634FA27F6D2A300ACFDCF /* Classroom */ = {
  3827. isa = PBXGroup;
  3828. children = (
  3829. BCB634FB27F6D2A300ACFDCF /* ClassroomService.h */,
  3830. BCB634FC27F6D2A300ACFDCF /* Message */,
  3831. BCB6351F27F6D2A300ACFDCF /* Model */,
  3832. BCB6352827F6D2A300ACFDCF /* ClassroomDefine.h */,
  3833. BCB6352927F6D2A300ACFDCF /* ClassroomService.m */,
  3834. );
  3835. path = Classroom;
  3836. sourceTree = "<group>";
  3837. };
  3838. BCB634FC27F6D2A300ACFDCF /* Message */ = {
  3839. isa = PBXGroup;
  3840. children = (
  3841. BCB634FD27F6D2A300ACFDCF /* RoleChangedMessage.h */,
  3842. BCB634FE27F6D2A300ACFDCF /* AssistantTransferMessage.h */,
  3843. BCB634FF27F6D2A300ACFDCF /* InviteUpgradeMessage.h */,
  3844. BCB6350027F6D2A300ACFDCF /* ApplySpeechMessage.m */,
  3845. BCB6350127F6D2A300ACFDCF /* ApplySpeechResultMessage.h */,
  3846. BCB6350227F6D2A300ACFDCF /* DisplayCommandMessage.m */,
  3847. BCB6350327F6D2A300ACFDCF /* MemberChangeMessage.h */,
  3848. BCB6350427F6D2A300ACFDCF /* SongDownloadMessage.m */,
  3849. BCB6350527F6D2A300ACFDCF /* DeviceMessage.h */,
  3850. BCB6350627F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m */,
  3851. BCB6350727F6D2A300ACFDCF /* AccompanyDownloadMessage.h */,
  3852. BCB6350827F6D2A300ACFDCF /* TicketExpiredMessage.m */,
  3853. BCB6350927F6D2A300ACFDCF /* NodePlayMessage.h */,
  3854. BCB6350A27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.h */,
  3855. BCB6350B27F6D2A300ACFDCF /* TurnPageMessage.h */,
  3856. BCB6350C27F6D2A300ACFDCF /* WhiteboardMessage.m */,
  3857. BCB6350D27F6D2A300ACFDCF /* SongDownloadCallbackMessage.m */,
  3858. BCB6350E27F6D2A300ACFDCF /* AssistantTransferMessage.m */,
  3859. BCB6350F27F6D2A300ACFDCF /* RoleChangedMessage.m */,
  3860. BCB6351027F6D2A300ACFDCF /* InviteUpgradeMessage.m */,
  3861. BCB6351127F6D2A300ACFDCF /* AccompanyDownloadMessage.m */,
  3862. BCB6351227F6D2A300ACFDCF /* ControlDeviceNotifyMessage.h */,
  3863. BCB6351327F6D2A300ACFDCF /* DeviceMessage.m */,
  3864. BCB6351427F6D2A300ACFDCF /* SongDownloadMessage.h */,
  3865. BCB6351527F6D2A300ACFDCF /* MemberChangeMessage.m */,
  3866. BCB6351627F6D2A300ACFDCF /* DisplayCommandMessage.h */,
  3867. BCB6351727F6D2A300ACFDCF /* ApplySpeechResultMessage.m */,
  3868. BCB6351827F6D2A300ACFDCF /* ApplySpeechMessage.h */,
  3869. BCB6351927F6D2A300ACFDCF /* SongDownloadCallbackMessage.h */,
  3870. BCB6351A27F6D2A300ACFDCF /* WhiteboardMessage.h */,
  3871. BCB6351B27F6D2A300ACFDCF /* TurnPageMessage.m */,
  3872. BCB6351C27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m */,
  3873. BCB6351D27F6D2A300ACFDCF /* NodePlayMessage.m */,
  3874. BCB6351E27F6D2A300ACFDCF /* TicketExpiredMessage.h */,
  3875. );
  3876. path = Message;
  3877. sourceTree = "<group>";
  3878. };
  3879. BCB6351F27F6D2A300ACFDCF /* Model */ = {
  3880. isa = PBXGroup;
  3881. children = (
  3882. BCB6352027F6D2A300ACFDCF /* Whiteboard.m */,
  3883. BCB6352127F6D2A300ACFDCF /* RoomMember.m */,
  3884. BCB6352227F6D2A300ACFDCF /* ClassSongMessage.m */,
  3885. BCB6352327F6D2A300ACFDCF /* Classroom.m */,
  3886. BCB6352427F6D2A300ACFDCF /* Whiteboard.h */,
  3887. BCB6352527F6D2A300ACFDCF /* Classroom.h */,
  3888. BCB6352627F6D2A300ACFDCF /* ClassSongMessage.h */,
  3889. BCB6352727F6D2A300ACFDCF /* RoomMember.h */,
  3890. );
  3891. path = Model;
  3892. sourceTree = "<group>";
  3893. };
  3894. BCB6352A27F6D2A300ACFDCF /* RTC */ = {
  3895. isa = PBXGroup;
  3896. children = (
  3897. BCB6352B27F6D2A300ACFDCF /* RTCService.m */,
  3898. BCB6352C27F6D2A300ACFDCF /* RTCService.h */,
  3899. );
  3900. path = RTC;
  3901. sourceTree = "<group>";
  3902. };
  3903. BCB6352D27F6D2A300ACFDCF /* IM */ = {
  3904. isa = PBXGroup;
  3905. children = (
  3906. BCB6352E27F6D2A300ACFDCF /* KSIMService.h */,
  3907. BCB6352F27F6D2A300ACFDCF /* KSIMService.m */,
  3908. );
  3909. path = IM;
  3910. sourceTree = "<group>";
  3911. };
  3912. BCB6357327F6D2AB00ACFDCF /* Classroom */ = {
  3913. isa = PBXGroup;
  3914. children = (
  3915. BCB6357427F6D2AB00ACFDCF /* Controller */,
  3916. BCB6357727F6D2AB00ACFDCF /* Model */,
  3917. BCB6357E27F6D2AB00ACFDCF /* View */,
  3918. );
  3919. path = Classroom;
  3920. sourceTree = "<group>";
  3921. };
  3922. BCB6357427F6D2AB00ACFDCF /* Controller */ = {
  3923. isa = PBXGroup;
  3924. children = (
  3925. BCB6357527F6D2AB00ACFDCF /* NewClassRoomViewController.h */,
  3926. BCB6357627F6D2AB00ACFDCF /* NewClassRoomViewController.m */,
  3927. );
  3928. path = Controller;
  3929. sourceTree = "<group>";
  3930. };
  3931. BCB6357727F6D2AB00ACFDCF /* Model */ = {
  3932. isa = PBXGroup;
  3933. children = (
  3934. BCB6357827F6D2AB00ACFDCF /* LocalRenderManager.h */,
  3935. BCB6357927F6D2AB00ACFDCF /* OnlineClassManager.m */,
  3936. BCB6357A27F6D2AB00ACFDCF /* ClassroomTimerManager.h */,
  3937. BCB6357B27F6D2AB00ACFDCF /* LocalRenderManager.m */,
  3938. BCB6357C27F6D2AB00ACFDCF /* OnlineClassManager.h */,
  3939. BCB6357D27F6D2AB00ACFDCF /* ClassroomTimerManager.m */,
  3940. );
  3941. path = Model;
  3942. sourceTree = "<group>";
  3943. };
  3944. BCB6357E27F6D2AB00ACFDCF /* View */ = {
  3945. isa = PBXGroup;
  3946. children = (
  3947. BCB6357F27F6D2AB00ACFDCF /* TipsView */,
  3948. BCB6358227F6D2AB00ACFDCF /* tick.wav */,
  3949. BCB6358327F6D2AB00ACFDCF /* VideoList */,
  3950. BCB6358A27F6D2AB00ACFDCF /* tock.wav */,
  3951. BCB6358B27F6D2AB00ACFDCF /* MainContainer */,
  3952. BCB6358E27F6D2AB00ACFDCF /* TitleView */,
  3953. BCB6359127F6D2AB00ACFDCF /* MainToolbar */,
  3954. );
  3955. path = View;
  3956. sourceTree = "<group>";
  3957. };
  3958. BCB6357F27F6D2AB00ACFDCF /* TipsView */ = {
  3959. isa = PBXGroup;
  3960. children = (
  3961. BCB6358027F6D2AB00ACFDCF /* KSTipsView.m */,
  3962. BCB6358127F6D2AB00ACFDCF /* KSTipsView.h */,
  3963. );
  3964. path = TipsView;
  3965. sourceTree = "<group>";
  3966. };
  3967. BCB6358327F6D2AB00ACFDCF /* VideoList */ = {
  3968. isa = PBXGroup;
  3969. children = (
  3970. BCB6358427F6D2AB00ACFDCF /* ClassVideoListView.h */,
  3971. BCB6358527F6D2AB00ACFDCF /* ClassVideoListCell.h */,
  3972. BCB6358627F6D2AB00ACFDCF /* KSBeatView.h */,
  3973. BCB6358727F6D2AB00ACFDCF /* ClassVideoListView.m */,
  3974. BCB6358827F6D2AB00ACFDCF /* KSBeatView.m */,
  3975. BCB6358927F6D2AB00ACFDCF /* ClassVideoListCell.m */,
  3976. );
  3977. path = VideoList;
  3978. sourceTree = "<group>";
  3979. };
  3980. BCB6358B27F6D2AB00ACFDCF /* MainContainer */ = {
  3981. isa = PBXGroup;
  3982. children = (
  3983. BCB6358C27F6D2AB00ACFDCF /* ClassroomMainContainer.h */,
  3984. BCB6358D27F6D2AB00ACFDCF /* ClassroomMainContainer.m */,
  3985. );
  3986. path = MainContainer;
  3987. sourceTree = "<group>";
  3988. };
  3989. BCB6358E27F6D2AB00ACFDCF /* TitleView */ = {
  3990. isa = PBXGroup;
  3991. children = (
  3992. BCB6358F27F6D2AB00ACFDCF /* ClassTitleView.h */,
  3993. BCB6359027F6D2AB00ACFDCF /* ClassTitleView.m */,
  3994. );
  3995. path = TitleView;
  3996. sourceTree = "<group>";
  3997. };
  3998. BCB6359127F6D2AB00ACFDCF /* MainToolbar */ = {
  3999. isa = PBXGroup;
  4000. children = (
  4001. BCB6359227F6D2AB00ACFDCF /* MainToolView.m */,
  4002. BCB6359327F6D2AB00ACFDCF /* MainToolView.h */,
  4003. );
  4004. path = MainToolbar;
  4005. sourceTree = "<group>";
  4006. };
  4007. /* End PBXGroup section */
  4008. /* Begin PBXNativeTarget section */
  4009. 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */ = {
  4010. isa = PBXNativeTarget;
  4011. buildConfigurationList = 275E8AD427E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudent" */;
  4012. buildPhases = (
  4013. 517802ACBF7A2D237EC51FBD /* [CP] Check Pods Manifest.lock */,
  4014. 275E8AA127E18F8800DD3F6E /* Sources */,
  4015. 275E8AA227E18F8800DD3F6E /* Frameworks */,
  4016. 275E8AA327E18F8800DD3F6E /* Resources */,
  4017. 7FA65C60616F879A71C69DE3 /* [CP] Embed Pods Frameworks */,
  4018. CAFB9BB2B8A1DEF4AC72C464 /* [CP] Copy Pods Resources */,
  4019. );
  4020. buildRules = (
  4021. );
  4022. dependencies = (
  4023. );
  4024. name = KulexiuForStudent;
  4025. productName = KulexiuForStudent;
  4026. productReference = 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */;
  4027. productType = "com.apple.product-type.application";
  4028. };
  4029. 275E8ABF27E18F8C00DD3F6E /* KulexiuForStudentTests */ = {
  4030. isa = PBXNativeTarget;
  4031. buildConfigurationList = 275E8AD727E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentTests" */;
  4032. buildPhases = (
  4033. AB9225EA49C09055CF4D365E /* [CP] Check Pods Manifest.lock */,
  4034. 275E8ABC27E18F8C00DD3F6E /* Sources */,
  4035. 275E8ABD27E18F8C00DD3F6E /* Frameworks */,
  4036. 275E8ABE27E18F8C00DD3F6E /* Resources */,
  4037. );
  4038. buildRules = (
  4039. );
  4040. dependencies = (
  4041. 275E8AC227E18F8C00DD3F6E /* PBXTargetDependency */,
  4042. );
  4043. name = KulexiuForStudentTests;
  4044. productName = KulexiuForStudentTests;
  4045. productReference = 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */;
  4046. productType = "com.apple.product-type.bundle.unit-test";
  4047. };
  4048. 275E8AC927E18F8C00DD3F6E /* KulexiuForStudentUITests */ = {
  4049. isa = PBXNativeTarget;
  4050. buildConfigurationList = 275E8ADA27E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentUITests" */;
  4051. buildPhases = (
  4052. C466C0F5CFE9161E20B6DAE7 /* [CP] Check Pods Manifest.lock */,
  4053. 275E8AC627E18F8C00DD3F6E /* Sources */,
  4054. 275E8AC727E18F8C00DD3F6E /* Frameworks */,
  4055. 275E8AC827E18F8C00DD3F6E /* Resources */,
  4056. F651308641378409742E5831 /* [CP] Embed Pods Frameworks */,
  4057. 27666DDBA06A252BAC04BBAD /* [CP] Copy Pods Resources */,
  4058. );
  4059. buildRules = (
  4060. );
  4061. dependencies = (
  4062. 275E8ACC27E18F8C00DD3F6E /* PBXTargetDependency */,
  4063. );
  4064. name = KulexiuForStudentUITests;
  4065. productName = KulexiuForStudentUITests;
  4066. productReference = 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */;
  4067. productType = "com.apple.product-type.bundle.ui-testing";
  4068. };
  4069. /* End PBXNativeTarget section */
  4070. /* Begin PBXProject section */
  4071. 275E8A9D27E18F8800DD3F6E /* Project object */ = {
  4072. isa = PBXProject;
  4073. attributes = {
  4074. BuildIndependentTargetsInParallel = 1;
  4075. LastUpgradeCheck = 1320;
  4076. TargetAttributes = {
  4077. 275E8AA427E18F8800DD3F6E = {
  4078. CreatedOnToolsVersion = 13.2.1;
  4079. };
  4080. 275E8ABF27E18F8C00DD3F6E = {
  4081. CreatedOnToolsVersion = 13.2.1;
  4082. TestTargetID = 275E8AA427E18F8800DD3F6E;
  4083. };
  4084. 275E8AC927E18F8C00DD3F6E = {
  4085. CreatedOnToolsVersion = 13.2.1;
  4086. TestTargetID = 275E8AA427E18F8800DD3F6E;
  4087. };
  4088. };
  4089. };
  4090. buildConfigurationList = 275E8AA027E18F8800DD3F6E /* Build configuration list for PBXProject "KulexiuForStudent" */;
  4091. compatibilityVersion = "Xcode 13.0";
  4092. developmentRegion = en;
  4093. hasScannedForEncodings = 0;
  4094. knownRegions = (
  4095. en,
  4096. Base,
  4097. "zh-Hans",
  4098. );
  4099. mainGroup = 275E8A9C27E18F8800DD3F6E;
  4100. productRefGroup = 275E8AA627E18F8800DD3F6E /* Products */;
  4101. projectDirPath = "";
  4102. projectRoot = "";
  4103. targets = (
  4104. 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */,
  4105. 275E8ABF27E18F8C00DD3F6E /* KulexiuForStudentTests */,
  4106. 275E8AC927E18F8C00DD3F6E /* KulexiuForStudentUITests */,
  4107. );
  4108. };
  4109. /* End PBXProject section */
  4110. /* Begin PBXResourcesBuildPhase section */
  4111. 275E8AA327E18F8800DD3F6E /* Resources */ = {
  4112. isa = PBXResourcesBuildPhase;
  4113. buildActionMask = 2147483647;
  4114. files = (
  4115. 275E8AB827E18F8B00DD3F6E /* LaunchScreen.storyboard in Resources */,
  4116. 275FA1EF27E7351900CFEA2E /* KSUpdateAlert.xib in Resources */,
  4117. 277935AF27E324A90010E277 /* mss_browseLoading@3x.png in Resources */,
  4118. BCB6359927F6D2AB00ACFDCF /* tick.wav in Resources */,
  4119. 2779355727E324A70010E277 /* KSPremissionAlert.xib in Resources */,
  4120. 2723B5C327F157B100E0B90B /* ChatNavView.xib in Resources */,
  4121. BCFE53F22812898700AD6786 /* HomeVideoCourseCell.xib in Resources */,
  4122. 2723B5BA27F157B100E0B90B /* ChatAddressHeaderView.xib in Resources */,
  4123. BC119235280ED97C00A716F7 /* CourseForLiveCell.xib in Resources */,
  4124. 2723B62E27F157D500E0B90B /* GroupApplyChooseAllCell.xib in Resources */,
  4125. 275FA23A27E7356B00CFEA2E /* VefiBodyView.xib in Resources */,
  4126. BC119258280FA85300A716F7 /* HomeworkListCell.xib in Resources */,
  4127. 2723B63227F157D500E0B90B /* GroupSettingBodyView.xib in Resources */,
  4128. BCFE53F728128A9600AD6786 /* TeacherShowCell.xib in Resources */,
  4129. 2723B5BF27F157B100E0B90B /* GroupCreateView.xib in Resources */,
  4130. 2723B63727F157D500E0B90B /* ApplyBottomView.xib in Resources */,
  4131. 2723B62F27F157D500E0B90B /* ChatComplainBodyView.xib in Resources */,
  4132. 2723B62127F157D500E0B90B /* NoticeEditBodyView.xib in Resources */,
  4133. 2723B66127F15CFB00E0B90B /* SettingBodyView.xib in Resources */,
  4134. BC11928C280FB44300A716F7 /* HomeworkVideoView.xib in Resources */,
  4135. 275E8AB527E18F8B00DD3F6E /* Assets.xcassets in Resources */,
  4136. BC119275280FB01100A716F7 /* AccompanyHomeworkCell.xib in Resources */,
  4137. BC119280280FB10900A716F7 /* AccompanyRemarkCell.xib in Resources */,
  4138. 2723B63527F157D500E0B90B /* GroupApplyChooseCell.xib in Resources */,
  4139. 2723B5C227F157B100E0B90B /* GroupListViewCell.xib in Resources */,
  4140. BCBFDF432811573D0052AFE5 /* HomeButtonView.xib in Resources */,
  4141. BC11925A280FA85300A716F7 /* HomeworkSortView.xib in Resources */,
  4142. 2723B62527F157D500E0B90B /* GroupNoticeCell.xib in Resources */,
  4143. 275FA23D27E7356B00CFEA2E /* PasswordBodyView.xib in Resources */,
  4144. 2723B66227F15CFC00E0B90B /* FeedbackBodyView.xib in Resources */,
  4145. 2723B66527F15CFC00E0B90B /* ModifyBodyView.xib in Resources */,
  4146. BCB6353027F6D2A300ACFDCF /* SealClass.strings in Resources */,
  4147. BCB635AE27F6E06500ACFDCF /* LiveRoomHeadView.xib in Resources */,
  4148. 275FA1AD27E734C600CFEA2E /* KSImageAlert.xib in Resources */,
  4149. BCBFDF5228115DA40052AFE5 /* HomeIntroduceView.xib in Resources */,
  4150. BC119270280FAF7D00A716F7 /* AccompanyCourseInfoCell.xib in Resources */,
  4151. BC40BA202812552300DEC0D1 /* KSHomeButton.xib in Resources */,
  4152. 2723B5C427F157B100E0B90B /* KSChatListSearchView.xib in Resources */,
  4153. 2779359B27E324A80010E277 /* TZImagePickerController.bundle in Resources */,
  4154. 277935C327E324A90010E277 /* SDQWMaskCustomView.xib in Resources */,
  4155. BC40B9FA2811768400DEC0D1 /* HotInformationHeadView.xib in Resources */,
  4156. 275FA24A27E7428D00CFEA2E /* InstrumentChooseView.xib in Resources */,
  4157. BC27A06E280FF56C00F91E27 /* AccompanyEvaluateCell.xib in Resources */,
  4158. 2723B66327F15CFC00E0B90B /* ModifyNameBodyView.xib in Resources */,
  4159. BCB635B327F6E1A600ACFDCF /* LiveRoomBottomView.xib in Resources */,
  4160. BCB6348327F6D29600ACFDCF /* LiveSeatApplyView.xib in Resources */,
  4161. 2723B66A27F15CFC00E0B90B /* PhoneChangeBodyView.xib in Resources */,
  4162. 27F9032D27E87C2E00C08A19 /* KSNetworkAlert.xib in Resources */,
  4163. BCFE53ED2812897600AD6786 /* HomeLiveCouseCell.xib in Resources */,
  4164. 275FA24527E73E0100CFEA2E /* InstrumentDescView.xib in Resources */,
  4165. BC11922D280ED8E800A716F7 /* CourseNavView.xib in Resources */,
  4166. BC11929D280FD2EF00A716F7 /* HomeworkBottomView.xib in Resources */,
  4167. BCB6348127F6D29600ACFDCF /* LiveSeatApplyCell.xib in Resources */,
  4168. 2723B62D27F157D500E0B90B /* GroupApplyMemberCell.xib in Resources */,
  4169. BCB6347427F6D29600ACFDCF /* BaseEmoji.plist in Resources */,
  4170. BC40BA252812560100DEC0D1 /* HomeCourseTipsView.xib in Resources */,
  4171. 27F9032E27E87C2E00C08A19 /* DeviceCheckView.xib in Resources */,
  4172. 275FA23727E7356B00CFEA2E /* LoginBodyView.xib in Resources */,
  4173. BCB6355927F6D2A300ACFDCF /* class_stop.mp3 in Resources */,
  4174. BCFE53E82812765600AD6786 /* HomeHotAlbumCell.xib in Resources */,
  4175. BC40BA0428117B0A00DEC0D1 /* HomeBannerCell.xib in Resources */,
  4176. BC119239280ED98E00A716F7 /* AccompanyCourseCell.xib in Resources */,
  4177. BC27A076280FF61300F91E27 /* AccompanyDetailBottomView.xib in Resources */,
  4178. BCBFDF4D28115C7A0052AFE5 /* HomeHotCourseView.xib in Resources */,
  4179. BCBFDF3928110C6F0052AFE5 /* HomeNavView.xib in Resources */,
  4180. 27F9033C27E87FE100C08A19 /* MineBodyView.xib in Resources */,
  4181. 27F9032B27E87C2E00C08A19 /* NetworkBodyView.xib in Resources */,
  4182. 2779358F27E324A80010E277 /* WMPlayer.bundle in Resources */,
  4183. BC11926C280FAF5900A716F7 /* AccompanyAlertView.xib in Resources */,
  4184. 2723B66F27F15CFC00E0B90B /* AboutUsBodyView.xib in Resources */,
  4185. 275FA23827E7356B00CFEA2E /* FirstSettingBodyView.xib in Resources */,
  4186. BC27A070280FF56C00F91E27 /* AccompanyStudentEvaCell.xib in Resources */,
  4187. 2723B63927F157D500E0B90B /* GroupMemberListCell.xib in Resources */,
  4188. BC0212F827FC4A080040569F /* SubjectImageCell.xib in Resources */,
  4189. BC11921B280ED6A900A716F7 /* NewClassPopCell.xib in Resources */,
  4190. 2723B66E27F15CFC00E0B90B /* PhoneCheckBodyView.xib in Resources */,
  4191. BC119217280ED6A900A716F7 /* MyLessonSearchView.xib in Resources */,
  4192. BCBFDF3E2811564C0052AFE5 /* HomeBannerView.xib in Resources */,
  4193. 2723B5C527F157B100E0B90B /* ContractListCell.xib in Resources */,
  4194. BCBFDF48281159A40052AFE5 /* HomeHotAlbumView.xib in Resources */,
  4195. 27F9033727E87C8B00C08A19 /* MineNavView.xib in Resources */,
  4196. BC119215280ED6A900A716F7 /* MyLiveCourseCell.xib in Resources */,
  4197. BC50171727FC0D8E00F8BCBC /* SubjectChooseBodyView.xib in Resources */,
  4198. BCB6359D27F6D2AB00ACFDCF /* tock.wav in Resources */,
  4199. BC0D1F72281015B000C5D9E5 /* VideoCourseCell.xib in Resources */,
  4200. BC11927B280FB07F00A716F7 /* AccompanyArrangeCell.xib in Resources */,
  4201. BC40B9FF281177BD00DEC0D1 /* HomeInformationCell.xib in Resources */,
  4202. 275E8AB327E18F8800DD3F6E /* Main.storyboard in Resources */,
  4203. 277935B127E324A90010E277 /* mss_browseLoading@2x.png in Resources */,
  4204. BC11922C280ED8E800A716F7 /* LTSCalendarBottomView.xib in Resources */,
  4205. );
  4206. runOnlyForDeploymentPostprocessing = 0;
  4207. };
  4208. 275E8ABE27E18F8C00DD3F6E /* Resources */ = {
  4209. isa = PBXResourcesBuildPhase;
  4210. buildActionMask = 2147483647;
  4211. files = (
  4212. );
  4213. runOnlyForDeploymentPostprocessing = 0;
  4214. };
  4215. 275E8AC827E18F8C00DD3F6E /* Resources */ = {
  4216. isa = PBXResourcesBuildPhase;
  4217. buildActionMask = 2147483647;
  4218. files = (
  4219. );
  4220. runOnlyForDeploymentPostprocessing = 0;
  4221. };
  4222. /* End PBXResourcesBuildPhase section */
  4223. /* Begin PBXShellScriptBuildPhase section */
  4224. 27666DDBA06A252BAC04BBAD /* [CP] Copy Pods Resources */ = {
  4225. isa = PBXShellScriptBuildPhase;
  4226. buildActionMask = 2147483647;
  4227. files = (
  4228. );
  4229. inputFileListPaths = (
  4230. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources-${CONFIGURATION}-input-files.xcfilelist",
  4231. );
  4232. name = "[CP] Copy Pods Resources";
  4233. outputFileListPaths = (
  4234. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources-${CONFIGURATION}-output-files.xcfilelist",
  4235. );
  4236. runOnlyForDeploymentPostprocessing = 0;
  4237. shellPath = /bin/sh;
  4238. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources.sh\"\n";
  4239. showEnvVarsInLog = 0;
  4240. };
  4241. 517802ACBF7A2D237EC51FBD /* [CP] Check Pods Manifest.lock */ = {
  4242. isa = PBXShellScriptBuildPhase;
  4243. buildActionMask = 2147483647;
  4244. files = (
  4245. );
  4246. inputFileListPaths = (
  4247. );
  4248. inputPaths = (
  4249. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  4250. "${PODS_ROOT}/Manifest.lock",
  4251. );
  4252. name = "[CP] Check Pods Manifest.lock";
  4253. outputFileListPaths = (
  4254. );
  4255. outputPaths = (
  4256. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudent-checkManifestLockResult.txt",
  4257. );
  4258. runOnlyForDeploymentPostprocessing = 0;
  4259. shellPath = /bin/sh;
  4260. 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";
  4261. showEnvVarsInLog = 0;
  4262. };
  4263. 7FA65C60616F879A71C69DE3 /* [CP] Embed Pods Frameworks */ = {
  4264. isa = PBXShellScriptBuildPhase;
  4265. buildActionMask = 2147483647;
  4266. files = (
  4267. );
  4268. inputFileListPaths = (
  4269. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  4270. );
  4271. name = "[CP] Embed Pods Frameworks";
  4272. outputFileListPaths = (
  4273. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  4274. );
  4275. runOnlyForDeploymentPostprocessing = 0;
  4276. shellPath = /bin/sh;
  4277. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks.sh\"\n";
  4278. showEnvVarsInLog = 0;
  4279. };
  4280. AB9225EA49C09055CF4D365E /* [CP] Check Pods Manifest.lock */ = {
  4281. isa = PBXShellScriptBuildPhase;
  4282. buildActionMask = 2147483647;
  4283. files = (
  4284. );
  4285. inputFileListPaths = (
  4286. );
  4287. inputPaths = (
  4288. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  4289. "${PODS_ROOT}/Manifest.lock",
  4290. );
  4291. name = "[CP] Check Pods Manifest.lock";
  4292. outputFileListPaths = (
  4293. );
  4294. outputPaths = (
  4295. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudentTests-checkManifestLockResult.txt",
  4296. );
  4297. runOnlyForDeploymentPostprocessing = 0;
  4298. shellPath = /bin/sh;
  4299. 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";
  4300. showEnvVarsInLog = 0;
  4301. };
  4302. C466C0F5CFE9161E20B6DAE7 /* [CP] Check Pods Manifest.lock */ = {
  4303. isa = PBXShellScriptBuildPhase;
  4304. buildActionMask = 2147483647;
  4305. files = (
  4306. );
  4307. inputFileListPaths = (
  4308. );
  4309. inputPaths = (
  4310. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  4311. "${PODS_ROOT}/Manifest.lock",
  4312. );
  4313. name = "[CP] Check Pods Manifest.lock";
  4314. outputFileListPaths = (
  4315. );
  4316. outputPaths = (
  4317. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudent-KulexiuForStudentUITests-checkManifestLockResult.txt",
  4318. );
  4319. runOnlyForDeploymentPostprocessing = 0;
  4320. shellPath = /bin/sh;
  4321. 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";
  4322. showEnvVarsInLog = 0;
  4323. };
  4324. CAFB9BB2B8A1DEF4AC72C464 /* [CP] Copy Pods Resources */ = {
  4325. isa = PBXShellScriptBuildPhase;
  4326. buildActionMask = 2147483647;
  4327. files = (
  4328. );
  4329. inputFileListPaths = (
  4330. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources-${CONFIGURATION}-input-files.xcfilelist",
  4331. );
  4332. name = "[CP] Copy Pods Resources";
  4333. outputFileListPaths = (
  4334. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources-${CONFIGURATION}-output-files.xcfilelist",
  4335. );
  4336. runOnlyForDeploymentPostprocessing = 0;
  4337. shellPath = /bin/sh;
  4338. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources.sh\"\n";
  4339. showEnvVarsInLog = 0;
  4340. };
  4341. F651308641378409742E5831 /* [CP] Embed Pods Frameworks */ = {
  4342. isa = PBXShellScriptBuildPhase;
  4343. buildActionMask = 2147483647;
  4344. files = (
  4345. );
  4346. inputFileListPaths = (
  4347. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  4348. );
  4349. name = "[CP] Embed Pods Frameworks";
  4350. outputFileListPaths = (
  4351. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  4352. );
  4353. runOnlyForDeploymentPostprocessing = 0;
  4354. shellPath = /bin/sh;
  4355. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks.sh\"\n";
  4356. showEnvVarsInLog = 0;
  4357. };
  4358. /* End PBXShellScriptBuildPhase section */
  4359. /* Begin PBXSourcesBuildPhase section */
  4360. 275E8AA127E18F8800DD3F6E /* Sources */ = {
  4361. isa = PBXSourcesBuildPhase;
  4362. buildActionMask = 2147483647;
  4363. files = (
  4364. 2779354827E324A60010E277 /* NSObject+ReadDocument.m in Sources */,
  4365. 277935CB27E324A90010E277 /* TAAbstractDotView.m in Sources */,
  4366. 2723B5C627F157B100E0B90B /* GroupListViewCell.m in Sources */,
  4367. BCB6356E27F6D2A300ACFDCF /* ClassSongMessage.m in Sources */,
  4368. 275FA1E927E7351900CFEA2E /* KSNetTypeManager.m in Sources */,
  4369. 2723B66B27F15CFC00E0B90B /* PhoneCheckBodyView.m in Sources */,
  4370. 27F9033027E87C2E00C08A19 /* AudioRecordManager.m in Sources */,
  4371. BCB6355227F6D2A300ACFDCF /* SelectionButton.m in Sources */,
  4372. 2779352527E324A60010E277 /* pinyin.c in Sources */,
  4373. BCFE53F628128A9600AD6786 /* TeacherShowCell.m in Sources */,
  4374. 2779357B27E324A70010E277 /* ShopButton.m in Sources */,
  4375. 2723B61E27F157D500E0B90B /* GroupNoticeEditController.m in Sources */,
  4376. BCB6346427F6D29600ACFDCF /* KSLiveChatroomSeatApply.m in Sources */,
  4377. BC0212FE27FC66AA0040569F /* InstrumentMessageModel.m in Sources */,
  4378. BCB6359F27F6D2AB00ACFDCF /* ClassTitleView.m in Sources */,
  4379. BC0D1F752810165500C5D9E5 /* VideoCourseModel.m in Sources */,
  4380. BC119276280FB01100A716F7 /* AccompanyHomeworkCell.m in Sources */,
  4381. 277935AC27E324A80010E277 /* MSSBrowseBaseViewController.m in Sources */,
  4382. 2779352427E324A60010E277 /* KSUtilities.m in Sources */,
  4383. 2779359627E324A80010E277 /* TZVideoCropController.m in Sources */,
  4384. 277935AB27E324A80010E277 /* UIImage+MSSScale.m in Sources */,
  4385. BCB6353127F6D2A300ACFDCF /* ZoomControl.m in Sources */,
  4386. 2779353427E324A60010E277 /* UIImageView+CornerRadius.m in Sources */,
  4387. 2779357827E324A70010E277 /* NSString+phone.m in Sources */,
  4388. 2779357D27E324A80010E277 /* KSMessageInputView.m in Sources */,
  4389. 277935BE27E324A90010E277 /* FSCalendarCalculator.m in Sources */,
  4390. BCB6347727F6D29600ACFDCF /* LiveRoomLikeLayer.m in Sources */,
  4391. 275FA1DC27E7351900CFEA2E /* KSAQRecordManager.m in Sources */,
  4392. BC40B9F82811767A00DEC0D1 /* HotInformationHeadView.m in Sources */,
  4393. BCB6356827F6D2A300ACFDCF /* ApplySpeechResultMessage.m in Sources */,
  4394. 2779351427E324A50010E277 /* NSMutableDictionary+KSSafe.m in Sources */,
  4395. 2779356F27E324A70010E277 /* SkipTextField.m in Sources */,
  4396. 2723B67F27F15D3D00E0B90B /* AboutUsViewController.m in Sources */,
  4397. BCB6355027F6D2A300ACFDCF /* WhiteUtils.m in Sources */,
  4398. 2779356127E324A70010E277 /* KSAudioRecordManager.m in Sources */,
  4399. 2779359827E324A80010E277 /* TZAssetModel.m in Sources */,
  4400. 277935A027E324A80010E277 /* UIView+TZLayout.m in Sources */,
  4401. 2779351227E324A50010E277 /* KSNetworkAccessibleManager.m in Sources */,
  4402. BCB6346827F6D29600ACFDCF /* KSLiveChatroomClose.m in Sources */,
  4403. 2779357227E324A70010E277 /* SearchView.m in Sources */,
  4404. 2723B64927F15BDC00E0B90B /* KSJXBodyView.m in Sources */,
  4405. BCB6354E27F6D2A300ACFDCF /* KSWhiteboardView.m in Sources */,
  4406. 2779356527E324A70010E277 /* KSMediaManager.m in Sources */,
  4407. 2779355C27E324A70010E277 /* KSChoosePicker.m in Sources */,
  4408. 2779356C27E324A70010E277 /* MBProgressHUD+NJ.m in Sources */,
  4409. BCBFDF5028115D9A0052AFE5 /* HomeIntroduceView.m in Sources */,
  4410. 2779353227E324A60010E277 /* NSDate+Transform.m in Sources */,
  4411. 2779356827E324A70010E277 /* shopview.m in Sources */,
  4412. 2723B64527F15B5900E0B90B /* SCIndexView.m in Sources */,
  4413. BCB6353727F6D2A300ACFDCF /* TextMessageCell.m in Sources */,
  4414. BCB6346A27F6D29600ACFDCF /* LiveVideoRoomViewController.m in Sources */,
  4415. BCB6357227F6D2A300ACFDCF /* KSIMService.m in Sources */,
  4416. BC50171227FC0D5600F8BCBC /* SubjectChooseViewController.m in Sources */,
  4417. 2779359727E324A80010E277 /* TZVideoPlayerController.m in Sources */,
  4418. 275FA22E27E7356B00CFEA2E /* MineViewController.m in Sources */,
  4419. 2779354627E324A60010E277 /* UIView+Animation.m in Sources */,
  4420. 2723B68327F15D3D00E0B90B /* ModifyViewController.m in Sources */,
  4421. 2779356327E324A70010E277 /* HomeButton.m in Sources */,
  4422. 2779358227E324A80010E277 /* NSDate+KSBaseDatePicker.m in Sources */,
  4423. BCB6359E27F6D2AB00ACFDCF /* ClassroomMainContainer.m in Sources */,
  4424. 277935CD27E324A90010E277 /* ALCalendarCell.m in Sources */,
  4425. 275FA1DA27E7351900CFEA2E /* KSNetworkingManager.m in Sources */,
  4426. 2779358A27E324A80010E277 /* ArchiveTools.m in Sources */,
  4427. BCB6355A27F6D2A300ACFDCF /* KSRemoteUserManager.m in Sources */,
  4428. BCB6347127F6D29600ACFDCF /* KSChatEmojiBoardView.m in Sources */,
  4429. 2779354527E324A60010E277 /* UIImage+UIImageScale.m in Sources */,
  4430. 2723B66427F15CFC00E0B90B /* VeriCheckView.m in Sources */,
  4431. BCB6355C27F6D2A300ACFDCF /* DisplayCommandMessage.m in Sources */,
  4432. BCB6356A27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m in Sources */,
  4433. BCB6359827F6D2AB00ACFDCF /* KSTipsView.m in Sources */,
  4434. 2779354C27E324A70010E277 /* KSGifRefreshHeader.m in Sources */,
  4435. 2779358727E324A80010E277 /* LLCollectionViewCell.m in Sources */,
  4436. 2779352627E324A60010E277 /* UIAlertController+Extend.m in Sources */,
  4437. BC11925E280FA89A00A716F7 /* HomeworkBodyView.m in Sources */,
  4438. 275FA1EB27E7351900CFEA2E /* KSBaseWKWebViewController.m in Sources */,
  4439. BCB6356727F6D2A300ACFDCF /* MemberChangeMessage.m in Sources */,
  4440. 2779353B27E324A60010E277 /* UrlDecode.m in Sources */,
  4441. BC40BA23281255F700DEC0D1 /* HomeCourseTipsView.m in Sources */,
  4442. 275FA22C27E7356B00CFEA2E /* CourseViewController.m in Sources */,
  4443. 2779358D27E324A80010E277 /* DZNSegmentedControl.m in Sources */,
  4444. 2779352027E324A60010E277 /* CALayer+Color.m in Sources */,
  4445. 2723B62C27F157D500E0B90B /* ApplyBottomView.m in Sources */,
  4446. BCB6356127F6D2A300ACFDCF /* SongDownloadCallbackMessage.m in Sources */,
  4447. 277935BA27E324A90010E277 /* FSCalendarWeekdayView.m in Sources */,
  4448. BCB6354427F6D2A300ACFDCF /* RecentSharedView.m in Sources */,
  4449. 2723B66C27F15CFC00E0B90B /* SettingBodyView.m in Sources */,
  4450. 2779354727E324A60010E277 /* UIButton+EnlargeEdge.m in Sources */,
  4451. 27F9032A27E87C2E00C08A19 /* NetworkBodyView.m in Sources */,
  4452. BCB6355F27F6D2A300ACFDCF /* TicketExpiredMessage.m in Sources */,
  4453. 277935A827E324A80010E277 /* MSSBrowseModel.m in Sources */,
  4454. BCB6355327F6D2A300ACFDCF /* InputTextField.m in Sources */,
  4455. BC28582B2809036D0024697C /* StudentInfoModel.m in Sources */,
  4456. 277935B927E324A90010E277 /* FSCalendarCollectionViewLayout.m in Sources */,
  4457. 2779359427E324A80010E277 /* TZAssetCell.m in Sources */,
  4458. BCB635B227F6E1A600ACFDCF /* LiveRoomBottomView.m in Sources */,
  4459. 2723B5CE27F157BE00E0B90B /* KSRCloudMediaManager.m in Sources */,
  4460. 2779357027E324A70010E277 /* UITextView_Toolbar.m in Sources */,
  4461. BCB6356427F6D2A300ACFDCF /* InviteUpgradeMessage.m in Sources */,
  4462. 2779355327E324A70010E277 /* VoNetworking+RequestManager.m in Sources */,
  4463. BCB6347327F6D29600ACFDCF /* KSChatEmojiCollectionCell.m in Sources */,
  4464. 2723B62327F157D500E0B90B /* LFPopupMenuDefaultConfig.m in Sources */,
  4465. 2779351627E324A60010E277 /* NSMutableArray+KSSafe.m in Sources */,
  4466. BC119247280EDA5800A716F7 /* kSJXCollectionView.m in Sources */,
  4467. 2779358927E324A80010E277 /* CoinModel.m in Sources */,
  4468. 275FA1EA27E7351900CFEA2E /* KSRCIMDataSource.m in Sources */,
  4469. BC27A071280FF56C00F91E27 /* AccompanyEvaluateCell.m in Sources */,
  4470. BC119241280ED9E000A716F7 /* AccompanyDetailViewController.m in Sources */,
  4471. BCB6346F27F6D29600ACFDCF /* LiveroomTimeManager.m in Sources */,
  4472. 2779359C27E324A80010E277 /* TZProgressView.m in Sources */,
  4473. 27F9033627E87C8B00C08A19 /* MineNavView.m in Sources */,
  4474. BC50171527FC0D8300F8BCBC /* SubjectChooseBodyView.m in Sources */,
  4475. 2723B62727F157D500E0B90B /* GroupMemberViewController.m in Sources */,
  4476. BC119216280ED6A900A716F7 /* MyLiveCourseCell.m in Sources */,
  4477. 2779353727E324A60010E277 /* UIImage+Color.m in Sources */,
  4478. 2779353127E324A60010E277 /* NSString+Extension.m in Sources */,
  4479. 2779353F27E324A60010E277 /* UIView+KSLayer.m in Sources */,
  4480. BCB6346227F6D29600ACFDCF /* KSLiveChatroomDownSeat.m in Sources */,
  4481. 275E8AB027E18F8800DD3F6E /* ViewController.m in Sources */,
  4482. 277935B627E324A90010E277 /* FSCalendarCell.m in Sources */,
  4483. 2779351E27E324A60010E277 /* UIViewController+zhStatusBarStyle.m in Sources */,
  4484. 2779356B27E324A70010E277 /* pickBut.m in Sources */,
  4485. 2779355F27E324A70010E277 /* UIView+ValueAdd.m in Sources */,
  4486. 275FA1E227E7351900CFEA2E /* KSWebBackButton.m in Sources */,
  4487. BCB6353527F6D2A300ACFDCF /* EmojiBoardView.m in Sources */,
  4488. 277935BF27E324A90010E277 /* FSCalendarHeaderView.m in Sources */,
  4489. 275FA1AE27E734C600CFEA2E /* KSImageAlert.m in Sources */,
  4490. 275FA1DE27E7351900CFEA2E /* KSLocalWebViewController.m in Sources */,
  4491. 2779354227E324A60010E277 /* UIImage+ResizeImage.m in Sources */,
  4492. 277935B327E324A90010E277 /* FSCalendarCollectionView.m in Sources */,
  4493. 2779352727E324A60010E277 /* NSArray+zh_SafeAccess.m in Sources */,
  4494. BCB6359727F6D2AB00ACFDCF /* ClassroomTimerManager.m in Sources */,
  4495. 2779352227E324A60010E277 /* UITextView+ZWLimitCounter.m in Sources */,
  4496. 27F9032927E87C2E00C08A19 /* NetworkingCheckController.m in Sources */,
  4497. BCFE53EC2812897600AD6786 /* HomeLiveCouseCell.m in Sources */,
  4498. 277935A527E324A80010E277 /* MSSBrowseLoadingImageView.m in Sources */,
  4499. 2779353E27E324A60010E277 /* UIDevice+TFDevice.m in Sources */,
  4500. 2723B5C027F157B100E0B90B /* ChatAddressHeaderView.m in Sources */,
  4501. 2723B68127F15D3D00E0B90B /* ModifyNameViewController.m in Sources */,
  4502. 2779359927E324A80010E277 /* NSBundle+TZImagePicker.m in Sources */,
  4503. 2779358E27E324A80010E277 /* WMPlayerModel.m in Sources */,
  4504. 2779354E27E324A70010E277 /* KSAudioSessionManager.m in Sources */,
  4505. BCBFDF41281157340052AFE5 /* HomeButtonView.m in Sources */,
  4506. 2779358127E324A80010E277 /* StateView.m in Sources */,
  4507. 2779358C27E324A80010E277 /* AnimationContoller.m in Sources */,
  4508. 2779359027E324A80010E277 /* WMLightView.m in Sources */,
  4509. 2723B5A227F1578300E0B90B /* CreateFansGroupViewController.m in Sources */,
  4510. BCB6355E27F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m in Sources */,
  4511. BC40BA1B281251ED00DEC0D1 /* HomeMessageModel.m in Sources */,
  4512. 277935BD27E324A90010E277 /* FSCalendarConstants.m in Sources */,
  4513. BCB6354527F6D2A300ACFDCF /* RecentSharedVideoCell.m in Sources */,
  4514. BCB6347027F6D29600ACFDCF /* LiveSeatMember.m in Sources */,
  4515. 2779351C27E324A60010E277 /* UIDevice+zhDeviceType.m in Sources */,
  4516. 2723B62927F157D500E0B90B /* KSChatComplainController.m in Sources */,
  4517. 2779351527E324A60010E277 /* NSArray+KSSafe.m in Sources */,
  4518. 2723B61A27F157D500E0B90B /* KSSearchResultViewCell.m in Sources */,
  4519. BC11927A280FB07F00A716F7 /* AccompanyArrangeCell.m in Sources */,
  4520. 277935B827E324A90010E277 /* FSCalendar.m in Sources */,
  4521. BCB6356C27F6D2A300ACFDCF /* Whiteboard.m in Sources */,
  4522. 275FA23527E7356B00CFEA2E /* UserInfoManager.m in Sources */,
  4523. 2779353327E324A60010E277 /* UIScreen+Extend.m in Sources */,
  4524. 2723B67E27F15D3D00E0B90B /* ModifyPhoneCheckController.m in Sources */,
  4525. 2779353A27E324A60010E277 /* UILabel+QWTopLeftLabel.m in Sources */,
  4526. BC119213280ED6A900A716F7 /* MyLessonBodyView.m in Sources */,
  4527. BCB6354227F6D2A300ACFDCF /* VideoListView.m in Sources */,
  4528. 2779359A27E324A80010E277 /* TZPhotoPreviewController.m in Sources */,
  4529. 2779355E27E324A70010E277 /* KSAudioRecordFileManager.m in Sources */,
  4530. 2779357A27E324A70010E277 /* PIckView.m in Sources */,
  4531. BC119234280ED97C00A716F7 /* CourseForLiveCell.m in Sources */,
  4532. BCB6346027F6D29600ACFDCF /* KSLiveChatroomKickOut.m in Sources */,
  4533. 2779354127E324A60010E277 /* UIView+ShowProgress.m in Sources */,
  4534. BCFE53E72812765600AD6786 /* HomeHotAlbumCell.m in Sources */,
  4535. BCB6346627F6D29600ACFDCF /* KSLiveChatroomUserQuit.m in Sources */,
  4536. BCB6356D27F6D2A300ACFDCF /* RoomMember.m in Sources */,
  4537. 277935B427E324A90010E277 /* FSCalendarDelegationProxy.m in Sources */,
  4538. 2723B5BB27F157B100E0B90B /* ChatAddressBodyView.m in Sources */,
  4539. 2779357427E324A70010E277 /* StoreButton.m in Sources */,
  4540. 277935A927E324A80010E277 /* MSSBrowseActionSheet.m in Sources */,
  4541. 275FA1E027E7351900CFEA2E /* RecordCheckManager.m in Sources */,
  4542. 2779355627E324A70010E277 /* KSPremissionAlert.m in Sources */,
  4543. BC119230280ED8F900A716F7 /* TableCourseModel.m in Sources */,
  4544. BCB6353827F6D2A300ACFDCF /* TipMessageCell.m in Sources */,
  4545. 2779352827E324A60010E277 /* UIColor+Extend.m in Sources */,
  4546. 2779357627E324A70010E277 /* ShoppCatView.m in Sources */,
  4547. BC11927F280FB10900A716F7 /* AccompanyRemarkCell.m in Sources */,
  4548. 2779357127E324A70010E277 /* SkipTextView.m in Sources */,
  4549. BCB6345F27F6D29600ACFDCF /* KSLiveChatroomEnter.m in Sources */,
  4550. BCB6355D27F6D2A300ACFDCF /* SongDownloadMessage.m in Sources */,
  4551. BCB6357027F6D2A300ACFDCF /* ClassroomService.m in Sources */,
  4552. BCB6359A27F6D2AB00ACFDCF /* ClassVideoListView.m in Sources */,
  4553. 2723B61D27F157D500E0B90B /* GroupNoticeViewController.m in Sources */,
  4554. BC0212F727FC4A080040569F /* SubjectImageCell.m in Sources */,
  4555. 277935D027E324A90010E277 /* ALCalendarDate.m in Sources */,
  4556. 2723B64427F15B5900E0B90B /* SCIndexViewConfiguration.m in Sources */,
  4557. 2779358527E324A80010E277 /* LLFileManager.m in Sources */,
  4558. BCB6346D27F6D29600ACFDCF /* KSEnterLiveroomManager.m in Sources */,
  4559. 2779357327E324A70010E277 /* prodectButton.m in Sources */,
  4560. 2723B5BD27F157B100E0B90B /* KSChatListSearchView.m in Sources */,
  4561. 2723B61827F157D500E0B90B /* KSSearchHistoryMessageController.m in Sources */,
  4562. BCB6346E27F6D29600ACFDCF /* KSLiveStreamVideo.m in Sources */,
  4563. 2779359327E324A80010E277 /* TZImageCropManager.m in Sources */,
  4564. 2723B66727F15CFC00E0B90B /* ModifyBodyView.m in Sources */,
  4565. 2779357727E324A70010E277 /* GRScanManager.m in Sources */,
  4566. 277935D527E324A90010E277 /* ALCalendarManager.m in Sources */,
  4567. BC02130127FC6ADD0040569F /* UIView+SubViewExtension.m in Sources */,
  4568. BC11924E280EDD5500A716F7 /* HomeworkListViewController.m in Sources */,
  4569. 2779351927E324A60010E277 /* NSMutableString+KSSafe.m in Sources */,
  4570. 2723B5BC27F157B100E0B90B /* GroupCreateView.m in Sources */,
  4571. BCB6346927F6D29600ACFDCF /* KSLiveChatroomSeatResponse.m in Sources */,
  4572. 2723B64627F15B5900E0B90B /* UITableView+SCIndexView.m in Sources */,
  4573. BCB6353327F6D2A300ACFDCF /* CREmojiCollectionCell.m in Sources */,
  4574. BCB6356B27F6D2A300ACFDCF /* NodePlayMessage.m in Sources */,
  4575. 2779352327E324A60010E277 /* UILabel+Extension.m in Sources */,
  4576. BCB635A327F6D3FE00ACFDCF /* KSNormalAlertView.m in Sources */,
  4577. 2723B63027F157D500E0B90B /* GroupApplyChooseAllCell.m in Sources */,
  4578. 2723B61F27F157D500E0B90B /* GroupNoticeModel.m in Sources */,
  4579. 275FA1E627E7351900CFEA2E /* KSUpdateAlert.m in Sources */,
  4580. BCB6353A27F6D2A300ACFDCF /* MessageBaseCell.m in Sources */,
  4581. 2779355027E324A70010E277 /* VoDiskCache.m in Sources */,
  4582. BCB6353F27F6D2A300ACFDCF /* ChatAreaView.m in Sources */,
  4583. BCB6355627F6D2A300ACFDCF /* HTTPUtility.m in Sources */,
  4584. 2779353927E324A60010E277 /* UIView+XIBView.m in Sources */,
  4585. 2779355827E324A70010E277 /* UIImage+Addtions.m in Sources */,
  4586. BCB6355527F6D2A300ACFDCF /* RolePortraitView.m in Sources */,
  4587. 277935D427E324A90010E277 /* UIView+ALFrame.m in Sources */,
  4588. 275FA23C27E7356B00CFEA2E /* VefiBodyView.m in Sources */,
  4589. 2779358027E324A80010E277 /* sortButton.m in Sources */,
  4590. 2779356027E324A70010E277 /* KSRecordStatusView.m in Sources */,
  4591. 2723B62B27F157D500E0B90B /* ApplyMemberModel.m in Sources */,
  4592. BC40B9FE281177BD00DEC0D1 /* HomeInformationCell.m in Sources */,
  4593. 2779354D27E324A70010E277 /* KSGifRefreshFooter.m in Sources */,
  4594. BC119288280FB3B100A716F7 /* KSStarView.m in Sources */,
  4595. 275FA22F27E7356B00CFEA2E /* ShopMallViewController.m in Sources */,
  4596. BCB6347227F6D29600ACFDCF /* KSChatInputView.m in Sources */,
  4597. 275E8AAA27E18F8800DD3F6E /* AppDelegate.m in Sources */,
  4598. 2779356427E324A70010E277 /* KSFullDatePicker.m in Sources */,
  4599. BC0D1F6D281013DF00C5D9E5 /* MyVideoCourseBodyView.m in Sources */,
  4600. 2723B5CF27F157BE00E0B90B /* GroupMemberModel.m in Sources */,
  4601. 2723B62A27F157D500E0B90B /* GroupSettingViewController.m in Sources */,
  4602. 2779359127E324A80010E277 /* FastForwardView.m in Sources */,
  4603. BC119222280ED6F500A716F7 /* LiveLessonModel.m in Sources */,
  4604. 2723B63C27F159BA00E0B90B /* KSBaseTableViewController.m in Sources */,
  4605. BC27A079280FFA2200F91E27 /* EvaluateDetailModel.m in Sources */,
  4606. 2779358B27E324A80010E277 /* KLTNavigationController.m in Sources */,
  4607. 27F9033127E87C2E00C08A19 /* DeviceCheckView.m in Sources */,
  4608. BCB6359527F6D2AB00ACFDCF /* OnlineClassManager.m in Sources */,
  4609. BC119263280FA90100A716F7 /* HomeworkDetailModel.m in Sources */,
  4610. BCB6357127F6D2A300ACFDCF /* RTCService.m in Sources */,
  4611. 2723B62427F157D500E0B90B /* NoticeEditBodyView.m in Sources */,
  4612. BCB6354327F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m in Sources */,
  4613. BC0D1F71281015B000C5D9E5 /* VideoCourseCell.m in Sources */,
  4614. 2779352F27E324A60010E277 /* UIView+Hints.m in Sources */,
  4615. 2779351D27E324A60010E277 /* NSString+zh_SafeAccess.m in Sources */,
  4616. BCB6354727F6D2A300ACFDCF /* PersonListView.m in Sources */,
  4617. 2779351A27E324A60010E277 /* NSObject+AssociatedObject.m in Sources */,
  4618. BCB635A627F6D90600ACFDCF /* KSLiveEmptyView.m in Sources */,
  4619. 2779359227E324A80010E277 /* WMPlayer.m in Sources */,
  4620. 277935CF27E324A90010E277 /* ALCalendarHeader.m in Sources */,
  4621. 275FA24827E7428200CFEA2E /* InstrumentChooseView.m in Sources */,
  4622. 2779358627E324A80010E277 /* LLPhoto.m in Sources */,
  4623. 277935C127E324A90010E277 /* FSCalendarAppearance.m in Sources */,
  4624. 275E8ABB27E18F8B00DD3F6E /* main.m in Sources */,
  4625. 2779359F27E324A80010E277 /* TZPhotoPreviewCell.m in Sources */,
  4626. BC11928D280FB44300A716F7 /* HomeworkVideoView.m in Sources */,
  4627. 277935A227E324A80010E277 /* TZLocationManager.m in Sources */,
  4628. 2723B62827F157D500E0B90B /* KSSelectConversationViewController.m in Sources */,
  4629. 275FA1E827E7351900CFEA2E /* CustomNavViewController.m in Sources */,
  4630. BCB6355B27F6D2A300ACFDCF /* ApplySpeechMessage.m in Sources */,
  4631. 275FA24327E73DF600CFEA2E /* InstrumentDescView.m in Sources */,
  4632. 2723B68027F15D3D00E0B90B /* FeedbackViewController.m in Sources */,
  4633. 275FA1ED27E7351900CFEA2E /* KSUpdateManager.m in Sources */,
  4634. BC27A06F280FF56C00F91E27 /* AccompanyStudentEvaCell.m in Sources */,
  4635. BCB6355727F6D2A300ACFDCF /* HTTPResult.m in Sources */,
  4636. BC0212FB27FC61D30040569F /* KSSegmentControl.m in Sources */,
  4637. BC119223280ED6F500A716F7 /* AccompanyLessonModel.m in Sources */,
  4638. 277935B227E324A90010E277 /* UIView+MSSLayout.m in Sources */,
  4639. 275FA1E427E7351900CFEA2E /* KSWebNavView.m in Sources */,
  4640. 2779356D27E324A70010E277 /* StoreShopCaterview.m in Sources */,
  4641. BC119267280FA92700A716F7 /* HomeworkDetailViewController.m in Sources */,
  4642. BCB6346127F6D29600ACFDCF /* KSChatroomMessageCenter.m in Sources */,
  4643. BC11925B280FA85300A716F7 /* HomeworkSortView.m in Sources */,
  4644. 277935D327E324A90010E277 /* ALCalendarPicker.m in Sources */,
  4645. BCB6359427F6D2AB00ACFDCF /* NewClassRoomViewController.m in Sources */,
  4646. BCB6356027F6D2A300ACFDCF /* WhiteboardMessage.m in Sources */,
  4647. 2779354F27E324A70010E277 /* VoLRUManager.m in Sources */,
  4648. BC40BA0C28117B3B00DEC0D1 /* TYPageControl.m in Sources */,
  4649. BC40BA0D28117B3B00DEC0D1 /* TYCyclePagerView.m in Sources */,
  4650. 2779356727E324A70010E277 /* UIColor+Hex.m in Sources */,
  4651. BCB6345E27F6D29600ACFDCF /* KSLiveChatroomLeave.m in Sources */,
  4652. BC11929B280FD2E800A716F7 /* HomeworkBottomView.m in Sources */,
  4653. 275FA1E727E7351900CFEA2E /* KSWebSocketManager.m in Sources */,
  4654. 277935AE27E324A80010E277 /* MSSBrowseRemindView.m in Sources */,
  4655. BCBFDF46281159990052AFE5 /* HomeHotAlbumView.m in Sources */,
  4656. 2779356A27E324A70010E277 /* YKNodeModel.m in Sources */,
  4657. BC119244280EDA2400A716F7 /* NSObject+KSDateFormatter.m in Sources */,
  4658. 277935CE27E324A90010E277 /* ALCalendarConfig.m in Sources */,
  4659. 2779354327E324A60010E277 /* UIButton+HasChooseImage.m in Sources */,
  4660. 2779355927E324A70010E277 /* GRCreateManager.m in Sources */,
  4661. 277935A727E324A80010E277 /* MSSBrowseCollectionViewCell.m in Sources */,
  4662. BCB6346727F6D29600ACFDCF /* KSLiveChatroomMemberCount.m in Sources */,
  4663. 277935AD27E324A80010E277 /* MSSBrowseZoomScrollView.m in Sources */,
  4664. BCB6348227F6D29600ACFDCF /* SeatContentView.m in Sources */,
  4665. 2723B68227F15D3D00E0B90B /* ModifyPhoneChangeController.m in Sources */,
  4666. BC40BA1F2812552300DEC0D1 /* KSHomeButton.m in Sources */,
  4667. 277935C827E324A90010E277 /* TADotView.m in Sources */,
  4668. BC1191FF280ED64E00A716F7 /* MyCourseViewController.m in Sources */,
  4669. BC119298280FBCB400A716F7 /* UIView+ExtensionForDotLine.m in Sources */,
  4670. BCB635A927F6D93300ACFDCF /* KSChatVideoView.m in Sources */,
  4671. 2779353027E324A60010E277 /* NSDate+Extension.m in Sources */,
  4672. BCB6356627F6D2A300ACFDCF /* DeviceMessage.m in Sources */,
  4673. BCBFDF3728110C660052AFE5 /* HomeNavView.m in Sources */,
  4674. 277935D127E324A90010E277 /* ALCalendarCollectionView.m in Sources */,
  4675. 2779355427E324A70010E277 /* VoNetWorking.m in Sources */,
  4676. 275FA1EE27E7351900CFEA2E /* KSBaseViewController.m in Sources */,
  4677. 2723B63827F157D500E0B90B /* GroupApplyChooseCell.m in Sources */,
  4678. 2723B66827F15CFC00E0B90B /* FeedbackBodyView.m in Sources */,
  4679. 2779354927E324A60010E277 /* MBProgressHUD+KSShow.m in Sources */,
  4680. BCB6346327F6D29600ACFDCF /* KSRCMessageModel.m in Sources */,
  4681. BCB6359B27F6D2AB00ACFDCF /* KSBeatView.m in Sources */,
  4682. BCB6356227F6D2A300ACFDCF /* AssistantTransferMessage.m in Sources */,
  4683. 277935A427E324A80010E277 /* TZImageRequestOperation.m in Sources */,
  4684. BCB6356527F6D2A300ACFDCF /* AccompanyDownloadMessage.m in Sources */,
  4685. 275FA23627E7356B00CFEA2E /* LoginBodyView.m in Sources */,
  4686. 2779355A27E324A70010E277 /* QCCountdownButton.m in Sources */,
  4687. 275FA1E127E7351900CFEA2E /* KSTabBarViewController.m in Sources */,
  4688. BC11926B280FAF5900A716F7 /* AccompanyAlertView.m in Sources */,
  4689. 277935BB27E324A90010E277 /* FSCalendarSeparatorDecorationView.m in Sources */,
  4690. 275FA1DF27E7351900CFEA2E /* RCConnectionManager.m in Sources */,
  4691. 275FA22B27E7356B00CFEA2E /* HomeViewController.m in Sources */,
  4692. BCFE53F12812898700AD6786 /* HomeVideoCourseCell.m in Sources */,
  4693. 277935C027E324A90010E277 /* FSCalendarTransitionCoordinator.m in Sources */,
  4694. 2779355B27E324A70010E277 /* KSStatusView.m in Sources */,
  4695. 2779355227E324A70010E277 /* VoMemoryCache.m in Sources */,
  4696. 2779352A27E324A60010E277 /* UIView+Dealloc.m in Sources */,
  4697. 2779352D27E324A60010E277 /* NSString+CZHSizeExtension.m in Sources */,
  4698. BC119259280FA85300A716F7 /* HomeworkListCell.m in Sources */,
  4699. 2779353827E324A60010E277 /* UIView+KSExtension.m in Sources */,
  4700. 2723B5CD27F157BE00E0B90B /* GroupListModel.m in Sources */,
  4701. 2779354B27E324A60010E277 /* KSVideoEditor.m in Sources */,
  4702. 277935A327E324A80010E277 /* TZGifPhotoPreviewController.m in Sources */,
  4703. 277935A127E324A80010E277 /* TZImagePickerController.m in Sources */,
  4704. BCB6353627F6D2A300ACFDCF /* TimeStampCell.m in Sources */,
  4705. BCB6354D27F6D2A300ACFDCF /* EmptyView.m in Sources */,
  4706. 2723B63327F157D500E0B90B /* ChatComplainBodyView.m in Sources */,
  4707. 2779357927E324A70010E277 /* KSImageButton.m in Sources */,
  4708. 2779351827E324A60010E277 /* NSObject+KSImpChangeTool.m in Sources */,
  4709. 2779359D27E324A80010E277 /* TZImageManager.m in Sources */,
  4710. 2723B5BE27F157B100E0B90B /* ChatNavView.m in Sources */,
  4711. BC119218280ED6A900A716F7 /* MyLessonSearchView.m in Sources */,
  4712. BCB6354C27F6D2A300ACFDCF /* VideoMaskView.m in Sources */,
  4713. 2723B66D27F15CFC00E0B90B /* ModifyNameBodyView.m in Sources */,
  4714. 275FA23327E7356B00CFEA2E /* VefiCodeLoginController.m in Sources */,
  4715. BCB6359C27F6D2AB00ACFDCF /* ClassVideoListCell.m in Sources */,
  4716. 2723B61B27F157D500E0B90B /* KSSearchRCLabel.m in Sources */,
  4717. 275FA23B27E7356B00CFEA2E /* PasswordBodyView.m in Sources */,
  4718. 277935C527E324A90010E277 /* UIView+SDExtension.m in Sources */,
  4719. 2779356E27E324A70010E277 /* UITextField_Toolbar.m in Sources */,
  4720. 277935B027E324A90010E277 /* MSSBrowseActionSheetCell.m in Sources */,
  4721. 2779358827E324A80010E277 /* NSObject+Archiving.m in Sources */,
  4722. 2779354427E324A60010E277 /* NSObject+AutoProperty.m in Sources */,
  4723. 275FA23427E7356B00CFEA2E /* UserInfo.m in Sources */,
  4724. 27F9033A27E87FD500C08A19 /* MineBodyView.m in Sources */,
  4725. 275FA1EC27E7351900CFEA2E /* BaseViewController.m in Sources */,
  4726. BCB6353427F6D2A300ACFDCF /* InputBarControl.m in Sources */,
  4727. BC11922B280ED8E800A716F7 /* CourseNavView.m in Sources */,
  4728. 275FA1DB27E7351900CFEA2E /* UINavigationController+KSNavigationBar.m in Sources */,
  4729. 2779352127E324A60010E277 /* NSMutableAttributedString+CZHExtention.m in Sources */,
  4730. 277935C727E324A90010E277 /* SDCollectionViewCell.m in Sources */,
  4731. BCB6348627F6D29600ACFDCF /* LiveSeatApplyCell.m in Sources */,
  4732. 2779358427E324A80010E277 /* LLImageCache.m in Sources */,
  4733. 275FA23127E7356B00CFEA2E /* FirstSettingViewController.m in Sources */,
  4734. BCB6355827F6D2A300ACFDCF /* NormalAlertView.m in Sources */,
  4735. 275FA1DD27E7351900CFEA2E /* KSBaseModel.m in Sources */,
  4736. BC11922A280ED8E800A716F7 /* LTSCalendarBottomView.m in Sources */,
  4737. BCB6353E27F6D2A300ACFDCF /* TimeStampMessage.m in Sources */,
  4738. 2779354027E324A60010E277 /* UIImage+Property.m in Sources */,
  4739. BCFE54002814E1BE00AD6786 /* HomeVideoGroupModel.m in Sources */,
  4740. 2779356627E324A70010E277 /* ShopMessBtn.m in Sources */,
  4741. BC11921D280ED6A900A716F7 /* NewClassPopCell.m in Sources */,
  4742. 277935B727E324A90010E277 /* FSCalendarStickyHeader.m in Sources */,
  4743. 2779356927E324A70010E277 /* YKMultiLevelTableView.m in Sources */,
  4744. BCB6354B27F6D2A300ACFDCF /* MainContainerView.m in Sources */,
  4745. BCB6356F27F6D2A300ACFDCF /* Classroom.m in Sources */,
  4746. 2779351B27E324A60010E277 /* UIControl+ButtonAction.m in Sources */,
  4747. BCB6354F27F6D2A300ACFDCF /* KSWhiteboardControl.m in Sources */,
  4748. BCBFDF3C281156430052AFE5 /* HomeBannerView.m in Sources */,
  4749. 27F9032F27E87C2E00C08A19 /* AudioPlayManager.m in Sources */,
  4750. 2779357C27E324A70010E277 /* NSString+MD5.m in Sources */,
  4751. 2779355D27E324A70010E277 /* KSHoldButton.m in Sources */,
  4752. 2723B62027F157D500E0B90B /* GroupNoticeCell.m in Sources */,
  4753. BC40BA0328117B0A00DEC0D1 /* HomeBannerCell.m in Sources */,
  4754. BCB6356327F6D2A300ACFDCF /* RoleChangedMessage.m in Sources */,
  4755. 277935A627E324A80010E277 /* MSSBrowseLocalViewController.m in Sources */,
  4756. BCB6348427F6D29600ACFDCF /* KSChatroomTextCell.m in Sources */,
  4757. BCB6347527F6D29600ACFDCF /* KSChatInputBarControl.m in Sources */,
  4758. 277935D227E324A90010E277 /* ALCalendarHelper.m in Sources */,
  4759. 2779353D27E324A60010E277 /* UIScrollView+KSTouch.m in Sources */,
  4760. BCB6353227F6D2A300ACFDCF /* InputView.m in Sources */,
  4761. 275FA23927E7356B00CFEA2E /* FirstSettingBodyView.m in Sources */,
  4762. BCB6346527F6D29600ACFDCF /* KSLiveChatroomLike.m in Sources */,
  4763. BCB6356927F6D2A300ACFDCF /* TurnPageMessage.m in Sources */,
  4764. 277935CA27E324A90010E277 /* TAAnimatedDotView.m in Sources */,
  4765. 2779353527E324A60010E277 /* NSObject+ReadDocument.m in Sources */,
  4766. BC40BA0E28117B3B00DEC0D1 /* TYCyclePagerTransformLayout.m in Sources */,
  4767. 277935C227E324A90010E277 /* QWdynamicModel.m in Sources */,
  4768. 2779357E27E324A80010E277 /* KSInputView.m in Sources */,
  4769. BCB6354927F6D2A300ACFDCF /* PersonListSectionView.m in Sources */,
  4770. 2723B63427F157D500E0B90B /* GroupApplyMemberCell.m in Sources */,
  4771. BCB6345D27F6D29600ACFDCF /* KSLiveChatroomWelcome.m in Sources */,
  4772. 2779352927E324A60010E277 /* zhPopupController.m in Sources */,
  4773. 2779359527E324A80010E277 /* TZVideoEditedPreviewController.m in Sources */,
  4774. 2723B63127F157D500E0B90B /* GroupSettingBodyView.m in Sources */,
  4775. BC119290280FB46100A716F7 /* KSVideoHelper.m in Sources */,
  4776. BCB6354827F6D2A300ACFDCF /* PersonListCell.m in Sources */,
  4777. BCB6354A27F6D2A300ACFDCF /* ToolPanelView.m in Sources */,
  4778. 2779358327E324A80010E277 /* LLPhotoBrowser.m in Sources */,
  4779. BCB6353B27F6D2A300ACFDCF /* MessageDataSource.m in Sources */,
  4780. 275FA23027E7356B00CFEA2E /* PasswordLoginController.m in Sources */,
  4781. 2779351327E324A50010E277 /* NSDictionary+KSSafe.m in Sources */,
  4782. BCB6355427F6D2A300ACFDCF /* UIView+MBProgressHUD.m in Sources */,
  4783. 2779352B27E324A60010E277 /* NSObject+Parse.m in Sources */,
  4784. 275FA23227E7356B00CFEA2E /* LoginViewController.m in Sources */,
  4785. BCB635A027F6D2AB00ACFDCF /* MainToolView.m in Sources */,
  4786. BCB6355127F6D2A300ACFDCF /* LoginHelper.m in Sources */,
  4787. 2723B5C127F157B100E0B90B /* ContractListCell.m in Sources */,
  4788. 275FA1E527E7351900CFEA2E /* KSAccompanyWebViewController.m in Sources */,
  4789. BC11923A280ED98E00A716F7 /* AccompanyCourseCell.m in Sources */,
  4790. BC119264280FA90100A716F7 /* HomeworkListModel.m in Sources */,
  4791. 2779354A27E324A60010E277 /* UIImage+Resize.m in Sources */,
  4792. 2723B5A327F1578300E0B90B /* KSChatListViewController.m in Sources */,
  4793. BC119271280FAF7D00A716F7 /* AccompanyCourseInfoCell.m in Sources */,
  4794. 2723B68427F15D3D00E0B90B /* AddressViewController.m in Sources */,
  4795. 2779357527E324A70010E277 /* LifeButton.m in Sources */,
  4796. 27F9032C27E87C2E00C08A19 /* KSNetworkAlert.m in Sources */,
  4797. 2779353627E324A60010E277 /* CALayer+Layout.m in Sources */,
  4798. BC40BA1828124D3D00DEC0D1 /* NoticeMessageViewController.m in Sources */,
  4799. 275FA22D27E7356B00CFEA2E /* ChatViewController.m in Sources */,
  4800. BCB6354127F6D2A300ACFDCF /* VideoListCell.m in Sources */,
  4801. 2723B5A427F1578300E0B90B /* KSChatConversationViewController.m in Sources */,
  4802. 2723B62627F157D500E0B90B /* GroupApplyViewController.m in Sources */,
  4803. 277935C427E324A90010E277 /* SDCycleScrollView.m in Sources */,
  4804. BC119293280FBC1100A716F7 /* HomeworkAddView.m in Sources */,
  4805. 2723B61C27F157D500E0B90B /* KSRCSearchBar.m in Sources */,
  4806. 277935C627E324A90010E277 /* SDQWMaskCustomModel.m in Sources */,
  4807. BCB6353C27F6D2A300ACFDCF /* MessageHelper.m in Sources */,
  4808. 2779359E27E324A80010E277 /* TZPhotoPickerController.m in Sources */,
  4809. BCB6353D27F6D2A300ACFDCF /* MessageModel.m in Sources */,
  4810. 277935AA27E324A80010E277 /* MSSBrowseNetworkViewController.m in Sources */,
  4811. 2723B63627F157D500E0B90B /* GroupMemberListCell.m in Sources */,
  4812. 2723B62227F157D500E0B90B /* LFPopupMenu.m in Sources */,
  4813. BCB6348027F6D29600ACFDCF /* LiveSeatApplyView.m in Sources */,
  4814. 2779357F27E324A80010E277 /* KeyChainTools.m in Sources */,
  4815. 2723B61927F157D500E0B90B /* KSSearchResultModel.m in Sources */,
  4816. BCBFDF4B28115C6F0052AFE5 /* HomeHotCourseView.m in Sources */,
  4817. BC27A074280FF60B00F91E27 /* AccompanyDetailBottomView.m in Sources */,
  4818. 275FA1E327E7351900CFEA2E /* WeakWebViewScriptMessageDelegate.m in Sources */,
  4819. 2779351F27E324A60010E277 /* UITextView+ZWPlaceHolder.m in Sources */,
  4820. 2779353C27E324A60010E277 /* UIButton+Property.m in Sources */,
  4821. BCFE53FF2814E1BE00AD6786 /* HomeLiveGroupModel.m in Sources */,
  4822. 277935CC27E324A90010E277 /* SDQWMaskCustomView.m in Sources */,
  4823. BCB6354627F6D2A300ACFDCF /* UpgradeDidApplyView.m in Sources */,
  4824. 2779351727E324A60010E277 /* NSObject+KSSwizzling.m in Sources */,
  4825. 2779352C27E324A60010E277 /* UIView+AddConstraints.m in Sources */,
  4826. 277935C927E324A90010E277 /* TAPageControl.m in Sources */,
  4827. BCB635AD27F6E06500ACFDCF /* LiveRoomHeadView.m in Sources */,
  4828. 2723B5A527F1578300E0B90B /* ChatAddressViewController.m in Sources */,
  4829. 2723B66627F15CFC00E0B90B /* AboutUsBodyView.m in Sources */,
  4830. 277935BC27E324A90010E277 /* FSCalendarExtensions.m in Sources */,
  4831. 2779356227E324A70010E277 /* KSRecordPowerAnimationView.m in Sources */,
  4832. BCFE53FA28129A5600AD6786 /* TeacherStyleModel.m in Sources */,
  4833. 2779355527E324A70010E277 /* DiskFreeSpaceManager.m in Sources */,
  4834. 2779352E27E324A60010E277 /* NSDictionary+Extension.m in Sources */,
  4835. 2779355127E324A70010E277 /* VoCacheManager.m in Sources */,
  4836. 277935B527E324A90010E277 /* FSCalendarDelegationFactory.m in Sources */,
  4837. BCB6353927F6D2A300ACFDCF /* MessageCell.m in Sources */,
  4838. BCB6354027F6D2A300ACFDCF /* ClassroomTitleView.m in Sources */,
  4839. BC11921C280ED6A900A716F7 /* NewClassPopView.m in Sources */,
  4840. BCB6359627F6D2AB00ACFDCF /* LocalRenderManager.m in Sources */,
  4841. 2723B66927F15CFC00E0B90B /* PhoneChangeBodyView.m in Sources */,
  4842. 27F9033227E87C2E00C08A19 /* SettingViewController.m in Sources */,
  4843. );
  4844. runOnlyForDeploymentPostprocessing = 0;
  4845. };
  4846. 275E8ABC27E18F8C00DD3F6E /* Sources */ = {
  4847. isa = PBXSourcesBuildPhase;
  4848. buildActionMask = 2147483647;
  4849. files = (
  4850. 275E8AC527E18F8C00DD3F6E /* KulexiuForStudentTests.m in Sources */,
  4851. );
  4852. runOnlyForDeploymentPostprocessing = 0;
  4853. };
  4854. 275E8AC627E18F8C00DD3F6E /* Sources */ = {
  4855. isa = PBXSourcesBuildPhase;
  4856. buildActionMask = 2147483647;
  4857. files = (
  4858. 275E8AD127E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m in Sources */,
  4859. 275E8ACF27E18F8C00DD3F6E /* KulexiuForStudentUITests.m in Sources */,
  4860. );
  4861. runOnlyForDeploymentPostprocessing = 0;
  4862. };
  4863. /* End PBXSourcesBuildPhase section */
  4864. /* Begin PBXTargetDependency section */
  4865. 275E8AC227E18F8C00DD3F6E /* PBXTargetDependency */ = {
  4866. isa = PBXTargetDependency;
  4867. target = 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */;
  4868. targetProxy = 275E8AC127E18F8C00DD3F6E /* PBXContainerItemProxy */;
  4869. };
  4870. 275E8ACC27E18F8C00DD3F6E /* PBXTargetDependency */ = {
  4871. isa = PBXTargetDependency;
  4872. target = 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */;
  4873. targetProxy = 275E8ACB27E18F8C00DD3F6E /* PBXContainerItemProxy */;
  4874. };
  4875. /* End PBXTargetDependency section */
  4876. /* Begin PBXVariantGroup section */
  4877. 275E8AB127E18F8800DD3F6E /* Main.storyboard */ = {
  4878. isa = PBXVariantGroup;
  4879. children = (
  4880. 275E8AB227E18F8800DD3F6E /* Base */,
  4881. );
  4882. name = Main.storyboard;
  4883. sourceTree = "<group>";
  4884. };
  4885. 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */ = {
  4886. isa = PBXVariantGroup;
  4887. children = (
  4888. 275E8AB727E18F8B00DD3F6E /* Base */,
  4889. );
  4890. name = LaunchScreen.storyboard;
  4891. sourceTree = "<group>";
  4892. };
  4893. BCB6348927F6D2A200ACFDCF /* SealClass.strings */ = {
  4894. isa = PBXVariantGroup;
  4895. children = (
  4896. BCB6348A27F6D2A200ACFDCF /* zh-Hans */,
  4897. BCB634E527F6D2A300ACFDCF /* en */,
  4898. );
  4899. name = SealClass.strings;
  4900. sourceTree = "<group>";
  4901. };
  4902. /* End PBXVariantGroup section */
  4903. /* Begin XCBuildConfiguration section */
  4904. 275E8AD227E18F8C00DD3F6E /* Debug */ = {
  4905. isa = XCBuildConfiguration;
  4906. buildSettings = {
  4907. ALWAYS_SEARCH_USER_PATHS = NO;
  4908. CLANG_ANALYZER_NONNULL = YES;
  4909. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4910. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  4911. CLANG_CXX_LIBRARY = "libc++";
  4912. CLANG_ENABLE_MODULES = YES;
  4913. CLANG_ENABLE_OBJC_ARC = YES;
  4914. CLANG_ENABLE_OBJC_WEAK = YES;
  4915. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4916. CLANG_WARN_BOOL_CONVERSION = YES;
  4917. CLANG_WARN_COMMA = YES;
  4918. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4919. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4920. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4921. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4922. CLANG_WARN_EMPTY_BODY = YES;
  4923. CLANG_WARN_ENUM_CONVERSION = YES;
  4924. CLANG_WARN_INFINITE_RECURSION = YES;
  4925. CLANG_WARN_INT_CONVERSION = YES;
  4926. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4927. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4928. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4929. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4930. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4931. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4932. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4933. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4934. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4935. CLANG_WARN_UNREACHABLE_CODE = YES;
  4936. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4937. COPY_PHASE_STRIP = NO;
  4938. DEBUG_INFORMATION_FORMAT = dwarf;
  4939. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4940. ENABLE_TESTABILITY = YES;
  4941. GCC_C_LANGUAGE_STANDARD = gnu11;
  4942. GCC_DYNAMIC_NO_PIC = NO;
  4943. GCC_NO_COMMON_BLOCKS = YES;
  4944. GCC_OPTIMIZATION_LEVEL = 0;
  4945. GCC_PREPROCESSOR_DEFINITIONS = (
  4946. "DEBUG=1",
  4947. "$(inherited)",
  4948. );
  4949. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4950. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4951. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4952. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4953. GCC_WARN_UNUSED_FUNCTION = YES;
  4954. GCC_WARN_UNUSED_VARIABLE = YES;
  4955. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  4956. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4957. MTL_FAST_MATH = YES;
  4958. ONLY_ACTIVE_ARCH = YES;
  4959. SDKROOT = iphoneos;
  4960. };
  4961. name = Debug;
  4962. };
  4963. 275E8AD327E18F8C00DD3F6E /* Release */ = {
  4964. isa = XCBuildConfiguration;
  4965. buildSettings = {
  4966. ALWAYS_SEARCH_USER_PATHS = NO;
  4967. CLANG_ANALYZER_NONNULL = YES;
  4968. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4969. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  4970. CLANG_CXX_LIBRARY = "libc++";
  4971. CLANG_ENABLE_MODULES = YES;
  4972. CLANG_ENABLE_OBJC_ARC = YES;
  4973. CLANG_ENABLE_OBJC_WEAK = YES;
  4974. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4975. CLANG_WARN_BOOL_CONVERSION = YES;
  4976. CLANG_WARN_COMMA = YES;
  4977. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4978. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4979. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4980. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4981. CLANG_WARN_EMPTY_BODY = YES;
  4982. CLANG_WARN_ENUM_CONVERSION = YES;
  4983. CLANG_WARN_INFINITE_RECURSION = YES;
  4984. CLANG_WARN_INT_CONVERSION = YES;
  4985. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4986. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4987. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4988. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4989. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4990. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4991. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4992. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4993. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4994. CLANG_WARN_UNREACHABLE_CODE = YES;
  4995. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4996. COPY_PHASE_STRIP = NO;
  4997. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4998. ENABLE_NS_ASSERTIONS = NO;
  4999. ENABLE_STRICT_OBJC_MSGSEND = YES;
  5000. GCC_C_LANGUAGE_STANDARD = gnu11;
  5001. GCC_NO_COMMON_BLOCKS = YES;
  5002. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  5003. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  5004. GCC_WARN_UNDECLARED_SELECTOR = YES;
  5005. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  5006. GCC_WARN_UNUSED_FUNCTION = YES;
  5007. GCC_WARN_UNUSED_VARIABLE = YES;
  5008. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  5009. MTL_ENABLE_DEBUG_INFO = NO;
  5010. MTL_FAST_MATH = YES;
  5011. SDKROOT = iphoneos;
  5012. VALIDATE_PRODUCT = YES;
  5013. };
  5014. name = Release;
  5015. };
  5016. 275E8AD527E18F8C00DD3F6E /* Debug */ = {
  5017. isa = XCBuildConfiguration;
  5018. baseConfigurationReference = 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */;
  5019. buildSettings = {
  5020. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  5021. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  5022. CODE_SIGN_STYLE = Automatic;
  5023. CURRENT_PROJECT_VERSION = 1.0.0;
  5024. DEVELOPMENT_TEAM = B2AP53HHTU;
  5025. ENABLE_BITCODE = NO;
  5026. GCC_PREFIX_HEADER = "$(SRCROOT)/KulexiuForStudent/Common/Define/PrefixHeader.pch";
  5027. GENERATE_INFOPLIST_FILE = YES;
  5028. INFOPLIST_FILE = KulexiuForStudent/Info.plist;
  5029. INFOPLIST_KEY_CFBundleDisplayName = "酷乐秀学生端";
  5030. INFOPLIST_KEY_NSAppleMusicUsageDescription = "App需要您的同意访问媒体资料库权限,用于播放媒体服务";
  5031. INFOPLIST_KEY_NSCameraUsageDescription = "APP需要您的同意,访问您的相机,以便您正常使用上传图片、视频课程等服务";
  5032. INFOPLIST_KEY_NSMicrophoneUsageDescription = "App需要您的同意访问麦克风权限,用于您的语音服务、视频教学";
  5033. INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  5034. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  5035. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  5036. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  5037. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  5038. INFOPLIST_KEY_UIRequiresFullScreen = YES;
  5039. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  5040. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  5041. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  5042. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  5043. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  5044. LD_RUNPATH_SEARCH_PATHS = (
  5045. "$(inherited)",
  5046. "@executable_path/Frameworks",
  5047. );
  5048. MARKETING_VERSION = 1.0.0;
  5049. PRODUCT_BUNDLE_IDENTIFIER = com.Colexiu.KulexiuForStudent;
  5050. PRODUCT_NAME = "$(TARGET_NAME)";
  5051. SWIFT_EMIT_LOC_STRINGS = YES;
  5052. TARGETED_DEVICE_FAMILY = "1,2";
  5053. };
  5054. name = Debug;
  5055. };
  5056. 275E8AD627E18F8C00DD3F6E /* Release */ = {
  5057. isa = XCBuildConfiguration;
  5058. baseConfigurationReference = 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */;
  5059. buildSettings = {
  5060. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  5061. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  5062. CODE_SIGN_STYLE = Automatic;
  5063. CURRENT_PROJECT_VERSION = 1.0.0;
  5064. DEVELOPMENT_TEAM = B2AP53HHTU;
  5065. ENABLE_BITCODE = NO;
  5066. GCC_PREFIX_HEADER = "$(SRCROOT)/KulexiuForStudent/Common/Define/PrefixHeader.pch";
  5067. GENERATE_INFOPLIST_FILE = YES;
  5068. INFOPLIST_FILE = KulexiuForStudent/Info.plist;
  5069. INFOPLIST_KEY_CFBundleDisplayName = "酷乐秀学生端";
  5070. INFOPLIST_KEY_NSAppleMusicUsageDescription = "App需要您的同意访问媒体资料库权限,用于播放媒体服务";
  5071. INFOPLIST_KEY_NSCameraUsageDescription = "APP需要您的同意,访问您的相机,以便您正常使用上传图片、视频课程等服务";
  5072. INFOPLIST_KEY_NSMicrophoneUsageDescription = "App需要您的同意访问麦克风权限,用于您的语音服务、视频教学";
  5073. INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  5074. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  5075. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  5076. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  5077. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  5078. INFOPLIST_KEY_UIRequiresFullScreen = YES;
  5079. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  5080. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  5081. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  5082. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  5083. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  5084. LD_RUNPATH_SEARCH_PATHS = (
  5085. "$(inherited)",
  5086. "@executable_path/Frameworks",
  5087. );
  5088. MARKETING_VERSION = 1.0.0;
  5089. PRODUCT_BUNDLE_IDENTIFIER = com.Colexiu.KulexiuForStudent;
  5090. PRODUCT_NAME = "$(TARGET_NAME)";
  5091. SWIFT_EMIT_LOC_STRINGS = YES;
  5092. TARGETED_DEVICE_FAMILY = "1,2";
  5093. };
  5094. name = Release;
  5095. };
  5096. 275E8AD827E18F8C00DD3F6E /* Debug */ = {
  5097. isa = XCBuildConfiguration;
  5098. baseConfigurationReference = 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */;
  5099. buildSettings = {
  5100. BUNDLE_LOADER = "$(TEST_HOST)";
  5101. CODE_SIGN_STYLE = Automatic;
  5102. CURRENT_PROJECT_VERSION = 1;
  5103. DEVELOPMENT_TEAM = P664H7S5LL;
  5104. GENERATE_INFOPLIST_FILE = YES;
  5105. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  5106. MARKETING_VERSION = 1.0;
  5107. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentTests;
  5108. PRODUCT_NAME = "$(TARGET_NAME)";
  5109. SWIFT_EMIT_LOC_STRINGS = NO;
  5110. TARGETED_DEVICE_FAMILY = "1,2";
  5111. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KulexiuForStudent.app/KulexiuForStudent";
  5112. };
  5113. name = Debug;
  5114. };
  5115. 275E8AD927E18F8C00DD3F6E /* Release */ = {
  5116. isa = XCBuildConfiguration;
  5117. baseConfigurationReference = ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */;
  5118. buildSettings = {
  5119. BUNDLE_LOADER = "$(TEST_HOST)";
  5120. CODE_SIGN_STYLE = Automatic;
  5121. CURRENT_PROJECT_VERSION = 1;
  5122. DEVELOPMENT_TEAM = P664H7S5LL;
  5123. GENERATE_INFOPLIST_FILE = YES;
  5124. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  5125. MARKETING_VERSION = 1.0;
  5126. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentTests;
  5127. PRODUCT_NAME = "$(TARGET_NAME)";
  5128. SWIFT_EMIT_LOC_STRINGS = NO;
  5129. TARGETED_DEVICE_FAMILY = "1,2";
  5130. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KulexiuForStudent.app/KulexiuForStudent";
  5131. };
  5132. name = Release;
  5133. };
  5134. 275E8ADB27E18F8C00DD3F6E /* Debug */ = {
  5135. isa = XCBuildConfiguration;
  5136. baseConfigurationReference = 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */;
  5137. buildSettings = {
  5138. CODE_SIGN_STYLE = Automatic;
  5139. CURRENT_PROJECT_VERSION = 1;
  5140. DEVELOPMENT_TEAM = P664H7S5LL;
  5141. GENERATE_INFOPLIST_FILE = YES;
  5142. MARKETING_VERSION = 1.0;
  5143. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentUITests;
  5144. PRODUCT_NAME = "$(TARGET_NAME)";
  5145. SWIFT_EMIT_LOC_STRINGS = NO;
  5146. TARGETED_DEVICE_FAMILY = "1,2";
  5147. TEST_TARGET_NAME = KulexiuForStudent;
  5148. };
  5149. name = Debug;
  5150. };
  5151. 275E8ADC27E18F8C00DD3F6E /* Release */ = {
  5152. isa = XCBuildConfiguration;
  5153. baseConfigurationReference = D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */;
  5154. buildSettings = {
  5155. CODE_SIGN_STYLE = Automatic;
  5156. CURRENT_PROJECT_VERSION = 1;
  5157. DEVELOPMENT_TEAM = P664H7S5LL;
  5158. GENERATE_INFOPLIST_FILE = YES;
  5159. MARKETING_VERSION = 1.0;
  5160. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentUITests;
  5161. PRODUCT_NAME = "$(TARGET_NAME)";
  5162. SWIFT_EMIT_LOC_STRINGS = NO;
  5163. TARGETED_DEVICE_FAMILY = "1,2";
  5164. TEST_TARGET_NAME = KulexiuForStudent;
  5165. };
  5166. name = Release;
  5167. };
  5168. /* End XCBuildConfiguration section */
  5169. /* Begin XCConfigurationList section */
  5170. 275E8AA027E18F8800DD3F6E /* Build configuration list for PBXProject "KulexiuForStudent" */ = {
  5171. isa = XCConfigurationList;
  5172. buildConfigurations = (
  5173. 275E8AD227E18F8C00DD3F6E /* Debug */,
  5174. 275E8AD327E18F8C00DD3F6E /* Release */,
  5175. );
  5176. defaultConfigurationIsVisible = 0;
  5177. defaultConfigurationName = Release;
  5178. };
  5179. 275E8AD427E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudent" */ = {
  5180. isa = XCConfigurationList;
  5181. buildConfigurations = (
  5182. 275E8AD527E18F8C00DD3F6E /* Debug */,
  5183. 275E8AD627E18F8C00DD3F6E /* Release */,
  5184. );
  5185. defaultConfigurationIsVisible = 0;
  5186. defaultConfigurationName = Release;
  5187. };
  5188. 275E8AD727E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentTests" */ = {
  5189. isa = XCConfigurationList;
  5190. buildConfigurations = (
  5191. 275E8AD827E18F8C00DD3F6E /* Debug */,
  5192. 275E8AD927E18F8C00DD3F6E /* Release */,
  5193. );
  5194. defaultConfigurationIsVisible = 0;
  5195. defaultConfigurationName = Release;
  5196. };
  5197. 275E8ADA27E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentUITests" */ = {
  5198. isa = XCConfigurationList;
  5199. buildConfigurations = (
  5200. 275E8ADB27E18F8C00DD3F6E /* Debug */,
  5201. 275E8ADC27E18F8C00DD3F6E /* Release */,
  5202. );
  5203. defaultConfigurationIsVisible = 0;
  5204. defaultConfigurationName = Release;
  5205. };
  5206. /* End XCConfigurationList section */
  5207. };
  5208. rootObject = 275E8A9D27E18F8800DD3F6E /* Project object */;
  5209. }