project.pbxproj 270 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 51;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2729F7C724C6C87400E1F3C4 /* OpenFileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7C624C6C87400E1F3C4 /* OpenFileViewController.m */; };
  10. 2729F7CA24C6EB4A00E1F3C4 /* SubjectNameModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7C924C6EB4A00E1F3C4 /* SubjectNameModel.m */; };
  11. 2729F7CD24C6F3F300E1F3C4 /* SongListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7CC24C6F3F300E1F3C4 /* SongListModel.m */; };
  12. 27476F4824BBFB5900181362 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F4724BBFB5900181362 /* AppDelegate.m */; };
  13. 27476F4E24BBFB5900181362 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F4D24BBFB5900181362 /* ViewController.m */; };
  14. 27476F5124BBFB5900181362 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 27476F4F24BBFB5900181362 /* Main.storyboard */; };
  15. 27476F5324BBFB5C00181362 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 27476F5224BBFB5C00181362 /* Assets.xcassets */; };
  16. 27476F5624BBFB5C00181362 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 27476F5424BBFB5C00181362 /* LaunchScreen.storyboard */; };
  17. 27476F5924BBFB5C00181362 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F5824BBFB5C00181362 /* main.m */; };
  18. 27476F6324BBFB5C00181362 /* MusicGradeExamTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F6224BBFB5C00181362 /* MusicGradeExamTests.m */; };
  19. 27476F6E24BBFB5C00181362 /* MusicGradeExamUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F6D24BBFB5C00181362 /* MusicGradeExamUITests.m */; };
  20. 2747718724BC0C0500181362 /* JYEqualCellSpaceFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F7C24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.m */; };
  21. 2747718824BC0C0500181362 /* DZNSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F7D24BC0BFF00181362 /* DZNSegmentedControl.m */; };
  22. 2747718924BC0C0500181362 /* WMPlayerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8124BC0BFF00181362 /* WMPlayerModel.m */; };
  23. 2747718A24BC0C0500181362 /* WMPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 27476F8324BC0BFF00181362 /* WMPlayer.bundle */; };
  24. 2747718B24BC0C0500181362 /* WMLightView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8624BC0BFF00181362 /* WMLightView.m */; };
  25. 2747718C24BC0C0500181362 /* FastForwardView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8724BC0BFF00181362 /* FastForwardView.m */; };
  26. 2747718D24BC0C0500181362 /* WMPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8824BC0BFF00181362 /* WMPlayer.m */; };
  27. 2747718E24BC0C0500181362 /* UIView+ShowProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8924BC0BFF00181362 /* UIView+ShowProgress.m */; };
  28. 2747718F24BC0C0500181362 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8E24BC0BFF00181362 /* TZImageCropManager.m */; };
  29. 2747719024BC0C0500181362 /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9024BC0BFF00181362 /* TZAssetCell.m */; };
  30. 2747719124BC0C0500181362 /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9124BC0BFF00181362 /* TZVideoPlayerController.m */; };
  31. 2747719224BC0C0500181362 /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9224BC0BFF00181362 /* TZAssetModel.m */; };
  32. 2747719324BC0C0500181362 /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9324BC0BFF00181362 /* NSBundle+TZImagePicker.m */; };
  33. 2747719424BC0C0500181362 /* UIView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9624BC0BFF00181362 /* UIView+Layout.m */; };
  34. 2747719524BC0C0500181362 /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9724BC0BFF00181362 /* TZPhotoPreviewController.m */; };
  35. 2747719624BC0C0500181362 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 27476F9824BC0BFF00181362 /* TZImagePickerController.bundle */; };
  36. 2747719724BC0C0500181362 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9924BC0BFF00181362 /* TZProgressView.m */; };
  37. 2747719824BC0C0500181362 /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9D24BC0BFF00181362 /* TZImageManager.m */; };
  38. 2747719924BC0C0500181362 /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9F24BC0BFF00181362 /* TZPhotoPickerController.m */; };
  39. 2747719A24BC0C0500181362 /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA024BC0BFF00181362 /* TZPhotoPreviewCell.m */; };
  40. 2747719B24BC0C0500181362 /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA624BC0BFF00181362 /* TZImagePickerController.m */; };
  41. 2747719C24BC0C0500181362 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA724BC0BFF00181362 /* TZLocationManager.m */; };
  42. 2747719D24BC0C0500181362 /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA824BC0BFF00181362 /* TZGifPhotoPreviewController.m */; };
  43. 2747719E24BC0C0500181362 /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA924BC0BFF00181362 /* TZImageRequestOperation.m */; };
  44. 2747719F24BC0C0500181362 /* SCIndexViewConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FAC24BC0BFF00181362 /* SCIndexViewConfiguration.m */; };
  45. 274771A024BC0C0500181362 /* SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FAE24BC0BFF00181362 /* SCIndexView.m */; };
  46. 274771A124BC0C0500181362 /* UITableView+SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FB024BC0BFF00181362 /* UITableView+SCIndexView.m */; };
  47. 274771A224BC0C0500181362 /* MSSBrowseLoadingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FB524BC0BFF00181362 /* MSSBrowseLoadingImageView.m */; };
  48. 274771A324BC0C0500181362 /* MSSBrowseLocalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FBB24BC0BFF00181362 /* MSSBrowseLocalViewController.m */; };
  49. 274771A424BC0C0500181362 /* MSSBrowseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FBC24BC0BFF00181362 /* MSSBrowseCollectionViewCell.m */; };
  50. 274771A524BC0C0500181362 /* MSSBrowseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FBE24BC0BFF00181362 /* MSSBrowseModel.m */; };
  51. 274771A624BC0C0500181362 /* MSSBrowseActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC024BC0BFF00181362 /* MSSBrowseActionSheet.m */; };
  52. 274771A724BC0C0500181362 /* MSSBrowseNetworkViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC124BC0BFF00181362 /* MSSBrowseNetworkViewController.m */; };
  53. 274771A824BC0C0500181362 /* UIImage+MSSScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC224BC0BFF00181362 /* UIImage+MSSScale.m */; };
  54. 274771A924BC0C0500181362 /* MSSBrowseBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC324BC0BFF00181362 /* MSSBrowseBaseViewController.m */; };
  55. 274771AA24BC0C0500181362 /* MSSBrowseZoomScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC524BC0BFF00181362 /* MSSBrowseZoomScrollView.m */; };
  56. 274771AB24BC0C0500181362 /* MSSBrowseRemindView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC624BC0BFF00181362 /* MSSBrowseRemindView.m */; };
  57. 274771AC24BC0C0500181362 /* mss_browseLoading@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27476FC724BC0BFF00181362 /* mss_browseLoading@3x.png */; };
  58. 274771AD24BC0C0500181362 /* MSSBrowseActionSheetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FCA24BC0BFF00181362 /* MSSBrowseActionSheetCell.m */; };
  59. 274771AE24BC0C0500181362 /* mss_browseLoading@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27476FCC24BC0BFF00181362 /* mss_browseLoading@2x.png */; };
  60. 274771AF24BC0C0500181362 /* UIView+MSSLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FCD24BC0BFF00181362 /* UIView+MSSLayout.m */; };
  61. 274771B024BC0C0500181362 /* UIView+Animation.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FCE24BC0BFF00181362 /* UIView+Animation.m */; };
  62. 274771B124BC0C0500181362 /* ZKCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FD224BC0BFF00181362 /* ZKCycleScrollView.m */; };
  63. 274771B224BC0C0500181362 /* ZKCycleScrollViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FD424BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.m */; };
  64. 274771B324BC0C0500181362 /* TYPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FD924BC0BFF00181362 /* TYPageControl.m */; };
  65. 274771B424BC0C0500181362 /* TYCyclePagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FDA24BC0BFF00181362 /* TYCyclePagerView.m */; };
  66. 274771B524BC0C0500181362 /* TYCyclePagerTransformLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FDB24BC0BFF00181362 /* TYCyclePagerTransformLayout.m */; };
  67. 274771B624BC0C0500181362 /* KSPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FDE24BC0BFF00181362 /* KSPickerView.m */; };
  68. 274771B724BC0C0500181362 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE024BC0BFF00181362 /* NSObject+ReadDocument.m */; };
  69. 274771B824BC0C0500181362 /* ALCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE224BC0BFF00181362 /* ALCalendarCell.m */; };
  70. 274771B924BC0C0500181362 /* ALCalendarConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE324BC0BFF00181362 /* ALCalendarConfig.m */; };
  71. 274771BA24BC0C0500181362 /* ALCalendarHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE424BC0BFF00181362 /* ALCalendarHeader.m */; };
  72. 274771BB24BC0C0500181362 /* ALCalendarDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE524BC0BFF00181362 /* ALCalendarDate.m */; };
  73. 274771BC24BC0C0500181362 /* ALCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE624BC0BFF00181362 /* ALCalendarCollectionView.m */; };
  74. 274771BD24BC0C0500181362 /* ALCalendarHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE724BC0BFF00181362 /* ALCalendarHelper.m */; };
  75. 274771BE24BC0C0500181362 /* ALCalendarPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FF124BC0BFF00181362 /* ALCalendarPicker.m */; };
  76. 274771BF24BC0C0500181362 /* UIView+ALFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FF224BC0BFF00181362 /* UIView+ALFrame.m */; };
  77. 274771C024BC0C0500181362 /* ALCalendarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FF324BC0BFF00181362 /* ALCalendarManager.m */; };
  78. 274771C224BC0C0500181362 /* KSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FFC24BC0C0000181362 /* KSBaseViewController.m */; };
  79. 274771C324BC0C0500181362 /* KSBaseWKWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FFE24BC0C0000181362 /* KSBaseWKWebViewController.m */; };
  80. 274771C424BC0C0500181362 /* CustomNavViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FFF24BC0C0000181362 /* CustomNavViewController.m */; };
  81. 274771C524BC0C0500181362 /* UINavigationController+KSNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747700024BC0C0000181362 /* UINavigationController+KSNavigationBar.m */; };
  82. 274771C624BC0C0500181362 /* KSTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747700124BC0C0000181362 /* KSTabBarController.m */; };
  83. 274771C724BC0C0500181362 /* KSRequestManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747700224BC0C0000181362 /* KSRequestManager.m */; };
  84. 274771C824BC0C0500181362 /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747700624BC0C0100181362 /* HomeViewController.m */; };
  85. 274771C924BC0C0500181362 /* ClassroomViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747701024BC0C0100181362 /* ClassroomViewController.m */; };
  86. 274771CA24BC0C0500181362 /* RoomLoginHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747701424BC0C0100181362 /* RoomLoginHelper.m */; };
  87. 274771CB24BC0C0500181362 /* RTCService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747701924BC0C0100181362 /* RTCService.m */; };
  88. 274771CC24BC0C0500181362 /* UIView+MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747702024BC0C0100181362 /* UIView+MBProgressHUD.m */; };
  89. 274771CD24BC0C0500181362 /* RolePortraitView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747702224BC0C0100181362 /* RolePortraitView.m */; };
  90. 274771CE24BC0C0500181362 /* HTTPUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747702624BC0C0100181362 /* HTTPUtility.m */; };
  91. 274771CF24BC0C0500181362 /* HTTPResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747702724BC0C0100181362 /* HTTPResult.m */; };
  92. 274771D124BC0C0500181362 /* ApplySpeechMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703224BC0C0100181362 /* ApplySpeechMessage.m */; };
  93. 274771D224BC0C0500181362 /* DisplayCommandMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703424BC0C0100181362 /* DisplayCommandMessage.m */; };
  94. 274771D324BC0C0500181362 /* ControlDeviceNotifyMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703724BC0C0100181362 /* ControlDeviceNotifyMessage.m */; };
  95. 274771D424BC0C0500181362 /* TicketExpiredMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703824BC0C0100181362 /* TicketExpiredMessage.m */; };
  96. 274771D524BC0C0500181362 /* WhiteboardMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703B24BC0C0100181362 /* WhiteboardMessage.m */; };
  97. 274771D624BC0C0500181362 /* AssistantTransferMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703C24BC0C0100181362 /* AssistantTransferMessage.m */; };
  98. 274771D724BC0C0500181362 /* RoleChangedMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703D24BC0C0100181362 /* RoleChangedMessage.m */; };
  99. 274771D824BC0C0500181362 /* InviteUpgradeMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703E24BC0C0100181362 /* InviteUpgradeMessage.m */; };
  100. 274771D924BC0C0500181362 /* DeviceMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704024BC0C0100181362 /* DeviceMessage.m */; };
  101. 274771DA24BC0C0500181362 /* MemberChangeMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704124BC0C0100181362 /* MemberChangeMessage.m */; };
  102. 274771DB24BC0C0500181362 /* ApplySpeechResultMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704324BC0C0100181362 /* ApplySpeechResultMessage.m */; };
  103. 274771DC24BC0C0500181362 /* TurnPageMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704624BC0C0100181362 /* TurnPageMessage.m */; };
  104. 274771DD24BC0C0500181362 /* NodePlayMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704724BC0C0100181362 /* NodePlayMessage.m */; };
  105. 274771DE24BC0C0500181362 /* Whiteboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704A24BC0C0100181362 /* Whiteboard.m */; };
  106. 274771DF24BC0C0500181362 /* RoomMember.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704B24BC0C0100181362 /* RoomMember.m */; };
  107. 274771E024BC0C0500181362 /* Classroom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704C24BC0C0100181362 /* Classroom.m */; };
  108. 274771E124BC0C0500181362 /* ClassroomService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747705124BC0C0100181362 /* ClassroomService.m */; };
  109. 274771E224BC0C0500181362 /* KSRemoteUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747705224BC0C0100181362 /* KSRemoteUserManager.m */; };
  110. 274771E324BC0C0500181362 /* KSIMService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747705524BC0C0100181362 /* KSIMService.m */; };
  111. 274771E424BC0C0500181362 /* NotifyMessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747705D24BC0C0100181362 /* NotifyMessageViewController.m */; };
  112. 274771E524BC0C0500181362 /* FirstSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706424BC0C0100181362 /* FirstSettingViewController.m */; };
  113. 274771E624BC0C0500181362 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706524BC0C0100181362 /* LoginViewController.m */; };
  114. 274771E724BC0C0500181362 /* RegisterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706624BC0C0100181362 /* RegisterViewController.m */; };
  115. 274771E824BC0C0500181362 /* VefiLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706724BC0C0100181362 /* VefiLoginViewController.m */; };
  116. 274771E924BC0C0500181362 /* ModifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706824BC0C0100181362 /* ModifyViewController.m */; };
  117. 274771EB24BC0C0500181362 /* UserInfoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706F24BC0C0100181362 /* UserInfoManager.m */; };
  118. 274771EC24BC0C0500181362 /* LoginBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707224BC0C0100181362 /* LoginBodyView.m */; };
  119. 274771ED24BC0C0500181362 /* LoginBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2747707324BC0C0100181362 /* LoginBodyView.xib */; };
  120. 274771EE24BC0C0500181362 /* OnlineRoomManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707624BC0C0200181362 /* OnlineRoomManager.m */; };
  121. 274771EF24BC0C0500181362 /* KSRCIMDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707A24BC0C0200181362 /* KSRCIMDataSource.m */; };
  122. 274771F024BC0C0500181362 /* RCConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707C24BC0C0200181362 /* RCConnectionManager.m */; };
  123. 274771F124BC0C0500181362 /* KSUpdateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707D24BC0C0200181362 /* KSUpdateManager.m */; };
  124. 274771F224BC0C0500181362 /* KSNetworking+RequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708424BC0C0300181362 /* KSNetworking+RequestOperation.m */; };
  125. 274771F324BC0C0500181362 /* KSNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708524BC0C0300181362 /* KSNetworking.m */; };
  126. 274771F424BC0C0500181362 /* KSLRUManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708B24BC0C0300181362 /* KSLRUManager.m */; };
  127. 274771F524BC0C0500181362 /* KSMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708C24BC0C0300181362 /* KSMemoryCache.m */; };
  128. 274771F624BC0C0500181362 /* KSDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708D24BC0C0300181362 /* KSDiskCache.m */; };
  129. 274771F724BC0C0500181362 /* KSCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708E24BC0C0300181362 /* KSCacheManager.m */; };
  130. 274771F824BC0C0500181362 /* NSDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709424BC0C0300181362 /* NSDictionary+KSSafe.m */; };
  131. 274771F924BC0C0500181362 /* NSMutableDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709624BC0C0300181362 /* NSMutableDictionary+KSSafe.m */; };
  132. 274771FA24BC0C0500181362 /* NSArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709824BC0C0300181362 /* NSArray+KSSafe.m */; };
  133. 274771FB24BC0C0500181362 /* NSMutableArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709924BC0C0300181362 /* NSMutableArray+KSSafe.m */; };
  134. 274771FC24BC0C0500181362 /* NSObject+KSSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709B24BC0C0300181362 /* NSObject+KSSwizzling.m */; };
  135. 274771FD24BC0C0500181362 /* NSObject+KSImpChangeTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709C24BC0C0300181362 /* NSObject+KSImpChangeTool.m */; };
  136. 274771FE24BC0C0500181362 /* NSMutableString+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709F24BC0C0300181362 /* NSMutableString+KSSafe.m */; };
  137. 274771FF24BC0C0500181362 /* NSObject+AssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A224BC0C0300181362 /* NSObject+AssociatedObject.m */; };
  138. 2747720024BC0C0500181362 /* UIControl+ButtonAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A424BC0C0300181362 /* UIControl+ButtonAction.m */; };
  139. 2747720124BC0C0500181362 /* UIDevice+zhDeviceType.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A524BC0C0300181362 /* UIDevice+zhDeviceType.m */; };
  140. 2747720224BC0C0500181362 /* NSString+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A624BC0C0300181362 /* NSString+zh_SafeAccess.m */; };
  141. 2747720324BC0C0500181362 /* UIViewController+zhStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A824BC0C0300181362 /* UIViewController+zhStatusBarStyle.m */; };
  142. 2747720424BC0C0500181362 /* UITextView+ZWPlaceHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A924BC0C0300181362 /* UITextView+ZWPlaceHolder.m */; };
  143. 2747720524BC0C0500181362 /* CALayer+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770AB24BC0C0300181362 /* CALayer+Color.m */; };
  144. 2747720624BC0C0500181362 /* NSMutableAttributedString+CZHExtention.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770AD24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.m */; };
  145. 2747720724BC0C0500181362 /* UITextView+ZWLimitCounter.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770AF24BC0C0300181362 /* UITextView+ZWLimitCounter.m */; };
  146. 2747720824BC0C0500181362 /* UILabel+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770B024BC0C0300181362 /* UILabel+Extension.m */; };
  147. 2747720924BC0C0500181362 /* UIAlertController+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770B524BC0C0300181362 /* UIAlertController+Extend.m */; };
  148. 2747720A24BC0C0500181362 /* UIColor+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770B924BC0C0300181362 /* UIColor+Extend.m */; };
  149. 2747720B24BC0C0500181362 /* UIView+Dealloc.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BA24BC0C0300181362 /* UIView+Dealloc.m */; };
  150. 2747720C24BC0C0500181362 /* NSObject+Parse.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BB24BC0C0300181362 /* NSObject+Parse.m */; };
  151. 2747720D24BC0C0500181362 /* UIView+AddConstraints.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BC24BC0C0300181362 /* UIView+AddConstraints.m */; };
  152. 2747720E24BC0C0500181362 /* NSString+CZHSizeExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BD24BC0C0300181362 /* NSString+CZHSizeExtension.m */; };
  153. 2747720F24BC0C0500181362 /* NSDictionary+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BF24BC0C0300181362 /* NSDictionary+Extension.m */; };
  154. 2747721024BC0C0500181362 /* UIView+Hints.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770C424BC0C0300181362 /* UIView+Hints.m */; };
  155. 2747721124BC0C0500181362 /* NSArray+ks_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770C624BC0C0300181362 /* NSArray+ks_SafeAccess.m */; };
  156. 2747721224BC0C0500181362 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770C824BC0C0300181362 /* NSDate+Extension.m */; };
  157. 2747721324BC0C0500181362 /* NSString+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770CA24BC0C0300181362 /* NSString+Extension.m */; };
  158. 2747721424BC0C0500181362 /* NSDate+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770CB24BC0C0300181362 /* NSDate+Transform.m */; };
  159. 2747721524BC0C0500181362 /* UIScreen+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770CE24BC0C0300181362 /* UIScreen+Extend.m */; };
  160. 2747721624BC0C0500181362 /* CALayer+KSLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770CF24BC0C0300181362 /* CALayer+KSLayout.m */; };
  161. 2747721724BC0C0500181362 /* UIImageView+CornerRadius.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770D124BC0C0300181362 /* UIImageView+CornerRadius.m */; };
  162. 2747721824BC0C0500181362 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770D224BC0C0300181362 /* NSObject+ReadDocument.m */; };
  163. 2747721924BC0C0500181362 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770D324BC0C0300181362 /* UIImage+Color.m */; };
  164. 2747721A24BC0C0500181362 /* UIImage+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770D924BC0C0400181362 /* UIImage+Addtions.m */; };
  165. 2747721B24BC0C0500181362 /* UIView+XIBView.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DA24BC0C0400181362 /* UIView+XIBView.m */; };
  166. 2747721C24BC0C0500181362 /* UrlDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DB24BC0C0400181362 /* UrlDecode.m */; };
  167. 2747721D24BC0C0500181362 /* UIButton+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DC24BC0C0400181362 /* UIButton+Property.m */; };
  168. 2747721E24BC0C0500181362 /* UIDevice+TFDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DD24BC0C0400181362 /* UIDevice+TFDevice.m */; };
  169. 2747721F24BC0C0500181362 /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DE24BC0C0400181362 /* UIColor+Hex.m */; };
  170. 2747722024BC0C0500181362 /* UIImage+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E024BC0C0400181362 /* UIImage+Property.m */; };
  171. 2747722124BC0C0500181362 /* UIImage+ResizeImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E124BC0C0400181362 /* UIImage+ResizeImage.m */; };
  172. 2747722224BC0C0500181362 /* UIButton+HasChooseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E324BC0C0400181362 /* UIButton+HasChooseImage.m */; };
  173. 2747722324BC0C0500181362 /* NSObject+AutoProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E424BC0C0400181362 /* NSObject+AutoProperty.m */; };
  174. 2747722424BC0C0500181362 /* UIImage+UIImageScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E524BC0C0400181362 /* UIImage+UIImageScale.m */; };
  175. 2747722524BC0C0500181362 /* UIButton+EnlargeEdge.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770EF24BC0C0400181362 /* UIButton+EnlargeEdge.m */; };
  176. 2747722624BC0C0500181362 /* MBProgressHUD+KSShow.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770F324BC0C0400181362 /* MBProgressHUD+KSShow.m */; };
  177. 2747722724BC0C0500181362 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770F424BC0C0400181362 /* UIImage+Resize.m */; };
  178. 2747722824BC0C0500181362 /* GRCreateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770F624BC0C0400181362 /* GRCreateManager.m */; };
  179. 2747722924BC0C0500181362 /* KSChoosePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770F824BC0C0400181362 /* KSChoosePicker.m */; };
  180. 2747722A24BC0C0500181362 /* KSHoldButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770FC24BC0C0400181362 /* KSHoldButton.m */; };
  181. 2747722B24BC0C0500181362 /* KSAudioRecordFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770FE24BC0C0400181362 /* KSAudioRecordFileManager.m */; };
  182. 2747722C24BC0C0500181362 /* UIView+KSAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770FF24BC0C0400181362 /* UIView+KSAdditions.m */; };
  183. 2747722D24BC0C0500181362 /* KSRecordStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710024BC0C0400181362 /* KSRecordStatusView.m */; };
  184. 2747722E24BC0C0500181362 /* KSAudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710124BC0C0400181362 /* KSAudioRecordManager.m */; };
  185. 2747722F24BC0C0500181362 /* KSRecordPowerAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710424BC0C0400181362 /* KSRecordPowerAnimationView.m */; };
  186. 2747723024BC0C0500181362 /* KSFullDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710724BC0C0400181362 /* KSFullDatePicker.m */; };
  187. 2747723124BC0C0500181362 /* KSMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710924BC0C0400181362 /* KSMediaManager.m */; };
  188. 2747723224BC0C0500181362 /* JXPagerListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710E24BC0C0400181362 /* JXPagerListContainerView.m */; };
  189. 2747723324BC0C0500181362 /* JXPagerMainTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710F24BC0C0400181362 /* JXPagerMainTableView.m */; };
  190. 2747723424BC0C0500181362 /* JXPagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711024BC0C0400181362 /* JXPagerView.m */; };
  191. 2747723524BC0C0500181362 /* JXPagerListRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711524BC0C0400181362 /* JXPagerListRefreshView.m */; };
  192. 2747723624BC0C0500181362 /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711C24BC0C0400181362 /* JXCategoryIndicatorLineView.m */; };
  193. 2747723724BC0C0500181362 /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711D24BC0C0400181362 /* JXCategoryIndicatorTriangleView.m */; };
  194. 2747723824BC0C0500181362 /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711F24BC0C0400181362 /* JXCategoryIndicatorImageView.m */; };
  195. 2747723924BC0C0500181362 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712024BC0C0400181362 /* JXCategoryIndicatorBallView.m */; };
  196. 2747723A24BC0C0500181362 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712124BC0C0400181362 /* JXCategoryIndicatorComponentView.m */; };
  197. 2747723B24BC0C0500181362 /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712624BC0C0400181362 /* JXCategoryIndicatorBackgroundView.m */; };
  198. 2747723C24BC0C0500181362 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712824BC0C0400181362 /* JXCategoryIndicatorCellModel.m */; };
  199. 2747723D24BC0C0500181362 /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712924BC0C0400181362 /* JXCategoryIndicatorCell.m */; };
  200. 2747723E24BC0C0500181362 /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712A24BC0C0400181362 /* JXCategoryIndicatorView.m */; };
  201. 2747723F24BC0C0500181362 /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712C24BC0C0400181362 /* JXCategoryDotCell.m */; };
  202. 2747724024BC0C0500181362 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712E24BC0C0400181362 /* JXCategoryDotView.m */; };
  203. 2747724124BC0C0500181362 /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713124BC0C0400181362 /* JXCategoryDotCellModel.m */; };
  204. 2747724224BC0C0500181362 /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713324BC0C0400181362 /* JXCategoryTitleImageView.m */; };
  205. 2747724324BC0C0500181362 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713424BC0C0400181362 /* JXCategoryTitleImageCell.m */; };
  206. 2747724424BC0C0500181362 /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713724BC0C0400181362 /* JXCategoryTitleImageCellModel.m */; };
  207. 2747724524BC0C0500181362 /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713D24BC0C0400181362 /* JXCategoryTitleCellModel.m */; };
  208. 2747724624BC0C0500181362 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713E24BC0C0400181362 /* JXCategoryTitleCell.m */; };
  209. 2747724724BC0C0500181362 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713F24BC0C0400181362 /* JXCategoryTitleView.m */; };
  210. 2747724824BC0C0500181362 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714224BC0C0400181362 /* JXCategoryImageView.m */; };
  211. 2747724924BC0C0500181362 /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714324BC0C0400181362 /* JXCategoryImageCell.m */; };
  212. 2747724A24BC0C0500181362 /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714724BC0C0400181362 /* JXCategoryImageCellModel.m */; };
  213. 2747724B24BC0C0500181362 /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714A24BC0C0400181362 /* JXCategoryNumberView.m */; };
  214. 2747724C24BC0C0500181362 /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714B24BC0C0400181362 /* JXCategoryNumberCell.m */; };
  215. 2747724D24BC0C0500181362 /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714C24BC0C0400181362 /* JXCategoryNumberCellModel.m */; };
  216. 2747724E24BC0C0500181362 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715324BC0C0400181362 /* JXCategoryFactory.m */; };
  217. 2747724F24BC0C0500181362 /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715524BC0C0400181362 /* JXCategoryCollectionView.m */; };
  218. 2747725024BC0C0500181362 /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715624BC0C0400181362 /* UIColor+JXAdd.m */; };
  219. 2747725124BC0C0500181362 /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715C24BC0C0400181362 /* JXCategoryBaseView.m */; };
  220. 2747725224BC0C0500181362 /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715D24BC0C0400181362 /* JXCategoryBaseCell.m */; };
  221. 2747725324BC0C0500181362 /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715E24BC0C0400181362 /* JXCategoryBaseCellModel.m */; };
  222. 2747725424BC0C0500181362 /* MBProgressHUD+NJ.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715F24BC0C0400181362 /* MBProgressHUD+NJ.m */; };
  223. 2747725524BC0C0500181362 /* UITextField_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716124BC0C0400181362 /* UITextField_Toolbar.m */; };
  224. 2747725624BC0C0500181362 /* SkipTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716224BC0C0400181362 /* SkipTextField.m */; };
  225. 2747725724BC0C0500181362 /* UITextView_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716524BC0C0400181362 /* UITextView_Toolbar.m */; };
  226. 2747725824BC0C0500181362 /* SkipTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716824BC0C0400181362 /* SkipTextView.m */; };
  227. 2747725924BC0C0500181362 /* GRScanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716D24BC0C0400181362 /* GRScanManager.m */; };
  228. 2747725A24BC0C0500181362 /* NSString+phone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717024BC0C0400181362 /* NSString+phone.m */; };
  229. 2747725B24BC0C0500181362 /* KSImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717224BC0C0400181362 /* KSImageButton.m */; };
  230. 2747725C24BC0C0500181362 /* NSString+MD5.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717524BC0C0400181362 /* NSString+MD5.m */; };
  231. 2747725D24BC0C0500181362 /* KSMessageInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717624BC0C0400181362 /* KSMessageInputView.m */; };
  232. 2747725E24BC0C0500181362 /* KSInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717724BC0C0400181362 /* KSInputView.m */; };
  233. 2747725F24BC0C0500181362 /* StateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717824BC0C0400181362 /* StateView.m */; };
  234. 2747726024BC0C0500181362 /* NSDate+KSBaseDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717924BC0C0400181362 /* NSDate+KSBaseDatePicker.m */; };
  235. 2747726124BC0C0500181362 /* LLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717B24BC0C0400181362 /* LLPhotoBrowser.m */; };
  236. 2747726224BC0C0500181362 /* LLImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717E24BC0C0400181362 /* LLImageCache.m */; };
  237. 2747726324BC0C0500181362 /* LLFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717F24BC0C0400181362 /* LLFileManager.m */; };
  238. 2747726424BC0C0500181362 /* LLPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747718224BC0C0400181362 /* LLPhoto.m */; };
  239. 2747726524BC0C0500181362 /* LLCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747718324BC0C0400181362 /* LLCollectionViewCell.m */; };
  240. 2747727824BC0C7C00181362 /* RongSight.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726824BC0C7C00181362 /* RongSight.framework */; };
  241. 2747727924BC0C7C00181362 /* RongRTCLib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726924BC0C7C00181362 /* RongRTCLib.framework */; };
  242. 2747727A24BC0C7C00181362 /* RongIMLib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726B24BC0C7C00181362 /* RongIMLib.framework */; };
  243. 2747727B24BC0C7C00181362 /* libopencore-amrwb.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726C24BC0C7C00181362 /* libopencore-amrwb.a */; };
  244. 2747727C24BC0C7C00181362 /* libopencore-amrnb.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726D24BC0C7C00181362 /* libopencore-amrnb.a */; };
  245. 2747727D24BC0C7C00181362 /* libvo-amrwbenc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726E24BC0C7C00181362 /* libvo-amrwbenc.a */; };
  246. 2747727E24BC0C7C00181362 /* RCConfig.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2747726F24BC0C7C00181362 /* RCConfig.plist */; };
  247. 2747727F24BC0C7C00181362 /* RCColor.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2747727124BC0C7C00181362 /* RCColor.plist */; };
  248. 2747728024BC0C7C00181362 /* RongCloudKit.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2747727224BC0C7C00181362 /* RongCloudKit.strings */; };
  249. 2747728124BC0C7C00181362 /* RongIMKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747727524BC0C7C00181362 /* RongIMKit.framework */; };
  250. 2747728224BC0C7D00181362 /* Emoji.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2747727624BC0C7C00181362 /* Emoji.plist */; };
  251. 2747728324BC0C7D00181362 /* RongCloud.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2747727724BC0C7C00181362 /* RongCloud.bundle */; };
  252. 2747728524BC0D4300181362 /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728424BC0D4200181362 /* AssetsLibrary.framework */; };
  253. 2747728724BC0D4800181362 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728624BC0D4800181362 /* MapKit.framework */; };
  254. 2747728924BC0D5200181362 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728824BC0D5200181362 /* ImageIO.framework */; };
  255. 2747728B24BC0D5800181362 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728A24BC0D5800181362 /* Security.framework */; };
  256. 2747728D24BC0D5F00181362 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728C24BC0D5F00181362 /* QuartzCore.framework */; };
  257. 2747728F24BC0D6500181362 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728E24BC0D6500181362 /* AVFoundation.framework */; };
  258. 2747729124BC0D6C00181362 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729024BC0D6B00181362 /* GLKit.framework */; };
  259. 2747729324BC0D7300181362 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729224BC0D7300181362 /* OpenGLES.framework */; };
  260. 2747729524BC0D7A00181362 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729424BC0D7A00181362 /* CoreGraphics.framework */; };
  261. 2747729724BC0D8100181362 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729624BC0D8000181362 /* CoreLocation.framework */; };
  262. 2747729924BC0D8700181362 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729824BC0D8700181362 /* CoreTelephony.framework */; };
  263. 2747729B24BC0D8D00181362 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729A24BC0D8D00181362 /* CoreFoundation.framework */; };
  264. 2747729D24BC0D9300181362 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729C24BC0D9300181362 /* CoreMedia.framework */; };
  265. 2747729F24BC0D9B00181362 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729E24BC0D9B00181362 /* CoreAudio.framework */; };
  266. 274772A124BC0DA000181362 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A024BC0DA000181362 /* CoreVideo.framework */; };
  267. 274772A324BC0DA800181362 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A224BC0DA800181362 /* CFNetwork.framework */; };
  268. 274772A524BC0DAE00181362 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A424BC0DAE00181362 /* AudioToolbox.framework */; };
  269. 274772A724BC0DB500181362 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A624BC0DB500181362 /* VideoToolbox.framework */; };
  270. 274772A924BC0DC100181362 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A824BC0DC000181362 /* libc++.tbd */; };
  271. 274772AB24BC0DC900181362 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772AA24BC0DC900181362 /* libz.tbd */; };
  272. 274772AD24BC0DD000181362 /* libbz2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772AC24BC0DD000181362 /* libbz2.tbd */; };
  273. 274772AF24BC0DDF00181362 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772AE24BC0DDE00181362 /* libiconv.tbd */; };
  274. 274772B124BC0DEB00181362 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772B024BC0DEB00181362 /* libsqlite3.tbd */; };
  275. 2748F8F124C05F4D003F8E11 /* ExamLibraryController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2748F8F024C05F4C003F8E11 /* ExamLibraryController.m */; };
  276. 2748F8F524C138A0003F8E11 /* ExamLibraryListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2748F8F324C1389F003F8E11 /* ExamLibraryListCell.m */; };
  277. 2748F8F624C138A0003F8E11 /* ExamLibraryListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2748F8F424C1389F003F8E11 /* ExamLibraryListCell.xib */; };
  278. 27544CF824BC337D00EF58AF /* ExamTicketViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27544CF724BC337D00EF58AF /* ExamTicketViewController.m */; };
  279. 27544CFB24BC338900EF58AF /* UserCenterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27544CFA24BC338900EF58AF /* UserCenterViewController.m */; };
  280. 2794D1B024BC604800BAF6F3 /* VefiBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1AF24BC604800BAF6F3 /* VefiBodyView.m */; };
  281. 2794D1B224BC605600BAF6F3 /* VefiBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1B124BC605600BAF6F3 /* VefiBodyView.xib */; };
  282. 2794D1B524BC662600BAF6F3 /* VeriCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1B424BC662600BAF6F3 /* VeriCheckView.m */; };
  283. 2794D1B824BC699700BAF6F3 /* RegisterBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1B724BC699700BAF6F3 /* RegisterBodyView.m */; };
  284. 2794D1BA24BC69A400BAF6F3 /* RegisterBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1B924BC69A400BAF6F3 /* RegisterBodyView.xib */; };
  285. 2794D1BD24BD4CF800BAF6F3 /* FSBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1BC24BD4CF800BAF6F3 /* FSBodyView.m */; };
  286. 2794D1BF24BD4D0C00BAF6F3 /* FSBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1BE24BD4D0C00BAF6F3 /* FSBodyView.xib */; };
  287. 2794D1C224BD60D500BAF6F3 /* UserCenterBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1C124BD60D500BAF6F3 /* UserCenterBodyView.m */; };
  288. 2794D1C424BD60E900BAF6F3 /* UserCenterBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1C324BD60E900BAF6F3 /* UserCenterBodyView.xib */; };
  289. 2794D1C724BD62FB00BAF6F3 /* ModifyBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1C624BD62FB00BAF6F3 /* ModifyBodyView.m */; };
  290. 2794D1C924BD631A00BAF6F3 /* ModifyBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1C824BD631A00BAF6F3 /* ModifyBodyView.xib */; };
  291. 27A008A524BD96C50002452B /* NetworkingCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A0089C24BD96C50002452B /* NetworkingCheckController.m */; };
  292. 27A008A624BD96C50002452B /* NetworkBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008A024BD96C50002452B /* NetworkBodyView.m */; };
  293. 27A008A724BD96C50002452B /* NetworkBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008A124BD96C50002452B /* NetworkBodyView.xib */; };
  294. 27A008A824BD96C50002452B /* KSNetworkAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008A224BD96C50002452B /* KSNetworkAlert.m */; };
  295. 27A008A924BD96C50002452B /* KSNetworkAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008A424BD96C50002452B /* KSNetworkAlert.xib */; };
  296. 27A008AE24BD96E50002452B /* DeviceCheckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008AB24BD96E50002452B /* DeviceCheckView.xib */; };
  297. 27A008AF24BD96E50002452B /* DeviceCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008AC24BD96E50002452B /* DeviceCheckView.m */; };
  298. 27A008B524BD97FE0002452B /* AudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008B424BD97FE0002452B /* AudioRecordManager.m */; };
  299. 27A008B824BD98170002452B /* AudioPlayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008B724BD98170002452B /* AudioPlayManager.m */; };
  300. 27A008C324BD99B10002452B /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008C224BD99B10002452B /* SettingViewController.m */; };
  301. 27A008C624BD99BD0002452B /* UserViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008C524BD99BD0002452B /* UserViewController.m */; };
  302. 27A008C924BD9D550002452B /* KSNetTypeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008C824BD9D550002452B /* KSNetTypeManager.m */; };
  303. 27A008CC24BD9E8A0002452B /* SettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008CB24BD9E8A0002452B /* SettingBodyView.m */; };
  304. 27A008CE24BD9E950002452B /* SettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008CD24BD9E950002452B /* SettingBodyView.xib */; };
  305. 27A008D324BDA67F0002452B /* ModifyPhoneChangeController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008D024BDA67E0002452B /* ModifyPhoneChangeController.m */; };
  306. 27A008D424BDA67F0002452B /* ModifyPhoneCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008D224BDA67F0002452B /* ModifyPhoneCheckController.m */; };
  307. 27A008DB24BDA6950002452B /* PhoneChangeBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008D524BDA6940002452B /* PhoneChangeBodyView.xib */; };
  308. 27A008DC24BDA6950002452B /* PhoneChangeBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008D624BDA6940002452B /* PhoneChangeBodyView.m */; };
  309. 27A008DD24BDA6950002452B /* PhoneCheckBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008D924BDA6950002452B /* PhoneCheckBodyView.m */; };
  310. 27A008DE24BDA6950002452B /* PhoneCheckBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008DA24BDA6950002452B /* PhoneCheckBodyView.xib */; };
  311. 27A008E124BDA6B40002452B /* FeedbackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008DF24BDA6B30002452B /* FeedbackViewController.m */; };
  312. 27A008E524BDA6C40002452B /* FeedbackBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008E224BDA6C30002452B /* FeedbackBodyView.xib */; };
  313. 27A008E624BDA6C40002452B /* FeedbackBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008E324BDA6C30002452B /* FeedbackBodyView.m */; };
  314. 27A008E924BDA7070002452B /* AboutUsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008E724BDA7070002452B /* AboutUsViewController.m */; };
  315. 27A008ED24BDA7100002452B /* AboutBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008EA24BDA70F0002452B /* AboutBodyView.xib */; };
  316. 27A008EE24BDA7100002452B /* AboutBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008EB24BDA7100002452B /* AboutBodyView.m */; };
  317. 27A008F324BDB1E50002452B /* SysUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008F024BDB1E30002452B /* SysUser.m */; };
  318. 27A008F424BDB1E50002452B /* UserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008F224BDB1E50002452B /* UserInfo.m */; };
  319. 27A008F724BDB6220002452B /* UserBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008F624BDB6220002452B /* UserBodyView.m */; };
  320. 27A008F924BDB6310002452B /* UserBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008F824BDB6310002452B /* UserBodyView.xib */; };
  321. 27A008FC24BECDC40002452B /* HomeBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008FB24BECDC40002452B /* HomeBodyView.m */; };
  322. 27A008FE24BECDFC0002452B /* HomeBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008FD24BECDFC0002452B /* HomeBodyView.xib */; };
  323. 27EF3EEE24BEE35E002068A2 /* MessageListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EED24BEE35E002068A2 /* MessageListModel.m */; };
  324. 27EF3EF224BEE885002068A2 /* NotifyMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EF024BEE885002068A2 /* NotifyMessageCell.m */; };
  325. 27EF3EF324BEE885002068A2 /* NotifyMessageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27EF3EF124BEE885002068A2 /* NotifyMessageCell.xib */; };
  326. 27EF3EF624BEF1DA002068A2 /* TicketBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EF524BEF1DA002068A2 /* TicketBodyView.m */; };
  327. 27EF3EF824BEF1E8002068A2 /* TicketBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27EF3EF724BEF1E8002068A2 /* TicketBodyView.xib */; };
  328. 27EF3EFB24BEFC79002068A2 /* WaitExamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EFA24BEFC79002068A2 /* WaitExamViewController.m */; };
  329. 27EF3EFE24BF015A002068A2 /* WaitExamBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EFD24BF015A002068A2 /* WaitExamBodyView.m */; };
  330. 27EF3F0024BF016B002068A2 /* WaitExamBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27EF3EFF24BF016B002068A2 /* WaitExamBodyView.xib */; };
  331. 27EF3F0324BF0F12002068A2 /* TicketListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0224BF0F12002068A2 /* TicketListModel.m */; };
  332. 27EF3F0624BFF8A1002068A2 /* TicketDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0424BFF8A0002068A2 /* TicketDetailModel.m */; };
  333. 27EF3F0924C02B3F002068A2 /* LocalRenderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0724C02B3E002068A2 /* LocalRenderManager.m */; };
  334. 27EF3F2024C02B68002068A2 /* KSTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0B24C02B67002068A2 /* KSTipsView.m */; };
  335. 27EF3F2124C02B68002068A2 /* KSNormalAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0F24C02B67002068A2 /* KSNormalAlertView.m */; };
  336. 27EF3F2224C02B68002068A2 /* ClassTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1224C02B67002068A2 /* ClassTitleView.m */; };
  337. 27EF3F2324C02B68002068A2 /* ClassVideoListView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1724C02B68002068A2 /* ClassVideoListView.m */; };
  338. 27EF3F2524C02B68002068A2 /* ClassVideoListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1924C02B68002068A2 /* ClassVideoListCell.m */; };
  339. 27EF3F2624C02B68002068A2 /* MainToolView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1B24C02B68002068A2 /* MainToolView.m */; };
  340. 27EF3F2724C02B68002068A2 /* ClassroomMainContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1F24C02B68002068A2 /* ClassroomMainContainer.m */; };
  341. 27EF3F2A24C02DE9002068A2 /* EmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F2824C02DE8002068A2 /* EmptyView.m */; };
  342. 27EF3F2E24C0384E002068A2 /* HomeExamTicketCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F2C24C0384E002068A2 /* HomeExamTicketCell.m */; };
  343. 27EF3F2F24C0384E002068A2 /* HomeExamTicketCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27EF3F2D24C0384E002068A2 /* HomeExamTicketCell.xib */; };
  344. 52771C0027351695CEDB4C8E /* libPods-MusicGradeExam.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C12DE728E343C25BB5998D7 /* libPods-MusicGradeExam.a */; };
  345. 5577ECF41C84E1BDFEC99DBC /* libPods-MusicGradeExamTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8BAA64634BC925E7C2CD7008 /* libPods-MusicGradeExamTests.a */; };
  346. A7C23B2E920E232C71C39B0E /* libPods-MusicGradeExam-MusicGradeExamUITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F8D13E0A14104E75F7922812 /* libPods-MusicGradeExam-MusicGradeExamUITests.a */; };
  347. /* End PBXBuildFile section */
  348. /* Begin PBXContainerItemProxy section */
  349. 27476F5F24BBFB5C00181362 /* PBXContainerItemProxy */ = {
  350. isa = PBXContainerItemProxy;
  351. containerPortal = 27476F3B24BBFB5900181362 /* Project object */;
  352. proxyType = 1;
  353. remoteGlobalIDString = 27476F4224BBFB5900181362;
  354. remoteInfo = MusicGradeExam;
  355. };
  356. 27476F6A24BBFB5C00181362 /* PBXContainerItemProxy */ = {
  357. isa = PBXContainerItemProxy;
  358. containerPortal = 27476F3B24BBFB5900181362 /* Project object */;
  359. proxyType = 1;
  360. remoteGlobalIDString = 27476F4224BBFB5900181362;
  361. remoteInfo = MusicGradeExam;
  362. };
  363. /* End PBXContainerItemProxy section */
  364. /* Begin PBXFileReference section */
  365. 1AA4DFCEF527585287BEBFE0 /* Pods-MusicGradeExam.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam.release.xcconfig"; sourceTree = "<group>"; };
  366. 1C12DE728E343C25BB5998D7 /* libPods-MusicGradeExam.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExam.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  367. 2729F7C524C6C87400E1F3C4 /* OpenFileViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenFileViewController.h; sourceTree = "<group>"; };
  368. 2729F7C624C6C87400E1F3C4 /* OpenFileViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OpenFileViewController.m; sourceTree = "<group>"; };
  369. 2729F7C824C6EB4900E1F3C4 /* SubjectNameModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubjectNameModel.h; sourceTree = "<group>"; };
  370. 2729F7C924C6EB4A00E1F3C4 /* SubjectNameModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SubjectNameModel.m; sourceTree = "<group>"; };
  371. 2729F7CB24C6F3F300E1F3C4 /* SongListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongListModel.h; sourceTree = "<group>"; };
  372. 2729F7CC24C6F3F300E1F3C4 /* SongListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongListModel.m; sourceTree = "<group>"; };
  373. 27476F4324BBFB5900181362 /* 酷乐秀.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "酷乐秀.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  374. 27476F4624BBFB5900181362 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  375. 27476F4724BBFB5900181362 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  376. 27476F4C24BBFB5900181362 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
  377. 27476F4D24BBFB5900181362 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
  378. 27476F5024BBFB5900181362 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  379. 27476F5224BBFB5C00181362 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  380. 27476F5524BBFB5C00181362 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  381. 27476F5724BBFB5C00181362 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  382. 27476F5824BBFB5C00181362 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  383. 27476F5E24BBFB5C00181362 /* MusicGradeExamTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MusicGradeExamTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  384. 27476F6224BBFB5C00181362 /* MusicGradeExamTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MusicGradeExamTests.m; sourceTree = "<group>"; };
  385. 27476F6424BBFB5C00181362 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  386. 27476F6924BBFB5C00181362 /* MusicGradeExamUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MusicGradeExamUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  387. 27476F6D24BBFB5C00181362 /* MusicGradeExamUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MusicGradeExamUITests.m; sourceTree = "<group>"; };
  388. 27476F6F24BBFB5C00181362 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  389. 27476F7C24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JYEqualCellSpaceFlowLayout.m; sourceTree = "<group>"; };
  390. 27476F7D24BC0BFF00181362 /* DZNSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DZNSegmentedControl.m; sourceTree = "<group>"; };
  391. 27476F7E24BC0BFF00181362 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  392. 27476F8024BC0BFF00181362 /* WMLightView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMLightView.h; sourceTree = "<group>"; };
  393. 27476F8124BC0BFF00181362 /* WMPlayerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayerModel.m; sourceTree = "<group>"; };
  394. 27476F8224BC0BFF00181362 /* FastForwardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FastForwardView.h; sourceTree = "<group>"; };
  395. 27476F8324BC0BFF00181362 /* WMPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WMPlayer.bundle; sourceTree = "<group>"; };
  396. 27476F8424BC0BFF00181362 /* WMPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayer.h; sourceTree = "<group>"; };
  397. 27476F8524BC0BFF00181362 /* WMPlayerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayerModel.h; sourceTree = "<group>"; };
  398. 27476F8624BC0BFF00181362 /* WMLightView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMLightView.m; sourceTree = "<group>"; };
  399. 27476F8724BC0BFF00181362 /* FastForwardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FastForwardView.m; sourceTree = "<group>"; };
  400. 27476F8824BC0BFF00181362 /* WMPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayer.m; sourceTree = "<group>"; };
  401. 27476F8924BC0BFF00181362 /* UIView+ShowProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ShowProgress.m"; sourceTree = "<group>"; };
  402. 27476F8A24BC0BFF00181362 /* KSPickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSPickerView.h; sourceTree = "<group>"; };
  403. 27476F8C24BC0BFF00181362 /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewCell.h; sourceTree = "<group>"; };
  404. 27476F8D24BC0BFF00181362 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPickerController.h; sourceTree = "<group>"; };
  405. 27476F8E24BC0BFF00181362 /* TZImageCropManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageCropManager.m; sourceTree = "<group>"; };
  406. 27476F8F24BC0BFF00181362 /* TZImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageManager.h; sourceTree = "<group>"; };
  407. 27476F9024BC0BFF00181362 /* TZAssetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetCell.m; sourceTree = "<group>"; };
  408. 27476F9124BC0BFF00181362 /* TZVideoPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoPlayerController.m; sourceTree = "<group>"; };
  409. 27476F9224BC0BFF00181362 /* TZAssetModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetModel.m; sourceTree = "<group>"; };
  410. 27476F9324BC0BFF00181362 /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+TZImagePicker.m"; sourceTree = "<group>"; };
  411. 27476F9424BC0BFF00181362 /* TZLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZLocationManager.h; sourceTree = "<group>"; };
  412. 27476F9524BC0BFF00181362 /* TZImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImagePickerController.h; sourceTree = "<group>"; };
  413. 27476F9624BC0BFF00181362 /* UIView+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Layout.m"; sourceTree = "<group>"; };
  414. 27476F9724BC0BFF00181362 /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewController.m; sourceTree = "<group>"; };
  415. 27476F9824BC0BFF00181362 /* TZImagePickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TZImagePickerController.bundle; sourceTree = "<group>"; };
  416. 27476F9924BC0BFF00181362 /* TZProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZProgressView.m; sourceTree = "<group>"; };
  417. 27476F9A24BC0BFF00181362 /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZGifPhotoPreviewController.h; sourceTree = "<group>"; };
  418. 27476F9B24BC0BFF00181362 /* TZImageRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageRequestOperation.h; sourceTree = "<group>"; };
  419. 27476F9C24BC0BFF00181362 /* TZAssetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetCell.h; sourceTree = "<group>"; };
  420. 27476F9D24BC0BFF00181362 /* TZImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageManager.m; sourceTree = "<group>"; };
  421. 27476F9E24BC0BFF00181362 /* TZImageCropManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageCropManager.h; sourceTree = "<group>"; };
  422. 27476F9F24BC0BFF00181362 /* TZPhotoPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPickerController.m; sourceTree = "<group>"; };
  423. 27476FA024BC0BFF00181362 /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewCell.m; sourceTree = "<group>"; };
  424. 27476FA124BC0BFF00181362 /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+TZImagePicker.h"; sourceTree = "<group>"; };
  425. 27476FA224BC0BFF00181362 /* TZAssetModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetModel.h; sourceTree = "<group>"; };
  426. 27476FA324BC0BFF00181362 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoPlayerController.h; sourceTree = "<group>"; };
  427. 27476FA424BC0BFF00181362 /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewController.h; sourceTree = "<group>"; };
  428. 27476FA524BC0BFF00181362 /* UIView+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Layout.h"; sourceTree = "<group>"; };
  429. 27476FA624BC0BFF00181362 /* TZImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImagePickerController.m; sourceTree = "<group>"; };
  430. 27476FA724BC0BFF00181362 /* TZLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZLocationManager.m; sourceTree = "<group>"; };
  431. 27476FA824BC0BFF00181362 /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZGifPhotoPreviewController.m; sourceTree = "<group>"; };
  432. 27476FA924BC0BFF00181362 /* TZImageRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageRequestOperation.m; sourceTree = "<group>"; };
  433. 27476FAA24BC0BFF00181362 /* TZProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZProgressView.h; sourceTree = "<group>"; };
  434. 27476FAC24BC0BFF00181362 /* SCIndexViewConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexViewConfiguration.m; sourceTree = "<group>"; };
  435. 27476FAD24BC0BFF00181362 /* UITableView+SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SCIndexView.h"; sourceTree = "<group>"; };
  436. 27476FAE24BC0BFF00181362 /* SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexView.m; sourceTree = "<group>"; };
  437. 27476FAF24BC0BFF00181362 /* SCIndexViewConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexViewConfiguration.h; sourceTree = "<group>"; };
  438. 27476FB024BC0BFF00181362 /* UITableView+SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SCIndexView.m"; sourceTree = "<group>"; };
  439. 27476FB124BC0BFF00181362 /* SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexView.h; sourceTree = "<group>"; };
  440. 27476FB324BC0BFF00181362 /* MSSBrowseRemindView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseRemindView.h; sourceTree = "<group>"; };
  441. 27476FB424BC0BFF00181362 /* MSSBrowseZoomScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseZoomScrollView.h; sourceTree = "<group>"; };
  442. 27476FB524BC0BFF00181362 /* MSSBrowseLoadingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLoadingImageView.m; sourceTree = "<group>"; };
  443. 27476FB624BC0BFF00181362 /* MSSBrowseBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseBaseViewController.h; sourceTree = "<group>"; };
  444. 27476FB724BC0BFF00181362 /* UIImage+MSSScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MSSScale.h"; sourceTree = "<group>"; };
  445. 27476FB824BC0BFF00181362 /* MSSBrowseNetworkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseNetworkViewController.h; sourceTree = "<group>"; };
  446. 27476FB924BC0BFF00181362 /* MSSBrowseActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheet.h; sourceTree = "<group>"; };
  447. 27476FBA24BC0BFF00181362 /* MSSBrowseActionSheetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheetCell.h; sourceTree = "<group>"; };
  448. 27476FBB24BC0BFF00181362 /* MSSBrowseLocalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLocalViewController.m; sourceTree = "<group>"; };
  449. 27476FBC24BC0BFF00181362 /* MSSBrowseCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseCollectionViewCell.m; sourceTree = "<group>"; };
  450. 27476FBD24BC0BFF00181362 /* UIView+MSSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MSSLayout.h"; sourceTree = "<group>"; };
  451. 27476FBE24BC0BFF00181362 /* MSSBrowseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseModel.m; sourceTree = "<group>"; };
  452. 27476FBF24BC0BFF00181362 /* MSSBrowseDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseDefine.h; sourceTree = "<group>"; };
  453. 27476FC024BC0BFF00181362 /* MSSBrowseActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheet.m; sourceTree = "<group>"; };
  454. 27476FC124BC0BFF00181362 /* MSSBrowseNetworkViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseNetworkViewController.m; sourceTree = "<group>"; };
  455. 27476FC224BC0BFF00181362 /* UIImage+MSSScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MSSScale.m"; sourceTree = "<group>"; };
  456. 27476FC324BC0BFF00181362 /* MSSBrowseBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseBaseViewController.m; sourceTree = "<group>"; };
  457. 27476FC424BC0BFF00181362 /* MSSBrowseLoadingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLoadingImageView.h; sourceTree = "<group>"; };
  458. 27476FC524BC0BFF00181362 /* MSSBrowseZoomScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseZoomScrollView.m; sourceTree = "<group>"; };
  459. 27476FC624BC0BFF00181362 /* MSSBrowseRemindView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseRemindView.m; sourceTree = "<group>"; };
  460. 27476FC724BC0BFF00181362 /* mss_browseLoading@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@3x.png"; sourceTree = "<group>"; };
  461. 27476FC824BC0BFF00181362 /* MSSBrowseCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseCollectionViewCell.h; sourceTree = "<group>"; };
  462. 27476FC924BC0BFF00181362 /* MSSBrowseLocalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLocalViewController.h; sourceTree = "<group>"; };
  463. 27476FCA24BC0BFF00181362 /* MSSBrowseActionSheetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheetCell.m; sourceTree = "<group>"; };
  464. 27476FCB24BC0BFF00181362 /* MSSBrowseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseModel.h; sourceTree = "<group>"; };
  465. 27476FCC24BC0BFF00181362 /* mss_browseLoading@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@2x.png"; sourceTree = "<group>"; };
  466. 27476FCD24BC0BFF00181362 /* UIView+MSSLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MSSLayout.m"; sourceTree = "<group>"; };
  467. 27476FCE24BC0BFF00181362 /* UIView+Animation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Animation.m"; sourceTree = "<group>"; };
  468. 27476FCF24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JYEqualCellSpaceFlowLayout.h; sourceTree = "<group>"; };
  469. 27476FD124BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZKCycleScrollViewFlowLayout.h; sourceTree = "<group>"; };
  470. 27476FD224BC0BFF00181362 /* ZKCycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZKCycleScrollView.m; sourceTree = "<group>"; };
  471. 27476FD324BC0BFF00181362 /* ZKCycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZKCycleScrollView.h; sourceTree = "<group>"; };
  472. 27476FD424BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZKCycleScrollViewFlowLayout.m; sourceTree = "<group>"; };
  473. 27476FD524BC0BFF00181362 /* DZNSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DZNSegmentedControl.h; sourceTree = "<group>"; };
  474. 27476FD724BC0BFF00181362 /* TYCyclePagerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerView.h; sourceTree = "<group>"; };
  475. 27476FD824BC0BFF00181362 /* TYCyclePagerTransformLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerTransformLayout.h; sourceTree = "<group>"; };
  476. 27476FD924BC0BFF00181362 /* TYPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYPageControl.m; sourceTree = "<group>"; };
  477. 27476FDA24BC0BFF00181362 /* TYCyclePagerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerView.m; sourceTree = "<group>"; };
  478. 27476FDB24BC0BFF00181362 /* TYCyclePagerTransformLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerTransformLayout.m; sourceTree = "<group>"; };
  479. 27476FDC24BC0BFF00181362 /* TYPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYPageControl.h; sourceTree = "<group>"; };
  480. 27476FDE24BC0BFF00181362 /* KSPickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSPickerView.m; sourceTree = "<group>"; };
  481. 27476FDF24BC0BFF00181362 /* UIView+ShowProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ShowProgress.h"; sourceTree = "<group>"; };
  482. 27476FE024BC0BFF00181362 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  483. 27476FE224BC0BFF00181362 /* ALCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCell.m; sourceTree = "<group>"; };
  484. 27476FE324BC0BFF00181362 /* ALCalendarConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarConfig.m; sourceTree = "<group>"; };
  485. 27476FE424BC0BFF00181362 /* ALCalendarHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHeader.m; sourceTree = "<group>"; };
  486. 27476FE524BC0BFF00181362 /* ALCalendarDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarDate.m; sourceTree = "<group>"; };
  487. 27476FE624BC0BFF00181362 /* ALCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCollectionView.m; sourceTree = "<group>"; };
  488. 27476FE724BC0BFF00181362 /* ALCalendarHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHelper.m; sourceTree = "<group>"; };
  489. 27476FE824BC0BFF00181362 /* UIView+ALFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ALFrame.h"; sourceTree = "<group>"; };
  490. 27476FE924BC0BFF00181362 /* ALCalendarPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarPicker.h; sourceTree = "<group>"; };
  491. 27476FEA24BC0BFF00181362 /* ALCalendarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarManager.h; sourceTree = "<group>"; };
  492. 27476FEB24BC0BFF00181362 /* ALCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCollectionView.h; sourceTree = "<group>"; };
  493. 27476FEC24BC0BFF00181362 /* ALCalendarDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarDate.h; sourceTree = "<group>"; };
  494. 27476FED24BC0BFF00181362 /* ALCalendarHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHeader.h; sourceTree = "<group>"; };
  495. 27476FEE24BC0BFF00181362 /* ALCalendarConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarConfig.h; sourceTree = "<group>"; };
  496. 27476FEF24BC0BFF00181362 /* ALCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCell.h; sourceTree = "<group>"; };
  497. 27476FF024BC0BFF00181362 /* ALCalendarHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHelper.h; sourceTree = "<group>"; };
  498. 27476FF124BC0BFF00181362 /* ALCalendarPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarPicker.m; sourceTree = "<group>"; };
  499. 27476FF224BC0BFF00181362 /* UIView+ALFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ALFrame.m"; sourceTree = "<group>"; };
  500. 27476FF324BC0BFF00181362 /* ALCalendarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarManager.m; sourceTree = "<group>"; };
  501. 27476FF424BC0BFF00181362 /* UIView+Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Animation.h"; sourceTree = "<group>"; };
  502. 27476FF724BC0C0000181362 /* KSBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseViewController.h; sourceTree = "<group>"; };
  503. 27476FF824BC0C0000181362 /* CustomNavViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNavViewController.h; sourceTree = "<group>"; };
  504. 27476FF924BC0C0000181362 /* KSBaseWKWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseWKWebViewController.h; sourceTree = "<group>"; };
  505. 27476FFA24BC0C0000181362 /* KSTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTabBarController.h; sourceTree = "<group>"; };
  506. 27476FFB24BC0C0000181362 /* UINavigationController+KSNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+KSNavigationBar.h"; sourceTree = "<group>"; };
  507. 27476FFC24BC0C0000181362 /* KSBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseViewController.m; sourceTree = "<group>"; };
  508. 27476FFE24BC0C0000181362 /* KSBaseWKWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseWKWebViewController.m; sourceTree = "<group>"; };
  509. 27476FFF24BC0C0000181362 /* CustomNavViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNavViewController.m; sourceTree = "<group>"; };
  510. 2747700024BC0C0000181362 /* UINavigationController+KSNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+KSNavigationBar.m"; sourceTree = "<group>"; };
  511. 2747700124BC0C0000181362 /* KSTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTabBarController.m; sourceTree = "<group>"; };
  512. 2747700224BC0C0000181362 /* KSRequestManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRequestManager.m; sourceTree = "<group>"; };
  513. 2747700624BC0C0100181362 /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
  514. 2747700724BC0C0100181362 /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
  515. 2747701024BC0C0100181362 /* ClassroomViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomViewController.m; sourceTree = "<group>"; };
  516. 2747701124BC0C0100181362 /* ClassroomViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomViewController.h; sourceTree = "<group>"; };
  517. 2747701324BC0C0100181362 /* RoomLoginHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomLoginHelper.h; sourceTree = "<group>"; };
  518. 2747701424BC0C0100181362 /* RoomLoginHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomLoginHelper.m; sourceTree = "<group>"; };
  519. 2747701724BC0C0100181362 /* KSRemoteUserManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRemoteUserManager.h; sourceTree = "<group>"; };
  520. 2747701924BC0C0100181362 /* RTCService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTCService.m; sourceTree = "<group>"; };
  521. 2747701A24BC0C0100181362 /* RTCService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCService.h; sourceTree = "<group>"; };
  522. 2747701D24BC0C0100181362 /* ErrorCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ErrorCode.h; sourceTree = "<group>"; };
  523. 2747701F24BC0C0100181362 /* UIView+MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MBProgressHUD.h"; sourceTree = "<group>"; };
  524. 2747702024BC0C0100181362 /* UIView+MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MBProgressHUD.m"; sourceTree = "<group>"; };
  525. 2747702224BC0C0100181362 /* RolePortraitView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RolePortraitView.m; sourceTree = "<group>"; };
  526. 2747702324BC0C0100181362 /* RolePortraitView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RolePortraitView.h; sourceTree = "<group>"; };
  527. 2747702424BC0C0100181362 /* Macro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Macro.h; sourceTree = "<group>"; };
  528. 2747702624BC0C0100181362 /* HTTPUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPUtility.m; sourceTree = "<group>"; };
  529. 2747702724BC0C0100181362 /* HTTPResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPResult.m; sourceTree = "<group>"; };
  530. 2747702824BC0C0100181362 /* HTTPUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPUtility.h; sourceTree = "<group>"; };
  531. 2747702924BC0C0100181362 /* HTTPResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPResult.h; sourceTree = "<group>"; };
  532. 2747702D24BC0C0100181362 /* ClassroomService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomService.h; sourceTree = "<group>"; };
  533. 2747702F24BC0C0100181362 /* RoleChangedMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoleChangedMessage.h; sourceTree = "<group>"; };
  534. 2747703024BC0C0100181362 /* AssistantTransferMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AssistantTransferMessage.h; sourceTree = "<group>"; };
  535. 2747703124BC0C0100181362 /* InviteUpgradeMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InviteUpgradeMessage.h; sourceTree = "<group>"; };
  536. 2747703224BC0C0100181362 /* ApplySpeechMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechMessage.m; sourceTree = "<group>"; };
  537. 2747703324BC0C0100181362 /* ApplySpeechResultMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechResultMessage.h; sourceTree = "<group>"; };
  538. 2747703424BC0C0100181362 /* DisplayCommandMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DisplayCommandMessage.m; sourceTree = "<group>"; };
  539. 2747703524BC0C0100181362 /* MemberChangeMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemberChangeMessage.h; sourceTree = "<group>"; };
  540. 2747703624BC0C0100181362 /* DeviceMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceMessage.h; sourceTree = "<group>"; };
  541. 2747703724BC0C0100181362 /* ControlDeviceNotifyMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ControlDeviceNotifyMessage.m; sourceTree = "<group>"; };
  542. 2747703824BC0C0100181362 /* TicketExpiredMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketExpiredMessage.m; sourceTree = "<group>"; };
  543. 2747703924BC0C0100181362 /* NodePlayMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NodePlayMessage.h; sourceTree = "<group>"; };
  544. 2747703A24BC0C0100181362 /* TurnPageMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TurnPageMessage.h; sourceTree = "<group>"; };
  545. 2747703B24BC0C0100181362 /* WhiteboardMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WhiteboardMessage.m; sourceTree = "<group>"; };
  546. 2747703C24BC0C0100181362 /* AssistantTransferMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AssistantTransferMessage.m; sourceTree = "<group>"; };
  547. 2747703D24BC0C0100181362 /* RoleChangedMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoleChangedMessage.m; sourceTree = "<group>"; };
  548. 2747703E24BC0C0100181362 /* InviteUpgradeMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InviteUpgradeMessage.m; sourceTree = "<group>"; };
  549. 2747703F24BC0C0100181362 /* ControlDeviceNotifyMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlDeviceNotifyMessage.h; sourceTree = "<group>"; };
  550. 2747704024BC0C0100181362 /* DeviceMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceMessage.m; sourceTree = "<group>"; };
  551. 2747704124BC0C0100181362 /* MemberChangeMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MemberChangeMessage.m; sourceTree = "<group>"; };
  552. 2747704224BC0C0100181362 /* DisplayCommandMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisplayCommandMessage.h; sourceTree = "<group>"; };
  553. 2747704324BC0C0100181362 /* ApplySpeechResultMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechResultMessage.m; sourceTree = "<group>"; };
  554. 2747704424BC0C0100181362 /* ApplySpeechMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechMessage.h; sourceTree = "<group>"; };
  555. 2747704524BC0C0100181362 /* WhiteboardMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WhiteboardMessage.h; sourceTree = "<group>"; };
  556. 2747704624BC0C0100181362 /* TurnPageMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TurnPageMessage.m; sourceTree = "<group>"; };
  557. 2747704724BC0C0100181362 /* NodePlayMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NodePlayMessage.m; sourceTree = "<group>"; };
  558. 2747704824BC0C0100181362 /* TicketExpiredMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketExpiredMessage.h; sourceTree = "<group>"; };
  559. 2747704A24BC0C0100181362 /* Whiteboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Whiteboard.m; sourceTree = "<group>"; };
  560. 2747704B24BC0C0100181362 /* RoomMember.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomMember.m; sourceTree = "<group>"; };
  561. 2747704C24BC0C0100181362 /* Classroom.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Classroom.m; sourceTree = "<group>"; };
  562. 2747704D24BC0C0100181362 /* Whiteboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Whiteboard.h; sourceTree = "<group>"; };
  563. 2747704E24BC0C0100181362 /* Classroom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Classroom.h; sourceTree = "<group>"; };
  564. 2747704F24BC0C0100181362 /* RoomMember.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomMember.h; sourceTree = "<group>"; };
  565. 2747705024BC0C0100181362 /* ClassroomDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomDefine.h; sourceTree = "<group>"; };
  566. 2747705124BC0C0100181362 /* ClassroomService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomService.m; sourceTree = "<group>"; };
  567. 2747705224BC0C0100181362 /* KSRemoteUserManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRemoteUserManager.m; sourceTree = "<group>"; };
  568. 2747705424BC0C0100181362 /* KSIMService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSIMService.h; sourceTree = "<group>"; };
  569. 2747705524BC0C0100181362 /* KSIMService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSIMService.m; sourceTree = "<group>"; };
  570. 2747705C24BC0C0100181362 /* NotifyMessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotifyMessageViewController.h; sourceTree = "<group>"; };
  571. 2747705D24BC0C0100181362 /* NotifyMessageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotifyMessageViewController.m; sourceTree = "<group>"; };
  572. 2747706224BC0C0100181362 /* ModifyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyViewController.h; sourceTree = "<group>"; };
  573. 2747706324BC0C0100181362 /* VefiLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiLoginViewController.h; sourceTree = "<group>"; };
  574. 2747706424BC0C0100181362 /* FirstSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingViewController.m; sourceTree = "<group>"; };
  575. 2747706524BC0C0100181362 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  576. 2747706624BC0C0100181362 /* RegisterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegisterViewController.m; sourceTree = "<group>"; };
  577. 2747706724BC0C0100181362 /* VefiLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiLoginViewController.m; sourceTree = "<group>"; };
  578. 2747706824BC0C0100181362 /* ModifyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyViewController.m; sourceTree = "<group>"; };
  579. 2747706924BC0C0100181362 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  580. 2747706A24BC0C0100181362 /* FirstSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingViewController.h; sourceTree = "<group>"; };
  581. 2747706B24BC0C0100181362 /* RegisterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisterViewController.h; sourceTree = "<group>"; };
  582. 2747706E24BC0C0100181362 /* UserInfoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoManager.h; sourceTree = "<group>"; };
  583. 2747706F24BC0C0100181362 /* UserInfoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoManager.m; sourceTree = "<group>"; };
  584. 2747707224BC0C0100181362 /* LoginBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginBodyView.m; sourceTree = "<group>"; };
  585. 2747707324BC0C0100181362 /* LoginBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginBodyView.xib; sourceTree = "<group>"; };
  586. 2747707424BC0C0100181362 /* LoginBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginBodyView.h; sourceTree = "<group>"; };
  587. 2747707624BC0C0200181362 /* OnlineRoomManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlineRoomManager.m; sourceTree = "<group>"; };
  588. 2747707724BC0C0200181362 /* KSRCIMDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCIMDataSource.h; sourceTree = "<group>"; };
  589. 2747707824BC0C0200181362 /* RCConnectionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCConnectionManager.h; sourceTree = "<group>"; };
  590. 2747707924BC0C0200181362 /* KSUpdateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateManager.h; sourceTree = "<group>"; };
  591. 2747707A24BC0C0200181362 /* KSRCIMDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCIMDataSource.m; sourceTree = "<group>"; };
  592. 2747707B24BC0C0200181362 /* OnlineRoomManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlineRoomManager.h; sourceTree = "<group>"; };
  593. 2747707C24BC0C0200181362 /* RCConnectionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCConnectionManager.m; sourceTree = "<group>"; };
  594. 2747707D24BC0C0200181362 /* KSUpdateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateManager.m; sourceTree = "<group>"; };
  595. 2747707F24BC0C0200181362 /* UserKeyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserKeyHeader.h; sourceTree = "<group>"; };
  596. 2747708024BC0C0200181362 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
  597. 2747708124BC0C0200181362 /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  598. 2747708424BC0C0300181362 /* KSNetworking+RequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "KSNetworking+RequestOperation.m"; sourceTree = "<group>"; };
  599. 2747708524BC0C0300181362 /* KSNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworking.m; sourceTree = "<group>"; };
  600. 2747708724BC0C0300181362 /* KSLRUManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLRUManager.h; sourceTree = "<group>"; };
  601. 2747708824BC0C0300181362 /* KSMemoryCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMemoryCache.h; sourceTree = "<group>"; };
  602. 2747708924BC0C0300181362 /* KSCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSCacheManager.h; sourceTree = "<group>"; };
  603. 2747708A24BC0C0300181362 /* KSDiskCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSDiskCache.h; sourceTree = "<group>"; };
  604. 2747708B24BC0C0300181362 /* KSLRUManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLRUManager.m; sourceTree = "<group>"; };
  605. 2747708C24BC0C0300181362 /* KSMemoryCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMemoryCache.m; sourceTree = "<group>"; };
  606. 2747708D24BC0C0300181362 /* KSDiskCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSDiskCache.m; sourceTree = "<group>"; };
  607. 2747708E24BC0C0300181362 /* KSCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSCacheManager.m; sourceTree = "<group>"; };
  608. 2747708F24BC0C0300181362 /* KSNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworking.h; sourceTree = "<group>"; };
  609. 2747709024BC0C0300181362 /* KSNetworking+RequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "KSNetworking+RequestOperation.h"; sourceTree = "<group>"; };
  610. 2747709224BC0C0300181362 /* KSSafeObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSafeObject.h; sourceTree = "<group>"; };
  611. 2747709324BC0C0300181362 /* NSObject+KSSwizzling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSSwizzling.h"; sourceTree = "<group>"; };
  612. 2747709424BC0C0300181362 /* NSDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+KSSafe.m"; sourceTree = "<group>"; };
  613. 2747709524BC0C0300181362 /* NSObject+KSImpChangeTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSImpChangeTool.h"; sourceTree = "<group>"; };
  614. 2747709624BC0C0300181362 /* NSMutableDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+KSSafe.m"; sourceTree = "<group>"; };
  615. 2747709724BC0C0300181362 /* NSMutableString+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableString+KSSafe.h"; sourceTree = "<group>"; };
  616. 2747709824BC0C0300181362 /* NSArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+KSSafe.m"; sourceTree = "<group>"; };
  617. 2747709924BC0C0300181362 /* NSMutableArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+KSSafe.m"; sourceTree = "<group>"; };
  618. 2747709A24BC0C0300181362 /* NSDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+KSSafe.h"; sourceTree = "<group>"; };
  619. 2747709B24BC0C0300181362 /* NSObject+KSSwizzling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSSwizzling.m"; sourceTree = "<group>"; };
  620. 2747709C24BC0C0300181362 /* NSObject+KSImpChangeTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSImpChangeTool.m"; sourceTree = "<group>"; };
  621. 2747709D24BC0C0300181362 /* NSMutableArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+KSSafe.h"; sourceTree = "<group>"; };
  622. 2747709E24BC0C0300181362 /* NSArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+KSSafe.h"; sourceTree = "<group>"; };
  623. 2747709F24BC0C0300181362 /* NSMutableString+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableString+KSSafe.m"; sourceTree = "<group>"; };
  624. 274770A024BC0C0300181362 /* NSMutableDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+KSSafe.h"; sourceTree = "<group>"; };
  625. 274770A224BC0C0300181362 /* NSObject+AssociatedObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AssociatedObject.m"; sourceTree = "<group>"; };
  626. 274770A324BC0C0300181362 /* UIView+Hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hints.h"; sourceTree = "<group>"; };
  627. 274770A424BC0C0300181362 /* UIControl+ButtonAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+ButtonAction.m"; sourceTree = "<group>"; };
  628. 274770A524BC0C0300181362 /* UIDevice+zhDeviceType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+zhDeviceType.m"; sourceTree = "<group>"; };
  629. 274770A624BC0C0300181362 /* NSString+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+zh_SafeAccess.m"; sourceTree = "<group>"; };
  630. 274770A724BC0C0300181362 /* NSDictionary+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Extension.h"; sourceTree = "<group>"; };
  631. 274770A824BC0C0300181362 /* UIViewController+zhStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+zhStatusBarStyle.m"; sourceTree = "<group>"; };
  632. 274770A924BC0C0300181362 /* UITextView+ZWPlaceHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWPlaceHolder.m"; sourceTree = "<group>"; };
  633. 274770AA24BC0C0300181362 /* NSString+CZHSizeExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+CZHSizeExtension.h"; sourceTree = "<group>"; };
  634. 274770AB24BC0C0300181362 /* CALayer+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Color.m"; sourceTree = "<group>"; };
  635. 274770AC24BC0C0300181362 /* NSDate+Transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Transform.h"; sourceTree = "<group>"; };
  636. 274770AD24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+CZHExtention.m"; sourceTree = "<group>"; };
  637. 274770AE24BC0C0300181362 /* NSString+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extension.h"; sourceTree = "<group>"; };
  638. 274770AF24BC0C0300181362 /* UITextView+ZWLimitCounter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWLimitCounter.m"; sourceTree = "<group>"; };
  639. 274770B024BC0C0300181362 /* UILabel+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extension.m"; sourceTree = "<group>"; };
  640. 274770B124BC0C0300181362 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
  641. 274770B224BC0C0300181362 /* NSArray+ks_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+ks_SafeAccess.h"; sourceTree = "<group>"; };
  642. 274770B324BC0C0300181362 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
  643. 274770B424BC0C0300181362 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  644. 274770B524BC0C0300181362 /* UIAlertController+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+Extend.m"; sourceTree = "<group>"; };
  645. 274770B624BC0C0300181362 /* UIImageView+CornerRadius.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+CornerRadius.h"; sourceTree = "<group>"; };
  646. 274770B724BC0C0300181362 /* CALayer+KSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+KSLayout.h"; sourceTree = "<group>"; };
  647. 274770B824BC0C0300181362 /* UIScreen+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+Extend.h"; sourceTree = "<group>"; };
  648. 274770B924BC0C0300181362 /* UIColor+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extend.m"; sourceTree = "<group>"; };
  649. 274770BA24BC0C0300181362 /* UIView+Dealloc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Dealloc.m"; sourceTree = "<group>"; };
  650. 274770BB24BC0C0300181362 /* NSObject+Parse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Parse.m"; sourceTree = "<group>"; };
  651. 274770BC24BC0C0300181362 /* UIView+AddConstraints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AddConstraints.m"; sourceTree = "<group>"; };
  652. 274770BD24BC0C0300181362 /* NSString+CZHSizeExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+CZHSizeExtension.m"; sourceTree = "<group>"; };
  653. 274770BE24BC0C0300181362 /* UITextView+ZWPlaceHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWPlaceHolder.h"; sourceTree = "<group>"; };
  654. 274770BF24BC0C0300181362 /* NSDictionary+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Extension.m"; sourceTree = "<group>"; };
  655. 274770C024BC0C0300181362 /* UIViewController+zhStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+zhStatusBarStyle.h"; sourceTree = "<group>"; };
  656. 274770C124BC0C0300181362 /* NSString+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+zh_SafeAccess.h"; sourceTree = "<group>"; };
  657. 274770C224BC0C0300181362 /* UIDevice+zhDeviceType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+zhDeviceType.h"; sourceTree = "<group>"; };
  658. 274770C324BC0C0300181362 /* UIControl+ButtonAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+ButtonAction.h"; sourceTree = "<group>"; };
  659. 274770C424BC0C0300181362 /* UIView+Hints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hints.m"; sourceTree = "<group>"; };
  660. 274770C524BC0C0300181362 /* NSObject+AssociatedObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AssociatedObject.h"; sourceTree = "<group>"; };
  661. 274770C624BC0C0300181362 /* NSArray+ks_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+ks_SafeAccess.m"; sourceTree = "<group>"; };
  662. 274770C724BC0C0300181362 /* UILabel+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extension.h"; sourceTree = "<group>"; };
  663. 274770C824BC0C0300181362 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
  664. 274770C924BC0C0300181362 /* UITextView+ZWLimitCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWLimitCounter.h"; sourceTree = "<group>"; };
  665. 274770CA24BC0C0300181362 /* NSString+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extension.m"; sourceTree = "<group>"; };
  666. 274770CB24BC0C0300181362 /* NSDate+Transform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Transform.m"; sourceTree = "<group>"; };
  667. 274770CC24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+CZHExtention.h"; sourceTree = "<group>"; };
  668. 274770CD24BC0C0300181362 /* CALayer+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Color.h"; sourceTree = "<group>"; };
  669. 274770CE24BC0C0300181362 /* UIScreen+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+Extend.m"; sourceTree = "<group>"; };
  670. 274770CF24BC0C0300181362 /* CALayer+KSLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+KSLayout.m"; sourceTree = "<group>"; };
  671. 274770D024BC0C0300181362 /* UIAlertController+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+Extend.h"; sourceTree = "<group>"; };
  672. 274770D124BC0C0300181362 /* UIImageView+CornerRadius.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+CornerRadius.m"; sourceTree = "<group>"; };
  673. 274770D224BC0C0300181362 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  674. 274770D324BC0C0300181362 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
  675. 274770D424BC0C0300181362 /* NSObject+Parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Parse.h"; sourceTree = "<group>"; };
  676. 274770D524BC0C0300181362 /* UIView+AddConstraints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AddConstraints.h"; sourceTree = "<group>"; };
  677. 274770D624BC0C0300181362 /* UIView+Dealloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Dealloc.h"; sourceTree = "<group>"; };
  678. 274770D724BC0C0300181362 /* UIColor+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extend.h"; sourceTree = "<group>"; };
  679. 274770D924BC0C0400181362 /* UIImage+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
  680. 274770DA24BC0C0400181362 /* UIView+XIBView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIBView.m"; sourceTree = "<group>"; };
  681. 274770DB24BC0C0400181362 /* UrlDecode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UrlDecode.m; sourceTree = "<group>"; };
  682. 274770DC24BC0C0400181362 /* UIButton+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Property.m"; sourceTree = "<group>"; };
  683. 274770DD24BC0C0400181362 /* UIDevice+TFDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+TFDevice.m"; sourceTree = "<group>"; };
  684. 274770DE24BC0C0400181362 /* UIColor+Hex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
  685. 274770DF24BC0C0400181362 /* MBProgressHUD+KSShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+KSShow.h"; sourceTree = "<group>"; };
  686. 274770E024BC0C0400181362 /* UIImage+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Property.m"; sourceTree = "<group>"; };
  687. 274770E124BC0C0400181362 /* UIImage+ResizeImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ResizeImage.m"; sourceTree = "<group>"; };
  688. 274770E224BC0C0400181362 /* UIButton+EnlargeEdge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+EnlargeEdge.h"; sourceTree = "<group>"; };
  689. 274770E324BC0C0400181362 /* UIButton+HasChooseImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+HasChooseImage.m"; sourceTree = "<group>"; };
  690. 274770E424BC0C0400181362 /* NSObject+AutoProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AutoProperty.m"; sourceTree = "<group>"; };
  691. 274770E524BC0C0400181362 /* UIImage+UIImageScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+UIImageScale.m"; sourceTree = "<group>"; };
  692. 274770E624BC0C0400181362 /* UIImage+Resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resize.h"; sourceTree = "<group>"; };
  693. 274770E724BC0C0400181362 /* UIView+XIBView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIBView.h"; sourceTree = "<group>"; };
  694. 274770E824BC0C0400181362 /* UIImage+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
  695. 274770E924BC0C0400181362 /* UIColor+Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
  696. 274770EA24BC0C0400181362 /* UIDevice+TFDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+TFDevice.h"; sourceTree = "<group>"; };
  697. 274770EB24BC0C0400181362 /* UIButton+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Property.h"; sourceTree = "<group>"; };
  698. 274770EC24BC0C0400181362 /* UrlDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UrlDecode.h; sourceTree = "<group>"; };
  699. 274770ED24BC0C0400181362 /* UIImage+UIImageScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+UIImageScale.h"; sourceTree = "<group>"; };
  700. 274770EE24BC0C0400181362 /* NSObject+AutoProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AutoProperty.h"; sourceTree = "<group>"; };
  701. 274770EF24BC0C0400181362 /* UIButton+EnlargeEdge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+EnlargeEdge.m"; sourceTree = "<group>"; };
  702. 274770F024BC0C0400181362 /* UIButton+HasChooseImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+HasChooseImage.h"; sourceTree = "<group>"; };
  703. 274770F124BC0C0400181362 /* UIImage+ResizeImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ResizeImage.h"; sourceTree = "<group>"; };
  704. 274770F224BC0C0400181362 /* UIImage+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Property.h"; sourceTree = "<group>"; };
  705. 274770F324BC0C0400181362 /* MBProgressHUD+KSShow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+KSShow.m"; sourceTree = "<group>"; };
  706. 274770F424BC0C0400181362 /* UIImage+Resize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resize.m"; sourceTree = "<group>"; };
  707. 274770F624BC0C0400181362 /* GRCreateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRCreateManager.m; sourceTree = "<group>"; };
  708. 274770F724BC0C0400181362 /* GRScanManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRScanManager.h; sourceTree = "<group>"; };
  709. 274770F824BC0C0400181362 /* KSChoosePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChoosePicker.m; sourceTree = "<group>"; };
  710. 274770FA24BC0C0400181362 /* KSAudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordManager.h; sourceTree = "<group>"; };
  711. 274770FB24BC0C0400181362 /* KSRecordStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordStatusView.h; sourceTree = "<group>"; };
  712. 274770FC24BC0C0400181362 /* KSHoldButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHoldButton.m; sourceTree = "<group>"; };
  713. 274770FD24BC0C0400181362 /* KSRecordPowerAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordPowerAnimationView.h; sourceTree = "<group>"; };
  714. 274770FE24BC0C0400181362 /* KSAudioRecordFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordFileManager.m; sourceTree = "<group>"; };
  715. 274770FF24BC0C0400181362 /* UIView+KSAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSAdditions.m"; sourceTree = "<group>"; };
  716. 2747710024BC0C0400181362 /* KSRecordStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordStatusView.m; sourceTree = "<group>"; };
  717. 2747710124BC0C0400181362 /* KSAudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordManager.m; sourceTree = "<group>"; };
  718. 2747710224BC0C0400181362 /* KSHoldButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHoldButton.h; sourceTree = "<group>"; };
  719. 2747710324BC0C0400181362 /* UIView+KSAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSAdditions.h"; sourceTree = "<group>"; };
  720. 2747710424BC0C0400181362 /* KSRecordPowerAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordPowerAnimationView.m; sourceTree = "<group>"; };
  721. 2747710524BC0C0400181362 /* KSAudioRecordFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordFileManager.h; sourceTree = "<group>"; };
  722. 2747710624BC0C0400181362 /* KSImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageButton.h; sourceTree = "<group>"; };
  723. 2747710724BC0C0400181362 /* KSFullDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSFullDatePicker.m; sourceTree = "<group>"; };
  724. 2747710824BC0C0400181362 /* NSString+phone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+phone.h"; sourceTree = "<group>"; };
  725. 2747710924BC0C0400181362 /* KSMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaManager.m; sourceTree = "<group>"; };
  726. 2747710A24BC0C0400181362 /* KSMessageInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMessageInputView.h; sourceTree = "<group>"; };
  727. 2747710B24BC0C0400181362 /* NSString+MD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MD5.h"; sourceTree = "<group>"; };
  728. 2747710E24BC0C0400181362 /* JXPagerListContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerListContainerView.m; sourceTree = "<group>"; };
  729. 2747710F24BC0C0400181362 /* JXPagerMainTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerMainTableView.m; sourceTree = "<group>"; };
  730. 2747711024BC0C0400181362 /* JXPagerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerView.m; sourceTree = "<group>"; };
  731. 2747711124BC0C0400181362 /* JXPagerListRefreshView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerListRefreshView.h; sourceTree = "<group>"; };
  732. 2747711224BC0C0400181362 /* JXPagerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerView.h; sourceTree = "<group>"; };
  733. 2747711324BC0C0400181362 /* JXPagerListContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerListContainerView.h; sourceTree = "<group>"; };
  734. 2747711424BC0C0400181362 /* JXPagerMainTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerMainTableView.h; sourceTree = "<group>"; };
  735. 2747711524BC0C0400181362 /* JXPagerListRefreshView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerListRefreshView.m; sourceTree = "<group>"; };
  736. 2747711824BC0C0400181362 /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorCell.h; sourceTree = "<group>"; };
  737. 2747711924BC0C0400181362 /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorCellModel.h; sourceTree = "<group>"; };
  738. 2747711A24BC0C0400181362 /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorView.h; sourceTree = "<group>"; };
  739. 2747711C24BC0C0400181362 /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorLineView.m; sourceTree = "<group>"; };
  740. 2747711D24BC0C0400181362 /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorTriangleView.m; sourceTree = "<group>"; };
  741. 2747711E24BC0C0400181362 /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorBackgroundView.h; sourceTree = "<group>"; };
  742. 2747711F24BC0C0400181362 /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorImageView.m; sourceTree = "<group>"; };
  743. 2747712024BC0C0400181362 /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorBallView.m; sourceTree = "<group>"; };
  744. 2747712124BC0C0400181362 /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorComponentView.m; sourceTree = "<group>"; };
  745. 2747712224BC0C0400181362 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorLineView.h; sourceTree = "<group>"; };
  746. 2747712324BC0C0400181362 /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorTriangleView.h; sourceTree = "<group>"; };
  747. 2747712424BC0C0400181362 /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorBallView.h; sourceTree = "<group>"; };
  748. 2747712524BC0C0400181362 /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorImageView.h; sourceTree = "<group>"; };
  749. 2747712624BC0C0400181362 /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorBackgroundView.m; sourceTree = "<group>"; };
  750. 2747712724BC0C0400181362 /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorComponentView.h; sourceTree = "<group>"; };
  751. 2747712824BC0C0400181362 /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorCellModel.m; sourceTree = "<group>"; };
  752. 2747712924BC0C0400181362 /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorCell.m; sourceTree = "<group>"; };
  753. 2747712A24BC0C0400181362 /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorView.m; sourceTree = "<group>"; };
  754. 2747712C24BC0C0400181362 /* JXCategoryDotCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotCell.m; sourceTree = "<group>"; };
  755. 2747712D24BC0C0400181362 /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotCellModel.h; sourceTree = "<group>"; };
  756. 2747712E24BC0C0400181362 /* JXCategoryDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotView.m; sourceTree = "<group>"; };
  757. 2747712F24BC0C0400181362 /* JXCategoryDotCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotCell.h; sourceTree = "<group>"; };
  758. 2747713024BC0C0400181362 /* JXCategoryDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotView.h; sourceTree = "<group>"; };
  759. 2747713124BC0C0400181362 /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotCellModel.m; sourceTree = "<group>"; };
  760. 2747713324BC0C0400181362 /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageView.m; sourceTree = "<group>"; };
  761. 2747713424BC0C0400181362 /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageCell.m; sourceTree = "<group>"; };
  762. 2747713524BC0C0400181362 /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageCellModel.h; sourceTree = "<group>"; };
  763. 2747713624BC0C0400181362 /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageView.h; sourceTree = "<group>"; };
  764. 2747713724BC0C0400181362 /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageCellModel.m; sourceTree = "<group>"; };
  765. 2747713824BC0C0400181362 /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageCell.h; sourceTree = "<group>"; };
  766. 2747713A24BC0C0400181362 /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleCellModel.h; sourceTree = "<group>"; };
  767. 2747713B24BC0C0400181362 /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleCell.h; sourceTree = "<group>"; };
  768. 2747713C24BC0C0400181362 /* JXCategoryTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleView.h; sourceTree = "<group>"; };
  769. 2747713D24BC0C0400181362 /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleCellModel.m; sourceTree = "<group>"; };
  770. 2747713E24BC0C0400181362 /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleCell.m; sourceTree = "<group>"; };
  771. 2747713F24BC0C0400181362 /* JXCategoryTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleView.m; sourceTree = "<group>"; };
  772. 2747714024BC0C0400181362 /* JXCategoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryView.h; sourceTree = "<group>"; };
  773. 2747714224BC0C0400181362 /* JXCategoryImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageView.m; sourceTree = "<group>"; };
  774. 2747714324BC0C0400181362 /* JXCategoryImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageCell.m; sourceTree = "<group>"; };
  775. 2747714424BC0C0400181362 /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageCellModel.h; sourceTree = "<group>"; };
  776. 2747714524BC0C0400181362 /* JXCategoryImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageView.h; sourceTree = "<group>"; };
  777. 2747714624BC0C0400181362 /* JXCategoryImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageCell.h; sourceTree = "<group>"; };
  778. 2747714724BC0C0400181362 /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageCellModel.m; sourceTree = "<group>"; };
  779. 2747714924BC0C0400181362 /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberCellModel.h; sourceTree = "<group>"; };
  780. 2747714A24BC0C0400181362 /* JXCategoryNumberView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberView.m; sourceTree = "<group>"; };
  781. 2747714B24BC0C0400181362 /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberCell.m; sourceTree = "<group>"; };
  782. 2747714C24BC0C0400181362 /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberCellModel.m; sourceTree = "<group>"; };
  783. 2747714D24BC0C0400181362 /* JXCategoryNumberView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberView.h; sourceTree = "<group>"; };
  784. 2747714E24BC0C0400181362 /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberCell.h; sourceTree = "<group>"; };
  785. 2747715024BC0C0400181362 /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryCollectionView.h; sourceTree = "<group>"; };
  786. 2747715124BC0C0400181362 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorProtocol.h; sourceTree = "<group>"; };
  787. 2747715224BC0C0400181362 /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryViewDefines.h; sourceTree = "<group>"; };
  788. 2747715324BC0C0400181362 /* JXCategoryFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryFactory.m; sourceTree = "<group>"; };
  789. 2747715424BC0C0400181362 /* UIColor+JXAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JXAdd.h"; sourceTree = "<group>"; };
  790. 2747715524BC0C0400181362 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryCollectionView.m; sourceTree = "<group>"; };
  791. 2747715624BC0C0400181362 /* UIColor+JXAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JXAdd.m"; sourceTree = "<group>"; };
  792. 2747715724BC0C0400181362 /* JXCategoryFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryFactory.h; sourceTree = "<group>"; };
  793. 2747715924BC0C0400181362 /* JXCategoryBaseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseView.h; sourceTree = "<group>"; };
  794. 2747715A24BC0C0400181362 /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseCell.h; sourceTree = "<group>"; };
  795. 2747715B24BC0C0400181362 /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseCellModel.h; sourceTree = "<group>"; };
  796. 2747715C24BC0C0400181362 /* JXCategoryBaseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseView.m; sourceTree = "<group>"; };
  797. 2747715D24BC0C0400181362 /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseCell.m; sourceTree = "<group>"; };
  798. 2747715E24BC0C0400181362 /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseCellModel.m; sourceTree = "<group>"; };
  799. 2747715F24BC0C0400181362 /* MBProgressHUD+NJ.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+NJ.m"; sourceTree = "<group>"; };
  800. 2747716124BC0C0400181362 /* UITextField_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextField_Toolbar.m; sourceTree = "<group>"; };
  801. 2747716224BC0C0400181362 /* SkipTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextField.m; sourceTree = "<group>"; };
  802. 2747716324BC0C0400181362 /* SkipTextProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextProtocol.h; sourceTree = "<group>"; };
  803. 2747716424BC0C0400181362 /* SkipTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextView.h; sourceTree = "<group>"; };
  804. 2747716524BC0C0400181362 /* UITextView_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextView_Toolbar.m; sourceTree = "<group>"; };
  805. 2747716624BC0C0400181362 /* UITextField_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField_Toolbar.h; sourceTree = "<group>"; };
  806. 2747716724BC0C0400181362 /* SkipTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextField.h; sourceTree = "<group>"; };
  807. 2747716824BC0C0400181362 /* SkipTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextView.m; sourceTree = "<group>"; };
  808. 2747716924BC0C0400181362 /* UITextView_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextView_Toolbar.h; sourceTree = "<group>"; };
  809. 2747716A24BC0C0400181362 /* NSDate+KSBaseDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+KSBaseDatePicker.h"; sourceTree = "<group>"; };
  810. 2747716B24BC0C0400181362 /* StateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateView.h; sourceTree = "<group>"; };
  811. 2747716C24BC0C0400181362 /* KSInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSInputView.h; sourceTree = "<group>"; };
  812. 2747716D24BC0C0400181362 /* GRScanManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRScanManager.m; sourceTree = "<group>"; };
  813. 2747716E24BC0C0400181362 /* GRCreateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRCreateManager.h; sourceTree = "<group>"; };
  814. 2747716F24BC0C0400181362 /* KSMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaManager.h; sourceTree = "<group>"; };
  815. 2747717024BC0C0400181362 /* NSString+phone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+phone.m"; sourceTree = "<group>"; };
  816. 2747717124BC0C0400181362 /* KSFullDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSFullDatePicker.h; sourceTree = "<group>"; };
  817. 2747717224BC0C0400181362 /* KSImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageButton.m; sourceTree = "<group>"; };
  818. 2747717324BC0C0400181362 /* KSChoosePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChoosePicker.h; sourceTree = "<group>"; };
  819. 2747717424BC0C0400181362 /* MBProgressHUD+NJ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+NJ.h"; sourceTree = "<group>"; };
  820. 2747717524BC0C0400181362 /* NSString+MD5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MD5.m"; sourceTree = "<group>"; };
  821. 2747717624BC0C0400181362 /* KSMessageInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMessageInputView.m; sourceTree = "<group>"; };
  822. 2747717724BC0C0400181362 /* KSInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSInputView.m; sourceTree = "<group>"; };
  823. 2747717824BC0C0400181362 /* StateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateView.m; sourceTree = "<group>"; };
  824. 2747717924BC0C0400181362 /* NSDate+KSBaseDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+KSBaseDatePicker.m"; sourceTree = "<group>"; };
  825. 2747717B24BC0C0400181362 /* LLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhotoBrowser.m; sourceTree = "<group>"; };
  826. 2747717C24BC0C0400181362 /* LLCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLCollectionViewCell.h; sourceTree = "<group>"; };
  827. 2747717E24BC0C0400181362 /* LLImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLImageCache.m; sourceTree = "<group>"; };
  828. 2747717F24BC0C0400181362 /* LLFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLFileManager.m; sourceTree = "<group>"; };
  829. 2747718024BC0C0400181362 /* LLImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLImageCache.h; sourceTree = "<group>"; };
  830. 2747718124BC0C0400181362 /* LLFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLFileManager.h; sourceTree = "<group>"; };
  831. 2747718224BC0C0400181362 /* LLPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhoto.m; sourceTree = "<group>"; };
  832. 2747718324BC0C0400181362 /* LLCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLCollectionViewCell.m; sourceTree = "<group>"; };
  833. 2747718424BC0C0400181362 /* LLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhotoBrowser.h; sourceTree = "<group>"; };
  834. 2747718524BC0C0400181362 /* LLPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhoto.h; sourceTree = "<group>"; };
  835. 2747718624BC0C0400181362 /* KSRequestManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRequestManager.h; sourceTree = "<group>"; };
  836. 2747726824BC0C7C00181362 /* RongSight.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongSight.framework; sourceTree = "<group>"; };
  837. 2747726924BC0C7C00181362 /* RongRTCLib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongRTCLib.framework; sourceTree = "<group>"; };
  838. 2747726B24BC0C7C00181362 /* RongIMLib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongIMLib.framework; sourceTree = "<group>"; };
  839. 2747726C24BC0C7C00181362 /* libopencore-amrwb.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libopencore-amrwb.a"; sourceTree = "<group>"; };
  840. 2747726D24BC0C7C00181362 /* libopencore-amrnb.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libopencore-amrnb.a"; sourceTree = "<group>"; };
  841. 2747726E24BC0C7C00181362 /* libvo-amrwbenc.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libvo-amrwbenc.a"; sourceTree = "<group>"; };
  842. 2747726F24BC0C7C00181362 /* RCConfig.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = RCConfig.plist; sourceTree = "<group>"; };
  843. 2747727124BC0C7C00181362 /* RCColor.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = RCColor.plist; sourceTree = "<group>"; };
  844. 2747727324BC0C7C00181362 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/RongCloudKit.strings"; sourceTree = "<group>"; };
  845. 2747727424BC0C7C00181362 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/RongCloudKit.strings; sourceTree = "<group>"; };
  846. 2747727524BC0C7C00181362 /* RongIMKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongIMKit.framework; sourceTree = "<group>"; };
  847. 2747727624BC0C7C00181362 /* Emoji.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Emoji.plist; sourceTree = "<group>"; };
  848. 2747727724BC0C7C00181362 /* RongCloud.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = RongCloud.bundle; sourceTree = "<group>"; };
  849. 2747728424BC0D4200181362 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
  850. 2747728624BC0D4800181362 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
  851. 2747728824BC0D5200181362 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
  852. 2747728A24BC0D5800181362 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  853. 2747728C24BC0D5F00181362 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  854. 2747728E24BC0D6500181362 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  855. 2747729024BC0D6B00181362 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
  856. 2747729224BC0D7300181362 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  857. 2747729424BC0D7A00181362 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  858. 2747729624BC0D8000181362 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
  859. 2747729824BC0D8700181362 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  860. 2747729A24BC0D8D00181362 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
  861. 2747729C24BC0D9300181362 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
  862. 2747729E24BC0D9B00181362 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
  863. 274772A024BC0DA000181362 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
  864. 274772A224BC0DA800181362 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  865. 274772A424BC0DAE00181362 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  866. 274772A624BC0DB500181362 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
  867. 274772A824BC0DC000181362 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  868. 274772AA24BC0DC900181362 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  869. 274772AC24BC0DD000181362 /* libbz2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.tbd; path = usr/lib/libbz2.tbd; sourceTree = SDKROOT; };
  870. 274772AE24BC0DDE00181362 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
  871. 274772B024BC0DEB00181362 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  872. 2748F8EF24C05F4C003F8E11 /* ExamLibraryController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamLibraryController.h; sourceTree = "<group>"; };
  873. 2748F8F024C05F4C003F8E11 /* ExamLibraryController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamLibraryController.m; sourceTree = "<group>"; };
  874. 2748F8F224C1389F003F8E11 /* ExamLibraryListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamLibraryListCell.h; sourceTree = "<group>"; };
  875. 2748F8F324C1389F003F8E11 /* ExamLibraryListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamLibraryListCell.m; sourceTree = "<group>"; };
  876. 2748F8F424C1389F003F8E11 /* ExamLibraryListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ExamLibraryListCell.xib; sourceTree = "<group>"; };
  877. 27544CF624BC337D00EF58AF /* ExamTicketViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamTicketViewController.h; sourceTree = "<group>"; };
  878. 27544CF724BC337D00EF58AF /* ExamTicketViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamTicketViewController.m; sourceTree = "<group>"; };
  879. 27544CF924BC338900EF58AF /* UserCenterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCenterViewController.h; sourceTree = "<group>"; };
  880. 27544CFA24BC338900EF58AF /* UserCenterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserCenterViewController.m; sourceTree = "<group>"; };
  881. 2794D1AE24BC604800BAF6F3 /* VefiBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VefiBodyView.h; sourceTree = "<group>"; };
  882. 2794D1AF24BC604800BAF6F3 /* VefiBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VefiBodyView.m; sourceTree = "<group>"; };
  883. 2794D1B124BC605600BAF6F3 /* VefiBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = VefiBodyView.xib; sourceTree = "<group>"; };
  884. 2794D1B324BC662600BAF6F3 /* VeriCheckView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VeriCheckView.h; sourceTree = "<group>"; };
  885. 2794D1B424BC662600BAF6F3 /* VeriCheckView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VeriCheckView.m; sourceTree = "<group>"; };
  886. 2794D1B624BC699700BAF6F3 /* RegisterBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegisterBodyView.h; sourceTree = "<group>"; };
  887. 2794D1B724BC699700BAF6F3 /* RegisterBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RegisterBodyView.m; sourceTree = "<group>"; };
  888. 2794D1B924BC69A400BAF6F3 /* RegisterBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RegisterBodyView.xib; sourceTree = "<group>"; };
  889. 2794D1BB24BD4CF800BAF6F3 /* FSBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FSBodyView.h; sourceTree = "<group>"; };
  890. 2794D1BC24BD4CF800BAF6F3 /* FSBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FSBodyView.m; sourceTree = "<group>"; };
  891. 2794D1BE24BD4D0C00BAF6F3 /* FSBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FSBodyView.xib; sourceTree = "<group>"; };
  892. 2794D1C024BD60D500BAF6F3 /* UserCenterBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCenterBodyView.h; sourceTree = "<group>"; };
  893. 2794D1C124BD60D500BAF6F3 /* UserCenterBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserCenterBodyView.m; sourceTree = "<group>"; };
  894. 2794D1C324BD60E900BAF6F3 /* UserCenterBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = UserCenterBodyView.xib; sourceTree = "<group>"; };
  895. 2794D1C524BD62FB00BAF6F3 /* ModifyBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ModifyBodyView.h; sourceTree = "<group>"; };
  896. 2794D1C624BD62FB00BAF6F3 /* ModifyBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ModifyBodyView.m; sourceTree = "<group>"; };
  897. 2794D1C824BD631A00BAF6F3 /* ModifyBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ModifyBodyView.xib; sourceTree = "<group>"; };
  898. 27A0089B24BD96C50002452B /* NetworkingCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkingCheckController.h; sourceTree = "<group>"; };
  899. 27A0089C24BD96C50002452B /* NetworkingCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkingCheckController.m; sourceTree = "<group>"; };
  900. 27A0089F24BD96C50002452B /* KSNetworkAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAlert.h; sourceTree = "<group>"; };
  901. 27A008A024BD96C50002452B /* NetworkBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkBodyView.m; sourceTree = "<group>"; };
  902. 27A008A124BD96C50002452B /* NetworkBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetworkBodyView.xib; sourceTree = "<group>"; };
  903. 27A008A224BD96C50002452B /* KSNetworkAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAlert.m; sourceTree = "<group>"; };
  904. 27A008A324BD96C50002452B /* NetworkBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkBodyView.h; sourceTree = "<group>"; };
  905. 27A008A424BD96C50002452B /* KSNetworkAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSNetworkAlert.xib; sourceTree = "<group>"; };
  906. 27A008AB24BD96E50002452B /* DeviceCheckView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceCheckView.xib; sourceTree = "<group>"; };
  907. 27A008AC24BD96E50002452B /* DeviceCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceCheckView.m; sourceTree = "<group>"; };
  908. 27A008AD24BD96E50002452B /* DeviceCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceCheckView.h; sourceTree = "<group>"; };
  909. 27A008B324BD97FE0002452B /* AudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioRecordManager.h; sourceTree = "<group>"; };
  910. 27A008B424BD97FE0002452B /* AudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioRecordManager.m; sourceTree = "<group>"; };
  911. 27A008B624BD98170002452B /* AudioPlayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioPlayManager.h; sourceTree = "<group>"; };
  912. 27A008B724BD98170002452B /* AudioPlayManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioPlayManager.m; sourceTree = "<group>"; };
  913. 27A008C124BD99B10002452B /* SettingViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SettingViewController.h; sourceTree = "<group>"; };
  914. 27A008C224BD99B10002452B /* SettingViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SettingViewController.m; sourceTree = "<group>"; };
  915. 27A008C424BD99BD0002452B /* UserViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserViewController.h; sourceTree = "<group>"; };
  916. 27A008C524BD99BD0002452B /* UserViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserViewController.m; sourceTree = "<group>"; };
  917. 27A008C724BD9D550002452B /* KSNetTypeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetTypeManager.h; sourceTree = "<group>"; };
  918. 27A008C824BD9D550002452B /* KSNetTypeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetTypeManager.m; sourceTree = "<group>"; };
  919. 27A008CA24BD9E8A0002452B /* SettingBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SettingBodyView.h; sourceTree = "<group>"; };
  920. 27A008CB24BD9E8A0002452B /* SettingBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SettingBodyView.m; sourceTree = "<group>"; };
  921. 27A008CD24BD9E950002452B /* SettingBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SettingBodyView.xib; sourceTree = "<group>"; };
  922. 27A008CF24BDA67E0002452B /* ModifyPhoneChangeController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneChangeController.h; sourceTree = "<group>"; };
  923. 27A008D024BDA67E0002452B /* ModifyPhoneChangeController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneChangeController.m; sourceTree = "<group>"; };
  924. 27A008D124BDA67E0002452B /* ModifyPhoneCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneCheckController.h; sourceTree = "<group>"; };
  925. 27A008D224BDA67F0002452B /* ModifyPhoneCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneCheckController.m; sourceTree = "<group>"; };
  926. 27A008D524BDA6940002452B /* PhoneChangeBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhoneChangeBodyView.xib; sourceTree = "<group>"; };
  927. 27A008D624BDA6940002452B /* PhoneChangeBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhoneChangeBodyView.m; sourceTree = "<group>"; };
  928. 27A008D724BDA6940002452B /* PhoneCheckBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhoneCheckBodyView.h; sourceTree = "<group>"; };
  929. 27A008D824BDA6950002452B /* PhoneChangeBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhoneChangeBodyView.h; sourceTree = "<group>"; };
  930. 27A008D924BDA6950002452B /* PhoneCheckBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhoneCheckBodyView.m; sourceTree = "<group>"; };
  931. 27A008DA24BDA6950002452B /* PhoneCheckBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhoneCheckBodyView.xib; sourceTree = "<group>"; };
  932. 27A008DF24BDA6B30002452B /* FeedbackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
  933. 27A008E024BDA6B40002452B /* FeedbackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
  934. 27A008E224BDA6C30002452B /* FeedbackBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FeedbackBodyView.xib; sourceTree = "<group>"; };
  935. 27A008E324BDA6C30002452B /* FeedbackBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackBodyView.m; sourceTree = "<group>"; };
  936. 27A008E424BDA6C40002452B /* FeedbackBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackBodyView.h; sourceTree = "<group>"; };
  937. 27A008E724BDA7070002452B /* AboutUsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutUsViewController.m; sourceTree = "<group>"; };
  938. 27A008E824BDA7070002452B /* AboutUsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutUsViewController.h; sourceTree = "<group>"; };
  939. 27A008EA24BDA70F0002452B /* AboutBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AboutBodyView.xib; sourceTree = "<group>"; };
  940. 27A008EB24BDA7100002452B /* AboutBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutBodyView.m; sourceTree = "<group>"; };
  941. 27A008EC24BDA7100002452B /* AboutBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutBodyView.h; sourceTree = "<group>"; };
  942. 27A008EF24BDB1E20002452B /* SysUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SysUser.h; sourceTree = "<group>"; };
  943. 27A008F024BDB1E30002452B /* SysUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SysUser.m; sourceTree = "<group>"; };
  944. 27A008F124BDB1E30002452B /* UserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfo.h; sourceTree = "<group>"; };
  945. 27A008F224BDB1E50002452B /* UserInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfo.m; sourceTree = "<group>"; };
  946. 27A008F524BDB6220002452B /* UserBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserBodyView.h; sourceTree = "<group>"; };
  947. 27A008F624BDB6220002452B /* UserBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserBodyView.m; sourceTree = "<group>"; };
  948. 27A008F824BDB6310002452B /* UserBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = UserBodyView.xib; sourceTree = "<group>"; };
  949. 27A008FA24BECDC40002452B /* HomeBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBodyView.h; sourceTree = "<group>"; };
  950. 27A008FB24BECDC40002452B /* HomeBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBodyView.m; sourceTree = "<group>"; };
  951. 27A008FD24BECDFC0002452B /* HomeBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeBodyView.xib; sourceTree = "<group>"; };
  952. 27EF3EEC24BEE35E002068A2 /* MessageListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageListModel.h; sourceTree = "<group>"; };
  953. 27EF3EED24BEE35E002068A2 /* MessageListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageListModel.m; sourceTree = "<group>"; };
  954. 27EF3EEF24BEE885002068A2 /* NotifyMessageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotifyMessageCell.h; sourceTree = "<group>"; };
  955. 27EF3EF024BEE885002068A2 /* NotifyMessageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotifyMessageCell.m; sourceTree = "<group>"; };
  956. 27EF3EF124BEE885002068A2 /* NotifyMessageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NotifyMessageCell.xib; sourceTree = "<group>"; };
  957. 27EF3EF424BEF1DA002068A2 /* TicketBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TicketBodyView.h; sourceTree = "<group>"; };
  958. 27EF3EF524BEF1DA002068A2 /* TicketBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TicketBodyView.m; sourceTree = "<group>"; };
  959. 27EF3EF724BEF1E8002068A2 /* TicketBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TicketBodyView.xib; sourceTree = "<group>"; };
  960. 27EF3EF924BEFC79002068A2 /* WaitExamViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitExamViewController.h; sourceTree = "<group>"; };
  961. 27EF3EFA24BEFC79002068A2 /* WaitExamViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitExamViewController.m; sourceTree = "<group>"; };
  962. 27EF3EFC24BF015A002068A2 /* WaitExamBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitExamBodyView.h; sourceTree = "<group>"; };
  963. 27EF3EFD24BF015A002068A2 /* WaitExamBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitExamBodyView.m; sourceTree = "<group>"; };
  964. 27EF3EFF24BF016B002068A2 /* WaitExamBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WaitExamBodyView.xib; sourceTree = "<group>"; };
  965. 27EF3F0124BF0F11002068A2 /* TicketListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketListModel.h; sourceTree = "<group>"; };
  966. 27EF3F0224BF0F12002068A2 /* TicketListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketListModel.m; sourceTree = "<group>"; };
  967. 27EF3F0424BFF8A0002068A2 /* TicketDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketDetailModel.m; sourceTree = "<group>"; };
  968. 27EF3F0524BFF8A1002068A2 /* TicketDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketDetailModel.h; sourceTree = "<group>"; };
  969. 27EF3F0724C02B3E002068A2 /* LocalRenderManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalRenderManager.m; sourceTree = "<group>"; };
  970. 27EF3F0824C02B3F002068A2 /* LocalRenderManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalRenderManager.h; sourceTree = "<group>"; };
  971. 27EF3F0B24C02B67002068A2 /* KSTipsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTipsView.m; sourceTree = "<group>"; };
  972. 27EF3F0C24C02B67002068A2 /* KSTipsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTipsView.h; sourceTree = "<group>"; };
  973. 27EF3F0E24C02B67002068A2 /* KSNormalAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNormalAlertView.h; sourceTree = "<group>"; };
  974. 27EF3F0F24C02B67002068A2 /* KSNormalAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNormalAlertView.m; sourceTree = "<group>"; };
  975. 27EF3F1124C02B67002068A2 /* ClassTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassTitleView.h; sourceTree = "<group>"; };
  976. 27EF3F1224C02B67002068A2 /* ClassTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassTitleView.m; sourceTree = "<group>"; };
  977. 27EF3F1424C02B67002068A2 /* ClassVideoListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListView.h; sourceTree = "<group>"; };
  978. 27EF3F1524C02B68002068A2 /* ClassVideoListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListCell.h; sourceTree = "<group>"; };
  979. 27EF3F1724C02B68002068A2 /* ClassVideoListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListView.m; sourceTree = "<group>"; };
  980. 27EF3F1924C02B68002068A2 /* ClassVideoListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListCell.m; sourceTree = "<group>"; };
  981. 27EF3F1B24C02B68002068A2 /* MainToolView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainToolView.m; sourceTree = "<group>"; };
  982. 27EF3F1C24C02B68002068A2 /* MainToolView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainToolView.h; sourceTree = "<group>"; };
  983. 27EF3F1E24C02B68002068A2 /* ClassroomMainContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomMainContainer.h; sourceTree = "<group>"; };
  984. 27EF3F1F24C02B68002068A2 /* ClassroomMainContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomMainContainer.m; sourceTree = "<group>"; };
  985. 27EF3F2824C02DE8002068A2 /* EmptyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmptyView.m; sourceTree = "<group>"; };
  986. 27EF3F2924C02DE9002068A2 /* EmptyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmptyView.h; sourceTree = "<group>"; };
  987. 27EF3F2B24C0384E002068A2 /* HomeExamTicketCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeExamTicketCell.h; sourceTree = "<group>"; };
  988. 27EF3F2C24C0384E002068A2 /* HomeExamTicketCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeExamTicketCell.m; sourceTree = "<group>"; };
  989. 27EF3F2D24C0384E002068A2 /* HomeExamTicketCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeExamTicketCell.xib; sourceTree = "<group>"; };
  990. 2BB32BBE582672362BB6E017 /* Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig"; sourceTree = "<group>"; };
  991. 2F7D3758362ED28D51286A60 /* Pods-MusicGradeExam.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam.debug.xcconfig"; sourceTree = "<group>"; };
  992. 5402063E714DA9D9107F8070 /* Pods-MusicGradeExamTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExamTests.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExamTests/Pods-MusicGradeExamTests.debug.xcconfig"; sourceTree = "<group>"; };
  993. 8BAA64634BC925E7C2CD7008 /* libPods-MusicGradeExamTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExamTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  994. E19677AAD7D01861E10F49D5 /* Pods-MusicGradeExamTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExamTests.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExamTests/Pods-MusicGradeExamTests.release.xcconfig"; sourceTree = "<group>"; };
  995. E1DA29861866096EC2DBC683 /* Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig"; sourceTree = "<group>"; };
  996. F8D13E0A14104E75F7922812 /* libPods-MusicGradeExam-MusicGradeExamUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExam-MusicGradeExamUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  997. /* End PBXFileReference section */
  998. /* Begin PBXFrameworksBuildPhase section */
  999. 27476F4024BBFB5900181362 /* Frameworks */ = {
  1000. isa = PBXFrameworksBuildPhase;
  1001. buildActionMask = 2147483647;
  1002. files = (
  1003. 274772B124BC0DEB00181362 /* libsqlite3.tbd in Frameworks */,
  1004. 274772AF24BC0DDF00181362 /* libiconv.tbd in Frameworks */,
  1005. 274772AD24BC0DD000181362 /* libbz2.tbd in Frameworks */,
  1006. 274772AB24BC0DC900181362 /* libz.tbd in Frameworks */,
  1007. 274772A924BC0DC100181362 /* libc++.tbd in Frameworks */,
  1008. 274772A724BC0DB500181362 /* VideoToolbox.framework in Frameworks */,
  1009. 274772A524BC0DAE00181362 /* AudioToolbox.framework in Frameworks */,
  1010. 274772A324BC0DA800181362 /* CFNetwork.framework in Frameworks */,
  1011. 274772A124BC0DA000181362 /* CoreVideo.framework in Frameworks */,
  1012. 2747729F24BC0D9B00181362 /* CoreAudio.framework in Frameworks */,
  1013. 2747729D24BC0D9300181362 /* CoreMedia.framework in Frameworks */,
  1014. 2747729B24BC0D8D00181362 /* CoreFoundation.framework in Frameworks */,
  1015. 2747729924BC0D8700181362 /* CoreTelephony.framework in Frameworks */,
  1016. 2747729724BC0D8100181362 /* CoreLocation.framework in Frameworks */,
  1017. 2747729524BC0D7A00181362 /* CoreGraphics.framework in Frameworks */,
  1018. 2747729324BC0D7300181362 /* OpenGLES.framework in Frameworks */,
  1019. 2747729124BC0D6C00181362 /* GLKit.framework in Frameworks */,
  1020. 2747728F24BC0D6500181362 /* AVFoundation.framework in Frameworks */,
  1021. 2747728D24BC0D5F00181362 /* QuartzCore.framework in Frameworks */,
  1022. 2747728B24BC0D5800181362 /* Security.framework in Frameworks */,
  1023. 2747728924BC0D5200181362 /* ImageIO.framework in Frameworks */,
  1024. 2747728724BC0D4800181362 /* MapKit.framework in Frameworks */,
  1025. 2747728524BC0D4300181362 /* AssetsLibrary.framework in Frameworks */,
  1026. 2747727824BC0C7C00181362 /* RongSight.framework in Frameworks */,
  1027. 2747727C24BC0C7C00181362 /* libopencore-amrnb.a in Frameworks */,
  1028. 2747727B24BC0C7C00181362 /* libopencore-amrwb.a in Frameworks */,
  1029. 2747728124BC0C7C00181362 /* RongIMKit.framework in Frameworks */,
  1030. 2747727D24BC0C7C00181362 /* libvo-amrwbenc.a in Frameworks */,
  1031. 52771C0027351695CEDB4C8E /* libPods-MusicGradeExam.a in Frameworks */,
  1032. 2747727A24BC0C7C00181362 /* RongIMLib.framework in Frameworks */,
  1033. 2747727924BC0C7C00181362 /* RongRTCLib.framework in Frameworks */,
  1034. );
  1035. runOnlyForDeploymentPostprocessing = 0;
  1036. };
  1037. 27476F5B24BBFB5C00181362 /* Frameworks */ = {
  1038. isa = PBXFrameworksBuildPhase;
  1039. buildActionMask = 2147483647;
  1040. files = (
  1041. 5577ECF41C84E1BDFEC99DBC /* libPods-MusicGradeExamTests.a in Frameworks */,
  1042. );
  1043. runOnlyForDeploymentPostprocessing = 0;
  1044. };
  1045. 27476F6624BBFB5C00181362 /* Frameworks */ = {
  1046. isa = PBXFrameworksBuildPhase;
  1047. buildActionMask = 2147483647;
  1048. files = (
  1049. A7C23B2E920E232C71C39B0E /* libPods-MusicGradeExam-MusicGradeExamUITests.a in Frameworks */,
  1050. );
  1051. runOnlyForDeploymentPostprocessing = 0;
  1052. };
  1053. /* End PBXFrameworksBuildPhase section */
  1054. /* Begin PBXGroup section */
  1055. 27476F3A24BBFB5900181362 = {
  1056. isa = PBXGroup;
  1057. children = (
  1058. 27476F4524BBFB5900181362 /* MusicGradeExam */,
  1059. 27476F6124BBFB5C00181362 /* MusicGradeExamTests */,
  1060. 27476F6C24BBFB5C00181362 /* MusicGradeExamUITests */,
  1061. 27476F4424BBFB5900181362 /* Products */,
  1062. 3765A35FA865CF0E79E4496A /* Pods */,
  1063. 8478281B4E8B1E1D71EF685C /* Frameworks */,
  1064. );
  1065. sourceTree = "<group>";
  1066. };
  1067. 27476F4424BBFB5900181362 /* Products */ = {
  1068. isa = PBXGroup;
  1069. children = (
  1070. 27476F4324BBFB5900181362 /* 酷乐秀.app */,
  1071. 27476F5E24BBFB5C00181362 /* MusicGradeExamTests.xctest */,
  1072. 27476F6924BBFB5C00181362 /* MusicGradeExamUITests.xctest */,
  1073. );
  1074. name = Products;
  1075. sourceTree = "<group>";
  1076. };
  1077. 27476F4524BBFB5900181362 /* MusicGradeExam */ = {
  1078. isa = PBXGroup;
  1079. children = (
  1080. 2747718624BC0C0400181362 /* KSRequestManager.h */,
  1081. 2747700224BC0C0000181362 /* KSRequestManager.m */,
  1082. 2747707524BC0C0200181362 /* Manager */,
  1083. 2747700324BC0C0100181362 /* UI */,
  1084. 27476FF524BC0C0000181362 /* Base */,
  1085. 2747707E24BC0C0200181362 /* Define */,
  1086. 27476F7B24BC0BFF00181362 /* ThirdPart */,
  1087. 2747708224BC0C0300181362 /* Tools */,
  1088. 27476F4624BBFB5900181362 /* AppDelegate.h */,
  1089. 27476F4724BBFB5900181362 /* AppDelegate.m */,
  1090. 27476F4C24BBFB5900181362 /* ViewController.h */,
  1091. 27476F4D24BBFB5900181362 /* ViewController.m */,
  1092. 27476F4F24BBFB5900181362 /* Main.storyboard */,
  1093. 27476F5224BBFB5C00181362 /* Assets.xcassets */,
  1094. 27476F5424BBFB5C00181362 /* LaunchScreen.storyboard */,
  1095. 27476F5724BBFB5C00181362 /* Info.plist */,
  1096. 27476F5824BBFB5C00181362 /* main.m */,
  1097. 2747726624BC0C7C00181362 /* RongCloud */,
  1098. );
  1099. path = MusicGradeExam;
  1100. sourceTree = "<group>";
  1101. };
  1102. 27476F6124BBFB5C00181362 /* MusicGradeExamTests */ = {
  1103. isa = PBXGroup;
  1104. children = (
  1105. 27476F6224BBFB5C00181362 /* MusicGradeExamTests.m */,
  1106. 27476F6424BBFB5C00181362 /* Info.plist */,
  1107. );
  1108. path = MusicGradeExamTests;
  1109. sourceTree = "<group>";
  1110. };
  1111. 27476F6C24BBFB5C00181362 /* MusicGradeExamUITests */ = {
  1112. isa = PBXGroup;
  1113. children = (
  1114. 27476F6D24BBFB5C00181362 /* MusicGradeExamUITests.m */,
  1115. 27476F6F24BBFB5C00181362 /* Info.plist */,
  1116. );
  1117. path = MusicGradeExamUITests;
  1118. sourceTree = "<group>";
  1119. };
  1120. 27476F7B24BC0BFF00181362 /* ThirdPart */ = {
  1121. isa = PBXGroup;
  1122. children = (
  1123. 27476FE124BC0BFF00181362 /* ALCalendarPicker */,
  1124. 27476FD524BC0BFF00181362 /* DZNSegmentedControl.h */,
  1125. 27476F7D24BC0BFF00181362 /* DZNSegmentedControl.m */,
  1126. 27476FCF24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.h */,
  1127. 27476F7C24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.m */,
  1128. 27476F8A24BC0BFF00181362 /* KSPickerView.h */,
  1129. 27476FDE24BC0BFF00181362 /* KSPickerView.m */,
  1130. 27476FB224BC0BFF00181362 /* MSSBrowse */,
  1131. 27476F7E24BC0BFF00181362 /* NSObject+ReadDocument.h */,
  1132. 27476FE024BC0BFF00181362 /* NSObject+ReadDocument.m */,
  1133. 27476FDD24BC0BFF00181362 /* QWNavigationBar */,
  1134. 27476FAB24BC0BFF00181362 /* SCIndexView */,
  1135. 27476FD624BC0BFF00181362 /* TYCyclePagerView */,
  1136. 27476F8B24BC0BFF00181362 /* TZImagePickerController */,
  1137. 27476FF424BC0BFF00181362 /* UIView+Animation.h */,
  1138. 27476FCE24BC0BFF00181362 /* UIView+Animation.m */,
  1139. 27476FDF24BC0BFF00181362 /* UIView+ShowProgress.h */,
  1140. 27476F8924BC0BFF00181362 /* UIView+ShowProgress.m */,
  1141. 27476F7F24BC0BFF00181362 /* WMPlayer */,
  1142. 27476FD024BC0BFF00181362 /* ZKCycleScrollView */,
  1143. );
  1144. path = ThirdPart;
  1145. sourceTree = "<group>";
  1146. };
  1147. 27476F7F24BC0BFF00181362 /* WMPlayer */ = {
  1148. isa = PBXGroup;
  1149. children = (
  1150. 27476F8024BC0BFF00181362 /* WMLightView.h */,
  1151. 27476F8124BC0BFF00181362 /* WMPlayerModel.m */,
  1152. 27476F8224BC0BFF00181362 /* FastForwardView.h */,
  1153. 27476F8324BC0BFF00181362 /* WMPlayer.bundle */,
  1154. 27476F8424BC0BFF00181362 /* WMPlayer.h */,
  1155. 27476F8524BC0BFF00181362 /* WMPlayerModel.h */,
  1156. 27476F8624BC0BFF00181362 /* WMLightView.m */,
  1157. 27476F8724BC0BFF00181362 /* FastForwardView.m */,
  1158. 27476F8824BC0BFF00181362 /* WMPlayer.m */,
  1159. );
  1160. path = WMPlayer;
  1161. sourceTree = "<group>";
  1162. };
  1163. 27476F8B24BC0BFF00181362 /* TZImagePickerController */ = {
  1164. isa = PBXGroup;
  1165. children = (
  1166. 27476F8C24BC0BFF00181362 /* TZPhotoPreviewCell.h */,
  1167. 27476F8D24BC0BFF00181362 /* TZPhotoPickerController.h */,
  1168. 27476F8E24BC0BFF00181362 /* TZImageCropManager.m */,
  1169. 27476F8F24BC0BFF00181362 /* TZImageManager.h */,
  1170. 27476F9024BC0BFF00181362 /* TZAssetCell.m */,
  1171. 27476F9124BC0BFF00181362 /* TZVideoPlayerController.m */,
  1172. 27476F9224BC0BFF00181362 /* TZAssetModel.m */,
  1173. 27476F9324BC0BFF00181362 /* NSBundle+TZImagePicker.m */,
  1174. 27476F9424BC0BFF00181362 /* TZLocationManager.h */,
  1175. 27476F9524BC0BFF00181362 /* TZImagePickerController.h */,
  1176. 27476F9624BC0BFF00181362 /* UIView+Layout.m */,
  1177. 27476F9724BC0BFF00181362 /* TZPhotoPreviewController.m */,
  1178. 27476F9824BC0BFF00181362 /* TZImagePickerController.bundle */,
  1179. 27476F9924BC0BFF00181362 /* TZProgressView.m */,
  1180. 27476F9A24BC0BFF00181362 /* TZGifPhotoPreviewController.h */,
  1181. 27476F9B24BC0BFF00181362 /* TZImageRequestOperation.h */,
  1182. 27476F9C24BC0BFF00181362 /* TZAssetCell.h */,
  1183. 27476F9D24BC0BFF00181362 /* TZImageManager.m */,
  1184. 27476F9E24BC0BFF00181362 /* TZImageCropManager.h */,
  1185. 27476F9F24BC0BFF00181362 /* TZPhotoPickerController.m */,
  1186. 27476FA024BC0BFF00181362 /* TZPhotoPreviewCell.m */,
  1187. 27476FA124BC0BFF00181362 /* NSBundle+TZImagePicker.h */,
  1188. 27476FA224BC0BFF00181362 /* TZAssetModel.h */,
  1189. 27476FA324BC0BFF00181362 /* TZVideoPlayerController.h */,
  1190. 27476FA424BC0BFF00181362 /* TZPhotoPreviewController.h */,
  1191. 27476FA524BC0BFF00181362 /* UIView+Layout.h */,
  1192. 27476FA624BC0BFF00181362 /* TZImagePickerController.m */,
  1193. 27476FA724BC0BFF00181362 /* TZLocationManager.m */,
  1194. 27476FA824BC0BFF00181362 /* TZGifPhotoPreviewController.m */,
  1195. 27476FA924BC0BFF00181362 /* TZImageRequestOperation.m */,
  1196. 27476FAA24BC0BFF00181362 /* TZProgressView.h */,
  1197. );
  1198. path = TZImagePickerController;
  1199. sourceTree = "<group>";
  1200. };
  1201. 27476FAB24BC0BFF00181362 /* SCIndexView */ = {
  1202. isa = PBXGroup;
  1203. children = (
  1204. 27476FAC24BC0BFF00181362 /* SCIndexViewConfiguration.m */,
  1205. 27476FAD24BC0BFF00181362 /* UITableView+SCIndexView.h */,
  1206. 27476FAE24BC0BFF00181362 /* SCIndexView.m */,
  1207. 27476FAF24BC0BFF00181362 /* SCIndexViewConfiguration.h */,
  1208. 27476FB024BC0BFF00181362 /* UITableView+SCIndexView.m */,
  1209. 27476FB124BC0BFF00181362 /* SCIndexView.h */,
  1210. );
  1211. path = SCIndexView;
  1212. sourceTree = "<group>";
  1213. };
  1214. 27476FB224BC0BFF00181362 /* MSSBrowse */ = {
  1215. isa = PBXGroup;
  1216. children = (
  1217. 27476FB324BC0BFF00181362 /* MSSBrowseRemindView.h */,
  1218. 27476FB424BC0BFF00181362 /* MSSBrowseZoomScrollView.h */,
  1219. 27476FB524BC0BFF00181362 /* MSSBrowseLoadingImageView.m */,
  1220. 27476FB624BC0BFF00181362 /* MSSBrowseBaseViewController.h */,
  1221. 27476FB724BC0BFF00181362 /* UIImage+MSSScale.h */,
  1222. 27476FB824BC0BFF00181362 /* MSSBrowseNetworkViewController.h */,
  1223. 27476FB924BC0BFF00181362 /* MSSBrowseActionSheet.h */,
  1224. 27476FBA24BC0BFF00181362 /* MSSBrowseActionSheetCell.h */,
  1225. 27476FBB24BC0BFF00181362 /* MSSBrowseLocalViewController.m */,
  1226. 27476FBC24BC0BFF00181362 /* MSSBrowseCollectionViewCell.m */,
  1227. 27476FBD24BC0BFF00181362 /* UIView+MSSLayout.h */,
  1228. 27476FBE24BC0BFF00181362 /* MSSBrowseModel.m */,
  1229. 27476FBF24BC0BFF00181362 /* MSSBrowseDefine.h */,
  1230. 27476FC024BC0BFF00181362 /* MSSBrowseActionSheet.m */,
  1231. 27476FC124BC0BFF00181362 /* MSSBrowseNetworkViewController.m */,
  1232. 27476FC224BC0BFF00181362 /* UIImage+MSSScale.m */,
  1233. 27476FC324BC0BFF00181362 /* MSSBrowseBaseViewController.m */,
  1234. 27476FC424BC0BFF00181362 /* MSSBrowseLoadingImageView.h */,
  1235. 27476FC524BC0BFF00181362 /* MSSBrowseZoomScrollView.m */,
  1236. 27476FC624BC0BFF00181362 /* MSSBrowseRemindView.m */,
  1237. 27476FC724BC0BFF00181362 /* mss_browseLoading@3x.png */,
  1238. 27476FC824BC0BFF00181362 /* MSSBrowseCollectionViewCell.h */,
  1239. 27476FC924BC0BFF00181362 /* MSSBrowseLocalViewController.h */,
  1240. 27476FCA24BC0BFF00181362 /* MSSBrowseActionSheetCell.m */,
  1241. 27476FCB24BC0BFF00181362 /* MSSBrowseModel.h */,
  1242. 27476FCC24BC0BFF00181362 /* mss_browseLoading@2x.png */,
  1243. 27476FCD24BC0BFF00181362 /* UIView+MSSLayout.m */,
  1244. );
  1245. path = MSSBrowse;
  1246. sourceTree = "<group>";
  1247. };
  1248. 27476FD024BC0BFF00181362 /* ZKCycleScrollView */ = {
  1249. isa = PBXGroup;
  1250. children = (
  1251. 27476FD124BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.h */,
  1252. 27476FD224BC0BFF00181362 /* ZKCycleScrollView.m */,
  1253. 27476FD324BC0BFF00181362 /* ZKCycleScrollView.h */,
  1254. 27476FD424BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.m */,
  1255. );
  1256. path = ZKCycleScrollView;
  1257. sourceTree = "<group>";
  1258. };
  1259. 27476FD624BC0BFF00181362 /* TYCyclePagerView */ = {
  1260. isa = PBXGroup;
  1261. children = (
  1262. 27476FD724BC0BFF00181362 /* TYCyclePagerView.h */,
  1263. 27476FD824BC0BFF00181362 /* TYCyclePagerTransformLayout.h */,
  1264. 27476FD924BC0BFF00181362 /* TYPageControl.m */,
  1265. 27476FDA24BC0BFF00181362 /* TYCyclePagerView.m */,
  1266. 27476FDB24BC0BFF00181362 /* TYCyclePagerTransformLayout.m */,
  1267. 27476FDC24BC0BFF00181362 /* TYPageControl.h */,
  1268. );
  1269. path = TYCyclePagerView;
  1270. sourceTree = "<group>";
  1271. };
  1272. 27476FDD24BC0BFF00181362 /* QWNavigationBar */ = {
  1273. isa = PBXGroup;
  1274. children = (
  1275. );
  1276. path = QWNavigationBar;
  1277. sourceTree = "<group>";
  1278. };
  1279. 27476FE124BC0BFF00181362 /* ALCalendarPicker */ = {
  1280. isa = PBXGroup;
  1281. children = (
  1282. 27476FE224BC0BFF00181362 /* ALCalendarCell.m */,
  1283. 27476FE324BC0BFF00181362 /* ALCalendarConfig.m */,
  1284. 27476FE424BC0BFF00181362 /* ALCalendarHeader.m */,
  1285. 27476FE524BC0BFF00181362 /* ALCalendarDate.m */,
  1286. 27476FE624BC0BFF00181362 /* ALCalendarCollectionView.m */,
  1287. 27476FE724BC0BFF00181362 /* ALCalendarHelper.m */,
  1288. 27476FE824BC0BFF00181362 /* UIView+ALFrame.h */,
  1289. 27476FE924BC0BFF00181362 /* ALCalendarPicker.h */,
  1290. 27476FEA24BC0BFF00181362 /* ALCalendarManager.h */,
  1291. 27476FEB24BC0BFF00181362 /* ALCalendarCollectionView.h */,
  1292. 27476FEC24BC0BFF00181362 /* ALCalendarDate.h */,
  1293. 27476FED24BC0BFF00181362 /* ALCalendarHeader.h */,
  1294. 27476FEE24BC0BFF00181362 /* ALCalendarConfig.h */,
  1295. 27476FEF24BC0BFF00181362 /* ALCalendarCell.h */,
  1296. 27476FF024BC0BFF00181362 /* ALCalendarHelper.h */,
  1297. 27476FF124BC0BFF00181362 /* ALCalendarPicker.m */,
  1298. 27476FF224BC0BFF00181362 /* UIView+ALFrame.m */,
  1299. 27476FF324BC0BFF00181362 /* ALCalendarManager.m */,
  1300. );
  1301. path = ALCalendarPicker;
  1302. sourceTree = "<group>";
  1303. };
  1304. 27476FF524BC0C0000181362 /* Base */ = {
  1305. isa = PBXGroup;
  1306. children = (
  1307. 27A008C724BD9D550002452B /* KSNetTypeManager.h */,
  1308. 27A008C824BD9D550002452B /* KSNetTypeManager.m */,
  1309. 27476FF824BC0C0000181362 /* CustomNavViewController.h */,
  1310. 27476FFF24BC0C0000181362 /* CustomNavViewController.m */,
  1311. 27476FF724BC0C0000181362 /* KSBaseViewController.h */,
  1312. 27476FFC24BC0C0000181362 /* KSBaseViewController.m */,
  1313. 27476FF924BC0C0000181362 /* KSBaseWKWebViewController.h */,
  1314. 27476FFE24BC0C0000181362 /* KSBaseWKWebViewController.m */,
  1315. 27476FFA24BC0C0000181362 /* KSTabBarController.h */,
  1316. 2747700124BC0C0000181362 /* KSTabBarController.m */,
  1317. 27476FFB24BC0C0000181362 /* UINavigationController+KSNavigationBar.h */,
  1318. 2747700024BC0C0000181362 /* UINavigationController+KSNavigationBar.m */,
  1319. );
  1320. path = Base;
  1321. sourceTree = "<group>";
  1322. };
  1323. 2747700324BC0C0100181362 /* UI */ = {
  1324. isa = PBXGroup;
  1325. children = (
  1326. 2747700424BC0C0100181362 /* Home */,
  1327. 2748F8EB24C05F30003F8E11 /* ExamLibrary */,
  1328. 2747705624BC0C0100181362 /* Exam */,
  1329. 2747700A24BC0C0100181362 /* UserCenter */,
  1330. 2747700E24BC0C0100181362 /* Classroom */,
  1331. 2747705A24BC0C0100181362 /* NotiferMessage */,
  1332. 2747706024BC0C0100181362 /* Login */,
  1333. );
  1334. path = UI;
  1335. sourceTree = "<group>";
  1336. };
  1337. 2747700424BC0C0100181362 /* Home */ = {
  1338. isa = PBXGroup;
  1339. children = (
  1340. 2747700524BC0C0100181362 /* Controller */,
  1341. 2747700824BC0C0100181362 /* Model */,
  1342. 2747700924BC0C0100181362 /* View */,
  1343. );
  1344. path = Home;
  1345. sourceTree = "<group>";
  1346. };
  1347. 2747700524BC0C0100181362 /* Controller */ = {
  1348. isa = PBXGroup;
  1349. children = (
  1350. 2747700724BC0C0100181362 /* HomeViewController.h */,
  1351. 2747700624BC0C0100181362 /* HomeViewController.m */,
  1352. );
  1353. path = Controller;
  1354. sourceTree = "<group>";
  1355. };
  1356. 2747700824BC0C0100181362 /* Model */ = {
  1357. isa = PBXGroup;
  1358. children = (
  1359. );
  1360. path = Model;
  1361. sourceTree = "<group>";
  1362. };
  1363. 2747700924BC0C0100181362 /* View */ = {
  1364. isa = PBXGroup;
  1365. children = (
  1366. 27A008FA24BECDC40002452B /* HomeBodyView.h */,
  1367. 27A008FB24BECDC40002452B /* HomeBodyView.m */,
  1368. 27A008FD24BECDFC0002452B /* HomeBodyView.xib */,
  1369. 27EF3F2B24C0384E002068A2 /* HomeExamTicketCell.h */,
  1370. 27EF3F2C24C0384E002068A2 /* HomeExamTicketCell.m */,
  1371. 27EF3F2D24C0384E002068A2 /* HomeExamTicketCell.xib */,
  1372. );
  1373. path = View;
  1374. sourceTree = "<group>";
  1375. };
  1376. 2747700A24BC0C0100181362 /* UserCenter */ = {
  1377. isa = PBXGroup;
  1378. children = (
  1379. 27A008BD24BD99820002452B /* Mine */,
  1380. 27A008B924BD99620002452B /* Setting */,
  1381. 27A0089924BD96C50002452B /* Networking */,
  1382. 27A008AA24BD96E50002452B /* DeviceCheck */,
  1383. 2747700B24BC0C0100181362 /* Controller */,
  1384. 2747700C24BC0C0100181362 /* Model */,
  1385. 2747700D24BC0C0100181362 /* View */,
  1386. );
  1387. path = UserCenter;
  1388. sourceTree = "<group>";
  1389. };
  1390. 2747700B24BC0C0100181362 /* Controller */ = {
  1391. isa = PBXGroup;
  1392. children = (
  1393. 27544CF924BC338900EF58AF /* UserCenterViewController.h */,
  1394. 27544CFA24BC338900EF58AF /* UserCenterViewController.m */,
  1395. );
  1396. path = Controller;
  1397. sourceTree = "<group>";
  1398. };
  1399. 2747700C24BC0C0100181362 /* Model */ = {
  1400. isa = PBXGroup;
  1401. children = (
  1402. );
  1403. path = Model;
  1404. sourceTree = "<group>";
  1405. };
  1406. 2747700D24BC0C0100181362 /* View */ = {
  1407. isa = PBXGroup;
  1408. children = (
  1409. 2794D1C024BD60D500BAF6F3 /* UserCenterBodyView.h */,
  1410. 2794D1C124BD60D500BAF6F3 /* UserCenterBodyView.m */,
  1411. 2794D1C324BD60E900BAF6F3 /* UserCenterBodyView.xib */,
  1412. );
  1413. path = View;
  1414. sourceTree = "<group>";
  1415. };
  1416. 2747700E24BC0C0100181362 /* Classroom */ = {
  1417. isa = PBXGroup;
  1418. children = (
  1419. 2747700F24BC0C0100181362 /* Controller */,
  1420. 2747701224BC0C0100181362 /* Model */,
  1421. 2747701524BC0C0100181362 /* View */,
  1422. 2747701624BC0C0100181362 /* Service */,
  1423. );
  1424. path = Classroom;
  1425. sourceTree = "<group>";
  1426. };
  1427. 2747700F24BC0C0100181362 /* Controller */ = {
  1428. isa = PBXGroup;
  1429. children = (
  1430. 2747701124BC0C0100181362 /* ClassroomViewController.h */,
  1431. 2747701024BC0C0100181362 /* ClassroomViewController.m */,
  1432. );
  1433. path = Controller;
  1434. sourceTree = "<group>";
  1435. };
  1436. 2747701224BC0C0100181362 /* Model */ = {
  1437. isa = PBXGroup;
  1438. children = (
  1439. 27EF3F0824C02B3F002068A2 /* LocalRenderManager.h */,
  1440. 27EF3F0724C02B3E002068A2 /* LocalRenderManager.m */,
  1441. 2747701324BC0C0100181362 /* RoomLoginHelper.h */,
  1442. 2747701424BC0C0100181362 /* RoomLoginHelper.m */,
  1443. );
  1444. path = Model;
  1445. sourceTree = "<group>";
  1446. };
  1447. 2747701524BC0C0100181362 /* View */ = {
  1448. isa = PBXGroup;
  1449. children = (
  1450. 27EF3F1D24C02B68002068A2 /* MainContainer */,
  1451. 27EF3F1A24C02B68002068A2 /* MainToolbar */,
  1452. 27EF3F0D24C02B67002068A2 /* NormalAlertView */,
  1453. 27EF3F0A24C02B67002068A2 /* TipsView */,
  1454. 27EF3F1024C02B67002068A2 /* TitleView */,
  1455. 27EF3F1324C02B67002068A2 /* VideoList */,
  1456. );
  1457. path = View;
  1458. sourceTree = "<group>";
  1459. };
  1460. 2747701624BC0C0100181362 /* Service */ = {
  1461. isa = PBXGroup;
  1462. children = (
  1463. 2747701B24BC0C0100181362 /* Classroom */,
  1464. 2747705324BC0C0100181362 /* IM */,
  1465. 2747701724BC0C0100181362 /* KSRemoteUserManager.h */,
  1466. 2747705224BC0C0100181362 /* KSRemoteUserManager.m */,
  1467. 2747701824BC0C0100181362 /* RTCService */,
  1468. );
  1469. path = Service;
  1470. sourceTree = "<group>";
  1471. };
  1472. 2747701824BC0C0100181362 /* RTCService */ = {
  1473. isa = PBXGroup;
  1474. children = (
  1475. 2747701A24BC0C0100181362 /* RTCService.h */,
  1476. 2747701924BC0C0100181362 /* RTCService.m */,
  1477. );
  1478. path = RTCService;
  1479. sourceTree = "<group>";
  1480. };
  1481. 2747701B24BC0C0100181362 /* Classroom */ = {
  1482. isa = PBXGroup;
  1483. children = (
  1484. 2747705024BC0C0100181362 /* ClassroomDefine.h */,
  1485. 2747702D24BC0C0100181362 /* ClassroomService.h */,
  1486. 2747705124BC0C0100181362 /* ClassroomService.m */,
  1487. 2747702E24BC0C0100181362 /* Message */,
  1488. 2747704924BC0C0100181362 /* Model */,
  1489. 2747701C24BC0C0100181362 /* Util */,
  1490. );
  1491. path = Classroom;
  1492. sourceTree = "<group>";
  1493. };
  1494. 2747701C24BC0C0100181362 /* Util */ = {
  1495. isa = PBXGroup;
  1496. children = (
  1497. 2747701D24BC0C0100181362 /* ErrorCode.h */,
  1498. 2747701E24BC0C0100181362 /* Category */,
  1499. 2747702124BC0C0100181362 /* Portrait */,
  1500. 2747702424BC0C0100181362 /* Macro.h */,
  1501. 2747702524BC0C0100181362 /* HTTP */,
  1502. 2747702A24BC0C0100181362 /* View */,
  1503. );
  1504. path = Util;
  1505. sourceTree = "<group>";
  1506. };
  1507. 2747701E24BC0C0100181362 /* Category */ = {
  1508. isa = PBXGroup;
  1509. children = (
  1510. 2747701F24BC0C0100181362 /* UIView+MBProgressHUD.h */,
  1511. 2747702024BC0C0100181362 /* UIView+MBProgressHUD.m */,
  1512. );
  1513. path = Category;
  1514. sourceTree = "<group>";
  1515. };
  1516. 2747702124BC0C0100181362 /* Portrait */ = {
  1517. isa = PBXGroup;
  1518. children = (
  1519. 2747702224BC0C0100181362 /* RolePortraitView.m */,
  1520. 2747702324BC0C0100181362 /* RolePortraitView.h */,
  1521. );
  1522. path = Portrait;
  1523. sourceTree = "<group>";
  1524. };
  1525. 2747702524BC0C0100181362 /* HTTP */ = {
  1526. isa = PBXGroup;
  1527. children = (
  1528. 2747702624BC0C0100181362 /* HTTPUtility.m */,
  1529. 2747702724BC0C0100181362 /* HTTPResult.m */,
  1530. 2747702824BC0C0100181362 /* HTTPUtility.h */,
  1531. 2747702924BC0C0100181362 /* HTTPResult.h */,
  1532. );
  1533. path = HTTP;
  1534. sourceTree = "<group>";
  1535. };
  1536. 2747702A24BC0C0100181362 /* View */ = {
  1537. isa = PBXGroup;
  1538. children = (
  1539. );
  1540. path = View;
  1541. sourceTree = "<group>";
  1542. };
  1543. 2747702E24BC0C0100181362 /* Message */ = {
  1544. isa = PBXGroup;
  1545. children = (
  1546. 2747702F24BC0C0100181362 /* RoleChangedMessage.h */,
  1547. 2747703024BC0C0100181362 /* AssistantTransferMessage.h */,
  1548. 2747703124BC0C0100181362 /* InviteUpgradeMessage.h */,
  1549. 2747703224BC0C0100181362 /* ApplySpeechMessage.m */,
  1550. 2747703324BC0C0100181362 /* ApplySpeechResultMessage.h */,
  1551. 2747703424BC0C0100181362 /* DisplayCommandMessage.m */,
  1552. 2747703524BC0C0100181362 /* MemberChangeMessage.h */,
  1553. 2747703624BC0C0100181362 /* DeviceMessage.h */,
  1554. 2747703724BC0C0100181362 /* ControlDeviceNotifyMessage.m */,
  1555. 2747703824BC0C0100181362 /* TicketExpiredMessage.m */,
  1556. 2747703924BC0C0100181362 /* NodePlayMessage.h */,
  1557. 2747703A24BC0C0100181362 /* TurnPageMessage.h */,
  1558. 2747703B24BC0C0100181362 /* WhiteboardMessage.m */,
  1559. 2747703C24BC0C0100181362 /* AssistantTransferMessage.m */,
  1560. 2747703D24BC0C0100181362 /* RoleChangedMessage.m */,
  1561. 2747703E24BC0C0100181362 /* InviteUpgradeMessage.m */,
  1562. 2747703F24BC0C0100181362 /* ControlDeviceNotifyMessage.h */,
  1563. 2747704024BC0C0100181362 /* DeviceMessage.m */,
  1564. 2747704124BC0C0100181362 /* MemberChangeMessage.m */,
  1565. 2747704224BC0C0100181362 /* DisplayCommandMessage.h */,
  1566. 2747704324BC0C0100181362 /* ApplySpeechResultMessage.m */,
  1567. 2747704424BC0C0100181362 /* ApplySpeechMessage.h */,
  1568. 2747704524BC0C0100181362 /* WhiteboardMessage.h */,
  1569. 2747704624BC0C0100181362 /* TurnPageMessage.m */,
  1570. 2747704724BC0C0100181362 /* NodePlayMessage.m */,
  1571. 2747704824BC0C0100181362 /* TicketExpiredMessage.h */,
  1572. );
  1573. path = Message;
  1574. sourceTree = "<group>";
  1575. };
  1576. 2747704924BC0C0100181362 /* Model */ = {
  1577. isa = PBXGroup;
  1578. children = (
  1579. 2747704E24BC0C0100181362 /* Classroom.h */,
  1580. 2747704C24BC0C0100181362 /* Classroom.m */,
  1581. 2747704F24BC0C0100181362 /* RoomMember.h */,
  1582. 2747704B24BC0C0100181362 /* RoomMember.m */,
  1583. 2747704D24BC0C0100181362 /* Whiteboard.h */,
  1584. 2747704A24BC0C0100181362 /* Whiteboard.m */,
  1585. );
  1586. path = Model;
  1587. sourceTree = "<group>";
  1588. };
  1589. 2747705324BC0C0100181362 /* IM */ = {
  1590. isa = PBXGroup;
  1591. children = (
  1592. 2747705424BC0C0100181362 /* KSIMService.h */,
  1593. 2747705524BC0C0100181362 /* KSIMService.m */,
  1594. );
  1595. path = IM;
  1596. sourceTree = "<group>";
  1597. };
  1598. 2747705624BC0C0100181362 /* Exam */ = {
  1599. isa = PBXGroup;
  1600. children = (
  1601. 2747705724BC0C0100181362 /* Controller */,
  1602. 2747705824BC0C0100181362 /* Model */,
  1603. 2747705924BC0C0100181362 /* View */,
  1604. );
  1605. path = Exam;
  1606. sourceTree = "<group>";
  1607. };
  1608. 2747705724BC0C0100181362 /* Controller */ = {
  1609. isa = PBXGroup;
  1610. children = (
  1611. 27544CF624BC337D00EF58AF /* ExamTicketViewController.h */,
  1612. 27544CF724BC337D00EF58AF /* ExamTicketViewController.m */,
  1613. 27EF3EF924BEFC79002068A2 /* WaitExamViewController.h */,
  1614. 27EF3EFA24BEFC79002068A2 /* WaitExamViewController.m */,
  1615. );
  1616. path = Controller;
  1617. sourceTree = "<group>";
  1618. };
  1619. 2747705824BC0C0100181362 /* Model */ = {
  1620. isa = PBXGroup;
  1621. children = (
  1622. 27EF3F0124BF0F11002068A2 /* TicketListModel.h */,
  1623. 27EF3F0224BF0F12002068A2 /* TicketListModel.m */,
  1624. 27EF3F0524BFF8A1002068A2 /* TicketDetailModel.h */,
  1625. 27EF3F0424BFF8A0002068A2 /* TicketDetailModel.m */,
  1626. );
  1627. path = Model;
  1628. sourceTree = "<group>";
  1629. };
  1630. 2747705924BC0C0100181362 /* View */ = {
  1631. isa = PBXGroup;
  1632. children = (
  1633. 27EF3EF424BEF1DA002068A2 /* TicketBodyView.h */,
  1634. 27EF3EF524BEF1DA002068A2 /* TicketBodyView.m */,
  1635. 27EF3EF724BEF1E8002068A2 /* TicketBodyView.xib */,
  1636. 27EF3EFC24BF015A002068A2 /* WaitExamBodyView.h */,
  1637. 27EF3EFD24BF015A002068A2 /* WaitExamBodyView.m */,
  1638. 27EF3EFF24BF016B002068A2 /* WaitExamBodyView.xib */,
  1639. );
  1640. path = View;
  1641. sourceTree = "<group>";
  1642. };
  1643. 2747705A24BC0C0100181362 /* NotiferMessage */ = {
  1644. isa = PBXGroup;
  1645. children = (
  1646. 2747705B24BC0C0100181362 /* Controller */,
  1647. 2747705E24BC0C0100181362 /* Model */,
  1648. 2747705F24BC0C0100181362 /* View */,
  1649. );
  1650. path = NotiferMessage;
  1651. sourceTree = "<group>";
  1652. };
  1653. 2747705B24BC0C0100181362 /* Controller */ = {
  1654. isa = PBXGroup;
  1655. children = (
  1656. 2747705C24BC0C0100181362 /* NotifyMessageViewController.h */,
  1657. 2747705D24BC0C0100181362 /* NotifyMessageViewController.m */,
  1658. );
  1659. path = Controller;
  1660. sourceTree = "<group>";
  1661. };
  1662. 2747705E24BC0C0100181362 /* Model */ = {
  1663. isa = PBXGroup;
  1664. children = (
  1665. 27EF3EEC24BEE35E002068A2 /* MessageListModel.h */,
  1666. 27EF3EED24BEE35E002068A2 /* MessageListModel.m */,
  1667. );
  1668. path = Model;
  1669. sourceTree = "<group>";
  1670. };
  1671. 2747705F24BC0C0100181362 /* View */ = {
  1672. isa = PBXGroup;
  1673. children = (
  1674. 27EF3EEF24BEE885002068A2 /* NotifyMessageCell.h */,
  1675. 27EF3EF024BEE885002068A2 /* NotifyMessageCell.m */,
  1676. 27EF3EF124BEE885002068A2 /* NotifyMessageCell.xib */,
  1677. );
  1678. path = View;
  1679. sourceTree = "<group>";
  1680. };
  1681. 2747706024BC0C0100181362 /* Login */ = {
  1682. isa = PBXGroup;
  1683. children = (
  1684. 2747706124BC0C0100181362 /* Controller */,
  1685. 2747706C24BC0C0100181362 /* Model */,
  1686. 2747707124BC0C0100181362 /* View */,
  1687. );
  1688. path = Login;
  1689. sourceTree = "<group>";
  1690. };
  1691. 2747706124BC0C0100181362 /* Controller */ = {
  1692. isa = PBXGroup;
  1693. children = (
  1694. 2747706A24BC0C0100181362 /* FirstSettingViewController.h */,
  1695. 2747706424BC0C0100181362 /* FirstSettingViewController.m */,
  1696. 2747706924BC0C0100181362 /* LoginViewController.h */,
  1697. 2747706524BC0C0100181362 /* LoginViewController.m */,
  1698. 2747706224BC0C0100181362 /* ModifyViewController.h */,
  1699. 2747706824BC0C0100181362 /* ModifyViewController.m */,
  1700. 2747706B24BC0C0100181362 /* RegisterViewController.h */,
  1701. 2747706624BC0C0100181362 /* RegisterViewController.m */,
  1702. 2747706324BC0C0100181362 /* VefiLoginViewController.h */,
  1703. 2747706724BC0C0100181362 /* VefiLoginViewController.m */,
  1704. );
  1705. path = Controller;
  1706. sourceTree = "<group>";
  1707. };
  1708. 2747706C24BC0C0100181362 /* Model */ = {
  1709. isa = PBXGroup;
  1710. children = (
  1711. 2747706E24BC0C0100181362 /* UserInfoManager.h */,
  1712. 2747706F24BC0C0100181362 /* UserInfoManager.m */,
  1713. 27A008EF24BDB1E20002452B /* SysUser.h */,
  1714. 27A008F024BDB1E30002452B /* SysUser.m */,
  1715. 27A008F124BDB1E30002452B /* UserInfo.h */,
  1716. 27A008F224BDB1E50002452B /* UserInfo.m */,
  1717. );
  1718. path = Model;
  1719. sourceTree = "<group>";
  1720. };
  1721. 2747707124BC0C0100181362 /* View */ = {
  1722. isa = PBXGroup;
  1723. children = (
  1724. 2747707424BC0C0100181362 /* LoginBodyView.h */,
  1725. 2747707224BC0C0100181362 /* LoginBodyView.m */,
  1726. 2747707324BC0C0100181362 /* LoginBodyView.xib */,
  1727. 2794D1AE24BC604800BAF6F3 /* VefiBodyView.h */,
  1728. 2794D1AF24BC604800BAF6F3 /* VefiBodyView.m */,
  1729. 2794D1B124BC605600BAF6F3 /* VefiBodyView.xib */,
  1730. 2794D1B324BC662600BAF6F3 /* VeriCheckView.h */,
  1731. 2794D1B424BC662600BAF6F3 /* VeriCheckView.m */,
  1732. 2794D1B624BC699700BAF6F3 /* RegisterBodyView.h */,
  1733. 2794D1B724BC699700BAF6F3 /* RegisterBodyView.m */,
  1734. 2794D1B924BC69A400BAF6F3 /* RegisterBodyView.xib */,
  1735. 2794D1BB24BD4CF800BAF6F3 /* FSBodyView.h */,
  1736. 2794D1BC24BD4CF800BAF6F3 /* FSBodyView.m */,
  1737. 2794D1BE24BD4D0C00BAF6F3 /* FSBodyView.xib */,
  1738. 2794D1C524BD62FB00BAF6F3 /* ModifyBodyView.h */,
  1739. 2794D1C624BD62FB00BAF6F3 /* ModifyBodyView.m */,
  1740. 2794D1C824BD631A00BAF6F3 /* ModifyBodyView.xib */,
  1741. );
  1742. path = View;
  1743. sourceTree = "<group>";
  1744. };
  1745. 2747707524BC0C0200181362 /* Manager */ = {
  1746. isa = PBXGroup;
  1747. children = (
  1748. 2747707724BC0C0200181362 /* KSRCIMDataSource.h */,
  1749. 2747707A24BC0C0200181362 /* KSRCIMDataSource.m */,
  1750. 2747707924BC0C0200181362 /* KSUpdateManager.h */,
  1751. 2747707D24BC0C0200181362 /* KSUpdateManager.m */,
  1752. 2747707B24BC0C0200181362 /* OnlineRoomManager.h */,
  1753. 2747707624BC0C0200181362 /* OnlineRoomManager.m */,
  1754. 2747707824BC0C0200181362 /* RCConnectionManager.h */,
  1755. 2747707C24BC0C0200181362 /* RCConnectionManager.m */,
  1756. );
  1757. path = Manager;
  1758. sourceTree = "<group>";
  1759. };
  1760. 2747707E24BC0C0200181362 /* Define */ = {
  1761. isa = PBXGroup;
  1762. children = (
  1763. 2747707F24BC0C0200181362 /* UserKeyHeader.h */,
  1764. 2747708024BC0C0200181362 /* Common.h */,
  1765. 2747708124BC0C0200181362 /* PrefixHeader.pch */,
  1766. );
  1767. path = Define;
  1768. sourceTree = "<group>";
  1769. };
  1770. 2747708224BC0C0300181362 /* Tools */ = {
  1771. isa = PBXGroup;
  1772. children = (
  1773. 2747708324BC0C0300181362 /* NetworkManager */,
  1774. 2747709124BC0C0300181362 /* SafeControl */,
  1775. 274770A124BC0C0300181362 /* Extension */,
  1776. 274770D824BC0C0400181362 /* Category */,
  1777. 274770F524BC0C0400181362 /* Custom */,
  1778. );
  1779. path = Tools;
  1780. sourceTree = "<group>";
  1781. };
  1782. 2747708324BC0C0300181362 /* NetworkManager */ = {
  1783. isa = PBXGroup;
  1784. children = (
  1785. 2747708624BC0C0300181362 /* Cache */,
  1786. 2747708F24BC0C0300181362 /* KSNetworking.h */,
  1787. 2747708524BC0C0300181362 /* KSNetworking.m */,
  1788. 2747709024BC0C0300181362 /* KSNetworking+RequestOperation.h */,
  1789. 2747708424BC0C0300181362 /* KSNetworking+RequestOperation.m */,
  1790. );
  1791. path = NetworkManager;
  1792. sourceTree = "<group>";
  1793. };
  1794. 2747708624BC0C0300181362 /* Cache */ = {
  1795. isa = PBXGroup;
  1796. children = (
  1797. 2747708924BC0C0300181362 /* KSCacheManager.h */,
  1798. 2747708E24BC0C0300181362 /* KSCacheManager.m */,
  1799. 2747708A24BC0C0300181362 /* KSDiskCache.h */,
  1800. 2747708D24BC0C0300181362 /* KSDiskCache.m */,
  1801. 2747708724BC0C0300181362 /* KSLRUManager.h */,
  1802. 2747708B24BC0C0300181362 /* KSLRUManager.m */,
  1803. 2747708824BC0C0300181362 /* KSMemoryCache.h */,
  1804. 2747708C24BC0C0300181362 /* KSMemoryCache.m */,
  1805. );
  1806. path = Cache;
  1807. sourceTree = "<group>";
  1808. };
  1809. 2747709124BC0C0300181362 /* SafeControl */ = {
  1810. isa = PBXGroup;
  1811. children = (
  1812. 2747709224BC0C0300181362 /* KSSafeObject.h */,
  1813. 2747709324BC0C0300181362 /* NSObject+KSSwizzling.h */,
  1814. 2747709424BC0C0300181362 /* NSDictionary+KSSafe.m */,
  1815. 2747709524BC0C0300181362 /* NSObject+KSImpChangeTool.h */,
  1816. 2747709624BC0C0300181362 /* NSMutableDictionary+KSSafe.m */,
  1817. 2747709724BC0C0300181362 /* NSMutableString+KSSafe.h */,
  1818. 2747709824BC0C0300181362 /* NSArray+KSSafe.m */,
  1819. 2747709924BC0C0300181362 /* NSMutableArray+KSSafe.m */,
  1820. 2747709A24BC0C0300181362 /* NSDictionary+KSSafe.h */,
  1821. 2747709B24BC0C0300181362 /* NSObject+KSSwizzling.m */,
  1822. 2747709C24BC0C0300181362 /* NSObject+KSImpChangeTool.m */,
  1823. 2747709D24BC0C0300181362 /* NSMutableArray+KSSafe.h */,
  1824. 2747709E24BC0C0300181362 /* NSArray+KSSafe.h */,
  1825. 2747709F24BC0C0300181362 /* NSMutableString+KSSafe.m */,
  1826. 274770A024BC0C0300181362 /* NSMutableDictionary+KSSafe.h */,
  1827. );
  1828. path = SafeControl;
  1829. sourceTree = "<group>";
  1830. };
  1831. 274770A124BC0C0300181362 /* Extension */ = {
  1832. isa = PBXGroup;
  1833. children = (
  1834. 274770A224BC0C0300181362 /* NSObject+AssociatedObject.m */,
  1835. 274770A324BC0C0300181362 /* UIView+Hints.h */,
  1836. 274770A424BC0C0300181362 /* UIControl+ButtonAction.m */,
  1837. 274770A524BC0C0300181362 /* UIDevice+zhDeviceType.m */,
  1838. 274770A624BC0C0300181362 /* NSString+zh_SafeAccess.m */,
  1839. 274770A724BC0C0300181362 /* NSDictionary+Extension.h */,
  1840. 274770A824BC0C0300181362 /* UIViewController+zhStatusBarStyle.m */,
  1841. 274770A924BC0C0300181362 /* UITextView+ZWPlaceHolder.m */,
  1842. 274770AA24BC0C0300181362 /* NSString+CZHSizeExtension.h */,
  1843. 274770AB24BC0C0300181362 /* CALayer+Color.m */,
  1844. 274770AC24BC0C0300181362 /* NSDate+Transform.h */,
  1845. 274770AD24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.m */,
  1846. 274770AE24BC0C0300181362 /* NSString+Extension.h */,
  1847. 274770AF24BC0C0300181362 /* UITextView+ZWLimitCounter.m */,
  1848. 274770B024BC0C0300181362 /* UILabel+Extension.m */,
  1849. 274770B124BC0C0300181362 /* NSDate+Extension.h */,
  1850. 274770B224BC0C0300181362 /* NSArray+ks_SafeAccess.h */,
  1851. 274770B324BC0C0300181362 /* UIImage+Color.h */,
  1852. 274770B424BC0C0300181362 /* NSObject+ReadDocument.h */,
  1853. 274770B524BC0C0300181362 /* UIAlertController+Extend.m */,
  1854. 274770B624BC0C0300181362 /* UIImageView+CornerRadius.h */,
  1855. 274770B724BC0C0300181362 /* CALayer+KSLayout.h */,
  1856. 274770B824BC0C0300181362 /* UIScreen+Extend.h */,
  1857. 274770B924BC0C0300181362 /* UIColor+Extend.m */,
  1858. 274770BA24BC0C0300181362 /* UIView+Dealloc.m */,
  1859. 274770BB24BC0C0300181362 /* NSObject+Parse.m */,
  1860. 274770BC24BC0C0300181362 /* UIView+AddConstraints.m */,
  1861. 274770BD24BC0C0300181362 /* NSString+CZHSizeExtension.m */,
  1862. 274770BE24BC0C0300181362 /* UITextView+ZWPlaceHolder.h */,
  1863. 274770BF24BC0C0300181362 /* NSDictionary+Extension.m */,
  1864. 274770C024BC0C0300181362 /* UIViewController+zhStatusBarStyle.h */,
  1865. 274770C124BC0C0300181362 /* NSString+zh_SafeAccess.h */,
  1866. 274770C224BC0C0300181362 /* UIDevice+zhDeviceType.h */,
  1867. 274770C324BC0C0300181362 /* UIControl+ButtonAction.h */,
  1868. 274770C424BC0C0300181362 /* UIView+Hints.m */,
  1869. 274770C524BC0C0300181362 /* NSObject+AssociatedObject.h */,
  1870. 274770C624BC0C0300181362 /* NSArray+ks_SafeAccess.m */,
  1871. 274770C724BC0C0300181362 /* UILabel+Extension.h */,
  1872. 274770C824BC0C0300181362 /* NSDate+Extension.m */,
  1873. 274770C924BC0C0300181362 /* UITextView+ZWLimitCounter.h */,
  1874. 274770CA24BC0C0300181362 /* NSString+Extension.m */,
  1875. 274770CB24BC0C0300181362 /* NSDate+Transform.m */,
  1876. 274770CC24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.h */,
  1877. 274770CD24BC0C0300181362 /* CALayer+Color.h */,
  1878. 274770CE24BC0C0300181362 /* UIScreen+Extend.m */,
  1879. 274770CF24BC0C0300181362 /* CALayer+KSLayout.m */,
  1880. 274770D024BC0C0300181362 /* UIAlertController+Extend.h */,
  1881. 274770D124BC0C0300181362 /* UIImageView+CornerRadius.m */,
  1882. 274770D224BC0C0300181362 /* NSObject+ReadDocument.m */,
  1883. 274770D324BC0C0300181362 /* UIImage+Color.m */,
  1884. 274770D424BC0C0300181362 /* NSObject+Parse.h */,
  1885. 274770D524BC0C0300181362 /* UIView+AddConstraints.h */,
  1886. 274770D624BC0C0300181362 /* UIView+Dealloc.h */,
  1887. 274770D724BC0C0300181362 /* UIColor+Extend.h */,
  1888. );
  1889. path = Extension;
  1890. sourceTree = "<group>";
  1891. };
  1892. 274770D824BC0C0400181362 /* Category */ = {
  1893. isa = PBXGroup;
  1894. children = (
  1895. 274770D924BC0C0400181362 /* UIImage+Addtions.m */,
  1896. 274770DA24BC0C0400181362 /* UIView+XIBView.m */,
  1897. 274770DB24BC0C0400181362 /* UrlDecode.m */,
  1898. 274770DC24BC0C0400181362 /* UIButton+Property.m */,
  1899. 274770DD24BC0C0400181362 /* UIDevice+TFDevice.m */,
  1900. 274770DE24BC0C0400181362 /* UIColor+Hex.m */,
  1901. 274770DF24BC0C0400181362 /* MBProgressHUD+KSShow.h */,
  1902. 274770E024BC0C0400181362 /* UIImage+Property.m */,
  1903. 274770E124BC0C0400181362 /* UIImage+ResizeImage.m */,
  1904. 274770E224BC0C0400181362 /* UIButton+EnlargeEdge.h */,
  1905. 274770E324BC0C0400181362 /* UIButton+HasChooseImage.m */,
  1906. 274770E424BC0C0400181362 /* NSObject+AutoProperty.m */,
  1907. 274770E524BC0C0400181362 /* UIImage+UIImageScale.m */,
  1908. 274770E624BC0C0400181362 /* UIImage+Resize.h */,
  1909. 274770E724BC0C0400181362 /* UIView+XIBView.h */,
  1910. 274770E824BC0C0400181362 /* UIImage+Addtions.h */,
  1911. 274770E924BC0C0400181362 /* UIColor+Hex.h */,
  1912. 274770EA24BC0C0400181362 /* UIDevice+TFDevice.h */,
  1913. 274770EB24BC0C0400181362 /* UIButton+Property.h */,
  1914. 274770EC24BC0C0400181362 /* UrlDecode.h */,
  1915. 274770ED24BC0C0400181362 /* UIImage+UIImageScale.h */,
  1916. 274770EE24BC0C0400181362 /* NSObject+AutoProperty.h */,
  1917. 274770EF24BC0C0400181362 /* UIButton+EnlargeEdge.m */,
  1918. 274770F024BC0C0400181362 /* UIButton+HasChooseImage.h */,
  1919. 274770F124BC0C0400181362 /* UIImage+ResizeImage.h */,
  1920. 274770F224BC0C0400181362 /* UIImage+Property.h */,
  1921. 274770F324BC0C0400181362 /* MBProgressHUD+KSShow.m */,
  1922. 274770F424BC0C0400181362 /* UIImage+Resize.m */,
  1923. );
  1924. path = Category;
  1925. sourceTree = "<group>";
  1926. };
  1927. 274770F524BC0C0400181362 /* Custom */ = {
  1928. isa = PBXGroup;
  1929. children = (
  1930. 274770F624BC0C0400181362 /* GRCreateManager.m */,
  1931. 274770F724BC0C0400181362 /* GRScanManager.h */,
  1932. 274770F824BC0C0400181362 /* KSChoosePicker.m */,
  1933. 274770F924BC0C0400181362 /* PressRecord */,
  1934. 2747710624BC0C0400181362 /* KSImageButton.h */,
  1935. 2747710724BC0C0400181362 /* KSFullDatePicker.m */,
  1936. 2747710824BC0C0400181362 /* NSString+phone.h */,
  1937. 2747710924BC0C0400181362 /* KSMediaManager.m */,
  1938. 2747710A24BC0C0400181362 /* KSMessageInputView.h */,
  1939. 2747710B24BC0C0400181362 /* NSString+MD5.h */,
  1940. 2747710C24BC0C0400181362 /* JXView */,
  1941. 2747715F24BC0C0400181362 /* MBProgressHUD+NJ.m */,
  1942. 2747716024BC0C0400181362 /* KSInputView */,
  1943. 2747716A24BC0C0400181362 /* NSDate+KSBaseDatePicker.h */,
  1944. 2747716B24BC0C0400181362 /* StateView.h */,
  1945. 2747716C24BC0C0400181362 /* KSInputView.h */,
  1946. 2747716D24BC0C0400181362 /* GRScanManager.m */,
  1947. 2747716E24BC0C0400181362 /* GRCreateManager.h */,
  1948. 2747716F24BC0C0400181362 /* KSMediaManager.h */,
  1949. 2747717024BC0C0400181362 /* NSString+phone.m */,
  1950. 2747717124BC0C0400181362 /* KSFullDatePicker.h */,
  1951. 2747717224BC0C0400181362 /* KSImageButton.m */,
  1952. 2747717324BC0C0400181362 /* KSChoosePicker.h */,
  1953. 2747717424BC0C0400181362 /* MBProgressHUD+NJ.h */,
  1954. 2747717524BC0C0400181362 /* NSString+MD5.m */,
  1955. 2747717624BC0C0400181362 /* KSMessageInputView.m */,
  1956. 2747717724BC0C0400181362 /* KSInputView.m */,
  1957. 2747717824BC0C0400181362 /* StateView.m */,
  1958. 2747717924BC0C0400181362 /* NSDate+KSBaseDatePicker.m */,
  1959. 2747717A24BC0C0400181362 /* LLPhotoBrowser */,
  1960. );
  1961. path = Custom;
  1962. sourceTree = "<group>";
  1963. };
  1964. 274770F924BC0C0400181362 /* PressRecord */ = {
  1965. isa = PBXGroup;
  1966. children = (
  1967. 274770FA24BC0C0400181362 /* KSAudioRecordManager.h */,
  1968. 274770FB24BC0C0400181362 /* KSRecordStatusView.h */,
  1969. 274770FC24BC0C0400181362 /* KSHoldButton.m */,
  1970. 274770FD24BC0C0400181362 /* KSRecordPowerAnimationView.h */,
  1971. 274770FE24BC0C0400181362 /* KSAudioRecordFileManager.m */,
  1972. 274770FF24BC0C0400181362 /* UIView+KSAdditions.m */,
  1973. 2747710024BC0C0400181362 /* KSRecordStatusView.m */,
  1974. 2747710124BC0C0400181362 /* KSAudioRecordManager.m */,
  1975. 2747710224BC0C0400181362 /* KSHoldButton.h */,
  1976. 2747710324BC0C0400181362 /* UIView+KSAdditions.h */,
  1977. 2747710424BC0C0400181362 /* KSRecordPowerAnimationView.m */,
  1978. 2747710524BC0C0400181362 /* KSAudioRecordFileManager.h */,
  1979. );
  1980. path = PressRecord;
  1981. sourceTree = "<group>";
  1982. };
  1983. 2747710C24BC0C0400181362 /* JXView */ = {
  1984. isa = PBXGroup;
  1985. children = (
  1986. 2747710D24BC0C0400181362 /* JXPagerView */,
  1987. 2747711624BC0C0400181362 /* JXCategoryView */,
  1988. );
  1989. path = JXView;
  1990. sourceTree = "<group>";
  1991. };
  1992. 2747710D24BC0C0400181362 /* JXPagerView */ = {
  1993. isa = PBXGroup;
  1994. children = (
  1995. 2747710E24BC0C0400181362 /* JXPagerListContainerView.m */,
  1996. 2747710F24BC0C0400181362 /* JXPagerMainTableView.m */,
  1997. 2747711024BC0C0400181362 /* JXPagerView.m */,
  1998. 2747711124BC0C0400181362 /* JXPagerListRefreshView.h */,
  1999. 2747711224BC0C0400181362 /* JXPagerView.h */,
  2000. 2747711324BC0C0400181362 /* JXPagerListContainerView.h */,
  2001. 2747711424BC0C0400181362 /* JXPagerMainTableView.h */,
  2002. 2747711524BC0C0400181362 /* JXPagerListRefreshView.m */,
  2003. );
  2004. path = JXPagerView;
  2005. sourceTree = "<group>";
  2006. };
  2007. 2747711624BC0C0400181362 /* JXCategoryView */ = {
  2008. isa = PBXGroup;
  2009. children = (
  2010. 2747711724BC0C0400181362 /* Indicator */,
  2011. 2747712B24BC0C0400181362 /* Dot */,
  2012. 2747713224BC0C0400181362 /* TitleImage */,
  2013. 2747713924BC0C0400181362 /* Title */,
  2014. 2747714024BC0C0400181362 /* JXCategoryView.h */,
  2015. 2747714124BC0C0400181362 /* Image */,
  2016. 2747714824BC0C0400181362 /* Number */,
  2017. 2747714F24BC0C0400181362 /* Common */,
  2018. 2747715824BC0C0400181362 /* Base */,
  2019. );
  2020. path = JXCategoryView;
  2021. sourceTree = "<group>";
  2022. };
  2023. 2747711724BC0C0400181362 /* Indicator */ = {
  2024. isa = PBXGroup;
  2025. children = (
  2026. 2747711824BC0C0400181362 /* JXCategoryIndicatorCell.h */,
  2027. 2747711924BC0C0400181362 /* JXCategoryIndicatorCellModel.h */,
  2028. 2747711A24BC0C0400181362 /* JXCategoryIndicatorView.h */,
  2029. 2747711B24BC0C0400181362 /* IndicatorViews */,
  2030. 2747712824BC0C0400181362 /* JXCategoryIndicatorCellModel.m */,
  2031. 2747712924BC0C0400181362 /* JXCategoryIndicatorCell.m */,
  2032. 2747712A24BC0C0400181362 /* JXCategoryIndicatorView.m */,
  2033. );
  2034. path = Indicator;
  2035. sourceTree = "<group>";
  2036. };
  2037. 2747711B24BC0C0400181362 /* IndicatorViews */ = {
  2038. isa = PBXGroup;
  2039. children = (
  2040. 2747711C24BC0C0400181362 /* JXCategoryIndicatorLineView.m */,
  2041. 2747711D24BC0C0400181362 /* JXCategoryIndicatorTriangleView.m */,
  2042. 2747711E24BC0C0400181362 /* JXCategoryIndicatorBackgroundView.h */,
  2043. 2747711F24BC0C0400181362 /* JXCategoryIndicatorImageView.m */,
  2044. 2747712024BC0C0400181362 /* JXCategoryIndicatorBallView.m */,
  2045. 2747712124BC0C0400181362 /* JXCategoryIndicatorComponentView.m */,
  2046. 2747712224BC0C0400181362 /* JXCategoryIndicatorLineView.h */,
  2047. 2747712324BC0C0400181362 /* JXCategoryIndicatorTriangleView.h */,
  2048. 2747712424BC0C0400181362 /* JXCategoryIndicatorBallView.h */,
  2049. 2747712524BC0C0400181362 /* JXCategoryIndicatorImageView.h */,
  2050. 2747712624BC0C0400181362 /* JXCategoryIndicatorBackgroundView.m */,
  2051. 2747712724BC0C0400181362 /* JXCategoryIndicatorComponentView.h */,
  2052. );
  2053. path = IndicatorViews;
  2054. sourceTree = "<group>";
  2055. };
  2056. 2747712B24BC0C0400181362 /* Dot */ = {
  2057. isa = PBXGroup;
  2058. children = (
  2059. 2747712C24BC0C0400181362 /* JXCategoryDotCell.m */,
  2060. 2747712D24BC0C0400181362 /* JXCategoryDotCellModel.h */,
  2061. 2747712E24BC0C0400181362 /* JXCategoryDotView.m */,
  2062. 2747712F24BC0C0400181362 /* JXCategoryDotCell.h */,
  2063. 2747713024BC0C0400181362 /* JXCategoryDotView.h */,
  2064. 2747713124BC0C0400181362 /* JXCategoryDotCellModel.m */,
  2065. );
  2066. path = Dot;
  2067. sourceTree = "<group>";
  2068. };
  2069. 2747713224BC0C0400181362 /* TitleImage */ = {
  2070. isa = PBXGroup;
  2071. children = (
  2072. 2747713324BC0C0400181362 /* JXCategoryTitleImageView.m */,
  2073. 2747713424BC0C0400181362 /* JXCategoryTitleImageCell.m */,
  2074. 2747713524BC0C0400181362 /* JXCategoryTitleImageCellModel.h */,
  2075. 2747713624BC0C0400181362 /* JXCategoryTitleImageView.h */,
  2076. 2747713724BC0C0400181362 /* JXCategoryTitleImageCellModel.m */,
  2077. 2747713824BC0C0400181362 /* JXCategoryTitleImageCell.h */,
  2078. );
  2079. path = TitleImage;
  2080. sourceTree = "<group>";
  2081. };
  2082. 2747713924BC0C0400181362 /* Title */ = {
  2083. isa = PBXGroup;
  2084. children = (
  2085. 2747713A24BC0C0400181362 /* JXCategoryTitleCellModel.h */,
  2086. 2747713B24BC0C0400181362 /* JXCategoryTitleCell.h */,
  2087. 2747713C24BC0C0400181362 /* JXCategoryTitleView.h */,
  2088. 2747713D24BC0C0400181362 /* JXCategoryTitleCellModel.m */,
  2089. 2747713E24BC0C0400181362 /* JXCategoryTitleCell.m */,
  2090. 2747713F24BC0C0400181362 /* JXCategoryTitleView.m */,
  2091. );
  2092. path = Title;
  2093. sourceTree = "<group>";
  2094. };
  2095. 2747714124BC0C0400181362 /* Image */ = {
  2096. isa = PBXGroup;
  2097. children = (
  2098. 2747714224BC0C0400181362 /* JXCategoryImageView.m */,
  2099. 2747714324BC0C0400181362 /* JXCategoryImageCell.m */,
  2100. 2747714424BC0C0400181362 /* JXCategoryImageCellModel.h */,
  2101. 2747714524BC0C0400181362 /* JXCategoryImageView.h */,
  2102. 2747714624BC0C0400181362 /* JXCategoryImageCell.h */,
  2103. 2747714724BC0C0400181362 /* JXCategoryImageCellModel.m */,
  2104. );
  2105. path = Image;
  2106. sourceTree = "<group>";
  2107. };
  2108. 2747714824BC0C0400181362 /* Number */ = {
  2109. isa = PBXGroup;
  2110. children = (
  2111. 2747714924BC0C0400181362 /* JXCategoryNumberCellModel.h */,
  2112. 2747714A24BC0C0400181362 /* JXCategoryNumberView.m */,
  2113. 2747714B24BC0C0400181362 /* JXCategoryNumberCell.m */,
  2114. 2747714C24BC0C0400181362 /* JXCategoryNumberCellModel.m */,
  2115. 2747714D24BC0C0400181362 /* JXCategoryNumberView.h */,
  2116. 2747714E24BC0C0400181362 /* JXCategoryNumberCell.h */,
  2117. );
  2118. path = Number;
  2119. sourceTree = "<group>";
  2120. };
  2121. 2747714F24BC0C0400181362 /* Common */ = {
  2122. isa = PBXGroup;
  2123. children = (
  2124. 2747715024BC0C0400181362 /* JXCategoryCollectionView.h */,
  2125. 2747715124BC0C0400181362 /* JXCategoryIndicatorProtocol.h */,
  2126. 2747715224BC0C0400181362 /* JXCategoryViewDefines.h */,
  2127. 2747715324BC0C0400181362 /* JXCategoryFactory.m */,
  2128. 2747715424BC0C0400181362 /* UIColor+JXAdd.h */,
  2129. 2747715524BC0C0400181362 /* JXCategoryCollectionView.m */,
  2130. 2747715624BC0C0400181362 /* UIColor+JXAdd.m */,
  2131. 2747715724BC0C0400181362 /* JXCategoryFactory.h */,
  2132. );
  2133. path = Common;
  2134. sourceTree = "<group>";
  2135. };
  2136. 2747715824BC0C0400181362 /* Base */ = {
  2137. isa = PBXGroup;
  2138. children = (
  2139. 2747715924BC0C0400181362 /* JXCategoryBaseView.h */,
  2140. 2747715A24BC0C0400181362 /* JXCategoryBaseCell.h */,
  2141. 2747715B24BC0C0400181362 /* JXCategoryBaseCellModel.h */,
  2142. 2747715C24BC0C0400181362 /* JXCategoryBaseView.m */,
  2143. 2747715D24BC0C0400181362 /* JXCategoryBaseCell.m */,
  2144. 2747715E24BC0C0400181362 /* JXCategoryBaseCellModel.m */,
  2145. );
  2146. path = Base;
  2147. sourceTree = "<group>";
  2148. };
  2149. 2747716024BC0C0400181362 /* KSInputView */ = {
  2150. isa = PBXGroup;
  2151. children = (
  2152. 2747716124BC0C0400181362 /* UITextField_Toolbar.m */,
  2153. 2747716224BC0C0400181362 /* SkipTextField.m */,
  2154. 2747716324BC0C0400181362 /* SkipTextProtocol.h */,
  2155. 2747716424BC0C0400181362 /* SkipTextView.h */,
  2156. 2747716524BC0C0400181362 /* UITextView_Toolbar.m */,
  2157. 2747716624BC0C0400181362 /* UITextField_Toolbar.h */,
  2158. 2747716724BC0C0400181362 /* SkipTextField.h */,
  2159. 2747716824BC0C0400181362 /* SkipTextView.m */,
  2160. 2747716924BC0C0400181362 /* UITextView_Toolbar.h */,
  2161. );
  2162. path = KSInputView;
  2163. sourceTree = "<group>";
  2164. };
  2165. 2747717A24BC0C0400181362 /* LLPhotoBrowser */ = {
  2166. isa = PBXGroup;
  2167. children = (
  2168. 2747717B24BC0C0400181362 /* LLPhotoBrowser.m */,
  2169. 2747717C24BC0C0400181362 /* LLCollectionViewCell.h */,
  2170. 2747717D24BC0C0400181362 /* LLClasses */,
  2171. 2747718224BC0C0400181362 /* LLPhoto.m */,
  2172. 2747718324BC0C0400181362 /* LLCollectionViewCell.m */,
  2173. 2747718424BC0C0400181362 /* LLPhotoBrowser.h */,
  2174. 2747718524BC0C0400181362 /* LLPhoto.h */,
  2175. );
  2176. path = LLPhotoBrowser;
  2177. sourceTree = "<group>";
  2178. };
  2179. 2747717D24BC0C0400181362 /* LLClasses */ = {
  2180. isa = PBXGroup;
  2181. children = (
  2182. 2747717E24BC0C0400181362 /* LLImageCache.m */,
  2183. 2747717F24BC0C0400181362 /* LLFileManager.m */,
  2184. 2747718024BC0C0400181362 /* LLImageCache.h */,
  2185. 2747718124BC0C0400181362 /* LLFileManager.h */,
  2186. );
  2187. path = LLClasses;
  2188. sourceTree = "<group>";
  2189. };
  2190. 2747726624BC0C7C00181362 /* RongCloud */ = {
  2191. isa = PBXGroup;
  2192. children = (
  2193. 2747726924BC0C7C00181362 /* RongRTCLib.framework */,
  2194. 2747726724BC0C7C00181362 /* Sight */,
  2195. 2747726A24BC0C7C00181362 /* IMLib */,
  2196. 2747727024BC0C7C00181362 /* IMKit */,
  2197. );
  2198. path = RongCloud;
  2199. sourceTree = "<group>";
  2200. };
  2201. 2747726724BC0C7C00181362 /* Sight */ = {
  2202. isa = PBXGroup;
  2203. children = (
  2204. 2747726824BC0C7C00181362 /* RongSight.framework */,
  2205. );
  2206. path = Sight;
  2207. sourceTree = "<group>";
  2208. };
  2209. 2747726A24BC0C7C00181362 /* IMLib */ = {
  2210. isa = PBXGroup;
  2211. children = (
  2212. 2747726B24BC0C7C00181362 /* RongIMLib.framework */,
  2213. 2747726C24BC0C7C00181362 /* libopencore-amrwb.a */,
  2214. 2747726D24BC0C7C00181362 /* libopencore-amrnb.a */,
  2215. 2747726E24BC0C7C00181362 /* libvo-amrwbenc.a */,
  2216. 2747726F24BC0C7C00181362 /* RCConfig.plist */,
  2217. );
  2218. path = IMLib;
  2219. sourceTree = "<group>";
  2220. };
  2221. 2747727024BC0C7C00181362 /* IMKit */ = {
  2222. isa = PBXGroup;
  2223. children = (
  2224. 2747727124BC0C7C00181362 /* RCColor.plist */,
  2225. 2747727224BC0C7C00181362 /* RongCloudKit.strings */,
  2226. 2747727524BC0C7C00181362 /* RongIMKit.framework */,
  2227. 2747727624BC0C7C00181362 /* Emoji.plist */,
  2228. 2747727724BC0C7C00181362 /* RongCloud.bundle */,
  2229. );
  2230. path = IMKit;
  2231. sourceTree = "<group>";
  2232. };
  2233. 2748F8EB24C05F30003F8E11 /* ExamLibrary */ = {
  2234. isa = PBXGroup;
  2235. children = (
  2236. 2748F8EC24C05F30003F8E11 /* Controller */,
  2237. 2748F8ED24C05F30003F8E11 /* Model */,
  2238. 2748F8EE24C05F30003F8E11 /* View */,
  2239. );
  2240. path = ExamLibrary;
  2241. sourceTree = "<group>";
  2242. };
  2243. 2748F8EC24C05F30003F8E11 /* Controller */ = {
  2244. isa = PBXGroup;
  2245. children = (
  2246. 2748F8EF24C05F4C003F8E11 /* ExamLibraryController.h */,
  2247. 2748F8F024C05F4C003F8E11 /* ExamLibraryController.m */,
  2248. 2729F7C524C6C87400E1F3C4 /* OpenFileViewController.h */,
  2249. 2729F7C624C6C87400E1F3C4 /* OpenFileViewController.m */,
  2250. );
  2251. path = Controller;
  2252. sourceTree = "<group>";
  2253. };
  2254. 2748F8ED24C05F30003F8E11 /* Model */ = {
  2255. isa = PBXGroup;
  2256. children = (
  2257. 2729F7C824C6EB4900E1F3C4 /* SubjectNameModel.h */,
  2258. 2729F7C924C6EB4A00E1F3C4 /* SubjectNameModel.m */,
  2259. 2729F7CB24C6F3F300E1F3C4 /* SongListModel.h */,
  2260. 2729F7CC24C6F3F300E1F3C4 /* SongListModel.m */,
  2261. );
  2262. path = Model;
  2263. sourceTree = "<group>";
  2264. };
  2265. 2748F8EE24C05F30003F8E11 /* View */ = {
  2266. isa = PBXGroup;
  2267. children = (
  2268. 2748F8F224C1389F003F8E11 /* ExamLibraryListCell.h */,
  2269. 2748F8F324C1389F003F8E11 /* ExamLibraryListCell.m */,
  2270. 2748F8F424C1389F003F8E11 /* ExamLibraryListCell.xib */,
  2271. );
  2272. path = View;
  2273. sourceTree = "<group>";
  2274. };
  2275. 27A0089924BD96C50002452B /* Networking */ = {
  2276. isa = PBXGroup;
  2277. children = (
  2278. 27A0089A24BD96C50002452B /* Controller */,
  2279. 27A0089D24BD96C50002452B /* Model */,
  2280. 27A0089E24BD96C50002452B /* View */,
  2281. );
  2282. path = Networking;
  2283. sourceTree = "<group>";
  2284. };
  2285. 27A0089A24BD96C50002452B /* Controller */ = {
  2286. isa = PBXGroup;
  2287. children = (
  2288. 27A0089B24BD96C50002452B /* NetworkingCheckController.h */,
  2289. 27A0089C24BD96C50002452B /* NetworkingCheckController.m */,
  2290. );
  2291. path = Controller;
  2292. sourceTree = "<group>";
  2293. };
  2294. 27A0089D24BD96C50002452B /* Model */ = {
  2295. isa = PBXGroup;
  2296. children = (
  2297. );
  2298. path = Model;
  2299. sourceTree = "<group>";
  2300. };
  2301. 27A0089E24BD96C50002452B /* View */ = {
  2302. isa = PBXGroup;
  2303. children = (
  2304. 27A0089F24BD96C50002452B /* KSNetworkAlert.h */,
  2305. 27A008A024BD96C50002452B /* NetworkBodyView.m */,
  2306. 27A008A124BD96C50002452B /* NetworkBodyView.xib */,
  2307. 27A008A224BD96C50002452B /* KSNetworkAlert.m */,
  2308. 27A008A324BD96C50002452B /* NetworkBodyView.h */,
  2309. 27A008A424BD96C50002452B /* KSNetworkAlert.xib */,
  2310. );
  2311. path = View;
  2312. sourceTree = "<group>";
  2313. };
  2314. 27A008AA24BD96E50002452B /* DeviceCheck */ = {
  2315. isa = PBXGroup;
  2316. children = (
  2317. 27A008B624BD98170002452B /* AudioPlayManager.h */,
  2318. 27A008B724BD98170002452B /* AudioPlayManager.m */,
  2319. 27A008B324BD97FE0002452B /* AudioRecordManager.h */,
  2320. 27A008B424BD97FE0002452B /* AudioRecordManager.m */,
  2321. 27A008AD24BD96E50002452B /* DeviceCheckView.h */,
  2322. 27A008AC24BD96E50002452B /* DeviceCheckView.m */,
  2323. 27A008AB24BD96E50002452B /* DeviceCheckView.xib */,
  2324. );
  2325. path = DeviceCheck;
  2326. sourceTree = "<group>";
  2327. };
  2328. 27A008B924BD99620002452B /* Setting */ = {
  2329. isa = PBXGroup;
  2330. children = (
  2331. 27A008BA24BD99620002452B /* Controller */,
  2332. 27A008BB24BD99620002452B /* Model */,
  2333. 27A008BC24BD99620002452B /* View */,
  2334. );
  2335. path = Setting;
  2336. sourceTree = "<group>";
  2337. };
  2338. 27A008BA24BD99620002452B /* Controller */ = {
  2339. isa = PBXGroup;
  2340. children = (
  2341. 27A008C124BD99B10002452B /* SettingViewController.h */,
  2342. 27A008C224BD99B10002452B /* SettingViewController.m */,
  2343. 27A008CF24BDA67E0002452B /* ModifyPhoneChangeController.h */,
  2344. 27A008D024BDA67E0002452B /* ModifyPhoneChangeController.m */,
  2345. 27A008D124BDA67E0002452B /* ModifyPhoneCheckController.h */,
  2346. 27A008D224BDA67F0002452B /* ModifyPhoneCheckController.m */,
  2347. 27A008E024BDA6B40002452B /* FeedbackViewController.h */,
  2348. 27A008DF24BDA6B30002452B /* FeedbackViewController.m */,
  2349. 27A008E824BDA7070002452B /* AboutUsViewController.h */,
  2350. 27A008E724BDA7070002452B /* AboutUsViewController.m */,
  2351. );
  2352. path = Controller;
  2353. sourceTree = "<group>";
  2354. };
  2355. 27A008BB24BD99620002452B /* Model */ = {
  2356. isa = PBXGroup;
  2357. children = (
  2358. );
  2359. path = Model;
  2360. sourceTree = "<group>";
  2361. };
  2362. 27A008BC24BD99620002452B /* View */ = {
  2363. isa = PBXGroup;
  2364. children = (
  2365. 27A008CA24BD9E8A0002452B /* SettingBodyView.h */,
  2366. 27A008CB24BD9E8A0002452B /* SettingBodyView.m */,
  2367. 27A008CD24BD9E950002452B /* SettingBodyView.xib */,
  2368. 27A008D824BDA6950002452B /* PhoneChangeBodyView.h */,
  2369. 27A008D624BDA6940002452B /* PhoneChangeBodyView.m */,
  2370. 27A008D524BDA6940002452B /* PhoneChangeBodyView.xib */,
  2371. 27A008D724BDA6940002452B /* PhoneCheckBodyView.h */,
  2372. 27A008D924BDA6950002452B /* PhoneCheckBodyView.m */,
  2373. 27A008DA24BDA6950002452B /* PhoneCheckBodyView.xib */,
  2374. 27A008E424BDA6C40002452B /* FeedbackBodyView.h */,
  2375. 27A008E324BDA6C30002452B /* FeedbackBodyView.m */,
  2376. 27A008E224BDA6C30002452B /* FeedbackBodyView.xib */,
  2377. 27A008EC24BDA7100002452B /* AboutBodyView.h */,
  2378. 27A008EB24BDA7100002452B /* AboutBodyView.m */,
  2379. 27A008EA24BDA70F0002452B /* AboutBodyView.xib */,
  2380. );
  2381. path = View;
  2382. sourceTree = "<group>";
  2383. };
  2384. 27A008BD24BD99820002452B /* Mine */ = {
  2385. isa = PBXGroup;
  2386. children = (
  2387. 27A008BE24BD99820002452B /* Controller */,
  2388. 27A008BF24BD99820002452B /* Model */,
  2389. 27A008C024BD99820002452B /* View */,
  2390. );
  2391. name = Mine;
  2392. path = Controller/Mine;
  2393. sourceTree = "<group>";
  2394. };
  2395. 27A008BE24BD99820002452B /* Controller */ = {
  2396. isa = PBXGroup;
  2397. children = (
  2398. 27A008C424BD99BD0002452B /* UserViewController.h */,
  2399. 27A008C524BD99BD0002452B /* UserViewController.m */,
  2400. );
  2401. path = Controller;
  2402. sourceTree = "<group>";
  2403. };
  2404. 27A008BF24BD99820002452B /* Model */ = {
  2405. isa = PBXGroup;
  2406. children = (
  2407. );
  2408. path = Model;
  2409. sourceTree = "<group>";
  2410. };
  2411. 27A008C024BD99820002452B /* View */ = {
  2412. isa = PBXGroup;
  2413. children = (
  2414. 27A008F524BDB6220002452B /* UserBodyView.h */,
  2415. 27A008F624BDB6220002452B /* UserBodyView.m */,
  2416. 27A008F824BDB6310002452B /* UserBodyView.xib */,
  2417. );
  2418. path = View;
  2419. sourceTree = "<group>";
  2420. };
  2421. 27EF3F0A24C02B67002068A2 /* TipsView */ = {
  2422. isa = PBXGroup;
  2423. children = (
  2424. 27EF3F0B24C02B67002068A2 /* KSTipsView.m */,
  2425. 27EF3F0C24C02B67002068A2 /* KSTipsView.h */,
  2426. );
  2427. path = TipsView;
  2428. sourceTree = "<group>";
  2429. };
  2430. 27EF3F0D24C02B67002068A2 /* NormalAlertView */ = {
  2431. isa = PBXGroup;
  2432. children = (
  2433. 27EF3F0E24C02B67002068A2 /* KSNormalAlertView.h */,
  2434. 27EF3F0F24C02B67002068A2 /* KSNormalAlertView.m */,
  2435. );
  2436. path = NormalAlertView;
  2437. sourceTree = "<group>";
  2438. };
  2439. 27EF3F1024C02B67002068A2 /* TitleView */ = {
  2440. isa = PBXGroup;
  2441. children = (
  2442. 27EF3F1124C02B67002068A2 /* ClassTitleView.h */,
  2443. 27EF3F1224C02B67002068A2 /* ClassTitleView.m */,
  2444. );
  2445. path = TitleView;
  2446. sourceTree = "<group>";
  2447. };
  2448. 27EF3F1324C02B67002068A2 /* VideoList */ = {
  2449. isa = PBXGroup;
  2450. children = (
  2451. 27EF3F1524C02B68002068A2 /* ClassVideoListCell.h */,
  2452. 27EF3F1924C02B68002068A2 /* ClassVideoListCell.m */,
  2453. 27EF3F1424C02B67002068A2 /* ClassVideoListView.h */,
  2454. 27EF3F1724C02B68002068A2 /* ClassVideoListView.m */,
  2455. );
  2456. path = VideoList;
  2457. sourceTree = "<group>";
  2458. };
  2459. 27EF3F1A24C02B68002068A2 /* MainToolbar */ = {
  2460. isa = PBXGroup;
  2461. children = (
  2462. 27EF3F1B24C02B68002068A2 /* MainToolView.m */,
  2463. 27EF3F1C24C02B68002068A2 /* MainToolView.h */,
  2464. );
  2465. path = MainToolbar;
  2466. sourceTree = "<group>";
  2467. };
  2468. 27EF3F1D24C02B68002068A2 /* MainContainer */ = {
  2469. isa = PBXGroup;
  2470. children = (
  2471. 27EF3F1E24C02B68002068A2 /* ClassroomMainContainer.h */,
  2472. 27EF3F1F24C02B68002068A2 /* ClassroomMainContainer.m */,
  2473. 27EF3F2924C02DE9002068A2 /* EmptyView.h */,
  2474. 27EF3F2824C02DE8002068A2 /* EmptyView.m */,
  2475. );
  2476. path = MainContainer;
  2477. sourceTree = "<group>";
  2478. };
  2479. 3765A35FA865CF0E79E4496A /* Pods */ = {
  2480. isa = PBXGroup;
  2481. children = (
  2482. 2F7D3758362ED28D51286A60 /* Pods-MusicGradeExam.debug.xcconfig */,
  2483. 1AA4DFCEF527585287BEBFE0 /* Pods-MusicGradeExam.release.xcconfig */,
  2484. E1DA29861866096EC2DBC683 /* Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig */,
  2485. 2BB32BBE582672362BB6E017 /* Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig */,
  2486. 5402063E714DA9D9107F8070 /* Pods-MusicGradeExamTests.debug.xcconfig */,
  2487. E19677AAD7D01861E10F49D5 /* Pods-MusicGradeExamTests.release.xcconfig */,
  2488. );
  2489. path = Pods;
  2490. sourceTree = "<group>";
  2491. };
  2492. 8478281B4E8B1E1D71EF685C /* Frameworks */ = {
  2493. isa = PBXGroup;
  2494. children = (
  2495. 274772B024BC0DEB00181362 /* libsqlite3.tbd */,
  2496. 274772AE24BC0DDE00181362 /* libiconv.tbd */,
  2497. 274772AC24BC0DD000181362 /* libbz2.tbd */,
  2498. 274772AA24BC0DC900181362 /* libz.tbd */,
  2499. 274772A824BC0DC000181362 /* libc++.tbd */,
  2500. 274772A624BC0DB500181362 /* VideoToolbox.framework */,
  2501. 274772A424BC0DAE00181362 /* AudioToolbox.framework */,
  2502. 274772A224BC0DA800181362 /* CFNetwork.framework */,
  2503. 274772A024BC0DA000181362 /* CoreVideo.framework */,
  2504. 2747729E24BC0D9B00181362 /* CoreAudio.framework */,
  2505. 2747729C24BC0D9300181362 /* CoreMedia.framework */,
  2506. 2747729A24BC0D8D00181362 /* CoreFoundation.framework */,
  2507. 2747729824BC0D8700181362 /* CoreTelephony.framework */,
  2508. 2747729624BC0D8000181362 /* CoreLocation.framework */,
  2509. 2747729424BC0D7A00181362 /* CoreGraphics.framework */,
  2510. 2747729224BC0D7300181362 /* OpenGLES.framework */,
  2511. 2747729024BC0D6B00181362 /* GLKit.framework */,
  2512. 2747728E24BC0D6500181362 /* AVFoundation.framework */,
  2513. 2747728C24BC0D5F00181362 /* QuartzCore.framework */,
  2514. 2747728A24BC0D5800181362 /* Security.framework */,
  2515. 2747728824BC0D5200181362 /* ImageIO.framework */,
  2516. 2747728624BC0D4800181362 /* MapKit.framework */,
  2517. 2747728424BC0D4200181362 /* AssetsLibrary.framework */,
  2518. 1C12DE728E343C25BB5998D7 /* libPods-MusicGradeExam.a */,
  2519. F8D13E0A14104E75F7922812 /* libPods-MusicGradeExam-MusicGradeExamUITests.a */,
  2520. 8BAA64634BC925E7C2CD7008 /* libPods-MusicGradeExamTests.a */,
  2521. );
  2522. name = Frameworks;
  2523. sourceTree = "<group>";
  2524. };
  2525. /* End PBXGroup section */
  2526. /* Begin PBXNativeTarget section */
  2527. 27476F4224BBFB5900181362 /* MusicGradeExam */ = {
  2528. isa = PBXNativeTarget;
  2529. buildConfigurationList = 27476F7224BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExam" */;
  2530. buildPhases = (
  2531. A2CFBEEEA280BC5D8A12DDFF /* [CP] Check Pods Manifest.lock */,
  2532. 27476F3F24BBFB5900181362 /* Sources */,
  2533. 27476F4024BBFB5900181362 /* Frameworks */,
  2534. 27476F4124BBFB5900181362 /* Resources */,
  2535. FB27AFBA470BD4CA0203D584 /* [CP] Copy Pods Resources */,
  2536. );
  2537. buildRules = (
  2538. );
  2539. dependencies = (
  2540. );
  2541. name = MusicGradeExam;
  2542. productName = MusicGradeExam;
  2543. productReference = 27476F4324BBFB5900181362 /* 酷乐秀.app */;
  2544. productType = "com.apple.product-type.application";
  2545. };
  2546. 27476F5D24BBFB5C00181362 /* MusicGradeExamTests */ = {
  2547. isa = PBXNativeTarget;
  2548. buildConfigurationList = 27476F7524BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExamTests" */;
  2549. buildPhases = (
  2550. 1CF0D64E1EAEBE124C36BB82 /* [CP] Check Pods Manifest.lock */,
  2551. 27476F5A24BBFB5C00181362 /* Sources */,
  2552. 27476F5B24BBFB5C00181362 /* Frameworks */,
  2553. 27476F5C24BBFB5C00181362 /* Resources */,
  2554. );
  2555. buildRules = (
  2556. );
  2557. dependencies = (
  2558. 27476F6024BBFB5C00181362 /* PBXTargetDependency */,
  2559. );
  2560. name = MusicGradeExamTests;
  2561. productName = MusicGradeExamTests;
  2562. productReference = 27476F5E24BBFB5C00181362 /* MusicGradeExamTests.xctest */;
  2563. productType = "com.apple.product-type.bundle.unit-test";
  2564. };
  2565. 27476F6824BBFB5C00181362 /* MusicGradeExamUITests */ = {
  2566. isa = PBXNativeTarget;
  2567. buildConfigurationList = 27476F7824BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExamUITests" */;
  2568. buildPhases = (
  2569. AC2303F321F3E3EDB53A3E35 /* [CP] Check Pods Manifest.lock */,
  2570. 27476F6524BBFB5C00181362 /* Sources */,
  2571. 27476F6624BBFB5C00181362 /* Frameworks */,
  2572. 27476F6724BBFB5C00181362 /* Resources */,
  2573. 224760B7408CF475A1025795 /* [CP] Copy Pods Resources */,
  2574. );
  2575. buildRules = (
  2576. );
  2577. dependencies = (
  2578. 27476F6B24BBFB5C00181362 /* PBXTargetDependency */,
  2579. );
  2580. name = MusicGradeExamUITests;
  2581. productName = MusicGradeExamUITests;
  2582. productReference = 27476F6924BBFB5C00181362 /* MusicGradeExamUITests.xctest */;
  2583. productType = "com.apple.product-type.bundle.ui-testing";
  2584. };
  2585. /* End PBXNativeTarget section */
  2586. /* Begin PBXProject section */
  2587. 27476F3B24BBFB5900181362 /* Project object */ = {
  2588. isa = PBXProject;
  2589. attributes = {
  2590. LastUpgradeCheck = 1150;
  2591. ORGANIZATIONNAME = DayaMusic;
  2592. TargetAttributes = {
  2593. 27476F4224BBFB5900181362 = {
  2594. CreatedOnToolsVersion = 11.5;
  2595. };
  2596. 27476F5D24BBFB5C00181362 = {
  2597. CreatedOnToolsVersion = 11.5;
  2598. TestTargetID = 27476F4224BBFB5900181362;
  2599. };
  2600. 27476F6824BBFB5C00181362 = {
  2601. CreatedOnToolsVersion = 11.5;
  2602. TestTargetID = 27476F4224BBFB5900181362;
  2603. };
  2604. };
  2605. };
  2606. buildConfigurationList = 27476F3E24BBFB5900181362 /* Build configuration list for PBXProject "MusicGradeExam" */;
  2607. compatibilityVersion = "Xcode 9.3";
  2608. developmentRegion = en;
  2609. hasScannedForEncodings = 0;
  2610. knownRegions = (
  2611. en,
  2612. Base,
  2613. "zh-Hans",
  2614. );
  2615. mainGroup = 27476F3A24BBFB5900181362;
  2616. productRefGroup = 27476F4424BBFB5900181362 /* Products */;
  2617. projectDirPath = "";
  2618. projectRoot = "";
  2619. targets = (
  2620. 27476F4224BBFB5900181362 /* MusicGradeExam */,
  2621. 27476F5D24BBFB5C00181362 /* MusicGradeExamTests */,
  2622. 27476F6824BBFB5C00181362 /* MusicGradeExamUITests */,
  2623. );
  2624. };
  2625. /* End PBXProject section */
  2626. /* Begin PBXResourcesBuildPhase section */
  2627. 27476F4124BBFB5900181362 /* Resources */ = {
  2628. isa = PBXResourcesBuildPhase;
  2629. buildActionMask = 2147483647;
  2630. files = (
  2631. 27A008ED24BDA7100002452B /* AboutBodyView.xib in Resources */,
  2632. 274771AE24BC0C0500181362 /* mss_browseLoading@2x.png in Resources */,
  2633. 27A008CE24BD9E950002452B /* SettingBodyView.xib in Resources */,
  2634. 2794D1BF24BD4D0C00BAF6F3 /* FSBodyView.xib in Resources */,
  2635. 27A008E524BDA6C40002452B /* FeedbackBodyView.xib in Resources */,
  2636. 2747718A24BC0C0500181362 /* WMPlayer.bundle in Resources */,
  2637. 27476F5624BBFB5C00181362 /* LaunchScreen.storyboard in Resources */,
  2638. 2747727F24BC0C7C00181362 /* RCColor.plist in Resources */,
  2639. 27EF3EF824BEF1E8002068A2 /* TicketBodyView.xib in Resources */,
  2640. 27A008F924BDB6310002452B /* UserBodyView.xib in Resources */,
  2641. 2794D1C424BD60E900BAF6F3 /* UserCenterBodyView.xib in Resources */,
  2642. 2794D1B224BC605600BAF6F3 /* VefiBodyView.xib in Resources */,
  2643. 2747728324BC0C7D00181362 /* RongCloud.bundle in Resources */,
  2644. 27A008A724BD96C50002452B /* NetworkBodyView.xib in Resources */,
  2645. 2794D1C924BD631A00BAF6F3 /* ModifyBodyView.xib in Resources */,
  2646. 27A008DB24BDA6950002452B /* PhoneChangeBodyView.xib in Resources */,
  2647. 27A008FE24BECDFC0002452B /* HomeBodyView.xib in Resources */,
  2648. 274771AC24BC0C0500181362 /* mss_browseLoading@3x.png in Resources */,
  2649. 274771ED24BC0C0500181362 /* LoginBodyView.xib in Resources */,
  2650. 2794D1BA24BC69A400BAF6F3 /* RegisterBodyView.xib in Resources */,
  2651. 2747719624BC0C0500181362 /* TZImagePickerController.bundle in Resources */,
  2652. 27A008DE24BDA6950002452B /* PhoneCheckBodyView.xib in Resources */,
  2653. 2747727E24BC0C7C00181362 /* RCConfig.plist in Resources */,
  2654. 27476F5324BBFB5C00181362 /* Assets.xcassets in Resources */,
  2655. 27A008AE24BD96E50002452B /* DeviceCheckView.xib in Resources */,
  2656. 2747728224BC0C7D00181362 /* Emoji.plist in Resources */,
  2657. 2747728024BC0C7C00181362 /* RongCloudKit.strings in Resources */,
  2658. 2748F8F624C138A0003F8E11 /* ExamLibraryListCell.xib in Resources */,
  2659. 27476F5124BBFB5900181362 /* Main.storyboard in Resources */,
  2660. 27EF3EF324BEE885002068A2 /* NotifyMessageCell.xib in Resources */,
  2661. 27EF3F0024BF016B002068A2 /* WaitExamBodyView.xib in Resources */,
  2662. 27A008A924BD96C50002452B /* KSNetworkAlert.xib in Resources */,
  2663. 27EF3F2F24C0384E002068A2 /* HomeExamTicketCell.xib in Resources */,
  2664. );
  2665. runOnlyForDeploymentPostprocessing = 0;
  2666. };
  2667. 27476F5C24BBFB5C00181362 /* Resources */ = {
  2668. isa = PBXResourcesBuildPhase;
  2669. buildActionMask = 2147483647;
  2670. files = (
  2671. );
  2672. runOnlyForDeploymentPostprocessing = 0;
  2673. };
  2674. 27476F6724BBFB5C00181362 /* Resources */ = {
  2675. isa = PBXResourcesBuildPhase;
  2676. buildActionMask = 2147483647;
  2677. files = (
  2678. );
  2679. runOnlyForDeploymentPostprocessing = 0;
  2680. };
  2681. /* End PBXResourcesBuildPhase section */
  2682. /* Begin PBXShellScriptBuildPhase section */
  2683. 1CF0D64E1EAEBE124C36BB82 /* [CP] Check Pods Manifest.lock */ = {
  2684. isa = PBXShellScriptBuildPhase;
  2685. buildActionMask = 2147483647;
  2686. files = (
  2687. );
  2688. inputFileListPaths = (
  2689. );
  2690. inputPaths = (
  2691. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2692. "${PODS_ROOT}/Manifest.lock",
  2693. );
  2694. name = "[CP] Check Pods Manifest.lock";
  2695. outputFileListPaths = (
  2696. );
  2697. outputPaths = (
  2698. "$(DERIVED_FILE_DIR)/Pods-MusicGradeExamTests-checkManifestLockResult.txt",
  2699. );
  2700. runOnlyForDeploymentPostprocessing = 0;
  2701. shellPath = /bin/sh;
  2702. 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";
  2703. showEnvVarsInLog = 0;
  2704. };
  2705. 224760B7408CF475A1025795 /* [CP] Copy Pods Resources */ = {
  2706. isa = PBXShellScriptBuildPhase;
  2707. buildActionMask = 2147483647;
  2708. files = (
  2709. );
  2710. inputFileListPaths = (
  2711. "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources-${CONFIGURATION}-input-files.xcfilelist",
  2712. );
  2713. name = "[CP] Copy Pods Resources";
  2714. outputFileListPaths = (
  2715. "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources-${CONFIGURATION}-output-files.xcfilelist",
  2716. );
  2717. runOnlyForDeploymentPostprocessing = 0;
  2718. shellPath = /bin/sh;
  2719. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources.sh\"\n";
  2720. showEnvVarsInLog = 0;
  2721. };
  2722. A2CFBEEEA280BC5D8A12DDFF /* [CP] Check Pods Manifest.lock */ = {
  2723. isa = PBXShellScriptBuildPhase;
  2724. buildActionMask = 2147483647;
  2725. files = (
  2726. );
  2727. inputFileListPaths = (
  2728. );
  2729. inputPaths = (
  2730. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2731. "${PODS_ROOT}/Manifest.lock",
  2732. );
  2733. name = "[CP] Check Pods Manifest.lock";
  2734. outputFileListPaths = (
  2735. );
  2736. outputPaths = (
  2737. "$(DERIVED_FILE_DIR)/Pods-MusicGradeExam-checkManifestLockResult.txt",
  2738. );
  2739. runOnlyForDeploymentPostprocessing = 0;
  2740. shellPath = /bin/sh;
  2741. 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";
  2742. showEnvVarsInLog = 0;
  2743. };
  2744. AC2303F321F3E3EDB53A3E35 /* [CP] Check Pods Manifest.lock */ = {
  2745. isa = PBXShellScriptBuildPhase;
  2746. buildActionMask = 2147483647;
  2747. files = (
  2748. );
  2749. inputFileListPaths = (
  2750. );
  2751. inputPaths = (
  2752. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2753. "${PODS_ROOT}/Manifest.lock",
  2754. );
  2755. name = "[CP] Check Pods Manifest.lock";
  2756. outputFileListPaths = (
  2757. );
  2758. outputPaths = (
  2759. "$(DERIVED_FILE_DIR)/Pods-MusicGradeExam-MusicGradeExamUITests-checkManifestLockResult.txt",
  2760. );
  2761. runOnlyForDeploymentPostprocessing = 0;
  2762. shellPath = /bin/sh;
  2763. 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";
  2764. showEnvVarsInLog = 0;
  2765. };
  2766. FB27AFBA470BD4CA0203D584 /* [CP] Copy Pods Resources */ = {
  2767. isa = PBXShellScriptBuildPhase;
  2768. buildActionMask = 2147483647;
  2769. files = (
  2770. );
  2771. inputFileListPaths = (
  2772. "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources-${CONFIGURATION}-input-files.xcfilelist",
  2773. );
  2774. name = "[CP] Copy Pods Resources";
  2775. outputFileListPaths = (
  2776. "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources-${CONFIGURATION}-output-files.xcfilelist",
  2777. );
  2778. runOnlyForDeploymentPostprocessing = 0;
  2779. shellPath = /bin/sh;
  2780. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources.sh\"\n";
  2781. showEnvVarsInLog = 0;
  2782. };
  2783. /* End PBXShellScriptBuildPhase section */
  2784. /* Begin PBXSourcesBuildPhase section */
  2785. 27476F3F24BBFB5900181362 /* Sources */ = {
  2786. isa = PBXSourcesBuildPhase;
  2787. buildActionMask = 2147483647;
  2788. files = (
  2789. 2747722A24BC0C0500181362 /* KSHoldButton.m in Sources */,
  2790. 2747719A24BC0C0500181362 /* TZPhotoPreviewCell.m in Sources */,
  2791. 274771E324BC0C0500181362 /* KSIMService.m in Sources */,
  2792. 2747721D24BC0C0500181362 /* UIButton+Property.m in Sources */,
  2793. 27EF3F2024C02B68002068A2 /* KSTipsView.m in Sources */,
  2794. 27A008B824BD98170002452B /* AudioPlayManager.m in Sources */,
  2795. 2747725224BC0C0500181362 /* JXCategoryBaseCell.m in Sources */,
  2796. 2747723824BC0C0500181362 /* JXCategoryIndicatorImageView.m in Sources */,
  2797. 2747725024BC0C0500181362 /* UIColor+JXAdd.m in Sources */,
  2798. 2747723924BC0C0500181362 /* JXCategoryIndicatorBallView.m in Sources */,
  2799. 2747721724BC0C0500181362 /* UIImageView+CornerRadius.m in Sources */,
  2800. 2747722E24BC0C0500181362 /* KSAudioRecordManager.m in Sources */,
  2801. 274771B024BC0C0500181362 /* UIView+Animation.m in Sources */,
  2802. 274771CA24BC0C0500181362 /* RoomLoginHelper.m in Sources */,
  2803. 27EF3F0924C02B3F002068A2 /* LocalRenderManager.m in Sources */,
  2804. 2794D1C724BD62FB00BAF6F3 /* ModifyBodyView.m in Sources */,
  2805. 274771A624BC0C0500181362 /* MSSBrowseActionSheet.m in Sources */,
  2806. 2747720124BC0C0500181362 /* UIDevice+zhDeviceType.m in Sources */,
  2807. 274771F124BC0C0500181362 /* KSUpdateManager.m in Sources */,
  2808. 2747721424BC0C0500181362 /* NSDate+Transform.m in Sources */,
  2809. 27EF3F2324C02B68002068A2 /* ClassVideoListView.m in Sources */,
  2810. 27A008DD24BDA6950002452B /* PhoneCheckBodyView.m in Sources */,
  2811. 2747724824BC0C0500181362 /* JXCategoryImageView.m in Sources */,
  2812. 2747723424BC0C0500181362 /* JXPagerView.m in Sources */,
  2813. 274771A524BC0C0500181362 /* MSSBrowseModel.m in Sources */,
  2814. 274771E124BC0C0500181362 /* ClassroomService.m in Sources */,
  2815. 274771DD24BC0C0500181362 /* NodePlayMessage.m in Sources */,
  2816. 2747718E24BC0C0500181362 /* UIView+ShowProgress.m in Sources */,
  2817. 2747718924BC0C0500181362 /* WMPlayerModel.m in Sources */,
  2818. 27A008AF24BD96E50002452B /* DeviceCheckView.m in Sources */,
  2819. 2748F8F524C138A0003F8E11 /* ExamLibraryListCell.m in Sources */,
  2820. 274771E524BC0C0500181362 /* FirstSettingViewController.m in Sources */,
  2821. 27A008DC24BDA6950002452B /* PhoneChangeBodyView.m in Sources */,
  2822. 2747719024BC0C0500181362 /* TZAssetCell.m in Sources */,
  2823. 2747718824BC0C0500181362 /* DZNSegmentedControl.m in Sources */,
  2824. 2747719B24BC0C0500181362 /* TZImagePickerController.m in Sources */,
  2825. 2747726024BC0C0500181362 /* NSDate+KSBaseDatePicker.m in Sources */,
  2826. 2747722C24BC0C0500181362 /* UIView+KSAdditions.m in Sources */,
  2827. 2747719524BC0C0500181362 /* TZPhotoPreviewController.m in Sources */,
  2828. 2747720324BC0C0500181362 /* UIViewController+zhStatusBarStyle.m in Sources */,
  2829. 274771DF24BC0C0500181362 /* RoomMember.m in Sources */,
  2830. 2747720624BC0C0500181362 /* NSMutableAttributedString+CZHExtention.m in Sources */,
  2831. 2747720F24BC0C0500181362 /* NSDictionary+Extension.m in Sources */,
  2832. 2747720824BC0C0500181362 /* UILabel+Extension.m in Sources */,
  2833. 274771D924BC0C0500181362 /* DeviceMessage.m in Sources */,
  2834. 2747719124BC0C0500181362 /* TZVideoPlayerController.m in Sources */,
  2835. 2747721E24BC0C0500181362 /* UIDevice+TFDevice.m in Sources */,
  2836. 2747721624BC0C0500181362 /* CALayer+KSLayout.m in Sources */,
  2837. 2747721524BC0C0500181362 /* UIScreen+Extend.m in Sources */,
  2838. 274771A324BC0C0500181362 /* MSSBrowseLocalViewController.m in Sources */,
  2839. 2747723024BC0C0500181362 /* KSFullDatePicker.m in Sources */,
  2840. 2794D1B824BC699700BAF6F3 /* RegisterBodyView.m in Sources */,
  2841. 2747720A24BC0C0500181362 /* UIColor+Extend.m in Sources */,
  2842. 274771B524BC0C0500181362 /* TYCyclePagerTransformLayout.m in Sources */,
  2843. 274771CF24BC0C0500181362 /* HTTPResult.m in Sources */,
  2844. 274771D424BC0C0500181362 /* TicketExpiredMessage.m in Sources */,
  2845. 274771F924BC0C0500181362 /* NSMutableDictionary+KSSafe.m in Sources */,
  2846. 274771D624BC0C0500181362 /* AssistantTransferMessage.m in Sources */,
  2847. 27A008E624BDA6C40002452B /* FeedbackBodyView.m in Sources */,
  2848. 274771F524BC0C0500181362 /* KSMemoryCache.m in Sources */,
  2849. 274771A024BC0C0500181362 /* SCIndexView.m in Sources */,
  2850. 2747723324BC0C0500181362 /* JXPagerMainTableView.m in Sources */,
  2851. 2747724424BC0C0500181362 /* JXCategoryTitleImageCellModel.m in Sources */,
  2852. 2747725624BC0C0500181362 /* SkipTextField.m in Sources */,
  2853. 274771B324BC0C0500181362 /* TYPageControl.m in Sources */,
  2854. 274771C524BC0C0500181362 /* UINavigationController+KSNavigationBar.m in Sources */,
  2855. 2747725524BC0C0500181362 /* UITextField_Toolbar.m in Sources */,
  2856. 274771C924BC0C0500181362 /* ClassroomViewController.m in Sources */,
  2857. 2747726524BC0C0500181362 /* LLCollectionViewCell.m in Sources */,
  2858. 274771BF24BC0C0500181362 /* UIView+ALFrame.m in Sources */,
  2859. 2747722624BC0C0500181362 /* MBProgressHUD+KSShow.m in Sources */,
  2860. 2747722124BC0C0500181362 /* UIImage+ResizeImage.m in Sources */,
  2861. 274771E024BC0C0500181362 /* Classroom.m in Sources */,
  2862. 2747719F24BC0C0500181362 /* SCIndexViewConfiguration.m in Sources */,
  2863. 2747720D24BC0C0500181362 /* UIView+AddConstraints.m in Sources */,
  2864. 274771BC24BC0C0500181362 /* ALCalendarCollectionView.m in Sources */,
  2865. 27EF3EF224BEE885002068A2 /* NotifyMessageCell.m in Sources */,
  2866. 274771F424BC0C0500181362 /* KSLRUManager.m in Sources */,
  2867. 2747718C24BC0C0500181362 /* FastForwardView.m in Sources */,
  2868. 2747718724BC0C0500181362 /* JYEqualCellSpaceFlowLayout.m in Sources */,
  2869. 274771E624BC0C0500181362 /* LoginViewController.m in Sources */,
  2870. 2747726424BC0C0500181362 /* LLPhoto.m in Sources */,
  2871. 27A008C924BD9D550002452B /* KSNetTypeManager.m in Sources */,
  2872. 27EF3F2124C02B68002068A2 /* KSNormalAlertView.m in Sources */,
  2873. 2747723524BC0C0500181362 /* JXPagerListRefreshView.m in Sources */,
  2874. 274771A824BC0C0500181362 /* UIImage+MSSScale.m in Sources */,
  2875. 27A008F724BDB6220002452B /* UserBodyView.m in Sources */,
  2876. 274771D224BC0C0500181362 /* DisplayCommandMessage.m in Sources */,
  2877. 2747722F24BC0C0500181362 /* KSRecordPowerAnimationView.m in Sources */,
  2878. 2747723C24BC0C0500181362 /* JXCategoryIndicatorCellModel.m in Sources */,
  2879. 27EF3F0624BFF8A1002068A2 /* TicketDetailModel.m in Sources */,
  2880. 274771FD24BC0C0500181362 /* NSObject+KSImpChangeTool.m in Sources */,
  2881. 2747718B24BC0C0500181362 /* WMLightView.m in Sources */,
  2882. 2747721024BC0C0500181362 /* UIView+Hints.m in Sources */,
  2883. 274771A424BC0C0500181362 /* MSSBrowseCollectionViewCell.m in Sources */,
  2884. 274771AF24BC0C0500181362 /* UIView+MSSLayout.m in Sources */,
  2885. 27A008E124BDA6B40002452B /* FeedbackViewController.m in Sources */,
  2886. 27EF3EF624BEF1DA002068A2 /* TicketBodyView.m in Sources */,
  2887. 274771CC24BC0C0500181362 /* UIView+MBProgressHUD.m in Sources */,
  2888. 274771F624BC0C0500181362 /* KSDiskCache.m in Sources */,
  2889. 2747721224BC0C0500181362 /* NSDate+Extension.m in Sources */,
  2890. 2747720924BC0C0500181362 /* UIAlertController+Extend.m in Sources */,
  2891. 27A008C624BD99BD0002452B /* UserViewController.m in Sources */,
  2892. 27A008EE24BDA7100002452B /* AboutBodyView.m in Sources */,
  2893. 27476F4E24BBFB5900181362 /* ViewController.m in Sources */,
  2894. 274771DC24BC0C0500181362 /* TurnPageMessage.m in Sources */,
  2895. 2747721124BC0C0500181362 /* NSArray+ks_SafeAccess.m in Sources */,
  2896. 2747722924BC0C0500181362 /* KSChoosePicker.m in Sources */,
  2897. 274771B224BC0C0500181362 /* ZKCycleScrollViewFlowLayout.m in Sources */,
  2898. 274771BB24BC0C0500181362 /* ALCalendarDate.m in Sources */,
  2899. 2729F7CA24C6EB4A00E1F3C4 /* SubjectNameModel.m in Sources */,
  2900. 2747724D24BC0C0500181362 /* JXCategoryNumberCellModel.m in Sources */,
  2901. 274771C024BC0C0500181362 /* ALCalendarManager.m in Sources */,
  2902. 2747724C24BC0C0500181362 /* JXCategoryNumberCell.m in Sources */,
  2903. 274771B824BC0C0500181362 /* ALCalendarCell.m in Sources */,
  2904. 2747723F24BC0C0500181362 /* JXCategoryDotCell.m in Sources */,
  2905. 274771F224BC0C0500181362 /* KSNetworking+RequestOperation.m in Sources */,
  2906. 2747720E24BC0C0500181362 /* NSString+CZHSizeExtension.m in Sources */,
  2907. 2747720024BC0C0500181362 /* UIControl+ButtonAction.m in Sources */,
  2908. 2747719924BC0C0500181362 /* TZPhotoPickerController.m in Sources */,
  2909. 274771E924BC0C0500181362 /* ModifyViewController.m in Sources */,
  2910. 2747725D24BC0C0500181362 /* KSMessageInputView.m in Sources */,
  2911. 274771CB24BC0C0500181362 /* RTCService.m in Sources */,
  2912. 274771CD24BC0C0500181362 /* RolePortraitView.m in Sources */,
  2913. 2747722024BC0C0500181362 /* UIImage+Property.m in Sources */,
  2914. 274771C624BC0C0500181362 /* KSTabBarController.m in Sources */,
  2915. 27EF3F2A24C02DE9002068A2 /* EmptyView.m in Sources */,
  2916. 2747724524BC0C0500181362 /* JXCategoryTitleCellModel.m in Sources */,
  2917. 2747720B24BC0C0500181362 /* UIView+Dealloc.m in Sources */,
  2918. 2747724024BC0C0500181362 /* JXCategoryDotView.m in Sources */,
  2919. 274771A224BC0C0500181362 /* MSSBrowseLoadingImageView.m in Sources */,
  2920. 274771CE24BC0C0500181362 /* HTTPUtility.m in Sources */,
  2921. 274771D324BC0C0500181362 /* ControlDeviceNotifyMessage.m in Sources */,
  2922. 2747719324BC0C0500181362 /* NSBundle+TZImagePicker.m in Sources */,
  2923. 27A008B524BD97FE0002452B /* AudioRecordManager.m in Sources */,
  2924. 2747721924BC0C0500181362 /* UIImage+Color.m in Sources */,
  2925. 27EF3F2E24C0384E002068A2 /* HomeExamTicketCell.m in Sources */,
  2926. 2747722B24BC0C0500181362 /* KSAudioRecordFileManager.m in Sources */,
  2927. 27A008D424BDA67F0002452B /* ModifyPhoneCheckController.m in Sources */,
  2928. 2747726224BC0C0500181362 /* LLImageCache.m in Sources */,
  2929. 274771E724BC0C0500181362 /* RegisterViewController.m in Sources */,
  2930. 274771F824BC0C0500181362 /* NSDictionary+KSSafe.m in Sources */,
  2931. 274771BD24BC0C0500181362 /* ALCalendarHelper.m in Sources */,
  2932. 274771B624BC0C0500181362 /* KSPickerView.m in Sources */,
  2933. 274771B424BC0C0500181362 /* TYCyclePagerView.m in Sources */,
  2934. 2747719824BC0C0500181362 /* TZImageManager.m in Sources */,
  2935. 27A008E924BDA7070002452B /* AboutUsViewController.m in Sources */,
  2936. 27544CF824BC337D00EF58AF /* ExamTicketViewController.m in Sources */,
  2937. 2794D1B024BC604800BAF6F3 /* VefiBodyView.m in Sources */,
  2938. 274771C824BC0C0500181362 /* HomeViewController.m in Sources */,
  2939. 27544CFB24BC338900EF58AF /* UserCenterViewController.m in Sources */,
  2940. 27EF3EFB24BEFC79002068A2 /* WaitExamViewController.m in Sources */,
  2941. 274771B124BC0C0500181362 /* ZKCycleScrollView.m in Sources */,
  2942. 274771A724BC0C0500181362 /* MSSBrowseNetworkViewController.m in Sources */,
  2943. 2747724924BC0C0500181362 /* JXCategoryImageCell.m in Sources */,
  2944. 2747720C24BC0C0500181362 /* NSObject+Parse.m in Sources */,
  2945. 274771B724BC0C0500181362 /* NSObject+ReadDocument.m in Sources */,
  2946. 274771BE24BC0C0500181362 /* ALCalendarPicker.m in Sources */,
  2947. 274771D824BC0C0500181362 /* InviteUpgradeMessage.m in Sources */,
  2948. 2747725324BC0C0500181362 /* JXCategoryBaseCellModel.m in Sources */,
  2949. 2748F8F124C05F4D003F8E11 /* ExamLibraryController.m in Sources */,
  2950. 2747722324BC0C0500181362 /* NSObject+AutoProperty.m in Sources */,
  2951. 274771D524BC0C0500181362 /* WhiteboardMessage.m in Sources */,
  2952. 2747725F24BC0C0500181362 /* StateView.m in Sources */,
  2953. 274771A124BC0C0500181362 /* UITableView+SCIndexView.m in Sources */,
  2954. 2747720224BC0C0500181362 /* NSString+zh_SafeAccess.m in Sources */,
  2955. 2747724B24BC0C0500181362 /* JXCategoryNumberView.m in Sources */,
  2956. 2747721324BC0C0500181362 /* NSString+Extension.m in Sources */,
  2957. 27A008CC24BD9E8A0002452B /* SettingBodyView.m in Sources */,
  2958. 2747721B24BC0C0500181362 /* UIView+XIBView.m in Sources */,
  2959. 2747723E24BC0C0500181362 /* JXCategoryIndicatorView.m in Sources */,
  2960. 2747725424BC0C0500181362 /* MBProgressHUD+NJ.m in Sources */,
  2961. 27A008D324BDA67F0002452B /* ModifyPhoneChangeController.m in Sources */,
  2962. 2747724A24BC0C0500181362 /* JXCategoryImageCellModel.m in Sources */,
  2963. 27EF3F0324BF0F12002068A2 /* TicketListModel.m in Sources */,
  2964. 2747721C24BC0C0500181362 /* UrlDecode.m in Sources */,
  2965. 2747724724BC0C0500181362 /* JXCategoryTitleView.m in Sources */,
  2966. 274771F724BC0C0500181362 /* KSCacheManager.m in Sources */,
  2967. 2747722224BC0C0500181362 /* UIButton+HasChooseImage.m in Sources */,
  2968. 2747719E24BC0C0500181362 /* TZImageRequestOperation.m in Sources */,
  2969. 2747725C24BC0C0500181362 /* NSString+MD5.m in Sources */,
  2970. 2747724124BC0C0500181362 /* JXCategoryDotCellModel.m in Sources */,
  2971. 274771E224BC0C0500181362 /* KSRemoteUserManager.m in Sources */,
  2972. 2747725B24BC0C0500181362 /* KSImageButton.m in Sources */,
  2973. 2747719724BC0C0500181362 /* TZProgressView.m in Sources */,
  2974. 274771AB24BC0C0500181362 /* MSSBrowseRemindView.m in Sources */,
  2975. 274771A924BC0C0500181362 /* MSSBrowseBaseViewController.m in Sources */,
  2976. 27A008A524BD96C50002452B /* NetworkingCheckController.m in Sources */,
  2977. 27EF3EFE24BF015A002068A2 /* WaitExamBodyView.m in Sources */,
  2978. 274771C724BC0C0500181362 /* KSRequestManager.m in Sources */,
  2979. 2747722824BC0C0500181362 /* GRCreateManager.m in Sources */,
  2980. 2747720724BC0C0500181362 /* UITextView+ZWLimitCounter.m in Sources */,
  2981. 2747723A24BC0C0500181362 /* JXCategoryIndicatorComponentView.m in Sources */,
  2982. 27476F4824BBFB5900181362 /* AppDelegate.m in Sources */,
  2983. 2747725A24BC0C0500181362 /* NSString+phone.m in Sources */,
  2984. 2747725124BC0C0500181362 /* JXCategoryBaseView.m in Sources */,
  2985. 274771E424BC0C0500181362 /* NotifyMessageViewController.m in Sources */,
  2986. 2747724F24BC0C0500181362 /* JXCategoryCollectionView.m in Sources */,
  2987. 274771AA24BC0C0500181362 /* MSSBrowseZoomScrollView.m in Sources */,
  2988. 274771DE24BC0C0500181362 /* Whiteboard.m in Sources */,
  2989. 2747723B24BC0C0500181362 /* JXCategoryIndicatorBackgroundView.m in Sources */,
  2990. 274771FB24BC0C0500181362 /* NSMutableArray+KSSafe.m in Sources */,
  2991. 274771D724BC0C0500181362 /* RoleChangedMessage.m in Sources */,
  2992. 27A008F324BDB1E50002452B /* SysUser.m in Sources */,
  2993. 27EF3EEE24BEE35E002068A2 /* MessageListModel.m in Sources */,
  2994. 2747725824BC0C0500181362 /* SkipTextView.m in Sources */,
  2995. 2747725E24BC0C0500181362 /* KSInputView.m in Sources */,
  2996. 27EF3F2224C02B68002068A2 /* ClassTitleView.m in Sources */,
  2997. 2747719C24BC0C0500181362 /* TZLocationManager.m in Sources */,
  2998. 2747720524BC0C0500181362 /* CALayer+Color.m in Sources */,
  2999. 274771D124BC0C0500181362 /* ApplySpeechMessage.m in Sources */,
  3000. 274771FF24BC0C0500181362 /* NSObject+AssociatedObject.m in Sources */,
  3001. 27A008F424BDB1E50002452B /* UserInfo.m in Sources */,
  3002. 2747726124BC0C0500181362 /* LLPhotoBrowser.m in Sources */,
  3003. 2794D1BD24BD4CF800BAF6F3 /* FSBodyView.m in Sources */,
  3004. 27A008A624BD96C50002452B /* NetworkBodyView.m in Sources */,
  3005. 274771C224BC0C0500181362 /* KSBaseViewController.m in Sources */,
  3006. 2794D1B524BC662600BAF6F3 /* VeriCheckView.m in Sources */,
  3007. 27A008FC24BECDC40002452B /* HomeBodyView.m in Sources */,
  3008. 2747722D24BC0C0500181362 /* KSRecordStatusView.m in Sources */,
  3009. 27A008A824BD96C50002452B /* KSNetworkAlert.m in Sources */,
  3010. 2747719224BC0C0500181362 /* TZAssetModel.m in Sources */,
  3011. 274771DB24BC0C0500181362 /* ApplySpeechResultMessage.m in Sources */,
  3012. 2747723624BC0C0500181362 /* JXCategoryIndicatorLineView.m in Sources */,
  3013. 2747719424BC0C0500181362 /* UIView+Layout.m in Sources */,
  3014. 2747719D24BC0C0500181362 /* TZGifPhotoPreviewController.m in Sources */,
  3015. 2747724E24BC0C0500181362 /* JXCategoryFactory.m in Sources */,
  3016. 27EF3F2524C02B68002068A2 /* ClassVideoListCell.m in Sources */,
  3017. 2747722524BC0C0500181362 /* UIButton+EnlargeEdge.m in Sources */,
  3018. 27EF3F2724C02B68002068A2 /* ClassroomMainContainer.m in Sources */,
  3019. 2747722724BC0C0500181362 /* UIImage+Resize.m in Sources */,
  3020. 274771EE24BC0C0500181362 /* OnlineRoomManager.m in Sources */,
  3021. 2747721F24BC0C0500181362 /* UIColor+Hex.m in Sources */,
  3022. 2747723124BC0C0500181362 /* KSMediaManager.m in Sources */,
  3023. 2794D1C224BD60D500BAF6F3 /* UserCenterBodyView.m in Sources */,
  3024. 274771AD24BC0C0500181362 /* MSSBrowseActionSheetCell.m in Sources */,
  3025. 274771EF24BC0C0500181362 /* KSRCIMDataSource.m in Sources */,
  3026. 274771EB24BC0C0500181362 /* UserInfoManager.m in Sources */,
  3027. 2747723224BC0C0500181362 /* JXPagerListContainerView.m in Sources */,
  3028. 27A008C324BD99B10002452B /* SettingViewController.m in Sources */,
  3029. 2747725724BC0C0500181362 /* UITextView_Toolbar.m in Sources */,
  3030. 274771DA24BC0C0500181362 /* MemberChangeMessage.m in Sources */,
  3031. 2747721824BC0C0500181362 /* NSObject+ReadDocument.m in Sources */,
  3032. 27EF3F2624C02B68002068A2 /* MainToolView.m in Sources */,
  3033. 2747718F24BC0C0500181362 /* TZImageCropManager.m in Sources */,
  3034. 2729F7C724C6C87400E1F3C4 /* OpenFileViewController.m in Sources */,
  3035. 2747725924BC0C0500181362 /* GRScanManager.m in Sources */,
  3036. 2747724224BC0C0500181362 /* JXCategoryTitleImageView.m in Sources */,
  3037. 2747720424BC0C0500181362 /* UITextView+ZWPlaceHolder.m in Sources */,
  3038. 2747724324BC0C0500181362 /* JXCategoryTitleImageCell.m in Sources */,
  3039. 274771E824BC0C0500181362 /* VefiLoginViewController.m in Sources */,
  3040. 274771F024BC0C0500181362 /* RCConnectionManager.m in Sources */,
  3041. 27476F5924BBFB5C00181362 /* main.m in Sources */,
  3042. 274771B924BC0C0500181362 /* ALCalendarConfig.m in Sources */,
  3043. 2747726324BC0C0500181362 /* LLFileManager.m in Sources */,
  3044. 274771FE24BC0C0500181362 /* NSMutableString+KSSafe.m in Sources */,
  3045. 2729F7CD24C6F3F300E1F3C4 /* SongListModel.m in Sources */,
  3046. 2747723D24BC0C0500181362 /* JXCategoryIndicatorCell.m in Sources */,
  3047. 2747721A24BC0C0500181362 /* UIImage+Addtions.m in Sources */,
  3048. 274771EC24BC0C0500181362 /* LoginBodyView.m in Sources */,
  3049. 274771BA24BC0C0500181362 /* ALCalendarHeader.m in Sources */,
  3050. 274771FA24BC0C0500181362 /* NSArray+KSSafe.m in Sources */,
  3051. 2747724624BC0C0500181362 /* JXCategoryTitleCell.m in Sources */,
  3052. 274771FC24BC0C0500181362 /* NSObject+KSSwizzling.m in Sources */,
  3053. 274771C324BC0C0500181362 /* KSBaseWKWebViewController.m in Sources */,
  3054. 2747723724BC0C0500181362 /* JXCategoryIndicatorTriangleView.m in Sources */,
  3055. 274771F324BC0C0500181362 /* KSNetworking.m in Sources */,
  3056. 274771C424BC0C0500181362 /* CustomNavViewController.m in Sources */,
  3057. 2747722424BC0C0500181362 /* UIImage+UIImageScale.m in Sources */,
  3058. 2747718D24BC0C0500181362 /* WMPlayer.m in Sources */,
  3059. );
  3060. runOnlyForDeploymentPostprocessing = 0;
  3061. };
  3062. 27476F5A24BBFB5C00181362 /* Sources */ = {
  3063. isa = PBXSourcesBuildPhase;
  3064. buildActionMask = 2147483647;
  3065. files = (
  3066. 27476F6324BBFB5C00181362 /* MusicGradeExamTests.m in Sources */,
  3067. );
  3068. runOnlyForDeploymentPostprocessing = 0;
  3069. };
  3070. 27476F6524BBFB5C00181362 /* Sources */ = {
  3071. isa = PBXSourcesBuildPhase;
  3072. buildActionMask = 2147483647;
  3073. files = (
  3074. 27476F6E24BBFB5C00181362 /* MusicGradeExamUITests.m in Sources */,
  3075. );
  3076. runOnlyForDeploymentPostprocessing = 0;
  3077. };
  3078. /* End PBXSourcesBuildPhase section */
  3079. /* Begin PBXTargetDependency section */
  3080. 27476F6024BBFB5C00181362 /* PBXTargetDependency */ = {
  3081. isa = PBXTargetDependency;
  3082. target = 27476F4224BBFB5900181362 /* MusicGradeExam */;
  3083. targetProxy = 27476F5F24BBFB5C00181362 /* PBXContainerItemProxy */;
  3084. };
  3085. 27476F6B24BBFB5C00181362 /* PBXTargetDependency */ = {
  3086. isa = PBXTargetDependency;
  3087. target = 27476F4224BBFB5900181362 /* MusicGradeExam */;
  3088. targetProxy = 27476F6A24BBFB5C00181362 /* PBXContainerItemProxy */;
  3089. };
  3090. /* End PBXTargetDependency section */
  3091. /* Begin PBXVariantGroup section */
  3092. 27476F4F24BBFB5900181362 /* Main.storyboard */ = {
  3093. isa = PBXVariantGroup;
  3094. children = (
  3095. 27476F5024BBFB5900181362 /* Base */,
  3096. );
  3097. name = Main.storyboard;
  3098. sourceTree = "<group>";
  3099. };
  3100. 27476F5424BBFB5C00181362 /* LaunchScreen.storyboard */ = {
  3101. isa = PBXVariantGroup;
  3102. children = (
  3103. 27476F5524BBFB5C00181362 /* Base */,
  3104. );
  3105. name = LaunchScreen.storyboard;
  3106. sourceTree = "<group>";
  3107. };
  3108. 2747727224BC0C7C00181362 /* RongCloudKit.strings */ = {
  3109. isa = PBXVariantGroup;
  3110. children = (
  3111. 2747727324BC0C7C00181362 /* zh-Hans */,
  3112. 2747727424BC0C7C00181362 /* en */,
  3113. );
  3114. name = RongCloudKit.strings;
  3115. sourceTree = "<group>";
  3116. };
  3117. /* End PBXVariantGroup section */
  3118. /* Begin XCBuildConfiguration section */
  3119. 27476F7024BBFB5C00181362 /* Debug */ = {
  3120. isa = XCBuildConfiguration;
  3121. buildSettings = {
  3122. ALWAYS_SEARCH_USER_PATHS = NO;
  3123. CLANG_ANALYZER_NONNULL = YES;
  3124. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3125. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3126. CLANG_CXX_LIBRARY = "libc++";
  3127. CLANG_ENABLE_MODULES = YES;
  3128. CLANG_ENABLE_OBJC_ARC = YES;
  3129. CLANG_ENABLE_OBJC_WEAK = YES;
  3130. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3131. CLANG_WARN_BOOL_CONVERSION = YES;
  3132. CLANG_WARN_COMMA = YES;
  3133. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3134. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3135. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3136. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3137. CLANG_WARN_EMPTY_BODY = YES;
  3138. CLANG_WARN_ENUM_CONVERSION = YES;
  3139. CLANG_WARN_INFINITE_RECURSION = YES;
  3140. CLANG_WARN_INT_CONVERSION = YES;
  3141. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3142. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3143. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3144. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3145. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3146. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3147. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3148. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3149. CLANG_WARN_UNREACHABLE_CODE = YES;
  3150. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3151. COPY_PHASE_STRIP = NO;
  3152. DEBUG_INFORMATION_FORMAT = dwarf;
  3153. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3154. ENABLE_TESTABILITY = YES;
  3155. GCC_C_LANGUAGE_STANDARD = gnu11;
  3156. GCC_DYNAMIC_NO_PIC = NO;
  3157. GCC_NO_COMMON_BLOCKS = YES;
  3158. GCC_OPTIMIZATION_LEVEL = 0;
  3159. GCC_PREPROCESSOR_DEFINITIONS = (
  3160. "DEBUG=1",
  3161. "$(inherited)",
  3162. );
  3163. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3164. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3165. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3166. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3167. GCC_WARN_UNUSED_FUNCTION = YES;
  3168. GCC_WARN_UNUSED_VARIABLE = YES;
  3169. IPHONEOS_DEPLOYMENT_TARGET = 13.5;
  3170. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3171. MTL_FAST_MATH = YES;
  3172. ONLY_ACTIVE_ARCH = YES;
  3173. SDKROOT = iphoneos;
  3174. };
  3175. name = Debug;
  3176. };
  3177. 27476F7124BBFB5C00181362 /* Release */ = {
  3178. isa = XCBuildConfiguration;
  3179. buildSettings = {
  3180. ALWAYS_SEARCH_USER_PATHS = NO;
  3181. CLANG_ANALYZER_NONNULL = YES;
  3182. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3183. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3184. CLANG_CXX_LIBRARY = "libc++";
  3185. CLANG_ENABLE_MODULES = YES;
  3186. CLANG_ENABLE_OBJC_ARC = YES;
  3187. CLANG_ENABLE_OBJC_WEAK = YES;
  3188. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3189. CLANG_WARN_BOOL_CONVERSION = YES;
  3190. CLANG_WARN_COMMA = YES;
  3191. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3192. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3193. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3194. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3195. CLANG_WARN_EMPTY_BODY = YES;
  3196. CLANG_WARN_ENUM_CONVERSION = YES;
  3197. CLANG_WARN_INFINITE_RECURSION = YES;
  3198. CLANG_WARN_INT_CONVERSION = YES;
  3199. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3200. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3201. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3202. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3203. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3204. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3205. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3206. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3207. CLANG_WARN_UNREACHABLE_CODE = YES;
  3208. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3209. COPY_PHASE_STRIP = NO;
  3210. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3211. ENABLE_NS_ASSERTIONS = NO;
  3212. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3213. GCC_C_LANGUAGE_STANDARD = gnu11;
  3214. GCC_NO_COMMON_BLOCKS = YES;
  3215. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3216. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3217. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3218. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3219. GCC_WARN_UNUSED_FUNCTION = YES;
  3220. GCC_WARN_UNUSED_VARIABLE = YES;
  3221. IPHONEOS_DEPLOYMENT_TARGET = 13.5;
  3222. MTL_ENABLE_DEBUG_INFO = NO;
  3223. MTL_FAST_MATH = YES;
  3224. SDKROOT = iphoneos;
  3225. VALIDATE_PRODUCT = YES;
  3226. };
  3227. name = Release;
  3228. };
  3229. 27476F7324BBFB5C00181362 /* Debug */ = {
  3230. isa = XCBuildConfiguration;
  3231. baseConfigurationReference = 2F7D3758362ED28D51286A60 /* Pods-MusicGradeExam.debug.xcconfig */;
  3232. buildSettings = {
  3233. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3234. CODE_SIGN_STYLE = Automatic;
  3235. CURRENT_PROJECT_VERSION = 1.0.0;
  3236. DEVELOPMENT_TEAM = 2K89M44X82;
  3237. ENABLE_BITCODE = NO;
  3238. FRAMEWORK_SEARCH_PATHS = (
  3239. "$(inherited)",
  3240. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/Sight",
  3241. "$(PROJECT_DIR)/MusicGradeExam/RongCloud",
  3242. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
  3243. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMKit",
  3244. );
  3245. GCC_PREFIX_HEADER = "$(SRCROOT)/MusicGradeExam/Define/PrefixHeader.pch";
  3246. INFOPLIST_FILE = MusicGradeExam/Info.plist;
  3247. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3248. LD_RUNPATH_SEARCH_PATHS = (
  3249. "$(inherited)",
  3250. "@executable_path/Frameworks",
  3251. );
  3252. LIBRARY_SEARCH_PATHS = (
  3253. "$(inherited)",
  3254. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
  3255. );
  3256. MARKETING_VERSION = 1.0.0;
  3257. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExam;
  3258. PRODUCT_NAME = "酷乐秀";
  3259. TARGETED_DEVICE_FAMILY = "1,2";
  3260. };
  3261. name = Debug;
  3262. };
  3263. 27476F7424BBFB5C00181362 /* Release */ = {
  3264. isa = XCBuildConfiguration;
  3265. baseConfigurationReference = 1AA4DFCEF527585287BEBFE0 /* Pods-MusicGradeExam.release.xcconfig */;
  3266. buildSettings = {
  3267. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3268. CODE_SIGN_STYLE = Automatic;
  3269. CURRENT_PROJECT_VERSION = 1.0.0;
  3270. DEVELOPMENT_TEAM = 2K89M44X82;
  3271. ENABLE_BITCODE = NO;
  3272. FRAMEWORK_SEARCH_PATHS = (
  3273. "$(inherited)",
  3274. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/Sight",
  3275. "$(PROJECT_DIR)/MusicGradeExam/RongCloud",
  3276. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
  3277. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMKit",
  3278. );
  3279. GCC_PREFIX_HEADER = "$(SRCROOT)/MusicGradeExam/Define/PrefixHeader.pch";
  3280. INFOPLIST_FILE = MusicGradeExam/Info.plist;
  3281. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3282. LD_RUNPATH_SEARCH_PATHS = (
  3283. "$(inherited)",
  3284. "@executable_path/Frameworks",
  3285. );
  3286. LIBRARY_SEARCH_PATHS = (
  3287. "$(inherited)",
  3288. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
  3289. );
  3290. MARKETING_VERSION = 1.0.0;
  3291. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExam;
  3292. PRODUCT_NAME = "酷乐秀";
  3293. TARGETED_DEVICE_FAMILY = "1,2";
  3294. };
  3295. name = Release;
  3296. };
  3297. 27476F7624BBFB5C00181362 /* Debug */ = {
  3298. isa = XCBuildConfiguration;
  3299. baseConfigurationReference = 5402063E714DA9D9107F8070 /* Pods-MusicGradeExamTests.debug.xcconfig */;
  3300. buildSettings = {
  3301. BUNDLE_LOADER = "$(TEST_HOST)";
  3302. CODE_SIGN_STYLE = Automatic;
  3303. DEVELOPMENT_TEAM = 2K89M44X82;
  3304. INFOPLIST_FILE = MusicGradeExamTests/Info.plist;
  3305. IPHONEOS_DEPLOYMENT_TARGET = 13.5;
  3306. LD_RUNPATH_SEARCH_PATHS = (
  3307. "$(inherited)",
  3308. "@executable_path/Frameworks",
  3309. "@loader_path/Frameworks",
  3310. );
  3311. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamTests;
  3312. PRODUCT_NAME = "$(TARGET_NAME)";
  3313. TARGETED_DEVICE_FAMILY = "1,2";
  3314. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicGradeExam.app/MusicGradeExam";
  3315. };
  3316. name = Debug;
  3317. };
  3318. 27476F7724BBFB5C00181362 /* Release */ = {
  3319. isa = XCBuildConfiguration;
  3320. baseConfigurationReference = E19677AAD7D01861E10F49D5 /* Pods-MusicGradeExamTests.release.xcconfig */;
  3321. buildSettings = {
  3322. BUNDLE_LOADER = "$(TEST_HOST)";
  3323. CODE_SIGN_STYLE = Automatic;
  3324. DEVELOPMENT_TEAM = 2K89M44X82;
  3325. INFOPLIST_FILE = MusicGradeExamTests/Info.plist;
  3326. IPHONEOS_DEPLOYMENT_TARGET = 13.5;
  3327. LD_RUNPATH_SEARCH_PATHS = (
  3328. "$(inherited)",
  3329. "@executable_path/Frameworks",
  3330. "@loader_path/Frameworks",
  3331. );
  3332. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamTests;
  3333. PRODUCT_NAME = "$(TARGET_NAME)";
  3334. TARGETED_DEVICE_FAMILY = "1,2";
  3335. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicGradeExam.app/MusicGradeExam";
  3336. };
  3337. name = Release;
  3338. };
  3339. 27476F7924BBFB5C00181362 /* Debug */ = {
  3340. isa = XCBuildConfiguration;
  3341. baseConfigurationReference = E1DA29861866096EC2DBC683 /* Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig */;
  3342. buildSettings = {
  3343. CODE_SIGN_STYLE = Automatic;
  3344. DEVELOPMENT_TEAM = 2K89M44X82;
  3345. INFOPLIST_FILE = MusicGradeExamUITests/Info.plist;
  3346. LD_RUNPATH_SEARCH_PATHS = (
  3347. "$(inherited)",
  3348. "@executable_path/Frameworks",
  3349. "@loader_path/Frameworks",
  3350. );
  3351. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamUITests;
  3352. PRODUCT_NAME = "$(TARGET_NAME)";
  3353. TARGETED_DEVICE_FAMILY = "1,2";
  3354. TEST_TARGET_NAME = MusicGradeExam;
  3355. };
  3356. name = Debug;
  3357. };
  3358. 27476F7A24BBFB5C00181362 /* Release */ = {
  3359. isa = XCBuildConfiguration;
  3360. baseConfigurationReference = 2BB32BBE582672362BB6E017 /* Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig */;
  3361. buildSettings = {
  3362. CODE_SIGN_STYLE = Automatic;
  3363. DEVELOPMENT_TEAM = 2K89M44X82;
  3364. INFOPLIST_FILE = MusicGradeExamUITests/Info.plist;
  3365. LD_RUNPATH_SEARCH_PATHS = (
  3366. "$(inherited)",
  3367. "@executable_path/Frameworks",
  3368. "@loader_path/Frameworks",
  3369. );
  3370. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamUITests;
  3371. PRODUCT_NAME = "$(TARGET_NAME)";
  3372. TARGETED_DEVICE_FAMILY = "1,2";
  3373. TEST_TARGET_NAME = MusicGradeExam;
  3374. };
  3375. name = Release;
  3376. };
  3377. /* End XCBuildConfiguration section */
  3378. /* Begin XCConfigurationList section */
  3379. 27476F3E24BBFB5900181362 /* Build configuration list for PBXProject "MusicGradeExam" */ = {
  3380. isa = XCConfigurationList;
  3381. buildConfigurations = (
  3382. 27476F7024BBFB5C00181362 /* Debug */,
  3383. 27476F7124BBFB5C00181362 /* Release */,
  3384. );
  3385. defaultConfigurationIsVisible = 0;
  3386. defaultConfigurationName = Release;
  3387. };
  3388. 27476F7224BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExam" */ = {
  3389. isa = XCConfigurationList;
  3390. buildConfigurations = (
  3391. 27476F7324BBFB5C00181362 /* Debug */,
  3392. 27476F7424BBFB5C00181362 /* Release */,
  3393. );
  3394. defaultConfigurationIsVisible = 0;
  3395. defaultConfigurationName = Release;
  3396. };
  3397. 27476F7524BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExamTests" */ = {
  3398. isa = XCConfigurationList;
  3399. buildConfigurations = (
  3400. 27476F7624BBFB5C00181362 /* Debug */,
  3401. 27476F7724BBFB5C00181362 /* Release */,
  3402. );
  3403. defaultConfigurationIsVisible = 0;
  3404. defaultConfigurationName = Release;
  3405. };
  3406. 27476F7824BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExamUITests" */ = {
  3407. isa = XCConfigurationList;
  3408. buildConfigurations = (
  3409. 27476F7924BBFB5C00181362 /* Debug */,
  3410. 27476F7A24BBFB5C00181362 /* Release */,
  3411. );
  3412. defaultConfigurationIsVisible = 0;
  3413. defaultConfigurationName = Release;
  3414. };
  3415. /* End XCConfigurationList section */
  3416. };
  3417. rootObject = 27476F3B24BBFB5900181362 /* Project object */;
  3418. }