project.pbxproj 315 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 48;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 18189A48226022DB00327157 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A46226022DB00327157 /* OpenAL.framework */; };
  10. 18189A49226022DB00327157 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A47226022DB00327157 /* OpenGLES.framework */; };
  11. 18189A4B226022ED00327157 /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A4A226022ED00327157 /* libresolv.tbd */; };
  12. 18189A4D226022F600327157 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A4C226022F600327157 /* libiconv.tbd */; };
  13. 18189A4F226022FE00327157 /* libbz2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A4E226022FD00327157 /* libbz2.tbd */; };
  14. 18189A522260232400327157 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A502260232400327157 /* AVFoundation.framework */; };
  15. 18189A532260232400327157 /* AVKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A512260232400327157 /* AVKit.framework */; };
  16. 18189A552260232F00327157 /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A542260232F00327157 /* AssetsLibrary.framework */; };
  17. 18189A582260233B00327157 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A562260233B00327157 /* UserNotifications.framework */; };
  18. 18189A592260233B00327157 /* UserNotificationsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A572260233B00327157 /* UserNotificationsUI.framework */; };
  19. 18189A5B2260236200327157 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A5A2260236200327157 /* AudioToolbox.framework */; };
  20. 18189A5D2260238600327157 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A5C2260238600327157 /* CoreMedia.framework */; };
  21. 18189A5F2260239A00327157 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A5E2260239900327157 /* MediaPlayer.framework */; };
  22. 18189A61226023B300327157 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A60226023B300327157 /* VideoToolbox.framework */; };
  23. 18189A632260343900327157 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A622260343900327157 /* libsqlite3.0.tbd */; };
  24. 1818A11B2260422300327157 /* SystemResetConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E532260422100327157 /* SystemResetConfig.mm */; };
  25. 1818A11C2260422300327157 /* TimeSynDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E552260422100327157 /* TimeSynDataSource.m */; };
  26. 1818A11D2260422300327157 /* TimeSynConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E582260422100327157 /* TimeSynConfig.mm */; };
  27. 1818A11E2260422300327157 /* AlarmMessageInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E5A2260422100327157 /* AlarmMessageInfo.m */; };
  28. 1818A11F2260422300327157 /* AlarmMessageConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E5C2260422100327157 /* AlarmMessageConfig.mm */; };
  29. 1818A1202260422300327157 /* HumanDetectionConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E602260422100327157 /* HumanDetectionConfig.mm */; };
  30. 1818A1212260422300327157 /* CommonConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E622260422100327157 /* CommonConfig.mm */; };
  31. 1818A1222260422300327157 /* CloudVideoConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E672260422100327157 /* CloudVideoConfig.mm */; };
  32. 1818A1232260422300327157 /* CLouldVideoResource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E692260422100327157 /* CLouldVideoResource.m */; };
  33. 1818A1242260422300327157 /* XMAlarmMsgResource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E6B2260422100327157 /* XMAlarmMsgResource.m */; };
  34. 1818A1252260422300327157 /* CloudPhotoConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E6C2260422100327157 /* CloudPhotoConfig.mm */; };
  35. 1818A1262260422300327157 /* CloudAbilityDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E6F2260422200327157 /* CloudAbilityDataSource.m */; };
  36. 1818A1272260422300327157 /* CloudAbilityConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E722260422200327157 /* CloudAbilityConfig.mm */; };
  37. 1818A1282260422300327157 /* EncodeConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E762260422200327157 /* EncodeConfig.mm */; };
  38. 1818A1292260422300327157 /* EncodeDataSourse.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E772260422200327157 /* EncodeDataSourse.m */; };
  39. 1818A12A2260422300327157 /* VodeoRotainDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E792260422200327157 /* VodeoRotainDataSource.m */; };
  40. 1818A12B2260422300327157 /* VideoRotainConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E7A2260422200327157 /* VideoRotainConfig.mm */; };
  41. 1818A12C2260422300327157 /* DataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E7F2260422200327157 /* DataSource.m */; };
  42. 1818A12D2260422300327157 /* Storage.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E802260422200327157 /* Storage.m */; };
  43. 1818A12E2260422300327157 /* StorageConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E812260422200327157 /* StorageConfig.mm */; };
  44. 1818A12F2260422300327157 /* SystemInfoConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E852260422200327157 /* SystemInfoConfig.mm */; };
  45. 1818A1302260422300327157 /* RecordConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E892260422200327157 /* RecordConfig.mm */; };
  46. 1818A1312260422300327157 /* RecordDataSourse.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E8B2260422200327157 /* RecordDataSourse.m */; };
  47. 1818A1322260422300327157 /* AnalyzeDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E8E2260422200327157 /* AnalyzeDataSource.m */; };
  48. 1818A1332260422300327157 /* AnalyzeConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E902260422200327157 /* AnalyzeConfig.mm */; };
  49. 1818A1342260422300327157 /* AlarmPIRConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E932260422200327157 /* AlarmPIRConfig.mm */; };
  50. 1818A1352260422300327157 /* AlarmDetectConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E962260422200327157 /* AlarmDetectConfig.mm */; };
  51. 1818A1362260422300327157 /* PasswordConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E992260422200327157 /* PasswordConfig.mm */; };
  52. 1818A1372260422300327157 /* SystemFunctionConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E9B2260422200327157 /* SystemFunctionConfig.mm */; };
  53. 1818A1382260422300327157 /* UpgradeDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA02260422200327157 /* UpgradeDataSource.m */; };
  54. 1818A1392260422300327157 /* UpgradeConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA12260422200327157 /* UpgradeConfig.mm */; };
  55. 1818A13A2260422300327157 /* PictureInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA42260422200327157 /* PictureInfo.m */; };
  56. 1818A13B2260422300327157 /* PictureFileDownloadConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA62260422200327157 /* PictureFileDownloadConfig.mm */; };
  57. 1818A13C2260422300327157 /* PictureFileConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA82260422200327157 /* PictureFileConfig.mm */; };
  58. 1818A13D2260422300327157 /* TimeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EAD2260422200327157 /* TimeInfo.m */; };
  59. 1818A13E2260422300327157 /* VideoFileConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EAF2260422200327157 /* VideoFileConfig.mm */; };
  60. 1818A13F2260422300327157 /* VideoFileDownloadConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EB02260422200327157 /* VideoFileDownloadConfig.mm */; };
  61. 1818A1402260422300327157 /* RecordInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EB12260422200327157 /* RecordInfo.m */; };
  62. 1818A1412260422300327157 /* BuzzerConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EB42260422200327157 /* BuzzerConfig.mm */; };
  63. 1818A1422260422300327157 /* ShutDownTimeConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EB72260422200327157 /* ShutDownTimeConfig.mm */; };
  64. 1818A1432260422300327157 /* WaterMarkConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EBA2260422200327157 /* WaterMarkConfig.mm */; };
  65. 1818A1442260422300327157 /* XYShowAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EBC2260422200327157 /* XYShowAlertView.m */; };
  66. 1818A1452260422300327157 /* AlarmManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EC02260422200327157 /* AlarmManager.mm */; };
  67. 1818A1462260422300327157 /* UserAccountModel.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EC22260422200327157 /* UserAccountModel.mm */; };
  68. 1818A1472260422300327157 /* DeviceManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EC62260422200327157 /* DeviceManager.mm */; };
  69. 1818A1482260422300327157 /* MessageUI.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189ECA2260422200327157 /* MessageUI.mm */; };
  70. 1818A1492260422300327157 /* LanguageManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189ECC2260422200327157 /* LanguageManager.mm */; };
  71. 1818A14A2260422300327157 /* UIView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189ECF2260422200327157 /* UIView+Layout.m */; };
  72. 1818A14B2260422300327157 /* NSDate+TimeCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189ED62260422200327157 /* NSDate+TimeCategory.m */; };
  73. 1818A14C2260422300327157 /* NSString+Category.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189ED82260422200327157 /* NSString+Category.m */; };
  74. 1818A14D2260422300327157 /* NSString+Path.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EDB2260422200327157 /* NSString+Path.m */; };
  75. 1818A14E2260422300327157 /* NSString+Extention.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EDC2260422200327157 /* NSString+Extention.m */; };
  76. 1818A14F2260422300327157 /* MyStringManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EDD2260422200327157 /* MyStringManager.m */; };
  77. 1818A1502260422300327157 /* GTMNSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EDE2260422200327157 /* GTMNSString+HTML.m */; };
  78. 1818A1512260422300327157 /* FileControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EE12260422200327157 /* FileControl.mm */; };
  79. 1818A1522260422300327157 /* NSUserDefaultData.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EE42260422200327157 /* NSUserDefaultData.m */; };
  80. 1818A1532260422300327157 /* LoginShowControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EE62260422200327157 /* LoginShowControl.m */; };
  81. 1818A1542260422300327157 /* CommonControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EE92260422200327157 /* CommonControl.m */; };
  82. 1818A1552260422300327157 /* Recode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EEF2260422200327157 /* Recode.mm */; };
  83. 1818A1562260422300327157 /* TalkBackControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EF22260422200327157 /* TalkBackControl.mm */; };
  84. 1818A1572260422300327157 /* MediaPlaybackControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EF42260422200327157 /* MediaPlaybackControl.mm */; };
  85. 1818A1582260422300327157 /* MediaplayerControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EF52260422200327157 /* MediaplayerControl.mm */; };
  86. 1818A1592260422300327157 /* PlayToolImage.plist in Resources */ = {isa = PBXBuildFile; fileRef = 18189EF82260422200327157 /* PlayToolImage.plist */; };
  87. 1818A15A2260422300327157 /* error.plist in Resources */ = {isa = PBXBuildFile; fileRef = 18189EF92260422200327157 /* error.plist */; };
  88. 1818A15B2260422300327157 /* icon_hide_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189EFB2260422200327157 /* icon_hide_sel.png */; };
  89. 1818A15C2260422300327157 /* press_talk_selected_en.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189EFD2260422200327157 /* press_talk_selected_en.png */; };
  90. 1818A15D2260422300327157 /* btn_SD.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189EFE2260422200327157 /* btn_SD.png */; };
  91. 1818A15E2260422300327157 /* icon_close.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189EFF2260422200327157 /* icon_close.png */; };
  92. 1818A15F2260422300327157 /* btn_control_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F002260422200327157 /* btn_control_normal.png */; };
  93. 1818A1602260422300327157 /* btn_HD_F.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F012260422200327157 /* btn_HD_F.png */; };
  94. 1818A1612260422300327157 /* record_temp_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F022260422200327157 /* record_temp_normal.png */; };
  95. 1818A1622260422300327157 /* btn_minus_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F032260422200327157 /* btn_minus_normal.png */; };
  96. 1818A1632260422300327157 /* btn_HD_E.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F042260422200327157 /* btn_HD_E.png */; };
  97. 1818A1642260422300327157 /* talk_unselect.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F052260422200327157 /* talk_unselect.png */; };
  98. 1818A1652260422300327157 /* btn_record.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F062260422200327157 /* btn_record.png */; };
  99. 1818A1662260422300327157 /* btn_voice_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F072260422200327157 /* btn_voice_normal.png */; };
  100. 1818A1672260422300327157 /* press_talk_selected_sp.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F082260422200327157 /* press_talk_selected_sp.png */; };
  101. 1818A1682260422300327157 /* btn_control_left.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F092260422200327157 /* btn_control_left.png */; };
  102. 1818A1692260422300327157 /* press_talk_en.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0A2260422200327157 /* press_talk_en.png */; };
  103. 1818A16A2260422300327157 /* btn_stop.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0B2260422200327157 /* btn_stop.png */; };
  104. 1818A16B2260422300327157 /* ic_alarm.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0C2260422200327157 /* ic_alarm.png */; };
  105. 1818A16C2260422300327157 /* btn_stop_select.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0D2260422200327157 /* btn_stop_select.png */; };
  106. 1818A16D2260422300327157 /* press_talk_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0E2260422200327157 /* press_talk_selected.png */; };
  107. 1818A16E2260422300327157 /* ptz_unselect.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0F2260422200327157 /* ptz_unselect.png */; };
  108. 1818A16F2260422300327157 /* btn_voice_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F102260422200327157 /* btn_voice_selected.png */; };
  109. 1818A1702260422300327157 /* btn_control_up.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F112260422200327157 /* btn_control_up.png */; };
  110. 1818A1712260422300327157 /* press_talk_sp.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F122260422200327157 /* press_talk_sp.png */; };
  111. 1818A1722260422300327157 /* btn_tool_recording.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F132260422200327157 /* btn_tool_recording.png */; };
  112. 1818A1732260422300327157 /* btn_SD_F.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F142260422200327157 /* btn_SD_F.png */; };
  113. 1818A1742260422300327157 /* talk_select.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F152260422200327157 /* talk_select.png */; };
  114. 1818A1752260422300327157 /* btn_plus_highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F162260422200327157 /* btn_plus_highlighted.png */; };
  115. 1818A1762260422300327157 /* btn_SD_E.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F172260422200327157 /* btn_SD_E.png */; };
  116. 1818A1772260422300327157 /* btn_pause.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F182260422200327157 /* btn_pause.png */; };
  117. 1818A1782260422300327157 /* btn_pause_select.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F192260422200327157 /* btn_pause_select.png */; };
  118. 1818A1792260422300327157 /* btn_control_down.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1A2260422200327157 /* btn_control_down.png */; };
  119. 1818A17A2260422300327157 /* Speed_Select.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1B2260422200327157 /* Speed_Select.png */; };
  120. 1818A17B2260422300327157 /* VR_Wall_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1D2260422200327157 /* VR_Wall_nor.png */; };
  121. 1818A17C2260422300327157 /* VR-cylinder_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1E2260422200327157 /* VR-cylinder_sel.png */; };
  122. 1818A17D2260422300327157 /* VR_180_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1F2260422200327157 /* VR_180_sel.png */; };
  123. 1818A17E2260422300327157 /* VR-Ceiling_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F202260422200327157 /* VR-Ceiling_nor.png */; };
  124. 1818A17F2260422300327157 /* VR-close_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F212260422200327157 /* VR-close_nor.png */; };
  125. 1818A1802260422300327157 /* VR-rectangle_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F222260422200327157 /* VR-rectangle_sel.png */; };
  126. 1818A1812260422300327157 /* VR-tow_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F232260422200327157 /* VR-tow_sel.png */; };
  127. 1818A1822260422300327157 /* VR-ball bowl_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F242260422200327157 /* VR-ball bowl_nor.png */; };
  128. 1818A1832260422300327157 /* VR_ball hat_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F252260422200327157 /* VR_ball hat_nor.png */; };
  129. 1818A1842260422300327157 /* VR_Ball_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F262260422200327157 /* VR_Ball_sel.png */; };
  130. 1818A1852260422300327157 /* VR-four_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F272260422200327157 /* VR-four_nor.png */; };
  131. 1818A1862260422300327157 /* 180_3R_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F282260422200327157 /* 180_3R_sel.png */; };
  132. 1818A1872260422300327157 /* VR-cylinder_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F292260422200327157 /* VR-cylinder_nor.png */; };
  133. 1818A1882260422300327157 /* VR_180_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2A2260422200327157 /* VR_180_nor.png */; };
  134. 1818A1892260422300327157 /* VR-Ceiling_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2B2260422200327157 /* VR-Ceiling_sel.png */; };
  135. 1818A18A2260422300327157 /* VR-rectangle_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2C2260422200327157 /* VR-rectangle_nor.png */; };
  136. 1818A18B2260422300327157 /* VR_Wall_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2D2260422200327157 /* VR_Wall_sel.png */; };
  137. 1818A18C2260422300327157 /* VR_Ball_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2E2260422200327157 /* VR_Ball_nor.png */; };
  138. 1818A18D2260422300327157 /* VR-four_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2F2260422200327157 /* VR-four_sel.png */; };
  139. 1818A18E2260422300327157 /* 180_3R_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F302260422200327157 /* 180_3R_nor.png */; };
  140. 1818A18F2260422300327157 /* VR-ball bowl_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F312260422200327157 /* VR-ball bowl_sel.png */; };
  141. 1818A1902260422300327157 /* VR-tow_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F322260422200327157 /* VR-tow_nor.png */; };
  142. 1818A1912260422300327157 /* 360VR-ins_default.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F332260422200327157 /* 360VR-ins_default.png */; };
  143. 1818A1922260422300327157 /* VR_ball hat_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F342260422200327157 /* VR_ball hat_sel.png */; };
  144. 1818A1932260422300327157 /* press_talk.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F352260422200327157 /* press_talk.png */; };
  145. 1818A1942260422300327157 /* btn_minus_highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F362260422200327157 /* btn_minus_highlighted.png */; };
  146. 1818A1952260422300327157 /* btn_recording.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F372260422200327157 /* btn_recording.png */; };
  147. 1818A1962260422300327157 /* btn_plus_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F382260422200327157 /* btn_plus_normal.png */; };
  148. 1818A1972260422300327157 /* btn_HD.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F392260422200327157 /* btn_HD.png */; };
  149. 1818A1982260422300327157 /* btn_control_right.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3A2260422200327157 /* btn_control_right.png */; };
  150. 1818A1992260422300327157 /* btn_camera_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3B2260422200327157 /* btn_camera_normal.png */; };
  151. 1818A19A2260422300327157 /* QRCode.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3C2260422200327157 /* QRCode.png */; };
  152. 1818A19B2260422300327157 /* radar_search_sign.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3D2260422200327157 /* radar_search_sign.png */; };
  153. 1818A19C2260422300327157 /* radar_search_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3E2260422200327157 /* radar_search_bg.png */; };
  154. 1818A19D2260422300327157 /* sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3F2260422200327157 /* sel.png */; };
  155. 1818A19E2260422300327157 /* icon_funsdk.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F402260422200327157 /* icon_funsdk.png */; };
  156. 1818A19F2260422300327157 /* icon_hide_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F412260422200327157 /* icon_hide_nor.png */; };
  157. 1818A1A02260422300327157 /* ic_wake_green.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F432260422200327157 /* ic_wake_green.png */; };
  158. 1818A1A12260422300327157 /* offline.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F452260422200327157 /* offline.png */; };
  159. 1818A1A22260422300327157 /* sleepnotwakeup.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F472260422200327157 /* sleepnotwakeup.png */; };
  160. 1818A1A32260422300327157 /* Prepare_sleep.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F492260422200327157 /* Prepare_sleep.png */; };
  161. 1818A1A42260422300327157 /* online.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F4B2260422200327157 /* online.png */; };
  162. 1818A1A52260422300327157 /* ic_sleep.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F4D2260422200327157 /* ic_sleep.png */; };
  163. 1818A1A62260422300327157 /* sleepnotwakeup_zh.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F552260422200327157 /* sleepnotwakeup_zh.png */; };
  164. 1818A1A72260422300327157 /* nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F622260422200327157 /* nor.png */; };
  165. 1818A1A82260422300327157 /* xmjp_camera.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F642260422200327157 /* xmjp_camera.png */; };
  166. 1818A1A92260422300327157 /* xmjp_seye.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F652260422200327157 /* xmjp_seye.png */; };
  167. 1818A1AA2260422300327157 /* xmjp_mov.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F662260422200327157 /* xmjp_mov.png */; };
  168. 1818A1AB2260422300327157 /* xmjp_car.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F672260422200327157 /* xmjp_car.png */; };
  169. 1818A1AC2260422300327157 /* xmjp_socket.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F682260422200327157 /* xmjp_socket.png */; };
  170. 1818A1AD2260422300327157 /* xmjp_bulb.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F692260422200327157 /* xmjp_bulb.png */; };
  171. 1818A1AE2260422300327157 /* xmjp_fbulb.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6A2260422200327157 /* xmjp_fbulb.png */; };
  172. 1818A1AF2260422300327157 /* xmjp_rotot.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6B2260422200327157 /* xmjp_rotot.png */; };
  173. 1818A1B02260422300327157 /* xmjp_feye.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6C2260422200327157 /* xmjp_feye.png */; };
  174. 1818A1B12260422300327157 /* xmjp_cloudbox_klok.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6D2260422200327157 /* xmjp_cloudbox_klok.png */; };
  175. 1818A1B22260422300327157 /* xmjp_beye.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6E2260422200327157 /* xmjp_beye.png */; };
  176. 1818A1B32260422300327157 /* xmjp_cloudbox.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6F2260422200327157 /* xmjp_cloudbox.png */; };
  177. 1818A1B42260422300327157 /* xmjp_bob.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F702260422200327157 /* xmjp_bob.png */; };
  178. 1818A1B52260422300327157 /* xmjp_bulbsocket.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F712260422200327157 /* xmjp_bulbsocket.png */; };
  179. 1818A1B62260422300327157 /* Local_Settings.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F722260422200327157 /* Local_Settings.png */; };
  180. 1818A1B72260422300327157 /* phone2.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F732260422200327157 /* phone2.png */; };
  181. 1818A1B82260422300327157 /* new_back.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F742260422200327157 /* new_back.png */; };
  182. 1818A1B92260422300327157 /* libstdc++.6.0.9.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F762260422200327157 /* libstdc++.6.0.9.tbd */; };
  183. 1818A1BA2260422300327157 /* libfisheye.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F782260422200327157 /* libfisheye.a */; };
  184. 1818A1BB2260422300327157 /* libFSCalendar.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F792260422200327157 /* libFSCalendar.a */; };
  185. 1818A1BC2260422300327157 /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189F7B2260422200327157 /* SVProgressHUD.m */; };
  186. 1818A1BD2260422300327157 /* SVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 18189F7C2260422200327157 /* SVProgressHUD.bundle */; };
  187. 1818A1BE2260422300327157 /* XMNetInterface.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F7E2260422200327157 /* XMNetInterface.framework */; };
  188. 1818A1BF2260422300327157 /* FunSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F7F2260422200327157 /* FunSDK.framework */; };
  189. 1818A1C02260422300327157 /* en.txt in Resources */ = {isa = PBXBuildFile; fileRef = 18189F812260422200327157 /* en.txt */; };
  190. 1818A1C12260422300327157 /* zh_CN.txt in Resources */ = {isa = PBXBuildFile; fileRef = 18189F822260422200327157 /* zh_CN.txt */; };
  191. 1818A1C22260422300327157 /* BaseViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189F852260422200327157 /* BaseViewController.mm */; };
  192. 1818A1C32260422300327157 /* ConfigControllerBase.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189F872260422200327157 /* ConfigControllerBase.mm */; };
  193. 1818A1C42260422300327157 /* FunMsgListener.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189F8A2260422200327157 /* FunMsgListener.mm */; };
  194. 1818A1C52260422300327157 /* SDKInitializeModel.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189F8C2260422200327157 /* SDKInitializeModel.mm */; };
  195. 1818A1C62260422300327157 /* TimeQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FD92260422200327157 /* TimeQuery.m */; };
  196. 1818A1C72260422300327157 /* DevicelistArchiveModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FF62260422200327157 /* DevicelistArchiveModel.m */; };
  197. 1818A1C82260422300327157 /* ObSystemFunction.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FFA2260422200327157 /* ObSystemFunction.m */; };
  198. 1818A1C92260422300327157 /* ObSysteminfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FFB2260422200327157 /* ObSysteminfo.m */; };
  199. 1818A1CA2260422300327157 /* DeviceControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FFD2260422200327157 /* DeviceControl.m */; };
  200. 1818A1CB2260422300327157 /* DeviceObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0002260422200327157 /* DeviceObject.m */; };
  201. 1818A1CC2260422300327157 /* ObjectCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0012260422200327157 /* ObjectCoder.m */; };
  202. 1818A1CD2260422300327157 /* ChannelObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0052260422200327157 /* ChannelObject.m */; };
  203. 1818A1CE2260422300327157 /* UpgradeDeviceViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A00C2260422200327157 /* UpgradeDeviceViewController.mm */; };
  204. 1818A1CF2260422300327157 /* ItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A00D2260422200327157 /* ItemViewController.m */; };
  205. 1818A1D02260422300327157 /* WaterMarkViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A00F2260422200327157 /* WaterMarkViewController.mm */; };
  206. 1818A1D12260422300327157 /* ShutDownTimeViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0122260422200327157 /* ShutDownTimeViewController.mm */; };
  207. 1818A1D22260422300327157 /* AlarmMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0172260422200327157 /* AlarmMessageCell.m */; };
  208. 1818A1D32260422300327157 /* AlarmMessageViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0182260422200327157 /* AlarmMessageViewController.mm */; };
  209. 1818A1D42260422300327157 /* AlarmMessagePicViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0192260422200327157 /* AlarmMessagePicViewController.m */; };
  210. 1818A1D52260422300327157 /* EncodeItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A01D2260422200327157 /* EncodeItemViewController.m */; };
  211. 1818A1D62260422300327157 /* EncodeViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A01E2260422200327157 /* EncodeViewController.mm */; };
  212. 1818A1D72260422300327157 /* EncodeConfigTableviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0202260422200327157 /* EncodeConfigTableviewCell.m */; };
  213. 1818A1D82260422300327157 /* HumanDetectionViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0252260422200327157 /* HumanDetectionViewController.mm */; };
  214. 1818A1D92260422300327157 /* PasswordView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0282260422200327157 /* PasswordView.m */; };
  215. 1818A1DA2260422300327157 /* PasswordViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A02A2260422200327157 /* PasswordViewController.mm */; };
  216. 1818A1DB2260422300327157 /* ItemTableviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A02C2260422200327157 /* ItemTableviewCell.m */; };
  217. 1818A1DC2260422300327157 /* SensorListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A02E2260422200327157 /* SensorListCell.m */; };
  218. 1818A1DD2260422300327157 /* SensorDeviceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0302260422200327157 /* SensorDeviceModel.m */; };
  219. 1818A1DE2260422300327157 /* CAAnimation+WAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0332260422200327157 /* CAAnimation+WAnimation.m */; };
  220. 1818A1DF2260422300327157 /* UIBarButtonItem+WZLBadge.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0382260422200327157 /* UIBarButtonItem+WZLBadge.m */; };
  221. 1818A1E02260422300327157 /* UITabBarItem+WZLBadge.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0392260422200327157 /* UITabBarItem+WZLBadge.m */; };
  222. 1818A1E12260422300327157 /* UIView+WZLBadge.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A03F2260422200327157 /* UIView+WZLBadge.m */; };
  223. 1818A1E22260422300327157 /* XMWallSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0402260422200327157 /* XMWallSwitchView.m */; };
  224. 1818A1E32260422300327157 /* UIColor+Util.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0432260422200327157 /* UIColor+Util.m */; };
  225. 1818A1E42260422300327157 /* XMLinkWallSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0472260422200327157 /* XMLinkWallSwitchCell.m */; };
  226. 1818A1E52260422300327157 /* SensorlistVCViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0492260422200327157 /* SensorlistVCViewController.mm */; };
  227. 1818A1E62260422300327157 /* AlarmConfigTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A04E2260422200327157 /* AlarmConfigTableViewCell.m */; };
  228. 1818A1E72260422300327157 /* AlarmDetectViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0502260422200327157 /* AlarmDetectViewController.mm */; };
  229. 1818A1E82260422300327157 /* AlarmLevelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0512260422200327157 /* AlarmLevelViewController.m */; };
  230. 1818A1E92260422300327157 /* DeviceConfigViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0522260422200327157 /* DeviceConfigViewController.mm */; };
  231. 1818A1EA2260422300327157 /* AnalyzerViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0552260422200327157 /* AnalyzerViewController.mm */; };
  232. 1818A1EB2260422300327157 /* RecordViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0572260422200327157 /* RecordViewController.mm */; };
  233. 1818A1EC2260422300327157 /* BuzzerViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A05B2260422200327157 /* BuzzerViewController.mm */; };
  234. 1818A1ED2260422300327157 /* EncodingFormatViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A05D2260422200327157 /* EncodingFormatViewController.mm */; };
  235. 1818A1EF2260422300327157 /* StorageViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0612260422200327157 /* StorageViewController.mm */; };
  236. 1818A1F02260422300327157 /* TimeSynViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0652260422200327157 /* TimeSynViewController.mm */; };
  237. 1818A1F12260422300327157 /* DeviceconfigTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0672260422200327157 /* DeviceconfigTableViewCell.m */; };
  238. 1818A1F22260422300327157 /* AboutDeviceViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A06A2260422200327157 /* AboutDeviceViewController.mm */; };
  239. 1818A1F32260422300327157 /* VideoFileViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A06D2260422200327157 /* VideoFileViewController.mm */; };
  240. 1818A1F42260422300327157 /* PictureFileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A06E2260422200327157 /* PictureFileViewController.m */; };
  241. 1818A1F52260422300327157 /* MonthPictureViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0712260422200327157 /* MonthPictureViewController.mm */; };
  242. 1818A1F62260422300327157 /* PictureDownloadViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0742260422200327157 /* PictureDownloadViewController.mm */; };
  243. 1818A1F72260422300327157 /* PictureSearchViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0752260422200327157 /* PictureSearchViewController.mm */; };
  244. 1818A1F82260422300327157 /* ByFileViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A07A2260422200327157 /* ByFileViewController.mm */; };
  245. 1818A1F92260422300327157 /* DownloadViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A07B2260422200327157 /* DownloadViewController.mm */; };
  246. 1818A1FA2260422300327157 /* MonthFileViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A07E2260422200327157 /* MonthFileViewController.mm */; };
  247. 1818A1FB2260422300327157 /* ByTimeViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A07F2260422200327157 /* ByTimeViewController.mm */; };
  248. 1818A1FC2260422300327157 /* ParamViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0832260422200327157 /* ParamViewController.mm */; };
  249. 1818A1FD2260422300327157 /* CloudServerViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0852260422200327157 /* CloudServerViewController.mm */; };
  250. 1818A1FE2260422300327157 /* CloudAbilityViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0872260422200327157 /* CloudAbilityViewController.mm */; };
  251. 1818A1FF2260422300327157 /* CloudPhotoDownloadViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A08A2260422200327157 /* CloudPhotoDownloadViewController.mm */; };
  252. 1818A2002260422300327157 /* CloudphotoDayVController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A08C2260422200327157 /* CloudphotoDayVController.mm */; };
  253. 1818A2012260422300327157 /* CloudPhotoViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A08D2260422200327157 /* CloudPhotoViewController.mm */; };
  254. 1818A2022260422300327157 /* CloudVideoDownloadViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0922260422200327157 /* CloudVideoDownloadViewController.mm */; };
  255. 1818A2032260422300327157 /* CloudVideoDayViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0942260422200327157 /* CloudVideoDayViewController.mm */; };
  256. 1818A2042260422300327157 /* CloudVideoViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0952260422200327157 /* CloudVideoViewController.mm */; };
  257. 1818A2052260422300327157 /* MainViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0992260422200327157 /* MainViewController.mm */; };
  258. 1818A2062260422300327157 /* DeviceAddViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A09A2260422200327157 /* DeviceAddViewController.m */; };
  259. 1818A2072260422300327157 /* AccountViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A09B2260422200327157 /* AccountViewController.mm */; };
  260. 1818A2082260422300327157 /* CYGLKView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0A02260422200327157 /* CYGLKView.m */; };
  261. 1818A2092260422300327157 /* XMPlayerVC.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0A22260422200327157 /* XMPlayerVC.mm */; };
  262. 1818A20A2260422300327157 /* PhotosViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0A42260422200327157 /* PhotosViewController.mm */; };
  263. 1818A20B2260422300327157 /* DeviceListViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0A72260422200327157 /* DeviceListViewController.mm */; };
  264. 1818A20C2260422300327157 /* DeviceListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0AB2260422200327157 /* DeviceListTableViewCell.m */; };
  265. 1818A20D2260422300327157 /* DeviceInfoEditViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0AD2260422200327157 /* DeviceInfoEditViewController.mm */; };
  266. 1818A20E2260422300327157 /* FishPlayControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0AF2260422200327157 /* FishPlayControl.mm */; };
  267. 1818A20F2260422300327157 /* PlayViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B12260422200327157 /* PlayViewController.mm */; };
  268. 1818A2102260422300327157 /* PlayCloudVideoViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B22260422200327157 /* PlayCloudVideoViewController.mm */; };
  269. 1818A2112260422300327157 /* ProgressBackView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B42260422200327157 /* ProgressBackView.mm */; };
  270. 1818A2122260422300327157 /* DateSelectView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B52260422200327157 /* DateSelectView.m */; };
  271. 1818A2132260422300327157 /* MyProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B92260422200327157 /* MyProgressView.m */; };
  272. 1818A2142260422300327157 /* PlayBackViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0BB2260422200327157 /* PlayBackViewController.mm */; };
  273. 1818A2152260422300327157 /* PlayFunctionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0BD2260422200327157 /* PlayFunctionView.m */; };
  274. 1818A2162260422300327157 /* PTZView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0C02260422200327157 /* PTZView.m */; };
  275. 1818A2172260422300327157 /* PlayMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0C12260422200327157 /* PlayMenuView.m */; };
  276. 1818A2182260422300327157 /* PlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0C22260422200327157 /* PlayView.m */; };
  277. 1818A2192260422300327157 /* TalkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0C42260422300327157 /* TalkView.m */; };
  278. 1818A21A2260422300327157 /* UILabelOutLined.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0CD2260422300327157 /* UILabelOutLined.m */; };
  279. 1818A21B2260422300327157 /* VRFunctionView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0D22260422300327157 /* VRFunctionView.mm */; };
  280. 1818A21C2260422300327157 /* FishEyeVideoVC.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0D32260422300327157 /* FishEyeVideoVC.mm */; };
  281. 1818A21D2260422300327157 /* VRGLViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0D42260422300327157 /* VRGLViewController.mm */; };
  282. 1818A21E2260422300327157 /* HardVRViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0DB2260422300327157 /* HardVRViewController.mm */; };
  283. 1818A21F2260422300327157 /* PrivacyPolicyVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0DE2260422300327157 /* PrivacyPolicyVC.m */; };
  284. 1818A2202260422300327157 /* PasswordSaveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0DF2260422300327157 /* PasswordSaveViewController.m */; };
  285. 1818A2212260422300327157 /* UserInfoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0E52260422300327157 /* UserInfoView.m */; };
  286. 1818A2222260422300327157 /* ForgetPasswordView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0E82260422300327157 /* ForgetPasswordView.m */; };
  287. 1818A2232260422300327157 /* ForgetPasswordViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0E92260422300327157 /* ForgetPasswordViewController.mm */; };
  288. 1818A2242260422300327157 /* ChangePasswordView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0EC2260422300327157 /* ChangePasswordView.m */; };
  289. 1818A2252260422300327157 /* UserInfoViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0EE2260422300327157 /* UserInfoViewController.mm */; };
  290. 1818A2262260422300327157 /* UserInputCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F22260422300327157 /* UserInputCell.m */; };
  291. 1818A2272260422300327157 /* UserInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F32260422300327157 /* UserInfoCell.m */; };
  292. 1818A2282260422300327157 /* UserBindView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F62260422300327157 /* UserBindView.m */; };
  293. 1818A2292260422300327157 /* RegisterViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F82260422300327157 /* RegisterViewController.mm */; };
  294. 1818A22A2260422300327157 /* UserBindViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F92260422300327157 /* UserBindViewController.mm */; };
  295. 1818A22B2260422300327157 /* RegisterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0FC2260422300327157 /* RegisterView.m */; };
  296. 1818A22C2260422300327157 /* LoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1818A0FD2260422300327157 /* LoginViewController.xib */; };
  297. 1818A22D2260422300327157 /* LoginViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0FE2260422300327157 /* LoginViewController.mm */; };
  298. 1818A22E2260422300327157 /* ChangePasswordViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0FF2260422300327157 /* ChangePasswordViewController.mm */; };
  299. 1818A22F2260422300327157 /* IPAddViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1032260422300327157 /* IPAddViewController.mm */; };
  300. 1818A2302260422300327157 /* APLoginConfigVC.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1042260422300327157 /* APLoginConfigVC.mm */; };
  301. 1818A2312260422300327157 /* SerialNumAddViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1052260422300327157 /* SerialNumAddViewController.mm */; };
  302. 1818A2322260422300327157 /* OriginalScaner.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1062260422300327157 /* OriginalScaner.mm */; };
  303. 1818A2332260422300327157 /* QuickConfigurationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A10E2260422300327157 /* QuickConfigurationView.m */; };
  304. 1818A2342260422300327157 /* QuickConfigurationViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A10F2260422300327157 /* QuickConfigurationViewController.mm */; };
  305. 1818A2352260422300327157 /* AddDeviceInputCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1112260422300327157 /* AddDeviceInputCell.m */; };
  306. 1818A2362260422300327157 /* SearchDeviceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1122260422300327157 /* SearchDeviceCell.m */; };
  307. 1818A2372260422300327157 /* LANSearchViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1152260422300327157 /* LANSearchViewController.mm */; };
  308. 1818A2382260422300327157 /* MyRadarView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1182260422300327157 /* MyRadarView.m */; };
  309. 1818A2392260422300327157 /* ScanAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1192260422300327157 /* ScanAnimationView.m */; };
  310. 1818A23B226042B500327157 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1818A23A226042B500327157 /* AdSupport.framework */; };
  311. C604BFF321DF33760001BC82 /* DeveceDetail_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604BFF221DF33760001BC82 /* DeveceDetail_VC.m */; };
  312. C604BFF721DF43540001BC82 /* PlaceList_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604BFF621DF43540001BC82 /* PlaceList_VC.m */; };
  313. C604BFFB21DF459B0001BC82 /* ManageDeveceList_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604BFFA21DF459B0001BC82 /* ManageDeveceList_VC.m */; };
  314. C604C00321DF47CE0001BC82 /* FireAlarm_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C00221DF47CE0001BC82 /* FireAlarm_VC.m */; };
  315. C604C00721DF48840001BC82 /* PushManage_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C00621DF48840001BC82 /* PushManage_VC.m */; };
  316. C604C00B21DF48E60001BC82 /* ProblemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C00A21DF48E60001BC82 /* ProblemViewController.m */; };
  317. C604C00F21DF499B0001BC82 /* Service_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C00E21DF499B0001BC82 /* Service_VC.m */; };
  318. C604C01221DF674D0001BC82 /* CustomPlaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C01121DF674D0001BC82 /* CustomPlaceView.m */; };
  319. C604C01821DF81DF0001BC82 /* DetailDeveceList_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C01721DF81DF0001BC82 /* DetailDeveceList_VC.m */; };
  320. C60E3F78225B1CCA003C1541 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C60E3F77225B1CCA003C1541 /* MBProgressHUD.m */; };
  321. C60E3F8A225B3F36003C1541 /* CustomAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C60E3F89225B3F36003C1541 /* CustomAlertView.m */; };
  322. C60F0C03223B4F26004446AA /* Protcol_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C60F0C02223B4F26004446AA /* Protcol_VC.m */; };
  323. C60F0C0F223B5104004446AA /* privacy_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C60F0C0E223B5104004446AA /* privacy_VC.m */; };
  324. C6114BBB225DA07E00D6BCE4 /* SXAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = C6114BB9225DA07C00D6BCE4 /* SXAlert.m */; };
  325. C6114BBD225DBAFC00D6BCE4 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6114BBC225DBAED00D6BCE4 /* QuartzCore.framework */; };
  326. C6114BC0225E105600D6BCE4 /* CheckMessage_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6114BBF225E105600D6BCE4 /* CheckMessage_VC.m */; };
  327. C6119B3921E2E996008B44BE /* SubmitInformation_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6119B3821E2E996008B44BE /* SubmitInformation_VC.m */; };
  328. C6119B4321E3477A008B44BE /* CommitMessage_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6119B4221E3477A008B44BE /* CommitMessage_VC.m */; };
  329. C615004F21D7083F00FEBA22 /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = C615004E21D7083F00FEBA22 /* AppDelegate.mm */; settings = {COMPILER_FLAGS = "-objc"; }; };
  330. C615005221D7083F00FEBA22 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C615005121D7083F00FEBA22 /* ViewController.m */; };
  331. C615005521D7083F00FEBA22 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C615005321D7083F00FEBA22 /* Main.storyboard */; };
  332. C615005D21D7083F00FEBA22 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C615005C21D7083F00FEBA22 /* main.m */; };
  333. C615006721D7084000FEBA22 /* Haishenghai_masterTests.m in Sources */ = {isa = PBXBuildFile; fileRef = C615006621D7084000FEBA22 /* Haishenghai_masterTests.m */; };
  334. C615007221D7084000FEBA22 /* Haishenghai_masterUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = C615007121D7084000FEBA22 /* Haishenghai_masterUITests.m */; };
  335. C615008C21D70C5800FEBA22 /* BaseLogin_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C615008B21D70C5800FEBA22 /* BaseLogin_VC.m */; };
  336. C615009B21D720A500FEBA22 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C615009A21D720A400FEBA22 /* Assets.xcassets */; };
  337. C6184825224A2975006A586B /* FireNoticeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6184824224A2975006A586B /* FireNoticeModel.m */; };
  338. C6184830224B684E006A586B /* fireAlarm.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = C618482F224B684D006A586B /* fireAlarm.mp3 */; };
  339. C618E43721E0472500A65353 /* ZDYAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C618E43621E0472500A65353 /* ZDYAlertView.m */; };
  340. C618E43A21E04F5E00A65353 /* DeveceTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C618E43921E04F5E00A65353 /* DeveceTableCell.m */; };
  341. C618E44021E05D9200A65353 /* TableheaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C618E43F21E05D9200A65353 /* TableheaderView.m */; };
  342. C618E44321E0615400A65353 /* Contacts_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C618E44221E0615400A65353 /* Contacts_VC.m */; };
  343. C62678D821E0873A00F146BC /* MessageTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C62678D721E0873A00F146BC /* MessageTableCell.m */; };
  344. C62F19BF223C9561001696B2 /* UserRegister_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C62F19BE223C9561001696B2 /* UserRegister_VC.m */; };
  345. C62F19C1223C9579001696B2 /* UserLogin_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C62F19C0223C9579001696B2 /* UserLogin_VC.m */; };
  346. C62F19C4223CF825001696B2 /* troubleSiteModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C62F19C3223CF825001696B2 /* troubleSiteModel.m */; };
  347. C63D540D222A2C92002723EB /* Setting_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C63D540C222A2C92002723EB /* Setting_VC.m */; };
  348. C63F6BE621F2B0DD00868CE6 /* DetailTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C63F6BE521F2B0DD00868CE6 /* DetailTableViewCell.m */; };
  349. C640782F21E1FF580070B632 /* FireManage_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C640782E21E1FF580070B632 /* FireManage_VC.m */; };
  350. C6413D3C21E1A3BF00605186 /* Recorddetail_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6413D3B21E1A3BF00605186 /* Recorddetail_VC.m */; };
  351. C643407621EAD887006A5D72 /* PersonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C643407521EAD887006A5D72 /* PersonCell.m */; };
  352. C6457D7421FAAB2D00CD6276 /* DeveceTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C6457D7321FAAB2D00CD6276 /* DeveceTableViewController.m */; };
  353. C6457D7721FAAB3F00CD6276 /* SiteTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C6457D7621FAAB3F00CD6276 /* SiteTableViewController.m */; };
  354. C6457D7D21FAFEB000CD6276 /* About_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6457D7C21FAFEB000CD6276 /* About_VC.m */; };
  355. C64701612223EC24009D2FCF /* BottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = C64701602223EC24009D2FCF /* BottomView.m */; };
  356. C6472CC221F6C2A600F5CD09 /* PlaceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6472CC121F6C2A600F5CD09 /* PlaceModel.m */; };
  357. C6472CC521F6E3D100F5CD09 /* deveceListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6472CC421F6E3D100F5CD09 /* deveceListModel.m */; };
  358. C6472CC821F71B5400F5CD09 /* uploadModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6472CC621F71B5300F5CD09 /* uploadModel.m */; };
  359. C6478F7621F5ABD1004BB536 /* deveceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6478F7521F5ABD1004BB536 /* deveceModel.m */; };
  360. C64F21512226586400DBD297 /* SelectBoxView.m in Sources */ = {isa = PBXBuildFile; fileRef = C64F21502226586400DBD297 /* SelectBoxView.m */; };
  361. C64FE3D421F4271000ACFCA1 /* EditLocationVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C64FE3D321F4271000ACFCA1 /* EditLocationVC.m */; };
  362. C65726DE21D8A10D0013E52F /* ResetPassword_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65726DD21D8A10D0013E52F /* ResetPassword_VC.m */; };
  363. C65726E521D8ACAA0013E52F /* Person_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65726E421D8ACAA0013E52F /* Person_VC.m */; };
  364. C65726E821D8ACF10013E52F /* Message_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65726E721D8ACF10013E52F /* Message_VC.m */; };
  365. C65726EB21D8AD1F0013E52F /* DeveceList_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65726EA21D8AD1F0013E52F /* DeveceList_VC.m */; };
  366. C6576FF82217A2A00022B990 /* contactModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6576FF52217A2A00022B990 /* contactModel.m */; };
  367. C6576FF92217A2A00022B990 /* troubleDeveceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6576FF62217A2A00022B990 /* troubleDeveceModel.m */; };
  368. C6576FFC22182A6C0022B990 /* NSMutableDictionary+NullSaf.m in Sources */ = {isa = PBXBuildFile; fileRef = C6576FFB22182A6C0022B990 /* NSMutableDictionary+NullSaf.m */; };
  369. C65FCE4321DDE1E400CA21F8 /* popViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FCE4221DDE1E400CA21F8 /* popViewController.m */; };
  370. C65FCE4621DDF9C000CA21F8 /* AddDevece_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FCE4521DDF9C000CA21F8 /* AddDevece_VC.m */; };
  371. C65FCE6821DE1F7900CA21F8 /* CollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FCE6721DE1F7900CA21F8 /* CollectionViewCell.m */; };
  372. C65FCE7321DE225F00CA21F8 /* ScanViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FCE7221DE225F00CA21F8 /* ScanViewController.m */; };
  373. C6615DC321E9BA4F0067BF83 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DC221E9BA330067BF83 /* SystemConfiguration.framework */; };
  374. C6615DC521E9BA730067BF83 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DC421E9BA620067BF83 /* CoreTelephony.framework */; };
  375. C6615DC721E9BAC10067BF83 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DC621E9BAB70067BF83 /* Security.framework */; };
  376. C6615DC921E9BADB0067BF83 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DC821E9BAD30067BF83 /* GLKit.framework */; };
  377. C6615DCB21E9BAEB0067BF83 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DCA21E9BAEB0067BF83 /* libz.tbd */; };
  378. C6615DCD21E9BAF90067BF83 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DCC21E9BAF90067BF83 /* libc++.tbd */; };
  379. C6615DD221E9BE350067BF83 /* AMap.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C6615DD121E9BE350067BF83 /* AMap.bundle */; };
  380. C6615DD521E9C6CD0067BF83 /* AMapSearchKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DD421E9C6CC0067BF83 /* AMapSearchKit.framework */; };
  381. C6615DD821E9C7520067BF83 /* AMapFoundationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DD621E9C74C0067BF83 /* AMapFoundationKit.framework */; };
  382. C6615DD921E9C7520067BF83 /* MAMapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DD721E9C7520067BF83 /* MAMapKit.framework */; };
  383. C6615DDB21E9CF170067BF83 /* AMapLocationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DDA21E9CF170067BF83 /* AMapLocationKit.framework */; };
  384. C6615DDD21E9CFD60067BF83 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DDC21E9CFC70067BF83 /* ExternalAccessory.framework */; };
  385. C668A3022238A63500F866B0 /* detatilDeviceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C668A3012238A63500F866B0 /* detatilDeviceModel.m */; };
  386. C66E858E21EEEF17001997E0 /* popMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = C66E858C21EEEF16001997E0 /* popMenuView.m */; };
  387. C6834EBC21F9605500E2DA26 /* LeftTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C6834EBB21F9605500E2DA26 /* LeftTableCell.m */; };
  388. C6834EBF21F9607200E2DA26 /* RightTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C6834EBE21F9607200E2DA26 /* RightTableCell.m */; };
  389. C687A04B21E71905003485B6 /* PlaceDetail_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C687A04A21E71905003485B6 /* PlaceDetail_VC.m */; };
  390. C687A04E21E7380A003485B6 /* FireAlarmCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C687A04D21E7380A003485B6 /* FireAlarmCell.m */; };
  391. C687A05121E73DC2003485B6 /* DeveceListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C687A05021E73DC2003485B6 /* DeveceListCell.m */; };
  392. C687A05421E74685003485B6 /* PushManageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C687A05321E74685003485B6 /* PushManageCell.m */; };
  393. C6C071D42255D66900474188 /* DataSourceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C071D22255D66800474188 /* DataSourceManager.m */; };
  394. C6C071D72255EECF00474188 /* SitTabCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C071D62255EECE00474188 /* SitTabCell.m */; };
  395. C6C071D92255FE3200474188 /* THDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C071D82255FE3200474188 /* THDatePickerView.m */; };
  396. C6ED0E0A21DDBD580064FEAB /* Addplace_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6ED0E0921DDBD580064FEAB /* Addplace_VC.m */; };
  397. C6F75F4321E4435E00D1B606 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C6F75F4221E4435E00D1B606 /* LaunchScreen.storyboard */; };
  398. E56AAE1437FDC705A2AE1E75 /* libPods-Haishenghai-master.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 057E4FF4BB19D559388E05C8 /* libPods-Haishenghai-master.a */; };
  399. /* End PBXBuildFile section */
  400. /* Begin PBXContainerItemProxy section */
  401. C615006321D7084000FEBA22 /* PBXContainerItemProxy */ = {
  402. isa = PBXContainerItemProxy;
  403. containerPortal = C615004221D7083F00FEBA22 /* Project object */;
  404. proxyType = 1;
  405. remoteGlobalIDString = C615004921D7083F00FEBA22;
  406. remoteInfo = "Haishenghai-master";
  407. };
  408. C615006E21D7084000FEBA22 /* PBXContainerItemProxy */ = {
  409. isa = PBXContainerItemProxy;
  410. containerPortal = C615004221D7083F00FEBA22 /* Project object */;
  411. proxyType = 1;
  412. remoteGlobalIDString = C615004921D7083F00FEBA22;
  413. remoteInfo = "Haishenghai-master";
  414. };
  415. /* End PBXContainerItemProxy section */
  416. /* Begin PBXFileReference section */
  417. 057E4FF4BB19D559388E05C8 /* libPods-Haishenghai-master.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Haishenghai-master.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  418. 18189A46226022DB00327157 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; };
  419. 18189A47226022DB00327157 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  420. 18189A4A226022ED00327157 /* libresolv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
  421. 18189A4C226022F600327157 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
  422. 18189A4E226022FD00327157 /* libbz2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.tbd; path = usr/lib/libbz2.tbd; sourceTree = SDKROOT; };
  423. 18189A502260232400327157 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  424. 18189A512260232400327157 /* AVKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVKit.framework; path = System/Library/Frameworks/AVKit.framework; sourceTree = SDKROOT; };
  425. 18189A542260232F00327157 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
  426. 18189A562260233B00327157 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
  427. 18189A572260233B00327157 /* UserNotificationsUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotificationsUI.framework; path = System/Library/Frameworks/UserNotificationsUI.framework; sourceTree = SDKROOT; };
  428. 18189A5A2260236200327157 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  429. 18189A5C2260238600327157 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
  430. 18189A5E2260239900327157 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
  431. 18189A60226023B300327157 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
  432. 18189A622260343900327157 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  433. 18189E522260422100327157 /* SystemResetConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemResetConfig.h; sourceTree = "<group>"; };
  434. 18189E532260422100327157 /* SystemResetConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SystemResetConfig.mm; sourceTree = "<group>"; };
  435. 18189E552260422100327157 /* TimeSynDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeSynDataSource.m; sourceTree = "<group>"; };
  436. 18189E562260422100327157 /* TimeSynConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeSynConfig.h; sourceTree = "<group>"; };
  437. 18189E572260422100327157 /* TimeSynDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeSynDataSource.h; sourceTree = "<group>"; };
  438. 18189E582260422100327157 /* TimeSynConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TimeSynConfig.mm; sourceTree = "<group>"; };
  439. 18189E5A2260422100327157 /* AlarmMessageInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmMessageInfo.m; sourceTree = "<group>"; };
  440. 18189E5B2260422100327157 /* AlarmMessageConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessageConfig.h; sourceTree = "<group>"; };
  441. 18189E5C2260422100327157 /* AlarmMessageConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmMessageConfig.mm; sourceTree = "<group>"; };
  442. 18189E5D2260422100327157 /* AlarmMessageInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessageInfo.h; sourceTree = "<group>"; };
  443. 18189E5F2260422100327157 /* HumanDetectionConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HumanDetectionConfig.h; sourceTree = "<group>"; };
  444. 18189E602260422100327157 /* HumanDetectionConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = HumanDetectionConfig.mm; sourceTree = "<group>"; };
  445. 18189E622260422100327157 /* CommonConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CommonConfig.mm; sourceTree = "<group>"; };
  446. 18189E632260422100327157 /* CommonConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonConfig.h; sourceTree = "<group>"; };
  447. 18189E662260422100327157 /* CLouldVideoResource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CLouldVideoResource.h; sourceTree = "<group>"; };
  448. 18189E672260422100327157 /* CloudVideoConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudVideoConfig.mm; sourceTree = "<group>"; };
  449. 18189E682260422100327157 /* CloudVideoConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudVideoConfig.h; sourceTree = "<group>"; };
  450. 18189E692260422100327157 /* CLouldVideoResource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CLouldVideoResource.m; sourceTree = "<group>"; };
  451. 18189E6B2260422100327157 /* XMAlarmMsgResource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMAlarmMsgResource.m; sourceTree = "<group>"; };
  452. 18189E6C2260422100327157 /* CloudPhotoConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudPhotoConfig.mm; sourceTree = "<group>"; };
  453. 18189E6D2260422200327157 /* XMAlarmMsgResource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMAlarmMsgResource.h; sourceTree = "<group>"; };
  454. 18189E6E2260422200327157 /* CloudPhotoConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudPhotoConfig.h; sourceTree = "<group>"; };
  455. 18189E6F2260422200327157 /* CloudAbilityDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CloudAbilityDataSource.m; sourceTree = "<group>"; };
  456. 18189E702260422200327157 /* CloudAbilityConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudAbilityConfig.h; sourceTree = "<group>"; };
  457. 18189E712260422200327157 /* CloudAbilityDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudAbilityDataSource.h; sourceTree = "<group>"; };
  458. 18189E722260422200327157 /* CloudAbilityConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudAbilityConfig.mm; sourceTree = "<group>"; };
  459. 18189E742260422200327157 /* EncodeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeConfig.h; sourceTree = "<group>"; };
  460. 18189E752260422200327157 /* EncodeDataSourse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeDataSourse.h; sourceTree = "<group>"; };
  461. 18189E762260422200327157 /* EncodeConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EncodeConfig.mm; sourceTree = "<group>"; };
  462. 18189E772260422200327157 /* EncodeDataSourse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EncodeDataSourse.m; sourceTree = "<group>"; };
  463. 18189E792260422200327157 /* VodeoRotainDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VodeoRotainDataSource.m; sourceTree = "<group>"; };
  464. 18189E7A2260422200327157 /* VideoRotainConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoRotainConfig.mm; sourceTree = "<group>"; };
  465. 18189E7B2260422200327157 /* VideoRotainConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoRotainConfig.h; sourceTree = "<group>"; };
  466. 18189E7C2260422200327157 /* VodeoRotainDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VodeoRotainDataSource.h; sourceTree = "<group>"; };
  467. 18189E7E2260422200327157 /* StorageConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageConfig.h; sourceTree = "<group>"; };
  468. 18189E7F2260422200327157 /* DataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataSource.m; sourceTree = "<group>"; };
  469. 18189E802260422200327157 /* Storage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Storage.m; sourceTree = "<group>"; };
  470. 18189E812260422200327157 /* StorageConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = StorageConfig.mm; sourceTree = "<group>"; };
  471. 18189E822260422200327157 /* Storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Storage.h; sourceTree = "<group>"; };
  472. 18189E832260422200327157 /* DataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataSource.h; sourceTree = "<group>"; };
  473. 18189E852260422200327157 /* SystemInfoConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SystemInfoConfig.mm; sourceTree = "<group>"; };
  474. 18189E862260422200327157 /* SystemInfoConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemInfoConfig.h; sourceTree = "<group>"; };
  475. 18189E882260422200327157 /* RecordDataSourse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordDataSourse.h; sourceTree = "<group>"; };
  476. 18189E892260422200327157 /* RecordConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RecordConfig.mm; sourceTree = "<group>"; };
  477. 18189E8A2260422200327157 /* RecordConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordConfig.h; sourceTree = "<group>"; };
  478. 18189E8B2260422200327157 /* RecordDataSourse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordDataSourse.m; sourceTree = "<group>"; };
  479. 18189E8D2260422200327157 /* AnalyzeDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnalyzeDataSource.h; sourceTree = "<group>"; };
  480. 18189E8E2260422200327157 /* AnalyzeDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnalyzeDataSource.m; sourceTree = "<group>"; };
  481. 18189E8F2260422200327157 /* AnalyzeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnalyzeConfig.h; sourceTree = "<group>"; };
  482. 18189E902260422200327157 /* AnalyzeConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AnalyzeConfig.mm; sourceTree = "<group>"; };
  483. 18189E922260422200327157 /* AlarmPIRConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmPIRConfig.h; sourceTree = "<group>"; };
  484. 18189E932260422200327157 /* AlarmPIRConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmPIRConfig.mm; sourceTree = "<group>"; };
  485. 18189E952260422200327157 /* AlarmDetectConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmDetectConfig.h; sourceTree = "<group>"; };
  486. 18189E962260422200327157 /* AlarmDetectConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmDetectConfig.mm; sourceTree = "<group>"; };
  487. 18189E982260422200327157 /* PasswordConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordConfig.h; sourceTree = "<group>"; };
  488. 18189E992260422200327157 /* PasswordConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PasswordConfig.mm; sourceTree = "<group>"; };
  489. 18189E9B2260422200327157 /* SystemFunctionConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SystemFunctionConfig.mm; sourceTree = "<group>"; };
  490. 18189E9C2260422200327157 /* SystemFunctionConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemFunctionConfig.h; sourceTree = "<group>"; };
  491. 18189E9E2260422200327157 /* UpgradeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpgradeConfig.h; sourceTree = "<group>"; };
  492. 18189E9F2260422200327157 /* UpgradeDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpgradeDataSource.h; sourceTree = "<group>"; };
  493. 18189EA02260422200327157 /* UpgradeDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UpgradeDataSource.m; sourceTree = "<group>"; };
  494. 18189EA12260422200327157 /* UpgradeConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UpgradeConfig.mm; sourceTree = "<group>"; };
  495. 18189EA42260422200327157 /* PictureInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureInfo.m; sourceTree = "<group>"; };
  496. 18189EA52260422200327157 /* PictureFileConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureFileConfig.h; sourceTree = "<group>"; };
  497. 18189EA62260422200327157 /* PictureFileDownloadConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PictureFileDownloadConfig.mm; sourceTree = "<group>"; };
  498. 18189EA72260422200327157 /* PictureInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureInfo.h; sourceTree = "<group>"; };
  499. 18189EA82260422200327157 /* PictureFileConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PictureFileConfig.mm; sourceTree = "<group>"; };
  500. 18189EA92260422200327157 /* PictureFileDownloadConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureFileDownloadConfig.h; sourceTree = "<group>"; };
  501. 18189EAB2260422200327157 /* VideoFileDownloadConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoFileDownloadConfig.h; sourceTree = "<group>"; };
  502. 18189EAC2260422200327157 /* VideoFileConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoFileConfig.h; sourceTree = "<group>"; };
  503. 18189EAD2260422200327157 /* TimeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeInfo.m; sourceTree = "<group>"; };
  504. 18189EAE2260422200327157 /* RecordInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordInfo.h; sourceTree = "<group>"; };
  505. 18189EAF2260422200327157 /* VideoFileConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoFileConfig.mm; sourceTree = "<group>"; };
  506. 18189EB02260422200327157 /* VideoFileDownloadConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoFileDownloadConfig.mm; sourceTree = "<group>"; };
  507. 18189EB12260422200327157 /* RecordInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordInfo.m; sourceTree = "<group>"; };
  508. 18189EB22260422200327157 /* TimeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeInfo.h; sourceTree = "<group>"; };
  509. 18189EB42260422200327157 /* BuzzerConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = BuzzerConfig.mm; sourceTree = "<group>"; };
  510. 18189EB52260422200327157 /* BuzzerConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BuzzerConfig.h; sourceTree = "<group>"; };
  511. 18189EB72260422200327157 /* ShutDownTimeConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ShutDownTimeConfig.mm; sourceTree = "<group>"; };
  512. 18189EB82260422200327157 /* ShutDownTimeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShutDownTimeConfig.h; sourceTree = "<group>"; };
  513. 18189EBA2260422200327157 /* WaterMarkConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WaterMarkConfig.mm; sourceTree = "<group>"; };
  514. 18189EBB2260422200327157 /* WaterMarkConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaterMarkConfig.h; sourceTree = "<group>"; };
  515. 18189EBC2260422200327157 /* XYShowAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYShowAlertView.m; sourceTree = "<group>"; };
  516. 18189EBF2260422200327157 /* AlarmManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmManager.h; sourceTree = "<group>"; };
  517. 18189EC02260422200327157 /* AlarmManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmManager.mm; sourceTree = "<group>"; };
  518. 18189EC22260422200327157 /* UserAccountModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserAccountModel.mm; sourceTree = "<group>"; };
  519. 18189EC32260422200327157 /* UserAccountModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserAccountModel.h; sourceTree = "<group>"; };
  520. 18189EC52260422200327157 /* DeviceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceManager.h; sourceTree = "<group>"; };
  521. 18189EC62260422200327157 /* DeviceManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceManager.mm; sourceTree = "<group>"; };
  522. 18189EC92260422200327157 /* MessageUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageUI.h; sourceTree = "<group>"; };
  523. 18189ECA2260422200327157 /* MessageUI.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MessageUI.mm; sourceTree = "<group>"; };
  524. 18189ECC2260422200327157 /* LanguageManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = LanguageManager.mm; sourceTree = "<group>"; };
  525. 18189ECD2260422200327157 /* LanguageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LanguageManager.h; sourceTree = "<group>"; };
  526. 18189ECF2260422200327157 /* UIView+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Layout.m"; sourceTree = "<group>"; };
  527. 18189ED02260422200327157 /* UIView+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Layout.h"; sourceTree = "<group>"; };
  528. 18189ED22260422200327157 /* NSString+Category.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Category.h"; sourceTree = "<group>"; };
  529. 18189ED32260422200327157 /* MyStringManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyStringManager.h; sourceTree = "<group>"; };
  530. 18189ED42260422200327157 /* NSString+Extention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extention.h"; sourceTree = "<group>"; };
  531. 18189ED52260422200327157 /* NSString+Path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Path.h"; sourceTree = "<group>"; };
  532. 18189ED62260422200327157 /* NSDate+TimeCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+TimeCategory.m"; sourceTree = "<group>"; };
  533. 18189ED72260422200327157 /* GTMNSString+HTML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GTMNSString+HTML.h"; sourceTree = "<group>"; };
  534. 18189ED82260422200327157 /* NSString+Category.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Category.m"; sourceTree = "<group>"; };
  535. 18189ED92260422200327157 /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
  536. 18189EDA2260422200327157 /* NSDate+TimeCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+TimeCategory.h"; sourceTree = "<group>"; };
  537. 18189EDB2260422200327157 /* NSString+Path.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Path.m"; sourceTree = "<group>"; };
  538. 18189EDC2260422200327157 /* NSString+Extention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extention.m"; sourceTree = "<group>"; };
  539. 18189EDD2260422200327157 /* MyStringManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyStringManager.m; sourceTree = "<group>"; };
  540. 18189EDE2260422200327157 /* GTMNSString+HTML.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTMNSString+HTML.m"; sourceTree = "<group>"; };
  541. 18189EE02260422200327157 /* FileControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileControl.h; sourceTree = "<group>"; };
  542. 18189EE12260422200327157 /* FileControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FileControl.mm; sourceTree = "<group>"; };
  543. 18189EE32260422200327157 /* NSUserDefaultData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSUserDefaultData.h; sourceTree = "<group>"; };
  544. 18189EE42260422200327157 /* NSUserDefaultData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSUserDefaultData.m; sourceTree = "<group>"; };
  545. 18189EE62260422200327157 /* LoginShowControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginShowControl.m; sourceTree = "<group>"; };
  546. 18189EE72260422200327157 /* CommonControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonControl.h; sourceTree = "<group>"; };
  547. 18189EE82260422200327157 /* LoginShowControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginShowControl.h; sourceTree = "<group>"; };
  548. 18189EE92260422200327157 /* CommonControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommonControl.m; sourceTree = "<group>"; };
  549. 18189EEA2260422200327157 /* XYShowAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYShowAlertView.h; sourceTree = "<group>"; };
  550. 18189EEC2260422200327157 /* MediaPlaybackControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaPlaybackControl.h; sourceTree = "<group>"; };
  551. 18189EED2260422200327157 /* VideoContentDefination.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoContentDefination.h; sourceTree = "<group>"; };
  552. 18189EEF2260422200327157 /* Recode.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = Recode.mm; sourceTree = "<group>"; };
  553. 18189EF02260422200327157 /* TalkBackControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TalkBackControl.h; sourceTree = "<group>"; };
  554. 18189EF12260422200327157 /* Recode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Recode.h; sourceTree = "<group>"; };
  555. 18189EF22260422200327157 /* TalkBackControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TalkBackControl.mm; sourceTree = "<group>"; };
  556. 18189EF32260422200327157 /* MediaplayerControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaplayerControl.h; sourceTree = "<group>"; };
  557. 18189EF42260422200327157 /* MediaPlaybackControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MediaPlaybackControl.mm; sourceTree = "<group>"; };
  558. 18189EF52260422200327157 /* MediaplayerControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MediaplayerControl.mm; sourceTree = "<group>"; };
  559. 18189EF82260422200327157 /* PlayToolImage.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = PlayToolImage.plist; sourceTree = "<group>"; };
  560. 18189EF92260422200327157 /* error.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = error.plist; sourceTree = "<group>"; };
  561. 18189EFB2260422200327157 /* icon_hide_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_hide_sel.png; sourceTree = "<group>"; };
  562. 18189EFD2260422200327157 /* press_talk_selected_en.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_selected_en.png; sourceTree = "<group>"; };
  563. 18189EFE2260422200327157 /* btn_SD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_SD.png; sourceTree = "<group>"; };
  564. 18189EFF2260422200327157 /* icon_close.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_close.png; sourceTree = "<group>"; };
  565. 18189F002260422200327157 /* btn_control_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_normal.png; sourceTree = "<group>"; };
  566. 18189F012260422200327157 /* btn_HD_F.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_HD_F.png; sourceTree = "<group>"; };
  567. 18189F022260422200327157 /* record_temp_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = record_temp_normal.png; sourceTree = "<group>"; };
  568. 18189F032260422200327157 /* btn_minus_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_minus_normal.png; sourceTree = "<group>"; };
  569. 18189F042260422200327157 /* btn_HD_E.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_HD_E.png; sourceTree = "<group>"; };
  570. 18189F052260422200327157 /* talk_unselect.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = talk_unselect.png; sourceTree = "<group>"; };
  571. 18189F062260422200327157 /* btn_record.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_record.png; sourceTree = "<group>"; };
  572. 18189F072260422200327157 /* btn_voice_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_voice_normal.png; sourceTree = "<group>"; };
  573. 18189F082260422200327157 /* press_talk_selected_sp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_selected_sp.png; sourceTree = "<group>"; };
  574. 18189F092260422200327157 /* btn_control_left.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_left.png; sourceTree = "<group>"; };
  575. 18189F0A2260422200327157 /* press_talk_en.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_en.png; sourceTree = "<group>"; };
  576. 18189F0B2260422200327157 /* btn_stop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_stop.png; sourceTree = "<group>"; };
  577. 18189F0C2260422200327157 /* ic_alarm.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ic_alarm.png; sourceTree = "<group>"; };
  578. 18189F0D2260422200327157 /* btn_stop_select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_stop_select.png; sourceTree = "<group>"; };
  579. 18189F0E2260422200327157 /* press_talk_selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_selected.png; sourceTree = "<group>"; };
  580. 18189F0F2260422200327157 /* ptz_unselect.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ptz_unselect.png; sourceTree = "<group>"; };
  581. 18189F102260422200327157 /* btn_voice_selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_voice_selected.png; sourceTree = "<group>"; };
  582. 18189F112260422200327157 /* btn_control_up.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_up.png; sourceTree = "<group>"; };
  583. 18189F122260422200327157 /* press_talk_sp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_sp.png; sourceTree = "<group>"; };
  584. 18189F132260422200327157 /* btn_tool_recording.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_tool_recording.png; sourceTree = "<group>"; };
  585. 18189F142260422200327157 /* btn_SD_F.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_SD_F.png; sourceTree = "<group>"; };
  586. 18189F152260422200327157 /* talk_select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = talk_select.png; sourceTree = "<group>"; };
  587. 18189F162260422200327157 /* btn_plus_highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_plus_highlighted.png; sourceTree = "<group>"; };
  588. 18189F172260422200327157 /* btn_SD_E.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_SD_E.png; sourceTree = "<group>"; };
  589. 18189F182260422200327157 /* btn_pause.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_pause.png; sourceTree = "<group>"; };
  590. 18189F192260422200327157 /* btn_pause_select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_pause_select.png; sourceTree = "<group>"; };
  591. 18189F1A2260422200327157 /* btn_control_down.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_down.png; sourceTree = "<group>"; };
  592. 18189F1B2260422200327157 /* Speed_Select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Speed_Select.png; sourceTree = "<group>"; };
  593. 18189F1D2260422200327157 /* VR_Wall_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_Wall_nor.png; sourceTree = "<group>"; };
  594. 18189F1E2260422200327157 /* VR-cylinder_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-cylinder_sel.png"; sourceTree = "<group>"; };
  595. 18189F1F2260422200327157 /* VR_180_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_180_sel.png; sourceTree = "<group>"; };
  596. 18189F202260422200327157 /* VR-Ceiling_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-Ceiling_nor.png"; sourceTree = "<group>"; };
  597. 18189F212260422200327157 /* VR-close_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-close_nor.png"; sourceTree = "<group>"; };
  598. 18189F222260422200327157 /* VR-rectangle_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-rectangle_sel.png"; sourceTree = "<group>"; };
  599. 18189F232260422200327157 /* VR-tow_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-tow_sel.png"; sourceTree = "<group>"; };
  600. 18189F242260422200327157 /* VR-ball bowl_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-ball bowl_nor.png"; sourceTree = "<group>"; };
  601. 18189F252260422200327157 /* VR_ball hat_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR_ball hat_nor.png"; sourceTree = "<group>"; };
  602. 18189F262260422200327157 /* VR_Ball_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_Ball_sel.png; sourceTree = "<group>"; };
  603. 18189F272260422200327157 /* VR-four_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-four_nor.png"; sourceTree = "<group>"; };
  604. 18189F282260422200327157 /* 180_3R_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 180_3R_sel.png; sourceTree = "<group>"; };
  605. 18189F292260422200327157 /* VR-cylinder_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-cylinder_nor.png"; sourceTree = "<group>"; };
  606. 18189F2A2260422200327157 /* VR_180_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_180_nor.png; sourceTree = "<group>"; };
  607. 18189F2B2260422200327157 /* VR-Ceiling_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-Ceiling_sel.png"; sourceTree = "<group>"; };
  608. 18189F2C2260422200327157 /* VR-rectangle_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-rectangle_nor.png"; sourceTree = "<group>"; };
  609. 18189F2D2260422200327157 /* VR_Wall_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_Wall_sel.png; sourceTree = "<group>"; };
  610. 18189F2E2260422200327157 /* VR_Ball_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_Ball_nor.png; sourceTree = "<group>"; };
  611. 18189F2F2260422200327157 /* VR-four_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-four_sel.png"; sourceTree = "<group>"; };
  612. 18189F302260422200327157 /* 180_3R_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 180_3R_nor.png; sourceTree = "<group>"; };
  613. 18189F312260422200327157 /* VR-ball bowl_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-ball bowl_sel.png"; sourceTree = "<group>"; };
  614. 18189F322260422200327157 /* VR-tow_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-tow_nor.png"; sourceTree = "<group>"; };
  615. 18189F332260422200327157 /* 360VR-ins_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "360VR-ins_default.png"; sourceTree = "<group>"; };
  616. 18189F342260422200327157 /* VR_ball hat_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR_ball hat_sel.png"; sourceTree = "<group>"; };
  617. 18189F352260422200327157 /* press_talk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk.png; sourceTree = "<group>"; };
  618. 18189F362260422200327157 /* btn_minus_highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_minus_highlighted.png; sourceTree = "<group>"; };
  619. 18189F372260422200327157 /* btn_recording.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_recording.png; sourceTree = "<group>"; };
  620. 18189F382260422200327157 /* btn_plus_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_plus_normal.png; sourceTree = "<group>"; };
  621. 18189F392260422200327157 /* btn_HD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_HD.png; sourceTree = "<group>"; };
  622. 18189F3A2260422200327157 /* btn_control_right.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_right.png; sourceTree = "<group>"; };
  623. 18189F3B2260422200327157 /* btn_camera_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_camera_normal.png; sourceTree = "<group>"; };
  624. 18189F3C2260422200327157 /* QRCode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = QRCode.png; sourceTree = "<group>"; };
  625. 18189F3D2260422200327157 /* radar_search_sign.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radar_search_sign.png; sourceTree = "<group>"; };
  626. 18189F3E2260422200327157 /* radar_search_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radar_search_bg.png; sourceTree = "<group>"; };
  627. 18189F3F2260422200327157 /* sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sel.png; sourceTree = "<group>"; };
  628. 18189F402260422200327157 /* icon_funsdk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_funsdk.png; sourceTree = "<group>"; };
  629. 18189F412260422200327157 /* icon_hide_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_hide_nor.png; sourceTree = "<group>"; };
  630. 18189F442260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/ic_wake_green.png"; sourceTree = "<group>"; };
  631. 18189F462260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/offline.png"; sourceTree = "<group>"; };
  632. 18189F482260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/sleepnotwakeup.png"; sourceTree = "<group>"; };
  633. 18189F4A2260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/Prepare_sleep.png"; sourceTree = "<group>"; };
  634. 18189F4C2260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/online.png"; sourceTree = "<group>"; };
  635. 18189F4E2260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/ic_sleep.png"; sourceTree = "<group>"; };
  636. 18189F4F2260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/ic_wake_green.png; sourceTree = "<group>"; };
  637. 18189F502260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/offline.png; sourceTree = "<group>"; };
  638. 18189F512260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/sleepnotwakeup.png; sourceTree = "<group>"; };
  639. 18189F522260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/Prepare_sleep.png; sourceTree = "<group>"; };
  640. 18189F532260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/online.png; sourceTree = "<group>"; };
  641. 18189F542260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/ic_sleep.png; sourceTree = "<group>"; };
  642. 18189F552260422200327157 /* sleepnotwakeup_zh.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sleepnotwakeup_zh.png; sourceTree = "<group>"; };
  643. 18189F562260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/ic_wake_green.png; sourceTree = "<group>"; };
  644. 18189F572260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/offline.png; sourceTree = "<group>"; };
  645. 18189F582260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/sleepnotwakeup.png; sourceTree = "<group>"; };
  646. 18189F592260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/Prepare_sleep.png; sourceTree = "<group>"; };
  647. 18189F5A2260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/online.png; sourceTree = "<group>"; };
  648. 18189F5B2260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/ic_sleep.png; sourceTree = "<group>"; };
  649. 18189F5C2260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/ic_wake_green.png"; sourceTree = "<group>"; };
  650. 18189F5D2260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/offline.png"; sourceTree = "<group>"; };
  651. 18189F5E2260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/sleepnotwakeup.png"; sourceTree = "<group>"; };
  652. 18189F5F2260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/Prepare_sleep.png"; sourceTree = "<group>"; };
  653. 18189F602260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/online.png"; sourceTree = "<group>"; };
  654. 18189F612260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/ic_sleep.png"; sourceTree = "<group>"; };
  655. 18189F622260422200327157 /* nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = nor.png; sourceTree = "<group>"; };
  656. 18189F642260422200327157 /* xmjp_camera.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_camera.png; sourceTree = "<group>"; };
  657. 18189F652260422200327157 /* xmjp_seye.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_seye.png; sourceTree = "<group>"; };
  658. 18189F662260422200327157 /* xmjp_mov.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_mov.png; sourceTree = "<group>"; };
  659. 18189F672260422200327157 /* xmjp_car.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_car.png; sourceTree = "<group>"; };
  660. 18189F682260422200327157 /* xmjp_socket.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_socket.png; sourceTree = "<group>"; };
  661. 18189F692260422200327157 /* xmjp_bulb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_bulb.png; sourceTree = "<group>"; };
  662. 18189F6A2260422200327157 /* xmjp_fbulb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_fbulb.png; sourceTree = "<group>"; };
  663. 18189F6B2260422200327157 /* xmjp_rotot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_rotot.png; sourceTree = "<group>"; };
  664. 18189F6C2260422200327157 /* xmjp_feye.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_feye.png; sourceTree = "<group>"; };
  665. 18189F6D2260422200327157 /* xmjp_cloudbox_klok.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_cloudbox_klok.png; sourceTree = "<group>"; };
  666. 18189F6E2260422200327157 /* xmjp_beye.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_beye.png; sourceTree = "<group>"; };
  667. 18189F6F2260422200327157 /* xmjp_cloudbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_cloudbox.png; sourceTree = "<group>"; };
  668. 18189F702260422200327157 /* xmjp_bob.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_bob.png; sourceTree = "<group>"; };
  669. 18189F712260422200327157 /* xmjp_bulbsocket.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_bulbsocket.png; sourceTree = "<group>"; };
  670. 18189F722260422200327157 /* Local_Settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Local_Settings.png; sourceTree = "<group>"; };
  671. 18189F732260422200327157 /* phone2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = phone2.png; sourceTree = "<group>"; };
  672. 18189F742260422200327157 /* new_back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = new_back.png; sourceTree = "<group>"; };
  673. 18189F762260422200327157 /* libstdc++.6.0.9.tbd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.text-based-dylib-definition"; path = "libstdc++.6.0.9.tbd"; sourceTree = "<group>"; };
  674. 18189F782260422200327157 /* libfisheye.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libfisheye.a; sourceTree = "<group>"; };
  675. 18189F792260422200327157 /* libFSCalendar.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libFSCalendar.a; sourceTree = "<group>"; };
  676. 18189F7A2260422200327157 /* SVProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVProgressHUD.h; sourceTree = "<group>"; };
  677. 18189F7B2260422200327157 /* SVProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVProgressHUD.m; sourceTree = "<group>"; };
  678. 18189F7C2260422200327157 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = SVProgressHUD.bundle; sourceTree = "<group>"; };
  679. 18189F7E2260422200327157 /* XMNetInterface.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = XMNetInterface.framework; sourceTree = "<group>"; };
  680. 18189F7F2260422200327157 /* FunSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FunSDK.framework; sourceTree = "<group>"; };
  681. 18189F812260422200327157 /* en.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = en.txt; sourceTree = "<group>"; };
  682. 18189F822260422200327157 /* zh_CN.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = zh_CN.txt; sourceTree = "<group>"; };
  683. 18189F852260422200327157 /* BaseViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = BaseViewController.mm; sourceTree = "<group>"; };
  684. 18189F862260422200327157 /* SDKInitializeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDKInitializeModel.h; sourceTree = "<group>"; };
  685. 18189F872260422200327157 /* ConfigControllerBase.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ConfigControllerBase.mm; sourceTree = "<group>"; };
  686. 18189F882260422200327157 /* FunMsgListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FunMsgListener.h; sourceTree = "<group>"; };
  687. 18189F892260422200327157 /* ConfigControllerBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfigControllerBase.h; sourceTree = "<group>"; };
  688. 18189F8A2260422200327157 /* FunMsgListener.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FunMsgListener.mm; sourceTree = "<group>"; };
  689. 18189F8B2260422200327157 /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
  690. 18189F8C2260422200327157 /* SDKInitializeModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SDKInitializeModel.mm; sourceTree = "<group>"; };
  691. 18189F8F2260422200327157 /* OPSCalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OPSCalendar.h; sourceTree = "<group>"; };
  692. 18189F912260422200327157 /* PirTimeSectionTwo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PirTimeSectionTwo.h; sourceTree = "<group>"; };
  693. 18189F922260422200327157 /* Alarm_PIR.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Alarm_PIR.h; sourceTree = "<group>"; };
  694. 18189F932260422200327157 /* PirTimeSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PirTimeSection.h; sourceTree = "<group>"; };
  695. 18189F942260422200327157 /* PirTimeSectionOne.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PirTimeSectionOne.h; sourceTree = "<group>"; };
  696. 18189F962260422200327157 /* ExtRecord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtRecord.h; sourceTree = "<group>"; };
  697. 18189F972260422200327157 /* SupportExtRecord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SupportExtRecord.h; sourceTree = "<group>"; };
  698. 18189F982260422200327157 /* Record.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Record.h; sourceTree = "<group>"; };
  699. 18189F9A2260422200327157 /* Detect_HumanDetectionDVR.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_HumanDetectionDVR.h; sourceTree = "<group>"; };
  700. 18189F9C2260422200327157 /* OtherFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OtherFunction.h; sourceTree = "<group>"; };
  701. 18189F9D2260422200327157 /* CommFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommFunction.h; sourceTree = "<group>"; };
  702. 18189F9E2260422200327157 /* SystemFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemFunction.h; sourceTree = "<group>"; };
  703. 18189F9F2260422200327157 /* EncodeFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeFunction.h; sourceTree = "<group>"; };
  704. 18189FA02260422200327157 /* MobileDVR.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MobileDVR.h; sourceTree = "<group>"; };
  705. 18189FA12260422200327157 /* AlarmFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmFunction.h; sourceTree = "<group>"; };
  706. 18189FA22260422200327157 /* InputMethod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputMethod.h; sourceTree = "<group>"; };
  707. 18189FA32260422200327157 /* NetServerFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetServerFunction.h; sourceTree = "<group>"; };
  708. 18189FA42260422200327157 /* TipShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TipShow.h; sourceTree = "<group>"; };
  709. 18189FA52260422200327157 /* PreviewFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PreviewFunction.h; sourceTree = "<group>"; };
  710. 18189FA72260422200327157 /* NetUse_DigitalAbility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetUse_DigitalAbility.h; sourceTree = "<group>"; };
  711. 18189FA82260422200327157 /* DSTStart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSTStart.h; sourceTree = "<group>"; };
  712. 18189FA92260422200327157 /* NetUse_DigitalEncode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetUse_DigitalEncode.h; sourceTree = "<group>"; };
  713. 18189FAA2260422200327157 /* EncodeCapability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeCapability.h; sourceTree = "<group>"; };
  714. 18189FAB2260422200327157 /* CombEncodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CombEncodeInfo.h; sourceTree = "<group>"; };
  715. 18189FAC2260422200327157 /* Audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Audio.h; sourceTree = "<group>"; };
  716. 18189FAD2260422200327157 /* MainFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainFormat.h; sourceTree = "<group>"; };
  717. 18189FAE2260422200327157 /* Simplify_Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Simplify_Encode.h; sourceTree = "<group>"; };
  718. 18189FAF2260422200327157 /* EncodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeInfo.h; sourceTree = "<group>"; };
  719. 18189FB02260422200327157 /* Video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Video.h; sourceTree = "<group>"; };
  720. 18189FB12260422200327157 /* DSTEnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSTEnd.h; sourceTree = "<group>"; };
  721. 18189FB22260422200327157 /* ability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ability.h; sourceTree = "<group>"; };
  722. 18189FB32260422200327157 /* General_Location.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = General_Location.h; sourceTree = "<group>"; };
  723. 18189FB42260422200327157 /* ExtraFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtraFormat.h; sourceTree = "<group>"; };
  724. 18189FB62260422200327157 /* GainParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GainParam.h; sourceTree = "<group>"; };
  725. 18189FB72260422200327157 /* Camera_Param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Camera_Param.h; sourceTree = "<group>"; };
  726. 18189FB82260422200327157 /* ExposureParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExposureParam.h; sourceTree = "<group>"; };
  727. 18189FBA2260422200327157 /* OPStorageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OPStorageManager.h; sourceTree = "<group>"; };
  728. 18189FBB2260422200327157 /* StorageGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageGlobal.h; sourceTree = "<group>"; };
  729. 18189FBC2260422200327157 /* Partition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Partition.h; sourceTree = "<group>"; };
  730. 18189FBD2260422200327157 /* StorageInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageInfo.h; sourceTree = "<group>"; };
  731. 18189FBF2260422200327157 /* NetWork_Wifi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetWork_Wifi.h; sourceTree = "<group>"; };
  732. 18189FC02260422200327157 /* NetWork_NetDHCP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetWork_NetDHCP.h; sourceTree = "<group>"; };
  733. 18189FC22260422200327157 /* SystemInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemInfo.h; sourceTree = "<group>"; };
  734. 18189FC32260422200327157 /* OPDefaultConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OPDefaultConfig.h; sourceTree = "<group>"; };
  735. 18189FC42260422200327157 /* SystemFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemFunction.h; sourceTree = "<group>"; };
  736. 18189FC52260422200327157 /* General_General.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = General_General.h; sourceTree = "<group>"; };
  737. 18189FC72260422200327157 /* AVEnc_VideoWidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AVEnc_VideoWidget.h; sourceTree = "<group>"; };
  738. 18189FC82260422200327157 /* ChannelTitle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelTitle.h; sourceTree = "<group>"; };
  739. 18189FC92260422200327157 /* TimeTitleAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeTitleAttribute.h; sourceTree = "<group>"; };
  740. 18189FCA2260422200327157 /* ChannelTitleAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelTitleAttribute.h; sourceTree = "<group>"; };
  741. 18189FCB2260422200327157 /* fVideo_OsdLogo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fVideo_OsdLogo.h; sourceTree = "<group>"; };
  742. 18189FCD2260422200327157 /* ModifyPassword.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPassword.h; sourceTree = "<group>"; };
  743. 18189FCF2260422200327157 /* Detect_MotionDetect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_MotionDetect.h; sourceTree = "<group>"; };
  744. 18189FD02260422200327157 /* Detect_LossDetect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_LossDetect.h; sourceTree = "<group>"; };
  745. 18189FD12260422200327157 /* Detect_BlindDetect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_BlindDetect.h; sourceTree = "<group>"; };
  746. 18189FD32260422200327157 /* Park_AdjustInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Park_AdjustInfo.h; sourceTree = "<group>"; };
  747. 18189FD42260422200327157 /* Points.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Points.h; sourceTree = "<group>"; };
  748. 18189FD52260422200327157 /* CarInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CarInfo.h; sourceTree = "<group>"; };
  749. 18189FD72260422200327157 /* System_TimeZone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = System_TimeZone.h; sourceTree = "<group>"; };
  750. 18189FD82260422200327157 /* TimeQuery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeQuery.h; sourceTree = "<group>"; };
  751. 18189FD92260422200327157 /* TimeQuery.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeQuery.m; sourceTree = "<group>"; };
  752. 18189FDB2260422200327157 /* TripWireRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TripWireRule.h; sourceTree = "<group>"; };
  753. 18189FDC2260422200327157 /* PerimeterRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PerimeterRule.h; sourceTree = "<group>"; };
  754. 18189FDD2260422200327157 /* RuleConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RuleConfig.h; sourceTree = "<group>"; };
  755. 18189FDE2260422200327157 /* EventHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventHandler.h; sourceTree = "<group>"; };
  756. 18189FDF2260422200327157 /* TripWire.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TripWire.h; sourceTree = "<group>"; };
  757. 18189FE02260422200327157 /* Boundary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Boundary.h; sourceTree = "<group>"; };
  758. 18189FE12260422200327157 /* Detect_Analyze.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_Analyze.h; sourceTree = "<group>"; };
  759. 18189FE22260422200327157 /* StolenRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StolenRule.h; sourceTree = "<group>"; };
  760. 18189FE32260422200327157 /* SubRgC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubRgC.h; sourceTree = "<group>"; };
  761. 18189FE42260422200327157 /* SpclRgs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpclRgs.h; sourceTree = "<group>"; };
  762. 18189FE52260422200327157 /* AbandumRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbandumRule.h; sourceTree = "<group>"; };
  763. 18189FE62260422200327157 /* StartPt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StartPt.h; sourceTree = "<group>"; };
  764. 18189FE72260422200327157 /* LimitPara.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LimitPara.h; sourceTree = "<group>"; };
  765. 18189FE82260422200327157 /* PEARule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PEARule.h; sourceTree = "<group>"; };
  766. 18189FE92260422200327157 /* SubRgB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubRgB.h; sourceTree = "<group>"; };
  767. 18189FEA2260422200327157 /* OscRg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OscRg.h; sourceTree = "<group>"; };
  768. 18189FEB2260422200327157 /* CPCRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CPCRule.h; sourceTree = "<group>"; };
  769. 18189FEC2260422200327157 /* NoParkingRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoParkingRule.h; sourceTree = "<group>"; };
  770. 18189FED2260422200327157 /* SubRgA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubRgA.h; sourceTree = "<group>"; };
  771. 18189FEE2260422200327157 /* Line.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Line.h; sourceTree = "<group>"; };
  772. 18189FEF2260422200327157 /* Points.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Points.h; sourceTree = "<group>"; };
  773. 18189FF02260422200327157 /* EndPt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EndPt.h; sourceTree = "<group>"; };
  774. 18189FF12260422200327157 /* Limit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Limit.h; sourceTree = "<group>"; };
  775. 18189FF22260422200327157 /* AVDRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AVDRule.h; sourceTree = "<group>"; };
  776. 18189FF32260422200327157 /* OscPara.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OscPara.h; sourceTree = "<group>"; };
  777. 18189FF42260422200327157 /* OSCRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSCRule.h; sourceTree = "<group>"; };
  778. 18189FF62260422200327157 /* DevicelistArchiveModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DevicelistArchiveModel.m; sourceTree = "<group>"; };
  779. 18189FF72260422200327157 /* DeviceControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceControl.h; sourceTree = "<group>"; };
  780. 18189FF92260422200327157 /* ObSysteminfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObSysteminfo.h; sourceTree = "<group>"; };
  781. 18189FFA2260422200327157 /* ObSystemFunction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ObSystemFunction.m; sourceTree = "<group>"; };
  782. 18189FFB2260422200327157 /* ObSysteminfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ObSysteminfo.m; sourceTree = "<group>"; };
  783. 18189FFC2260422200327157 /* ObSystemFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObSystemFunction.h; sourceTree = "<group>"; };
  784. 18189FFD2260422200327157 /* DeviceControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceControl.m; sourceTree = "<group>"; };
  785. 18189FFE2260422200327157 /* DevicelistArchiveModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DevicelistArchiveModel.h; sourceTree = "<group>"; };
  786. 1818A0002260422200327157 /* DeviceObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceObject.m; sourceTree = "<group>"; };
  787. 1818A0012260422200327157 /* ObjectCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ObjectCoder.m; sourceTree = "<group>"; };
  788. 1818A0022260422200327157 /* ChannelObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelObject.h; sourceTree = "<group>"; };
  789. 1818A0032260422200327157 /* ObjectCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObjectCoder.h; sourceTree = "<group>"; };
  790. 1818A0042260422200327157 /* DeviceObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceObject.h; sourceTree = "<group>"; };
  791. 1818A0052260422200327157 /* ChannelObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChannelObject.m; sourceTree = "<group>"; };
  792. 1818A0082260422200327157 /* DeviceConfigViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceConfigViewController.h; sourceTree = "<group>"; };
  793. 1818A0092260422200327157 /* DeviceconfigTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceconfigTableViewCell.h; sourceTree = "<group>"; };
  794. 1818A00B2260422200327157 /* UpgradeDeviceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpgradeDeviceViewController.h; sourceTree = "<group>"; };
  795. 1818A00C2260422200327157 /* UpgradeDeviceViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UpgradeDeviceViewController.mm; sourceTree = "<group>"; };
  796. 1818A00D2260422200327157 /* ItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemViewController.m; sourceTree = "<group>"; };
  797. 1818A00F2260422200327157 /* WaterMarkViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WaterMarkViewController.mm; sourceTree = "<group>"; };
  798. 1818A0102260422200327157 /* WaterMarkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaterMarkViewController.h; sourceTree = "<group>"; };
  799. 1818A0122260422200327157 /* ShutDownTimeViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ShutDownTimeViewController.mm; sourceTree = "<group>"; };
  800. 1818A0132260422200327157 /* ShutDownTimeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShutDownTimeViewController.h; sourceTree = "<group>"; };
  801. 1818A0162260422200327157 /* AlarmMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessageCell.h; sourceTree = "<group>"; };
  802. 1818A0172260422200327157 /* AlarmMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmMessageCell.m; sourceTree = "<group>"; };
  803. 1818A0182260422200327157 /* AlarmMessageViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmMessageViewController.mm; sourceTree = "<group>"; };
  804. 1818A0192260422200327157 /* AlarmMessagePicViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmMessagePicViewController.m; sourceTree = "<group>"; };
  805. 1818A01A2260422200327157 /* AlarmMessagePicViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessagePicViewController.h; sourceTree = "<group>"; };
  806. 1818A01B2260422200327157 /* AlarmMessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessageViewController.h; sourceTree = "<group>"; };
  807. 1818A01D2260422200327157 /* EncodeItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EncodeItemViewController.m; sourceTree = "<group>"; };
  808. 1818A01E2260422200327157 /* EncodeViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EncodeViewController.mm; sourceTree = "<group>"; };
  809. 1818A0202260422200327157 /* EncodeConfigTableviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EncodeConfigTableviewCell.m; sourceTree = "<group>"; };
  810. 1818A0212260422200327157 /* EncodeConfigTableviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeConfigTableviewCell.h; sourceTree = "<group>"; };
  811. 1818A0222260422200327157 /* EncodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeViewController.h; sourceTree = "<group>"; };
  812. 1818A0232260422200327157 /* EncodeItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeItemViewController.h; sourceTree = "<group>"; };
  813. 1818A0252260422200327157 /* HumanDetectionViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = HumanDetectionViewController.mm; sourceTree = "<group>"; };
  814. 1818A0262260422200327157 /* HumanDetectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HumanDetectionViewController.h; sourceTree = "<group>"; };
  815. 1818A0282260422200327157 /* PasswordView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordView.m; sourceTree = "<group>"; };
  816. 1818A0292260422200327157 /* PasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordViewController.h; sourceTree = "<group>"; };
  817. 1818A02A2260422200327157 /* PasswordViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PasswordViewController.mm; sourceTree = "<group>"; };
  818. 1818A02B2260422200327157 /* PasswordView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordView.h; sourceTree = "<group>"; };
  819. 1818A02C2260422200327157 /* ItemTableviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemTableviewCell.m; sourceTree = "<group>"; };
  820. 1818A02E2260422200327157 /* SensorListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SensorListCell.m; sourceTree = "<group>"; };
  821. 1818A02F2260422200327157 /* UIColor+Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Util.h"; sourceTree = "<group>"; };
  822. 1818A0302260422200327157 /* SensorDeviceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SensorDeviceModel.m; sourceTree = "<group>"; };
  823. 1818A0332260422200327157 /* CAAnimation+WAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CAAnimation+WAnimation.m"; sourceTree = "<group>"; };
  824. 1818A0342260422200327157 /* CAAnimation+WAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CAAnimation+WAnimation.h"; sourceTree = "<group>"; };
  825. 1818A0362260422200327157 /* UIBarButtonItem+WZLBadge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+WZLBadge.h"; sourceTree = "<group>"; };
  826. 1818A0372260422200327157 /* UITabBarItem+WZLBadge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITabBarItem+WZLBadge.h"; sourceTree = "<group>"; };
  827. 1818A0382260422200327157 /* UIBarButtonItem+WZLBadge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+WZLBadge.m"; sourceTree = "<group>"; };
  828. 1818A0392260422200327157 /* UITabBarItem+WZLBadge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITabBarItem+WZLBadge.m"; sourceTree = "<group>"; };
  829. 1818A03A2260422200327157 /* WZLBadgeImport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WZLBadgeImport.h; sourceTree = "<group>"; };
  830. 1818A03C2260422200327157 /* WZLBadgeProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WZLBadgeProtocol.h; sourceTree = "<group>"; };
  831. 1818A03E2260422200327157 /* UIView+WZLBadge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WZLBadge.h"; sourceTree = "<group>"; };
  832. 1818A03F2260422200327157 /* UIView+WZLBadge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WZLBadge.m"; sourceTree = "<group>"; };
  833. 1818A0402260422200327157 /* XMWallSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMWallSwitchView.m; sourceTree = "<group>"; };
  834. 1818A0412260422200327157 /* XMLinkWallSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMLinkWallSwitchCell.h; sourceTree = "<group>"; };
  835. 1818A0422260422200327157 /* SensorListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorListCell.h; sourceTree = "<group>"; };
  836. 1818A0432260422200327157 /* UIColor+Util.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Util.m"; sourceTree = "<group>"; };
  837. 1818A0442260422200327157 /* SensorlistVCViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorlistVCViewController.h; sourceTree = "<group>"; };
  838. 1818A0452260422200327157 /* SensorDeviceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorDeviceModel.h; sourceTree = "<group>"; };
  839. 1818A0462260422200327157 /* SensorInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorInfo.h; sourceTree = "<group>"; };
  840. 1818A0472260422200327157 /* XMLinkWallSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMLinkWallSwitchCell.m; sourceTree = "<group>"; };
  841. 1818A0482260422200327157 /* XMWallSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMWallSwitchView.h; sourceTree = "<group>"; };
  842. 1818A0492260422200327157 /* SensorlistVCViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SensorlistVCViewController.mm; sourceTree = "<group>"; };
  843. 1818A04B2260422200327157 /* AlarmLevelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmLevelViewController.h; sourceTree = "<group>"; };
  844. 1818A04C2260422200327157 /* AlarmDetectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmDetectViewController.h; sourceTree = "<group>"; };
  845. 1818A04E2260422200327157 /* AlarmConfigTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmConfigTableViewCell.m; sourceTree = "<group>"; };
  846. 1818A04F2260422200327157 /* AlarmConfigTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmConfigTableViewCell.h; sourceTree = "<group>"; };
  847. 1818A0502260422200327157 /* AlarmDetectViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmDetectViewController.mm; sourceTree = "<group>"; };
  848. 1818A0512260422200327157 /* AlarmLevelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmLevelViewController.m; sourceTree = "<group>"; };
  849. 1818A0522260422200327157 /* DeviceConfigViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceConfigViewController.mm; sourceTree = "<group>"; };
  850. 1818A0542260422200327157 /* AnalyzerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnalyzerViewController.h; sourceTree = "<group>"; };
  851. 1818A0552260422200327157 /* AnalyzerViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AnalyzerViewController.mm; sourceTree = "<group>"; };
  852. 1818A0572260422200327157 /* RecordViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RecordViewController.mm; sourceTree = "<group>"; };
  853. 1818A0582260422200327157 /* RecordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordViewController.h; sourceTree = "<group>"; };
  854. 1818A05A2260422200327157 /* BuzzerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BuzzerViewController.h; sourceTree = "<group>"; };
  855. 1818A05B2260422200327157 /* BuzzerViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = BuzzerViewController.mm; sourceTree = "<group>"; };
  856. 1818A05D2260422200327157 /* EncodingFormatViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EncodingFormatViewController.mm; sourceTree = "<group>"; };
  857. 1818A05F2260422200327157 /* EncodingFormatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodingFormatViewController.h; sourceTree = "<group>"; };
  858. 1818A0612260422200327157 /* StorageViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = StorageViewController.mm; sourceTree = "<group>"; };
  859. 1818A0622260422200327157 /* StorageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageViewController.h; sourceTree = "<group>"; };
  860. 1818A0632260422200327157 /* ItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemViewController.h; sourceTree = "<group>"; };
  861. 1818A0652260422200327157 /* TimeSynViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TimeSynViewController.mm; sourceTree = "<group>"; };
  862. 1818A0662260422200327157 /* TimeSynViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeSynViewController.h; sourceTree = "<group>"; };
  863. 1818A0672260422200327157 /* DeviceconfigTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceconfigTableViewCell.m; sourceTree = "<group>"; };
  864. 1818A0682260422200327157 /* ItemTableviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemTableviewCell.h; sourceTree = "<group>"; };
  865. 1818A06A2260422200327157 /* AboutDeviceViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AboutDeviceViewController.mm; sourceTree = "<group>"; };
  866. 1818A06B2260422200327157 /* AboutDeviceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutDeviceViewController.h; sourceTree = "<group>"; };
  867. 1818A06D2260422200327157 /* VideoFileViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoFileViewController.mm; sourceTree = "<group>"; };
  868. 1818A06E2260422200327157 /* PictureFileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureFileViewController.m; sourceTree = "<group>"; };
  869. 1818A0702260422200327157 /* PictureDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureDownloadViewController.h; sourceTree = "<group>"; };
  870. 1818A0712260422200327157 /* MonthPictureViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MonthPictureViewController.mm; sourceTree = "<group>"; };
  871. 1818A0722260422200327157 /* PictureSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureSearchViewController.h; sourceTree = "<group>"; };
  872. 1818A0732260422200327157 /* MonthPictureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthPictureViewController.h; sourceTree = "<group>"; };
  873. 1818A0742260422200327157 /* PictureDownloadViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PictureDownloadViewController.mm; sourceTree = "<group>"; };
  874. 1818A0752260422200327157 /* PictureSearchViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PictureSearchViewController.mm; sourceTree = "<group>"; };
  875. 1818A0762260422200327157 /* VideoFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoFileViewController.h; sourceTree = "<group>"; };
  876. 1818A0782260422200327157 /* DownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DownloadViewController.h; sourceTree = "<group>"; };
  877. 1818A0792260422200327157 /* MonthFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthFileViewController.h; sourceTree = "<group>"; };
  878. 1818A07A2260422200327157 /* ByFileViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ByFileViewController.mm; sourceTree = "<group>"; };
  879. 1818A07B2260422200327157 /* DownloadViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DownloadViewController.mm; sourceTree = "<group>"; };
  880. 1818A07C2260422200327157 /* ByTimeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ByTimeViewController.h; sourceTree = "<group>"; };
  881. 1818A07D2260422200327157 /* ByFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ByFileViewController.h; sourceTree = "<group>"; };
  882. 1818A07E2260422200327157 /* MonthFileViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MonthFileViewController.mm; sourceTree = "<group>"; };
  883. 1818A07F2260422200327157 /* ByTimeViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ByTimeViewController.mm; sourceTree = "<group>"; };
  884. 1818A0802260422200327157 /* PictureFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureFileViewController.h; sourceTree = "<group>"; };
  885. 1818A0822260422200327157 /* ParamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ParamViewController.h; sourceTree = "<group>"; };
  886. 1818A0832260422200327157 /* ParamViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ParamViewController.mm; sourceTree = "<group>"; };
  887. 1818A0852260422200327157 /* CloudServerViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudServerViewController.mm; sourceTree = "<group>"; };
  888. 1818A0862260422200327157 /* CloudAbilityViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudAbilityViewController.h; sourceTree = "<group>"; };
  889. 1818A0872260422200327157 /* CloudAbilityViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudAbilityViewController.mm; sourceTree = "<group>"; };
  890. 1818A0892260422200327157 /* CloudPhotoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudPhotoViewController.h; sourceTree = "<group>"; };
  891. 1818A08A2260422200327157 /* CloudPhotoDownloadViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudPhotoDownloadViewController.mm; sourceTree = "<group>"; };
  892. 1818A08B2260422200327157 /* CloudphotoDayVController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudphotoDayVController.h; sourceTree = "<group>"; };
  893. 1818A08C2260422200327157 /* CloudphotoDayVController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudphotoDayVController.mm; sourceTree = "<group>"; };
  894. 1818A08D2260422200327157 /* CloudPhotoViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudPhotoViewController.mm; sourceTree = "<group>"; };
  895. 1818A08E2260422200327157 /* CloudPhotoDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudPhotoDownloadViewController.h; sourceTree = "<group>"; };
  896. 1818A08F2260422200327157 /* CloudServerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudServerViewController.h; sourceTree = "<group>"; };
  897. 1818A0912260422200327157 /* CloudVideoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudVideoViewController.h; sourceTree = "<group>"; };
  898. 1818A0922260422200327157 /* CloudVideoDownloadViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudVideoDownloadViewController.mm; sourceTree = "<group>"; };
  899. 1818A0932260422200327157 /* CloudVideoDayViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudVideoDayViewController.h; sourceTree = "<group>"; };
  900. 1818A0942260422200327157 /* CloudVideoDayViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudVideoDayViewController.mm; sourceTree = "<group>"; };
  901. 1818A0952260422200327157 /* CloudVideoViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudVideoViewController.mm; sourceTree = "<group>"; };
  902. 1818A0962260422200327157 /* CloudVideoDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudVideoDownloadViewController.h; sourceTree = "<group>"; };
  903. 1818A0982260422200327157 /* DeviceAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceAddViewController.h; sourceTree = "<group>"; };
  904. 1818A0992260422200327157 /* MainViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MainViewController.mm; sourceTree = "<group>"; };
  905. 1818A09A2260422200327157 /* DeviceAddViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceAddViewController.m; sourceTree = "<group>"; };
  906. 1818A09B2260422200327157 /* AccountViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AccountViewController.mm; sourceTree = "<group>"; };
  907. 1818A09C2260422200327157 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
  908. 1818A09D2260422200327157 /* AccountViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccountViewController.h; sourceTree = "<group>"; };
  909. 1818A0A02260422200327157 /* CYGLKView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYGLKView.m; sourceTree = "<group>"; };
  910. 1818A0A12260422200327157 /* CYGLKView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYGLKView.h; sourceTree = "<group>"; };
  911. 1818A0A22260422200327157 /* XMPlayerVC.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = XMPlayerVC.mm; sourceTree = "<group>"; };
  912. 1818A0A32260422200327157 /* XMPlayerVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPlayerVC.h; sourceTree = "<group>"; };
  913. 1818A0A42260422200327157 /* PhotosViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PhotosViewController.mm; sourceTree = "<group>"; };
  914. 1818A0A52260422200327157 /* PhotosViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotosViewController.h; sourceTree = "<group>"; };
  915. 1818A0A72260422200327157 /* DeviceListViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceListViewController.mm; sourceTree = "<group>"; };
  916. 1818A0A82260422200327157 /* DeviceInfoEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceInfoEditViewController.h; sourceTree = "<group>"; };
  917. 1818A0AA2260422200327157 /* DeviceListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceListTableViewCell.h; sourceTree = "<group>"; };
  918. 1818A0AB2260422200327157 /* DeviceListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceListTableViewCell.m; sourceTree = "<group>"; };
  919. 1818A0AC2260422200327157 /* DeviceListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceListViewController.h; sourceTree = "<group>"; };
  920. 1818A0AD2260422200327157 /* DeviceInfoEditViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceInfoEditViewController.mm; sourceTree = "<group>"; };
  921. 1818A0AF2260422200327157 /* FishPlayControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FishPlayControl.mm; sourceTree = "<group>"; };
  922. 1818A0B02260422200327157 /* PlayBackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayBackViewController.h; sourceTree = "<group>"; };
  923. 1818A0B12260422200327157 /* PlayViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlayViewController.mm; sourceTree = "<group>"; };
  924. 1818A0B22260422200327157 /* PlayCloudVideoViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlayCloudVideoViewController.mm; sourceTree = "<group>"; };
  925. 1818A0B42260422200327157 /* ProgressBackView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ProgressBackView.mm; sourceTree = "<group>"; };
  926. 1818A0B52260422200327157 /* DateSelectView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DateSelectView.m; sourceTree = "<group>"; };
  927. 1818A0B62260422200327157 /* MyProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyProgressView.h; sourceTree = "<group>"; };
  928. 1818A0B72260422200327157 /* ProgressBackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProgressBackView.h; sourceTree = "<group>"; };
  929. 1818A0B82260422200327157 /* DateSelectView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DateSelectView.h; sourceTree = "<group>"; };
  930. 1818A0B92260422200327157 /* MyProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyProgressView.m; sourceTree = "<group>"; };
  931. 1818A0BA2260422200327157 /* PlayCloudVideoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayCloudVideoViewController.h; sourceTree = "<group>"; };
  932. 1818A0BB2260422200327157 /* PlayBackViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlayBackViewController.mm; sourceTree = "<group>"; };
  933. 1818A0BD2260422200327157 /* PlayFunctionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayFunctionView.m; sourceTree = "<group>"; };
  934. 1818A0BE2260422200327157 /* TalkView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TalkView.h; sourceTree = "<group>"; };
  935. 1818A0BF2260422200327157 /* PlayView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayView.h; sourceTree = "<group>"; };
  936. 1818A0C02260422200327157 /* PTZView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PTZView.m; sourceTree = "<group>"; };
  937. 1818A0C12260422200327157 /* PlayMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayMenuView.m; sourceTree = "<group>"; };
  938. 1818A0C22260422200327157 /* PlayView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayView.m; sourceTree = "<group>"; };
  939. 1818A0C32260422300327157 /* PlayFunctionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayFunctionView.h; sourceTree = "<group>"; };
  940. 1818A0C42260422300327157 /* TalkView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TalkView.m; sourceTree = "<group>"; };
  941. 1818A0C52260422300327157 /* PTZView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PTZView.h; sourceTree = "<group>"; };
  942. 1818A0C62260422300327157 /* PlayMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayMenuView.h; sourceTree = "<group>"; };
  943. 1818A0C72260422300327157 /* FishPlayControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FishPlayControl.h; sourceTree = "<group>"; };
  944. 1818A0C82260422300327157 /* PlayViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayViewController.h; sourceTree = "<group>"; };
  945. 1818A0CA2260422300327157 /* FishEyeVideoVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FishEyeVideoVC.h; sourceTree = "<group>"; };
  946. 1818A0CB2260422300327157 /* fisheye.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fisheye.h; sourceTree = "<group>"; };
  947. 1818A0CC2260422300327157 /* errordef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errordef.h; sourceTree = "<group>"; };
  948. 1818A0CD2260422300327157 /* UILabelOutLined.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UILabelOutLined.m; sourceTree = "<group>"; };
  949. 1818A0CE2260422300327157 /* VRSoft.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VRSoft.h; sourceTree = "<group>"; };
  950. 1818A0CF2260422300327157 /* fisheye_opengl_errordef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fisheye_opengl_errordef.h; sourceTree = "<group>"; };
  951. 1818A0D02260422300327157 /* VRGLViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VRGLViewController.h; sourceTree = "<group>"; };
  952. 1818A0D12260422300327157 /* fisheye_opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fisheye_opengl.h; sourceTree = "<group>"; };
  953. 1818A0D22260422300327157 /* VRFunctionView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VRFunctionView.mm; sourceTree = "<group>"; };
  954. 1818A0D32260422300327157 /* FishEyeVideoVC.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FishEyeVideoVC.mm; sourceTree = "<group>"; };
  955. 1818A0D42260422300327157 /* VRGLViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VRGLViewController.mm; sourceTree = "<group>"; };
  956. 1818A0D52260422300327157 /* fisheye_errordef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fisheye_errordef.h; sourceTree = "<group>"; };
  957. 1818A0D62260422300327157 /* VRFunctionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VRFunctionView.h; sourceTree = "<group>"; };
  958. 1818A0D72260422300327157 /* HardVRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HardVRViewController.h; sourceTree = "<group>"; };
  959. 1818A0D82260422300327157 /* VRSoftDef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VRSoftDef.h; sourceTree = "<group>"; };
  960. 1818A0D92260422300327157 /* UILabelOutLined.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILabelOutLined.h; sourceTree = "<group>"; };
  961. 1818A0DA2260422300327157 /* typedef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = typedef.h; sourceTree = "<group>"; };
  962. 1818A0DB2260422300327157 /* HardVRViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = HardVRViewController.mm; sourceTree = "<group>"; };
  963. 1818A0DD2260422300327157 /* ChangePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordViewController.h; sourceTree = "<group>"; };
  964. 1818A0DE2260422300327157 /* PrivacyPolicyVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PrivacyPolicyVC.m; sourceTree = "<group>"; };
  965. 1818A0DF2260422300327157 /* PasswordSaveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordSaveViewController.m; sourceTree = "<group>"; };
  966. 1818A0E02260422300327157 /* UserInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoViewController.h; sourceTree = "<group>"; };
  967. 1818A0E12260422300327157 /* UserBindViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserBindViewController.h; sourceTree = "<group>"; };
  968. 1818A0E22260422300327157 /* ForgetPasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ForgetPasswordViewController.h; sourceTree = "<group>"; };
  969. 1818A0E42260422300327157 /* UserInfoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoView.h; sourceTree = "<group>"; };
  970. 1818A0E52260422300327157 /* UserInfoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoView.m; sourceTree = "<group>"; };
  971. 1818A0E72260422300327157 /* ForgetPasswordView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ForgetPasswordView.h; sourceTree = "<group>"; };
  972. 1818A0E82260422300327157 /* ForgetPasswordView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ForgetPasswordView.m; sourceTree = "<group>"; };
  973. 1818A0E92260422300327157 /* ForgetPasswordViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ForgetPasswordViewController.mm; sourceTree = "<group>"; };
  974. 1818A0EA2260422300327157 /* PasswordSaveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordSaveViewController.h; sourceTree = "<group>"; };
  975. 1818A0EC2260422300327157 /* ChangePasswordView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangePasswordView.m; sourceTree = "<group>"; };
  976. 1818A0ED2260422300327157 /* ChangePasswordView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordView.h; sourceTree = "<group>"; };
  977. 1818A0EE2260422300327157 /* UserInfoViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserInfoViewController.mm; sourceTree = "<group>"; };
  978. 1818A0F02260422300327157 /* UserInputCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInputCell.h; sourceTree = "<group>"; };
  979. 1818A0F12260422300327157 /* UserInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoCell.h; sourceTree = "<group>"; };
  980. 1818A0F22260422300327157 /* UserInputCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInputCell.m; sourceTree = "<group>"; };
  981. 1818A0F32260422300327157 /* UserInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoCell.m; sourceTree = "<group>"; };
  982. 1818A0F52260422300327157 /* UserBindView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserBindView.h; sourceTree = "<group>"; };
  983. 1818A0F62260422300327157 /* UserBindView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserBindView.m; sourceTree = "<group>"; };
  984. 1818A0F72260422300327157 /* PrivacyPolicyVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrivacyPolicyVC.h; sourceTree = "<group>"; };
  985. 1818A0F82260422300327157 /* RegisterViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RegisterViewController.mm; sourceTree = "<group>"; };
  986. 1818A0F92260422300327157 /* UserBindViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserBindViewController.mm; sourceTree = "<group>"; };
  987. 1818A0FB2260422300327157 /* RegisterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisterView.h; sourceTree = "<group>"; };
  988. 1818A0FC2260422300327157 /* RegisterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegisterView.m; sourceTree = "<group>"; };
  989. 1818A0FD2260422300327157 /* LoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginViewController.xib; sourceTree = "<group>"; };
  990. 1818A0FE2260422300327157 /* LoginViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = LoginViewController.mm; sourceTree = "<group>"; };
  991. 1818A0FF2260422300327157 /* ChangePasswordViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ChangePasswordViewController.mm; sourceTree = "<group>"; };
  992. 1818A1002260422300327157 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  993. 1818A1012260422300327157 /* RegisterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisterViewController.h; sourceTree = "<group>"; };
  994. 1818A1032260422300327157 /* IPAddViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = IPAddViewController.mm; sourceTree = "<group>"; };
  995. 1818A1042260422300327157 /* APLoginConfigVC.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = APLoginConfigVC.mm; sourceTree = "<group>"; };
  996. 1818A1052260422300327157 /* SerialNumAddViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SerialNumAddViewController.mm; sourceTree = "<group>"; };
  997. 1818A1062260422300327157 /* OriginalScaner.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = OriginalScaner.mm; sourceTree = "<group>"; };
  998. 1818A1072260422300327157 /* SerialNumAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialNumAddViewController.h; sourceTree = "<group>"; };
  999. 1818A1082260422300327157 /* APLoginConfigVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APLoginConfigVC.h; sourceTree = "<group>"; };
  1000. 1818A1092260422300327157 /* MyRadarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyRadarView.h; sourceTree = "<group>"; };
  1001. 1818A10A2260422300327157 /* OriginalScaner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OriginalScaner.h; sourceTree = "<group>"; };
  1002. 1818A10B2260422300327157 /* ScanAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScanAnimationView.h; sourceTree = "<group>"; };
  1003. 1818A10D2260422300327157 /* QuickConfigurationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuickConfigurationView.h; sourceTree = "<group>"; };
  1004. 1818A10E2260422300327157 /* QuickConfigurationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuickConfigurationView.m; sourceTree = "<group>"; };
  1005. 1818A10F2260422300327157 /* QuickConfigurationViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = QuickConfigurationViewController.mm; sourceTree = "<group>"; };
  1006. 1818A1112260422300327157 /* AddDeviceInputCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddDeviceInputCell.m; sourceTree = "<group>"; };
  1007. 1818A1122260422300327157 /* SearchDeviceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchDeviceCell.m; sourceTree = "<group>"; };
  1008. 1818A1132260422300327157 /* AddDeviceInputCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddDeviceInputCell.h; sourceTree = "<group>"; };
  1009. 1818A1142260422300327157 /* SearchDeviceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchDeviceCell.h; sourceTree = "<group>"; };
  1010. 1818A1152260422300327157 /* LANSearchViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = LANSearchViewController.mm; sourceTree = "<group>"; };
  1011. 1818A1162260422300327157 /* LANSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LANSearchViewController.h; sourceTree = "<group>"; };
  1012. 1818A1172260422300327157 /* IPAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IPAddViewController.h; sourceTree = "<group>"; };
  1013. 1818A1182260422300327157 /* MyRadarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyRadarView.m; sourceTree = "<group>"; };
  1014. 1818A1192260422300327157 /* ScanAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScanAnimationView.m; sourceTree = "<group>"; };
  1015. 1818A11A2260422300327157 /* QuickConfigurationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuickConfigurationViewController.h; sourceTree = "<group>"; };
  1016. 1818A23A226042B500327157 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  1017. 6A9E328D76A8A71C94C8091A /* Pods-Haishenghai-master.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Haishenghai-master.release.xcconfig"; path = "Pods/Target Support Files/Pods-Haishenghai-master/Pods-Haishenghai-master.release.xcconfig"; sourceTree = "<group>"; };
  1018. 9BE3BA4CD1BDF2DADB10D96F /* Pods-Haishenghai-master.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Haishenghai-master.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Haishenghai-master/Pods-Haishenghai-master.debug.xcconfig"; sourceTree = "<group>"; };
  1019. C604BFF121DF33760001BC82 /* DeveceDetail_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceDetail_VC.h; sourceTree = "<group>"; };
  1020. C604BFF221DF33760001BC82 /* DeveceDetail_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceDetail_VC.m; sourceTree = "<group>"; };
  1021. C604BFF521DF43540001BC82 /* PlaceList_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlaceList_VC.h; sourceTree = "<group>"; };
  1022. C604BFF621DF43540001BC82 /* PlaceList_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlaceList_VC.m; sourceTree = "<group>"; };
  1023. C604BFF921DF459B0001BC82 /* ManageDeveceList_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ManageDeveceList_VC.h; sourceTree = "<group>"; };
  1024. C604BFFA21DF459B0001BC82 /* ManageDeveceList_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ManageDeveceList_VC.m; sourceTree = "<group>"; };
  1025. C604C00121DF47CE0001BC82 /* FireAlarm_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireAlarm_VC.h; sourceTree = "<group>"; };
  1026. C604C00221DF47CE0001BC82 /* FireAlarm_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FireAlarm_VC.m; sourceTree = "<group>"; };
  1027. C604C00521DF48840001BC82 /* PushManage_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PushManage_VC.h; sourceTree = "<group>"; };
  1028. C604C00621DF48840001BC82 /* PushManage_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PushManage_VC.m; sourceTree = "<group>"; };
  1029. C604C00921DF48E60001BC82 /* ProblemViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProblemViewController.h; sourceTree = "<group>"; };
  1030. C604C00A21DF48E60001BC82 /* ProblemViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ProblemViewController.m; sourceTree = "<group>"; };
  1031. C604C00D21DF499B0001BC82 /* Service_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Service_VC.h; sourceTree = "<group>"; };
  1032. C604C00E21DF499B0001BC82 /* Service_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Service_VC.m; sourceTree = "<group>"; };
  1033. C604C01021DF674D0001BC82 /* CustomPlaceView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomPlaceView.h; sourceTree = "<group>"; };
  1034. C604C01121DF674D0001BC82 /* CustomPlaceView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CustomPlaceView.m; sourceTree = "<group>"; };
  1035. C604C01621DF81DF0001BC82 /* DetailDeveceList_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailDeveceList_VC.h; sourceTree = "<group>"; };
  1036. C604C01721DF81DF0001BC82 /* DetailDeveceList_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailDeveceList_VC.m; sourceTree = "<group>"; };
  1037. C60E3F76225B1CBE003C1541 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
  1038. C60E3F77225B1CCA003C1541 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
  1039. C60E3F88225B3F36003C1541 /* CustomAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomAlertView.h; sourceTree = "<group>"; };
  1040. C60E3F89225B3F36003C1541 /* CustomAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CustomAlertView.m; sourceTree = "<group>"; };
  1041. C60F0C01223B4F25004446AA /* Protcol_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Protcol_VC.h; sourceTree = "<group>"; };
  1042. C60F0C02223B4F26004446AA /* Protcol_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Protcol_VC.m; sourceTree = "<group>"; };
  1043. C60F0C0D223B5104004446AA /* privacy_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = privacy_VC.h; sourceTree = "<group>"; };
  1044. C60F0C0E223B5104004446AA /* privacy_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = privacy_VC.m; sourceTree = "<group>"; };
  1045. C60F0C10223B5231004446AA /* QuickLook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLook.framework; path = System/Library/Frameworks/QuickLook.framework; sourceTree = SDKROOT; };
  1046. C6114BB9225DA07C00D6BCE4 /* SXAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SXAlert.m; sourceTree = "<group>"; };
  1047. C6114BBA225DA07D00D6BCE4 /* SXAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SXAlert.h; sourceTree = "<group>"; };
  1048. C6114BBC225DBAED00D6BCE4 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  1049. C6114BBE225E105600D6BCE4 /* CheckMessage_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CheckMessage_VC.h; sourceTree = "<group>"; };
  1050. C6114BBF225E105600D6BCE4 /* CheckMessage_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CheckMessage_VC.m; sourceTree = "<group>"; };
  1051. C6119B3721E2E996008B44BE /* SubmitInformation_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubmitInformation_VC.h; sourceTree = "<group>"; };
  1052. C6119B3821E2E996008B44BE /* SubmitInformation_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubmitInformation_VC.m; sourceTree = "<group>"; };
  1053. C6119B4121E3477A008B44BE /* CommitMessage_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommitMessage_VC.h; sourceTree = "<group>"; };
  1054. C6119B4221E3477A008B44BE /* CommitMessage_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommitMessage_VC.m; sourceTree = "<group>"; };
  1055. C615004A21D7083F00FEBA22 /* Haishenghai-master.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Haishenghai-master.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  1056. C615004D21D7083F00FEBA22 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  1057. C615004E21D7083F00FEBA22 /* AppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = AppDelegate.mm; sourceTree = "<group>"; };
  1058. C615005021D7083F00FEBA22 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
  1059. C615005121D7083F00FEBA22 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
  1060. C615005421D7083F00FEBA22 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  1061. C615005B21D7083F00FEBA22 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1062. C615005C21D7083F00FEBA22 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  1063. C615006221D7084000FEBA22 /* Haishenghai-masterTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Haishenghai-masterTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  1064. C615006621D7084000FEBA22 /* Haishenghai_masterTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Haishenghai_masterTests.m; sourceTree = "<group>"; };
  1065. C615006821D7084000FEBA22 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1066. C615006D21D7084000FEBA22 /* Haishenghai-masterUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Haishenghai-masterUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  1067. C615007121D7084000FEBA22 /* Haishenghai_masterUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Haishenghai_masterUITests.m; sourceTree = "<group>"; };
  1068. C615007321D7084000FEBA22 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1069. C615008A21D70C5800FEBA22 /* BaseLogin_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseLogin_VC.h; sourceTree = "<group>"; };
  1070. C615008B21D70C5800FEBA22 /* BaseLogin_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BaseLogin_VC.m; sourceTree = "<group>"; };
  1071. C615009A21D720A400FEBA22 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1072. C6184823224A2975006A586B /* FireNoticeModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireNoticeModel.h; sourceTree = "<group>"; };
  1073. C6184824224A2975006A586B /* FireNoticeModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FireNoticeModel.m; sourceTree = "<group>"; };
  1074. C618482F224B684D006A586B /* fireAlarm.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = fireAlarm.mp3; sourceTree = "<group>"; };
  1075. C618E43521E0472500A65353 /* ZDYAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ZDYAlertView.h; sourceTree = "<group>"; };
  1076. C618E43621E0472500A65353 /* ZDYAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ZDYAlertView.m; sourceTree = "<group>"; };
  1077. C618E43821E04F5E00A65353 /* DeveceTableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceTableCell.h; sourceTree = "<group>"; };
  1078. C618E43921E04F5E00A65353 /* DeveceTableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceTableCell.m; sourceTree = "<group>"; };
  1079. C618E43E21E05D9200A65353 /* TableheaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TableheaderView.h; sourceTree = "<group>"; };
  1080. C618E43F21E05D9200A65353 /* TableheaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TableheaderView.m; sourceTree = "<group>"; };
  1081. C618E44121E0615400A65353 /* Contacts_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Contacts_VC.h; sourceTree = "<group>"; };
  1082. C618E44221E0615400A65353 /* Contacts_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Contacts_VC.m; sourceTree = "<group>"; };
  1083. C62678D621E0873A00F146BC /* MessageTableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageTableCell.h; sourceTree = "<group>"; };
  1084. C62678D721E0873A00F146BC /* MessageTableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageTableCell.m; sourceTree = "<group>"; };
  1085. C62F19BE223C9561001696B2 /* UserRegister_VC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserRegister_VC.m; sourceTree = "<group>"; };
  1086. C62F19C0223C9579001696B2 /* UserLogin_VC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserLogin_VC.m; sourceTree = "<group>"; };
  1087. C62F19C2223CF825001696B2 /* troubleSiteModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = troubleSiteModel.h; sourceTree = "<group>"; };
  1088. C62F19C3223CF825001696B2 /* troubleSiteModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = troubleSiteModel.m; sourceTree = "<group>"; };
  1089. C63D540B222A2C92002723EB /* Setting_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Setting_VC.h; sourceTree = "<group>"; };
  1090. C63D540C222A2C92002723EB /* Setting_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Setting_VC.m; sourceTree = "<group>"; };
  1091. C63F6BE421F2B0DD00868CE6 /* DetailTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailTableViewCell.h; sourceTree = "<group>"; };
  1092. C63F6BE521F2B0DD00868CE6 /* DetailTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailTableViewCell.m; sourceTree = "<group>"; };
  1093. C640782D21E1FF580070B632 /* FireManage_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireManage_VC.h; sourceTree = "<group>"; };
  1094. C640782E21E1FF580070B632 /* FireManage_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FireManage_VC.m; sourceTree = "<group>"; };
  1095. C6413D3A21E1A3BF00605186 /* Recorddetail_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Recorddetail_VC.h; sourceTree = "<group>"; };
  1096. C6413D3B21E1A3BF00605186 /* Recorddetail_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Recorddetail_VC.m; sourceTree = "<group>"; };
  1097. C643407421EAD887006A5D72 /* PersonCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PersonCell.h; sourceTree = "<group>"; };
  1098. C643407521EAD887006A5D72 /* PersonCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PersonCell.m; sourceTree = "<group>"; };
  1099. C6457D7221FAAB2D00CD6276 /* DeveceTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceTableViewController.h; sourceTree = "<group>"; };
  1100. C6457D7321FAAB2D00CD6276 /* DeveceTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceTableViewController.m; sourceTree = "<group>"; };
  1101. C6457D7521FAAB3F00CD6276 /* SiteTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SiteTableViewController.h; sourceTree = "<group>"; };
  1102. C6457D7621FAAB3F00CD6276 /* SiteTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SiteTableViewController.m; sourceTree = "<group>"; };
  1103. C6457D7B21FAFEB000CD6276 /* About_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = About_VC.h; sourceTree = "<group>"; };
  1104. C6457D7C21FAFEB000CD6276 /* About_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = About_VC.m; sourceTree = "<group>"; };
  1105. C647015F2223EC24009D2FCF /* BottomView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BottomView.h; sourceTree = "<group>"; };
  1106. C64701602223EC24009D2FCF /* BottomView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BottomView.m; sourceTree = "<group>"; };
  1107. C6472CC021F6C2A600F5CD09 /* PlaceModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlaceModel.h; sourceTree = "<group>"; };
  1108. C6472CC121F6C2A600F5CD09 /* PlaceModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlaceModel.m; sourceTree = "<group>"; };
  1109. C6472CC321F6E3D100F5CD09 /* deveceListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = deveceListModel.h; sourceTree = "<group>"; };
  1110. C6472CC421F6E3D100F5CD09 /* deveceListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = deveceListModel.m; sourceTree = "<group>"; };
  1111. C6472CC621F71B5300F5CD09 /* uploadModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = uploadModel.m; sourceTree = "<group>"; };
  1112. C6472CC721F71B5400F5CD09 /* uploadModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uploadModel.h; sourceTree = "<group>"; };
  1113. C6478F7421F5ABD1004BB536 /* deveceModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = deveceModel.h; sourceTree = "<group>"; };
  1114. C6478F7521F5ABD1004BB536 /* deveceModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = deveceModel.m; sourceTree = "<group>"; };
  1115. C64F214F2226586400DBD297 /* SelectBoxView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectBoxView.h; sourceTree = "<group>"; };
  1116. C64F21502226586400DBD297 /* SelectBoxView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectBoxView.m; sourceTree = "<group>"; };
  1117. C64FE3D221F4271000ACFCA1 /* EditLocationVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EditLocationVC.h; sourceTree = "<group>"; };
  1118. C64FE3D321F4271000ACFCA1 /* EditLocationVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EditLocationVC.m; sourceTree = "<group>"; };
  1119. C65726DC21D8A10D0013E52F /* ResetPassword_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetPassword_VC.h; sourceTree = "<group>"; };
  1120. C65726DD21D8A10D0013E52F /* ResetPassword_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResetPassword_VC.m; sourceTree = "<group>"; };
  1121. C65726E321D8ACAA0013E52F /* Person_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Person_VC.h; sourceTree = "<group>"; };
  1122. C65726E421D8ACAA0013E52F /* Person_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Person_VC.m; sourceTree = "<group>"; };
  1123. C65726E621D8ACF10013E52F /* Message_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Message_VC.h; sourceTree = "<group>"; };
  1124. C65726E721D8ACF10013E52F /* Message_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Message_VC.m; sourceTree = "<group>"; };
  1125. C65726E921D8AD1F0013E52F /* DeveceList_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceList_VC.h; sourceTree = "<group>"; };
  1126. C65726EA21D8AD1F0013E52F /* DeveceList_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceList_VC.m; sourceTree = "<group>"; };
  1127. C6576FF42217A2A00022B990 /* contactModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = contactModel.h; sourceTree = "<group>"; };
  1128. C6576FF52217A2A00022B990 /* contactModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = contactModel.m; sourceTree = "<group>"; };
  1129. C6576FF62217A2A00022B990 /* troubleDeveceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = troubleDeveceModel.m; sourceTree = "<group>"; };
  1130. C6576FF72217A2A00022B990 /* troubleDeveceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = troubleDeveceModel.h; sourceTree = "<group>"; };
  1131. C6576FFA22182A6B0022B990 /* NSMutableDictionary+NullSaf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+NullSaf.h"; sourceTree = "<group>"; };
  1132. C6576FFB22182A6C0022B990 /* NSMutableDictionary+NullSaf.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+NullSaf.m"; sourceTree = "<group>"; };
  1133. C65FCE4121DDE1E400CA21F8 /* popViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = popViewController.h; sourceTree = "<group>"; };
  1134. C65FCE4221DDE1E400CA21F8 /* popViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = popViewController.m; sourceTree = "<group>"; };
  1135. C65FCE4421DDF9C000CA21F8 /* AddDevece_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddDevece_VC.h; sourceTree = "<group>"; };
  1136. C65FCE4521DDF9C000CA21F8 /* AddDevece_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddDevece_VC.m; sourceTree = "<group>"; };
  1137. C65FCE6621DE1F7900CA21F8 /* CollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CollectionViewCell.h; sourceTree = "<group>"; };
  1138. C65FCE6721DE1F7900CA21F8 /* CollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CollectionViewCell.m; sourceTree = "<group>"; };
  1139. C65FCE7121DE225F00CA21F8 /* ScanViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanViewController.h; sourceTree = "<group>"; };
  1140. C65FCE7221DE225F00CA21F8 /* ScanViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanViewController.m; sourceTree = "<group>"; };
  1141. C6615DC221E9BA330067BF83 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  1142. C6615DC421E9BA620067BF83 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  1143. C6615DC621E9BAB70067BF83 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  1144. C6615DC821E9BAD30067BF83 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
  1145. C6615DCA21E9BAEB0067BF83 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1146. C6615DCC21E9BAF90067BF83 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  1147. C6615DD021E9BDD60067BF83 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
  1148. C6615DD121E9BE350067BF83 /* AMap.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AMap.bundle; sourceTree = "<group>"; };
  1149. C6615DD421E9C6CC0067BF83 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = "<group>"; };
  1150. C6615DD621E9C74C0067BF83 /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = "<group>"; };
  1151. C6615DD721E9C7520067BF83 /* MAMapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = MAMapKit.framework; sourceTree = "<group>"; };
  1152. C6615DDA21E9CF170067BF83 /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = "<group>"; };
  1153. C6615DDC21E9CFC70067BF83 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
  1154. C668A3002238A63500F866B0 /* detatilDeviceModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = detatilDeviceModel.h; sourceTree = "<group>"; };
  1155. C668A3012238A63500F866B0 /* detatilDeviceModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = detatilDeviceModel.m; sourceTree = "<group>"; };
  1156. C66E858C21EEEF16001997E0 /* popMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = popMenuView.m; sourceTree = "<group>"; };
  1157. C66E858D21EEEF17001997E0 /* popMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = popMenuView.h; sourceTree = "<group>"; };
  1158. C6834EBA21F9605500E2DA26 /* LeftTableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LeftTableCell.h; sourceTree = "<group>"; };
  1159. C6834EBB21F9605500E2DA26 /* LeftTableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LeftTableCell.m; sourceTree = "<group>"; };
  1160. C6834EBD21F9607200E2DA26 /* RightTableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RightTableCell.h; sourceTree = "<group>"; };
  1161. C6834EBE21F9607200E2DA26 /* RightTableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RightTableCell.m; sourceTree = "<group>"; };
  1162. C68433132240EBF9001D789D /* Haishenghai-master.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Haishenghai-master.entitlements"; sourceTree = "<group>"; };
  1163. C687A04921E71905003485B6 /* PlaceDetail_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlaceDetail_VC.h; sourceTree = "<group>"; };
  1164. C687A04A21E71905003485B6 /* PlaceDetail_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlaceDetail_VC.m; sourceTree = "<group>"; };
  1165. C687A04C21E7380A003485B6 /* FireAlarmCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireAlarmCell.h; sourceTree = "<group>"; };
  1166. C687A04D21E7380A003485B6 /* FireAlarmCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FireAlarmCell.m; sourceTree = "<group>"; };
  1167. C687A04F21E73DC2003485B6 /* DeveceListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceListCell.h; sourceTree = "<group>"; };
  1168. C687A05021E73DC2003485B6 /* DeveceListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceListCell.m; sourceTree = "<group>"; };
  1169. C687A05221E74685003485B6 /* PushManageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PushManageCell.h; sourceTree = "<group>"; };
  1170. C687A05321E74685003485B6 /* PushManageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PushManageCell.m; sourceTree = "<group>"; };
  1171. C68BEE8821D7589D00639184 /* Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Header.h; sourceTree = "<group>"; };
  1172. C68BEE8C21D75B4300639184 /* UserLogin_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserLogin_VC.h; sourceTree = "<group>"; };
  1173. C68BEE8F21D75B8900639184 /* UserRegister_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserRegister_VC.h; sourceTree = "<group>"; };
  1174. C6C071CF2254C44100474188 /* THDatePickerView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = THDatePickerView.h; sourceTree = "<group>"; };
  1175. C6C071D22255D66800474188 /* DataSourceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataSourceManager.m; sourceTree = "<group>"; };
  1176. C6C071D32255D66900474188 /* DataSourceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataSourceManager.h; sourceTree = "<group>"; };
  1177. C6C071D52255EEC800474188 /* SitTabCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SitTabCell.h; sourceTree = "<group>"; };
  1178. C6C071D62255EECE00474188 /* SitTabCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SitTabCell.m; sourceTree = "<group>"; };
  1179. C6C071D82255FE3200474188 /* THDatePickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = THDatePickerView.m; sourceTree = "<group>"; };
  1180. C6ED0E0821DDBD580064FEAB /* Addplace_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Addplace_VC.h; sourceTree = "<group>"; };
  1181. C6ED0E0921DDBD580064FEAB /* Addplace_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Addplace_VC.m; sourceTree = "<group>"; };
  1182. C6F75F4221E4435E00D1B606 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
  1183. /* End PBXFileReference section */
  1184. /* Begin PBXFrameworksBuildPhase section */
  1185. C615004721D7083F00FEBA22 /* Frameworks */ = {
  1186. isa = PBXFrameworksBuildPhase;
  1187. buildActionMask = 2147483647;
  1188. files = (
  1189. 1818A23B226042B500327157 /* AdSupport.framework in Frameworks */,
  1190. 18189A632260343900327157 /* libsqlite3.0.tbd in Frameworks */,
  1191. 18189A61226023B300327157 /* VideoToolbox.framework in Frameworks */,
  1192. 1818A1BF2260422300327157 /* FunSDK.framework in Frameworks */,
  1193. C6615DC921E9BADB0067BF83 /* GLKit.framework in Frameworks */,
  1194. 18189A5F2260239A00327157 /* MediaPlayer.framework in Frameworks */,
  1195. 1818A1BB2260422300327157 /* libFSCalendar.a in Frameworks */,
  1196. 18189A5D2260238600327157 /* CoreMedia.framework in Frameworks */,
  1197. 18189A5B2260236200327157 /* AudioToolbox.framework in Frameworks */,
  1198. 18189A582260233B00327157 /* UserNotifications.framework in Frameworks */,
  1199. 18189A592260233B00327157 /* UserNotificationsUI.framework in Frameworks */,
  1200. 18189A552260232F00327157 /* AssetsLibrary.framework in Frameworks */,
  1201. 18189A522260232400327157 /* AVFoundation.framework in Frameworks */,
  1202. 18189A532260232400327157 /* AVKit.framework in Frameworks */,
  1203. C6615DCB21E9BAEB0067BF83 /* libz.tbd in Frameworks */,
  1204. 18189A4F226022FE00327157 /* libbz2.tbd in Frameworks */,
  1205. 18189A4D226022F600327157 /* libiconv.tbd in Frameworks */,
  1206. 1818A1B92260422300327157 /* libstdc++.6.0.9.tbd in Frameworks */,
  1207. 18189A4B226022ED00327157 /* libresolv.tbd in Frameworks */,
  1208. 1818A1BE2260422300327157 /* XMNetInterface.framework in Frameworks */,
  1209. 18189A48226022DB00327157 /* OpenAL.framework in Frameworks */,
  1210. 18189A49226022DB00327157 /* OpenGLES.framework in Frameworks */,
  1211. C6114BBD225DBAFC00D6BCE4 /* QuartzCore.framework in Frameworks */,
  1212. C6615DDD21E9CFD60067BF83 /* ExternalAccessory.framework in Frameworks */,
  1213. C6615DDB21E9CF170067BF83 /* AMapLocationKit.framework in Frameworks */,
  1214. 1818A1BA2260422300327157 /* libfisheye.a in Frameworks */,
  1215. C6615DD521E9C6CD0067BF83 /* AMapSearchKit.framework in Frameworks */,
  1216. C6615DD821E9C7520067BF83 /* AMapFoundationKit.framework in Frameworks */,
  1217. C6615DD921E9C7520067BF83 /* MAMapKit.framework in Frameworks */,
  1218. C6615DC721E9BAC10067BF83 /* Security.framework in Frameworks */,
  1219. C6615DC521E9BA730067BF83 /* CoreTelephony.framework in Frameworks */,
  1220. C6615DC321E9BA4F0067BF83 /* SystemConfiguration.framework in Frameworks */,
  1221. C6615DCD21E9BAF90067BF83 /* libc++.tbd in Frameworks */,
  1222. E56AAE1437FDC705A2AE1E75 /* libPods-Haishenghai-master.a in Frameworks */,
  1223. );
  1224. runOnlyForDeploymentPostprocessing = 0;
  1225. };
  1226. C615005F21D7084000FEBA22 /* Frameworks */ = {
  1227. isa = PBXFrameworksBuildPhase;
  1228. buildActionMask = 2147483647;
  1229. files = (
  1230. );
  1231. runOnlyForDeploymentPostprocessing = 0;
  1232. };
  1233. C615006A21D7084000FEBA22 /* Frameworks */ = {
  1234. isa = PBXFrameworksBuildPhase;
  1235. buildActionMask = 2147483647;
  1236. files = (
  1237. );
  1238. runOnlyForDeploymentPostprocessing = 0;
  1239. };
  1240. /* End PBXFrameworksBuildPhase section */
  1241. /* Begin PBXGroup section */
  1242. 18189E4F2260422100327157 /* tool */ = {
  1243. isa = PBXGroup;
  1244. children = (
  1245. 18189E502260422100327157 /* DeviceConfigManager */,
  1246. 18189EBC2260422200327157 /* XYShowAlertView.m */,
  1247. 18189EBD2260422200327157 /* AccountManager */,
  1248. 18189EC72260422200327157 /* Common */,
  1249. 18189EEA2260422200327157 /* XYShowAlertView.h */,
  1250. 18189EEB2260422200327157 /* MediaPlayControl */,
  1251. 18189EF62260422200327157 /* sdk相关 */,
  1252. 18189F832260422200327157 /* SDKBaseFile */,
  1253. 18189FF52260422200327157 /* Device */,
  1254. 1818A0062260422200327157 /* ViewController */,
  1255. );
  1256. path = tool;
  1257. sourceTree = SOURCE_ROOT;
  1258. };
  1259. 18189E502260422100327157 /* DeviceConfigManager */ = {
  1260. isa = PBXGroup;
  1261. children = (
  1262. 18189E512260422100327157 /* SystemResetConfig */,
  1263. 18189E542260422100327157 /* TimeConfig */,
  1264. 18189E592260422100327157 /* AlarmMessageConfig */,
  1265. 18189E5E2260422100327157 /* HumanDetectionConfig */,
  1266. 18189E612260422100327157 /* CommonConfig */,
  1267. 18189E642260422100327157 /* CloudAbilityConfig */,
  1268. 18189E732260422200327157 /* EncodeConfig */,
  1269. 18189E782260422200327157 /* VideoRotationConfig */,
  1270. 18189E7D2260422200327157 /* StorageConfig */,
  1271. 18189E842260422200327157 /* SystemInfoConfig */,
  1272. 18189E872260422200327157 /* RecordConfig */,
  1273. 18189E8C2260422200327157 /* AnalyzeConfig */,
  1274. 18189E912260422200327157 /* AlarmPIRConfig */,
  1275. 18189E942260422200327157 /* AlarmDetectConfig */,
  1276. 18189E972260422200327157 /* PasswordConfig */,
  1277. 18189E9A2260422200327157 /* SystemFunctionConfig */,
  1278. 18189E9D2260422200327157 /* UpgradeConfig */,
  1279. 18189EA22260422200327157 /* DeviceFile */,
  1280. 18189EB32260422200327157 /* BuzzerConfig */,
  1281. 18189EB62260422200327157 /* ShutDowmTimeConfig */,
  1282. 18189EB92260422200327157 /* WaterMarkConfig */,
  1283. );
  1284. path = DeviceConfigManager;
  1285. sourceTree = "<group>";
  1286. };
  1287. 18189E512260422100327157 /* SystemResetConfig */ = {
  1288. isa = PBXGroup;
  1289. children = (
  1290. 18189E522260422100327157 /* SystemResetConfig.h */,
  1291. 18189E532260422100327157 /* SystemResetConfig.mm */,
  1292. );
  1293. path = SystemResetConfig;
  1294. sourceTree = "<group>";
  1295. };
  1296. 18189E542260422100327157 /* TimeConfig */ = {
  1297. isa = PBXGroup;
  1298. children = (
  1299. 18189E552260422100327157 /* TimeSynDataSource.m */,
  1300. 18189E562260422100327157 /* TimeSynConfig.h */,
  1301. 18189E572260422100327157 /* TimeSynDataSource.h */,
  1302. 18189E582260422100327157 /* TimeSynConfig.mm */,
  1303. );
  1304. path = TimeConfig;
  1305. sourceTree = "<group>";
  1306. };
  1307. 18189E592260422100327157 /* AlarmMessageConfig */ = {
  1308. isa = PBXGroup;
  1309. children = (
  1310. 18189E5A2260422100327157 /* AlarmMessageInfo.m */,
  1311. 18189E5B2260422100327157 /* AlarmMessageConfig.h */,
  1312. 18189E5C2260422100327157 /* AlarmMessageConfig.mm */,
  1313. 18189E5D2260422100327157 /* AlarmMessageInfo.h */,
  1314. );
  1315. path = AlarmMessageConfig;
  1316. sourceTree = "<group>";
  1317. };
  1318. 18189E5E2260422100327157 /* HumanDetectionConfig */ = {
  1319. isa = PBXGroup;
  1320. children = (
  1321. 18189E5F2260422100327157 /* HumanDetectionConfig.h */,
  1322. 18189E602260422100327157 /* HumanDetectionConfig.mm */,
  1323. );
  1324. path = HumanDetectionConfig;
  1325. sourceTree = "<group>";
  1326. };
  1327. 18189E612260422100327157 /* CommonConfig */ = {
  1328. isa = PBXGroup;
  1329. children = (
  1330. 18189E622260422100327157 /* CommonConfig.mm */,
  1331. 18189E632260422100327157 /* CommonConfig.h */,
  1332. );
  1333. path = CommonConfig;
  1334. sourceTree = "<group>";
  1335. };
  1336. 18189E642260422100327157 /* CloudAbilityConfig */ = {
  1337. isa = PBXGroup;
  1338. children = (
  1339. 18189E652260422100327157 /* CloudVideoConfig */,
  1340. 18189E6A2260422100327157 /* CloudPhotoConfg */,
  1341. 18189E6F2260422200327157 /* CloudAbilityDataSource.m */,
  1342. 18189E702260422200327157 /* CloudAbilityConfig.h */,
  1343. 18189E712260422200327157 /* CloudAbilityDataSource.h */,
  1344. 18189E722260422200327157 /* CloudAbilityConfig.mm */,
  1345. );
  1346. path = CloudAbilityConfig;
  1347. sourceTree = "<group>";
  1348. };
  1349. 18189E652260422100327157 /* CloudVideoConfig */ = {
  1350. isa = PBXGroup;
  1351. children = (
  1352. 18189E662260422100327157 /* CLouldVideoResource.h */,
  1353. 18189E672260422100327157 /* CloudVideoConfig.mm */,
  1354. 18189E682260422100327157 /* CloudVideoConfig.h */,
  1355. 18189E692260422100327157 /* CLouldVideoResource.m */,
  1356. );
  1357. path = CloudVideoConfig;
  1358. sourceTree = "<group>";
  1359. };
  1360. 18189E6A2260422100327157 /* CloudPhotoConfg */ = {
  1361. isa = PBXGroup;
  1362. children = (
  1363. 18189E6B2260422100327157 /* XMAlarmMsgResource.m */,
  1364. 18189E6C2260422100327157 /* CloudPhotoConfig.mm */,
  1365. 18189E6D2260422200327157 /* XMAlarmMsgResource.h */,
  1366. 18189E6E2260422200327157 /* CloudPhotoConfig.h */,
  1367. );
  1368. path = CloudPhotoConfg;
  1369. sourceTree = "<group>";
  1370. };
  1371. 18189E732260422200327157 /* EncodeConfig */ = {
  1372. isa = PBXGroup;
  1373. children = (
  1374. 18189E742260422200327157 /* EncodeConfig.h */,
  1375. 18189E752260422200327157 /* EncodeDataSourse.h */,
  1376. 18189E762260422200327157 /* EncodeConfig.mm */,
  1377. 18189E772260422200327157 /* EncodeDataSourse.m */,
  1378. );
  1379. path = EncodeConfig;
  1380. sourceTree = "<group>";
  1381. };
  1382. 18189E782260422200327157 /* VideoRotationConfig */ = {
  1383. isa = PBXGroup;
  1384. children = (
  1385. 18189E792260422200327157 /* VodeoRotainDataSource.m */,
  1386. 18189E7A2260422200327157 /* VideoRotainConfig.mm */,
  1387. 18189E7B2260422200327157 /* VideoRotainConfig.h */,
  1388. 18189E7C2260422200327157 /* VodeoRotainDataSource.h */,
  1389. );
  1390. path = VideoRotationConfig;
  1391. sourceTree = "<group>";
  1392. };
  1393. 18189E7D2260422200327157 /* StorageConfig */ = {
  1394. isa = PBXGroup;
  1395. children = (
  1396. 18189E7E2260422200327157 /* StorageConfig.h */,
  1397. 18189E7F2260422200327157 /* DataSource.m */,
  1398. 18189E802260422200327157 /* Storage.m */,
  1399. 18189E812260422200327157 /* StorageConfig.mm */,
  1400. 18189E822260422200327157 /* Storage.h */,
  1401. 18189E832260422200327157 /* DataSource.h */,
  1402. );
  1403. path = StorageConfig;
  1404. sourceTree = "<group>";
  1405. };
  1406. 18189E842260422200327157 /* SystemInfoConfig */ = {
  1407. isa = PBXGroup;
  1408. children = (
  1409. 18189E852260422200327157 /* SystemInfoConfig.mm */,
  1410. 18189E862260422200327157 /* SystemInfoConfig.h */,
  1411. );
  1412. path = SystemInfoConfig;
  1413. sourceTree = "<group>";
  1414. };
  1415. 18189E872260422200327157 /* RecordConfig */ = {
  1416. isa = PBXGroup;
  1417. children = (
  1418. 18189E882260422200327157 /* RecordDataSourse.h */,
  1419. 18189E892260422200327157 /* RecordConfig.mm */,
  1420. 18189E8A2260422200327157 /* RecordConfig.h */,
  1421. 18189E8B2260422200327157 /* RecordDataSourse.m */,
  1422. );
  1423. path = RecordConfig;
  1424. sourceTree = "<group>";
  1425. };
  1426. 18189E8C2260422200327157 /* AnalyzeConfig */ = {
  1427. isa = PBXGroup;
  1428. children = (
  1429. 18189E8D2260422200327157 /* AnalyzeDataSource.h */,
  1430. 18189E8E2260422200327157 /* AnalyzeDataSource.m */,
  1431. 18189E8F2260422200327157 /* AnalyzeConfig.h */,
  1432. 18189E902260422200327157 /* AnalyzeConfig.mm */,
  1433. );
  1434. path = AnalyzeConfig;
  1435. sourceTree = "<group>";
  1436. };
  1437. 18189E912260422200327157 /* AlarmPIRConfig */ = {
  1438. isa = PBXGroup;
  1439. children = (
  1440. 18189E922260422200327157 /* AlarmPIRConfig.h */,
  1441. 18189E932260422200327157 /* AlarmPIRConfig.mm */,
  1442. );
  1443. path = AlarmPIRConfig;
  1444. sourceTree = "<group>";
  1445. };
  1446. 18189E942260422200327157 /* AlarmDetectConfig */ = {
  1447. isa = PBXGroup;
  1448. children = (
  1449. 18189E952260422200327157 /* AlarmDetectConfig.h */,
  1450. 18189E962260422200327157 /* AlarmDetectConfig.mm */,
  1451. );
  1452. path = AlarmDetectConfig;
  1453. sourceTree = "<group>";
  1454. };
  1455. 18189E972260422200327157 /* PasswordConfig */ = {
  1456. isa = PBXGroup;
  1457. children = (
  1458. 18189E982260422200327157 /* PasswordConfig.h */,
  1459. 18189E992260422200327157 /* PasswordConfig.mm */,
  1460. );
  1461. path = PasswordConfig;
  1462. sourceTree = "<group>";
  1463. };
  1464. 18189E9A2260422200327157 /* SystemFunctionConfig */ = {
  1465. isa = PBXGroup;
  1466. children = (
  1467. 18189E9B2260422200327157 /* SystemFunctionConfig.mm */,
  1468. 18189E9C2260422200327157 /* SystemFunctionConfig.h */,
  1469. );
  1470. path = SystemFunctionConfig;
  1471. sourceTree = "<group>";
  1472. };
  1473. 18189E9D2260422200327157 /* UpgradeConfig */ = {
  1474. isa = PBXGroup;
  1475. children = (
  1476. 18189E9E2260422200327157 /* UpgradeConfig.h */,
  1477. 18189E9F2260422200327157 /* UpgradeDataSource.h */,
  1478. 18189EA02260422200327157 /* UpgradeDataSource.m */,
  1479. 18189EA12260422200327157 /* UpgradeConfig.mm */,
  1480. );
  1481. path = UpgradeConfig;
  1482. sourceTree = "<group>";
  1483. };
  1484. 18189EA22260422200327157 /* DeviceFile */ = {
  1485. isa = PBXGroup;
  1486. children = (
  1487. 18189EA32260422200327157 /* PictureFileConfig */,
  1488. 18189EAA2260422200327157 /* VideoFileConfig */,
  1489. );
  1490. path = DeviceFile;
  1491. sourceTree = "<group>";
  1492. };
  1493. 18189EA32260422200327157 /* PictureFileConfig */ = {
  1494. isa = PBXGroup;
  1495. children = (
  1496. 18189EA42260422200327157 /* PictureInfo.m */,
  1497. 18189EA52260422200327157 /* PictureFileConfig.h */,
  1498. 18189EA62260422200327157 /* PictureFileDownloadConfig.mm */,
  1499. 18189EA72260422200327157 /* PictureInfo.h */,
  1500. 18189EA82260422200327157 /* PictureFileConfig.mm */,
  1501. 18189EA92260422200327157 /* PictureFileDownloadConfig.h */,
  1502. );
  1503. path = PictureFileConfig;
  1504. sourceTree = "<group>";
  1505. };
  1506. 18189EAA2260422200327157 /* VideoFileConfig */ = {
  1507. isa = PBXGroup;
  1508. children = (
  1509. 18189EAB2260422200327157 /* VideoFileDownloadConfig.h */,
  1510. 18189EAC2260422200327157 /* VideoFileConfig.h */,
  1511. 18189EAD2260422200327157 /* TimeInfo.m */,
  1512. 18189EAE2260422200327157 /* RecordInfo.h */,
  1513. 18189EAF2260422200327157 /* VideoFileConfig.mm */,
  1514. 18189EB02260422200327157 /* VideoFileDownloadConfig.mm */,
  1515. 18189EB12260422200327157 /* RecordInfo.m */,
  1516. 18189EB22260422200327157 /* TimeInfo.h */,
  1517. );
  1518. path = VideoFileConfig;
  1519. sourceTree = "<group>";
  1520. };
  1521. 18189EB32260422200327157 /* BuzzerConfig */ = {
  1522. isa = PBXGroup;
  1523. children = (
  1524. 18189EB42260422200327157 /* BuzzerConfig.mm */,
  1525. 18189EB52260422200327157 /* BuzzerConfig.h */,
  1526. );
  1527. path = BuzzerConfig;
  1528. sourceTree = "<group>";
  1529. };
  1530. 18189EB62260422200327157 /* ShutDowmTimeConfig */ = {
  1531. isa = PBXGroup;
  1532. children = (
  1533. 18189EB72260422200327157 /* ShutDownTimeConfig.mm */,
  1534. 18189EB82260422200327157 /* ShutDownTimeConfig.h */,
  1535. );
  1536. path = ShutDowmTimeConfig;
  1537. sourceTree = "<group>";
  1538. };
  1539. 18189EB92260422200327157 /* WaterMarkConfig */ = {
  1540. isa = PBXGroup;
  1541. children = (
  1542. 18189EBA2260422200327157 /* WaterMarkConfig.mm */,
  1543. 18189EBB2260422200327157 /* WaterMarkConfig.h */,
  1544. );
  1545. path = WaterMarkConfig;
  1546. sourceTree = "<group>";
  1547. };
  1548. 18189EBD2260422200327157 /* AccountManager */ = {
  1549. isa = PBXGroup;
  1550. children = (
  1551. 18189EBE2260422200327157 /* AlarmManager */,
  1552. 18189EC12260422200327157 /* UserAccountManager */,
  1553. 18189EC42260422200327157 /* DeviceManager */,
  1554. );
  1555. path = AccountManager;
  1556. sourceTree = "<group>";
  1557. };
  1558. 18189EBE2260422200327157 /* AlarmManager */ = {
  1559. isa = PBXGroup;
  1560. children = (
  1561. 18189EBF2260422200327157 /* AlarmManager.h */,
  1562. 18189EC02260422200327157 /* AlarmManager.mm */,
  1563. );
  1564. path = AlarmManager;
  1565. sourceTree = "<group>";
  1566. };
  1567. 18189EC12260422200327157 /* UserAccountManager */ = {
  1568. isa = PBXGroup;
  1569. children = (
  1570. 18189EC22260422200327157 /* UserAccountModel.mm */,
  1571. 18189EC32260422200327157 /* UserAccountModel.h */,
  1572. );
  1573. path = UserAccountManager;
  1574. sourceTree = "<group>";
  1575. };
  1576. 18189EC42260422200327157 /* DeviceManager */ = {
  1577. isa = PBXGroup;
  1578. children = (
  1579. 18189EC52260422200327157 /* DeviceManager.h */,
  1580. 18189EC62260422200327157 /* DeviceManager.mm */,
  1581. );
  1582. path = DeviceManager;
  1583. sourceTree = "<group>";
  1584. };
  1585. 18189EC72260422200327157 /* Common */ = {
  1586. isa = PBXGroup;
  1587. children = (
  1588. 18189EC82260422200327157 /* MessgaeStringUI */,
  1589. 18189ECB2260422200327157 /* LanguageControl */,
  1590. 18189ECE2260422200327157 /* Utils */,
  1591. 18189ED12260422200327157 /* NSStringControl */,
  1592. 18189EDF2260422200327157 /* FileControl */,
  1593. 18189EE22260422200327157 /* NSUserDefault */,
  1594. 18189EE52260422200327157 /* LoginControl */,
  1595. );
  1596. path = Common;
  1597. sourceTree = "<group>";
  1598. };
  1599. 18189EC82260422200327157 /* MessgaeStringUI */ = {
  1600. isa = PBXGroup;
  1601. children = (
  1602. 18189EC92260422200327157 /* MessageUI.h */,
  1603. 18189ECA2260422200327157 /* MessageUI.mm */,
  1604. );
  1605. path = MessgaeStringUI;
  1606. sourceTree = "<group>";
  1607. };
  1608. 18189ECB2260422200327157 /* LanguageControl */ = {
  1609. isa = PBXGroup;
  1610. children = (
  1611. 18189ECC2260422200327157 /* LanguageManager.mm */,
  1612. 18189ECD2260422200327157 /* LanguageManager.h */,
  1613. );
  1614. path = LanguageControl;
  1615. sourceTree = "<group>";
  1616. };
  1617. 18189ECE2260422200327157 /* Utils */ = {
  1618. isa = PBXGroup;
  1619. children = (
  1620. 18189ECF2260422200327157 /* UIView+Layout.m */,
  1621. 18189ED02260422200327157 /* UIView+Layout.h */,
  1622. );
  1623. path = Utils;
  1624. sourceTree = "<group>";
  1625. };
  1626. 18189ED12260422200327157 /* NSStringControl */ = {
  1627. isa = PBXGroup;
  1628. children = (
  1629. 18189ED22260422200327157 /* NSString+Category.h */,
  1630. 18189ED32260422200327157 /* MyStringManager.h */,
  1631. 18189ED42260422200327157 /* NSString+Extention.h */,
  1632. 18189ED52260422200327157 /* NSString+Path.h */,
  1633. 18189ED62260422200327157 /* NSDate+TimeCategory.m */,
  1634. 18189ED72260422200327157 /* GTMNSString+HTML.h */,
  1635. 18189ED82260422200327157 /* NSString+Category.m */,
  1636. 18189ED92260422200327157 /* GTMDefines.h */,
  1637. 18189EDA2260422200327157 /* NSDate+TimeCategory.h */,
  1638. 18189EDB2260422200327157 /* NSString+Path.m */,
  1639. 18189EDC2260422200327157 /* NSString+Extention.m */,
  1640. 18189EDD2260422200327157 /* MyStringManager.m */,
  1641. 18189EDE2260422200327157 /* GTMNSString+HTML.m */,
  1642. );
  1643. path = NSStringControl;
  1644. sourceTree = "<group>";
  1645. };
  1646. 18189EDF2260422200327157 /* FileControl */ = {
  1647. isa = PBXGroup;
  1648. children = (
  1649. 18189EE02260422200327157 /* FileControl.h */,
  1650. 18189EE12260422200327157 /* FileControl.mm */,
  1651. );
  1652. path = FileControl;
  1653. sourceTree = "<group>";
  1654. };
  1655. 18189EE22260422200327157 /* NSUserDefault */ = {
  1656. isa = PBXGroup;
  1657. children = (
  1658. 18189EE32260422200327157 /* NSUserDefaultData.h */,
  1659. 18189EE42260422200327157 /* NSUserDefaultData.m */,
  1660. );
  1661. path = NSUserDefault;
  1662. sourceTree = "<group>";
  1663. };
  1664. 18189EE52260422200327157 /* LoginControl */ = {
  1665. isa = PBXGroup;
  1666. children = (
  1667. 18189EE62260422200327157 /* LoginShowControl.m */,
  1668. 18189EE72260422200327157 /* CommonControl.h */,
  1669. 18189EE82260422200327157 /* LoginShowControl.h */,
  1670. 18189EE92260422200327157 /* CommonControl.m */,
  1671. );
  1672. path = LoginControl;
  1673. sourceTree = "<group>";
  1674. };
  1675. 18189EEB2260422200327157 /* MediaPlayControl */ = {
  1676. isa = PBXGroup;
  1677. children = (
  1678. 18189EEC2260422200327157 /* MediaPlaybackControl.h */,
  1679. 18189EED2260422200327157 /* VideoContentDefination.h */,
  1680. 18189EEE2260422200327157 /* TalkControl */,
  1681. 18189EF32260422200327157 /* MediaplayerControl.h */,
  1682. 18189EF42260422200327157 /* MediaPlaybackControl.mm */,
  1683. 18189EF52260422200327157 /* MediaplayerControl.mm */,
  1684. );
  1685. path = MediaPlayControl;
  1686. sourceTree = "<group>";
  1687. };
  1688. 18189EEE2260422200327157 /* TalkControl */ = {
  1689. isa = PBXGroup;
  1690. children = (
  1691. 18189EEF2260422200327157 /* Recode.mm */,
  1692. 18189EF02260422200327157 /* TalkBackControl.h */,
  1693. 18189EF12260422200327157 /* Recode.h */,
  1694. 18189EF22260422200327157 /* TalkBackControl.mm */,
  1695. );
  1696. path = TalkControl;
  1697. sourceTree = "<group>";
  1698. };
  1699. 18189EF62260422200327157 /* sdk相关 */ = {
  1700. isa = PBXGroup;
  1701. children = (
  1702. 18189EF72260422200327157 /* plist */,
  1703. 18189EFA2260422200327157 /* ImageSource */,
  1704. 18189F752260422200327157 /* Libraries */,
  1705. 18189F7D2260422200327157 /* library */,
  1706. 18189F802260422200327157 /* language */,
  1707. );
  1708. path = "sdk相关";
  1709. sourceTree = "<group>";
  1710. };
  1711. 18189EF72260422200327157 /* plist */ = {
  1712. isa = PBXGroup;
  1713. children = (
  1714. 18189EF82260422200327157 /* PlayToolImage.plist */,
  1715. 18189EF92260422200327157 /* error.plist */,
  1716. );
  1717. path = plist;
  1718. sourceTree = "<group>";
  1719. };
  1720. 18189EFA2260422200327157 /* ImageSource */ = {
  1721. isa = PBXGroup;
  1722. children = (
  1723. 18189EFB2260422200327157 /* icon_hide_sel.png */,
  1724. 18189EFC2260422200327157 /* MediaplayerImage */,
  1725. 18189F3C2260422200327157 /* QRCode.png */,
  1726. 18189F3D2260422200327157 /* radar_search_sign.png */,
  1727. 18189F3E2260422200327157 /* radar_search_bg.png */,
  1728. 18189F3F2260422200327157 /* sel.png */,
  1729. 18189F402260422200327157 /* icon_funsdk.png */,
  1730. 18189F412260422200327157 /* icon_hide_nor.png */,
  1731. 18189F422260422200327157 /* StateImage */,
  1732. 18189F622260422200327157 /* nor.png */,
  1733. 18189F632260422200327157 /* DeviceImage */,
  1734. 18189F722260422200327157 /* Local_Settings.png */,
  1735. 18189F732260422200327157 /* phone2.png */,
  1736. 18189F742260422200327157 /* new_back.png */,
  1737. );
  1738. path = ImageSource;
  1739. sourceTree = "<group>";
  1740. };
  1741. 18189EFC2260422200327157 /* MediaplayerImage */ = {
  1742. isa = PBXGroup;
  1743. children = (
  1744. 18189EFD2260422200327157 /* press_talk_selected_en.png */,
  1745. 18189EFE2260422200327157 /* btn_SD.png */,
  1746. 18189EFF2260422200327157 /* icon_close.png */,
  1747. 18189F002260422200327157 /* btn_control_normal.png */,
  1748. 18189F012260422200327157 /* btn_HD_F.png */,
  1749. 18189F022260422200327157 /* record_temp_normal.png */,
  1750. 18189F032260422200327157 /* btn_minus_normal.png */,
  1751. 18189F042260422200327157 /* btn_HD_E.png */,
  1752. 18189F052260422200327157 /* talk_unselect.png */,
  1753. 18189F062260422200327157 /* btn_record.png */,
  1754. 18189F072260422200327157 /* btn_voice_normal.png */,
  1755. 18189F082260422200327157 /* press_talk_selected_sp.png */,
  1756. 18189F092260422200327157 /* btn_control_left.png */,
  1757. 18189F0A2260422200327157 /* press_talk_en.png */,
  1758. 18189F0B2260422200327157 /* btn_stop.png */,
  1759. 18189F0C2260422200327157 /* ic_alarm.png */,
  1760. 18189F0D2260422200327157 /* btn_stop_select.png */,
  1761. 18189F0E2260422200327157 /* press_talk_selected.png */,
  1762. 18189F0F2260422200327157 /* ptz_unselect.png */,
  1763. 18189F102260422200327157 /* btn_voice_selected.png */,
  1764. 18189F112260422200327157 /* btn_control_up.png */,
  1765. 18189F122260422200327157 /* press_talk_sp.png */,
  1766. 18189F132260422200327157 /* btn_tool_recording.png */,
  1767. 18189F142260422200327157 /* btn_SD_F.png */,
  1768. 18189F152260422200327157 /* talk_select.png */,
  1769. 18189F162260422200327157 /* btn_plus_highlighted.png */,
  1770. 18189F172260422200327157 /* btn_SD_E.png */,
  1771. 18189F182260422200327157 /* btn_pause.png */,
  1772. 18189F192260422200327157 /* btn_pause_select.png */,
  1773. 18189F1A2260422200327157 /* btn_control_down.png */,
  1774. 18189F1B2260422200327157 /* Speed_Select.png */,
  1775. 18189F1C2260422200327157 /* FishImage */,
  1776. 18189F352260422200327157 /* press_talk.png */,
  1777. 18189F362260422200327157 /* btn_minus_highlighted.png */,
  1778. 18189F372260422200327157 /* btn_recording.png */,
  1779. 18189F382260422200327157 /* btn_plus_normal.png */,
  1780. 18189F392260422200327157 /* btn_HD.png */,
  1781. 18189F3A2260422200327157 /* btn_control_right.png */,
  1782. 18189F3B2260422200327157 /* btn_camera_normal.png */,
  1783. );
  1784. path = MediaplayerImage;
  1785. sourceTree = "<group>";
  1786. };
  1787. 18189F1C2260422200327157 /* FishImage */ = {
  1788. isa = PBXGroup;
  1789. children = (
  1790. 18189F1D2260422200327157 /* VR_Wall_nor.png */,
  1791. 18189F1E2260422200327157 /* VR-cylinder_sel.png */,
  1792. 18189F1F2260422200327157 /* VR_180_sel.png */,
  1793. 18189F202260422200327157 /* VR-Ceiling_nor.png */,
  1794. 18189F212260422200327157 /* VR-close_nor.png */,
  1795. 18189F222260422200327157 /* VR-rectangle_sel.png */,
  1796. 18189F232260422200327157 /* VR-tow_sel.png */,
  1797. 18189F242260422200327157 /* VR-ball bowl_nor.png */,
  1798. 18189F252260422200327157 /* VR_ball hat_nor.png */,
  1799. 18189F262260422200327157 /* VR_Ball_sel.png */,
  1800. 18189F272260422200327157 /* VR-four_nor.png */,
  1801. 18189F282260422200327157 /* 180_3R_sel.png */,
  1802. 18189F292260422200327157 /* VR-cylinder_nor.png */,
  1803. 18189F2A2260422200327157 /* VR_180_nor.png */,
  1804. 18189F2B2260422200327157 /* VR-Ceiling_sel.png */,
  1805. 18189F2C2260422200327157 /* VR-rectangle_nor.png */,
  1806. 18189F2D2260422200327157 /* VR_Wall_sel.png */,
  1807. 18189F2E2260422200327157 /* VR_Ball_nor.png */,
  1808. 18189F2F2260422200327157 /* VR-four_sel.png */,
  1809. 18189F302260422200327157 /* 180_3R_nor.png */,
  1810. 18189F312260422200327157 /* VR-ball bowl_sel.png */,
  1811. 18189F322260422200327157 /* VR-tow_nor.png */,
  1812. 18189F332260422200327157 /* 360VR-ins_default.png */,
  1813. 18189F342260422200327157 /* VR_ball hat_sel.png */,
  1814. );
  1815. path = FishImage;
  1816. sourceTree = "<group>";
  1817. };
  1818. 18189F422260422200327157 /* StateImage */ = {
  1819. isa = PBXGroup;
  1820. children = (
  1821. 18189F432260422200327157 /* ic_wake_green.png */,
  1822. 18189F452260422200327157 /* offline.png */,
  1823. 18189F472260422200327157 /* sleepnotwakeup.png */,
  1824. 18189F492260422200327157 /* Prepare_sleep.png */,
  1825. 18189F4B2260422200327157 /* online.png */,
  1826. 18189F4D2260422200327157 /* ic_sleep.png */,
  1827. 18189F552260422200327157 /* sleepnotwakeup_zh.png */,
  1828. );
  1829. path = StateImage;
  1830. sourceTree = "<group>";
  1831. };
  1832. 18189F632260422200327157 /* DeviceImage */ = {
  1833. isa = PBXGroup;
  1834. children = (
  1835. 18189F642260422200327157 /* xmjp_camera.png */,
  1836. 18189F652260422200327157 /* xmjp_seye.png */,
  1837. 18189F662260422200327157 /* xmjp_mov.png */,
  1838. 18189F672260422200327157 /* xmjp_car.png */,
  1839. 18189F682260422200327157 /* xmjp_socket.png */,
  1840. 18189F692260422200327157 /* xmjp_bulb.png */,
  1841. 18189F6A2260422200327157 /* xmjp_fbulb.png */,
  1842. 18189F6B2260422200327157 /* xmjp_rotot.png */,
  1843. 18189F6C2260422200327157 /* xmjp_feye.png */,
  1844. 18189F6D2260422200327157 /* xmjp_cloudbox_klok.png */,
  1845. 18189F6E2260422200327157 /* xmjp_beye.png */,
  1846. 18189F6F2260422200327157 /* xmjp_cloudbox.png */,
  1847. 18189F702260422200327157 /* xmjp_bob.png */,
  1848. 18189F712260422200327157 /* xmjp_bulbsocket.png */,
  1849. );
  1850. path = DeviceImage;
  1851. sourceTree = "<group>";
  1852. };
  1853. 18189F752260422200327157 /* Libraries */ = {
  1854. isa = PBXGroup;
  1855. children = (
  1856. 18189F762260422200327157 /* libstdc++.6.0.9.tbd */,
  1857. 18189F772260422200327157 /* 鱼眼库 */,
  1858. 18189F7A2260422200327157 /* SVProgressHUD.h */,
  1859. 18189F7B2260422200327157 /* SVProgressHUD.m */,
  1860. 18189F7C2260422200327157 /* SVProgressHUD.bundle */,
  1861. );
  1862. path = Libraries;
  1863. sourceTree = "<group>";
  1864. };
  1865. 18189F772260422200327157 /* 鱼眼库 */ = {
  1866. isa = PBXGroup;
  1867. children = (
  1868. 18189F782260422200327157 /* libfisheye.a */,
  1869. 18189F792260422200327157 /* libFSCalendar.a */,
  1870. );
  1871. path = "鱼眼库";
  1872. sourceTree = "<group>";
  1873. };
  1874. 18189F7D2260422200327157 /* library */ = {
  1875. isa = PBXGroup;
  1876. children = (
  1877. 18189F7E2260422200327157 /* XMNetInterface.framework */,
  1878. 18189F7F2260422200327157 /* FunSDK.framework */,
  1879. );
  1880. path = library;
  1881. sourceTree = "<group>";
  1882. };
  1883. 18189F802260422200327157 /* language */ = {
  1884. isa = PBXGroup;
  1885. children = (
  1886. 18189F812260422200327157 /* en.txt */,
  1887. 18189F822260422200327157 /* zh_CN.txt */,
  1888. );
  1889. path = language;
  1890. sourceTree = "<group>";
  1891. };
  1892. 18189F832260422200327157 /* SDKBaseFile */ = {
  1893. isa = PBXGroup;
  1894. children = (
  1895. 18189F842260422200327157 /* Base */,
  1896. 18189F8D2260422200327157 /* JsonHeader */,
  1897. );
  1898. path = SDKBaseFile;
  1899. sourceTree = "<group>";
  1900. };
  1901. 18189F842260422200327157 /* Base */ = {
  1902. isa = PBXGroup;
  1903. children = (
  1904. 18189F852260422200327157 /* BaseViewController.mm */,
  1905. 18189F862260422200327157 /* SDKInitializeModel.h */,
  1906. 18189F872260422200327157 /* ConfigControllerBase.mm */,
  1907. 18189F882260422200327157 /* FunMsgListener.h */,
  1908. 18189F892260422200327157 /* ConfigControllerBase.h */,
  1909. 18189F8A2260422200327157 /* FunMsgListener.mm */,
  1910. 18189F8B2260422200327157 /* BaseViewController.h */,
  1911. 18189F8C2260422200327157 /* SDKInitializeModel.mm */,
  1912. );
  1913. path = Base;
  1914. sourceTree = "<group>";
  1915. };
  1916. 18189F8D2260422200327157 /* JsonHeader */ = {
  1917. isa = PBXGroup;
  1918. children = (
  1919. 18189F8E2260422200327157 /* OPSCalendar */,
  1920. 18189F902260422200327157 /* AlarmPIR */,
  1921. 18189F952260422200327157 /* Record */,
  1922. 18189F992260422200327157 /* HumanDetection */,
  1923. 18189F9B2260422200327157 /* Capability */,
  1924. 18189FA62260422200327157 /* Encode */,
  1925. 18189FB52260422200327157 /* Param */,
  1926. 18189FB92260422200327157 /* Storage */,
  1927. 18189FBE2260422200327157 /* NetWorkWI-FI */,
  1928. 18189FC12260422200327157 /* Common */,
  1929. 18189FC62260422200327157 /* WaterMark */,
  1930. 18189FCC2260422200327157 /* ModifyPassword */,
  1931. 18189FCE2260422200327157 /* AlarmDetect */,
  1932. 18189FD22260422200327157 /* CarPark */,
  1933. 18189FD62260422200327157 /* TimeSyn */,
  1934. 18189FDA2260422200327157 /* Analyzer */,
  1935. );
  1936. path = JsonHeader;
  1937. sourceTree = "<group>";
  1938. };
  1939. 18189F8E2260422200327157 /* OPSCalendar */ = {
  1940. isa = PBXGroup;
  1941. children = (
  1942. 18189F8F2260422200327157 /* OPSCalendar.h */,
  1943. );
  1944. path = OPSCalendar;
  1945. sourceTree = "<group>";
  1946. };
  1947. 18189F902260422200327157 /* AlarmPIR */ = {
  1948. isa = PBXGroup;
  1949. children = (
  1950. 18189F912260422200327157 /* PirTimeSectionTwo.h */,
  1951. 18189F922260422200327157 /* Alarm_PIR.h */,
  1952. 18189F932260422200327157 /* PirTimeSection.h */,
  1953. 18189F942260422200327157 /* PirTimeSectionOne.h */,
  1954. );
  1955. path = AlarmPIR;
  1956. sourceTree = "<group>";
  1957. };
  1958. 18189F952260422200327157 /* Record */ = {
  1959. isa = PBXGroup;
  1960. children = (
  1961. 18189F962260422200327157 /* ExtRecord.h */,
  1962. 18189F972260422200327157 /* SupportExtRecord.h */,
  1963. 18189F982260422200327157 /* Record.h */,
  1964. );
  1965. path = Record;
  1966. sourceTree = "<group>";
  1967. };
  1968. 18189F992260422200327157 /* HumanDetection */ = {
  1969. isa = PBXGroup;
  1970. children = (
  1971. 18189F9A2260422200327157 /* Detect_HumanDetectionDVR.h */,
  1972. );
  1973. path = HumanDetection;
  1974. sourceTree = "<group>";
  1975. };
  1976. 18189F9B2260422200327157 /* Capability */ = {
  1977. isa = PBXGroup;
  1978. children = (
  1979. 18189F9C2260422200327157 /* OtherFunction.h */,
  1980. 18189F9D2260422200327157 /* CommFunction.h */,
  1981. 18189F9E2260422200327157 /* SystemFunction.h */,
  1982. 18189F9F2260422200327157 /* EncodeFunction.h */,
  1983. 18189FA02260422200327157 /* MobileDVR.h */,
  1984. 18189FA12260422200327157 /* AlarmFunction.h */,
  1985. 18189FA22260422200327157 /* InputMethod.h */,
  1986. 18189FA32260422200327157 /* NetServerFunction.h */,
  1987. 18189FA42260422200327157 /* TipShow.h */,
  1988. 18189FA52260422200327157 /* PreviewFunction.h */,
  1989. );
  1990. path = Capability;
  1991. sourceTree = "<group>";
  1992. };
  1993. 18189FA62260422200327157 /* Encode */ = {
  1994. isa = PBXGroup;
  1995. children = (
  1996. 18189FA72260422200327157 /* NetUse_DigitalAbility.h */,
  1997. 18189FA82260422200327157 /* DSTStart.h */,
  1998. 18189FA92260422200327157 /* NetUse_DigitalEncode.h */,
  1999. 18189FAA2260422200327157 /* EncodeCapability.h */,
  2000. 18189FAB2260422200327157 /* CombEncodeInfo.h */,
  2001. 18189FAC2260422200327157 /* Audio.h */,
  2002. 18189FAD2260422200327157 /* MainFormat.h */,
  2003. 18189FAE2260422200327157 /* Simplify_Encode.h */,
  2004. 18189FAF2260422200327157 /* EncodeInfo.h */,
  2005. 18189FB02260422200327157 /* Video.h */,
  2006. 18189FB12260422200327157 /* DSTEnd.h */,
  2007. 18189FB22260422200327157 /* ability.h */,
  2008. 18189FB32260422200327157 /* General_Location.h */,
  2009. 18189FB42260422200327157 /* ExtraFormat.h */,
  2010. );
  2011. path = Encode;
  2012. sourceTree = "<group>";
  2013. };
  2014. 18189FB52260422200327157 /* Param */ = {
  2015. isa = PBXGroup;
  2016. children = (
  2017. 18189FB62260422200327157 /* GainParam.h */,
  2018. 18189FB72260422200327157 /* Camera_Param.h */,
  2019. 18189FB82260422200327157 /* ExposureParam.h */,
  2020. );
  2021. path = Param;
  2022. sourceTree = "<group>";
  2023. };
  2024. 18189FB92260422200327157 /* Storage */ = {
  2025. isa = PBXGroup;
  2026. children = (
  2027. 18189FBA2260422200327157 /* OPStorageManager.h */,
  2028. 18189FBB2260422200327157 /* StorageGlobal.h */,
  2029. 18189FBC2260422200327157 /* Partition.h */,
  2030. 18189FBD2260422200327157 /* StorageInfo.h */,
  2031. );
  2032. path = Storage;
  2033. sourceTree = "<group>";
  2034. };
  2035. 18189FBE2260422200327157 /* NetWorkWI-FI */ = {
  2036. isa = PBXGroup;
  2037. children = (
  2038. 18189FBF2260422200327157 /* NetWork_Wifi.h */,
  2039. 18189FC02260422200327157 /* NetWork_NetDHCP.h */,
  2040. );
  2041. path = "NetWorkWI-FI";
  2042. sourceTree = "<group>";
  2043. };
  2044. 18189FC12260422200327157 /* Common */ = {
  2045. isa = PBXGroup;
  2046. children = (
  2047. 18189FC22260422200327157 /* SystemInfo.h */,
  2048. 18189FC32260422200327157 /* OPDefaultConfig.h */,
  2049. 18189FC42260422200327157 /* SystemFunction.h */,
  2050. 18189FC52260422200327157 /* General_General.h */,
  2051. );
  2052. path = Common;
  2053. sourceTree = "<group>";
  2054. };
  2055. 18189FC62260422200327157 /* WaterMark */ = {
  2056. isa = PBXGroup;
  2057. children = (
  2058. 18189FC72260422200327157 /* AVEnc_VideoWidget.h */,
  2059. 18189FC82260422200327157 /* ChannelTitle.h */,
  2060. 18189FC92260422200327157 /* TimeTitleAttribute.h */,
  2061. 18189FCA2260422200327157 /* ChannelTitleAttribute.h */,
  2062. 18189FCB2260422200327157 /* fVideo_OsdLogo.h */,
  2063. );
  2064. path = WaterMark;
  2065. sourceTree = "<group>";
  2066. };
  2067. 18189FCC2260422200327157 /* ModifyPassword */ = {
  2068. isa = PBXGroup;
  2069. children = (
  2070. 18189FCD2260422200327157 /* ModifyPassword.h */,
  2071. );
  2072. path = ModifyPassword;
  2073. sourceTree = "<group>";
  2074. };
  2075. 18189FCE2260422200327157 /* AlarmDetect */ = {
  2076. isa = PBXGroup;
  2077. children = (
  2078. 18189FCF2260422200327157 /* Detect_MotionDetect.h */,
  2079. 18189FD02260422200327157 /* Detect_LossDetect.h */,
  2080. 18189FD12260422200327157 /* Detect_BlindDetect.h */,
  2081. );
  2082. path = AlarmDetect;
  2083. sourceTree = "<group>";
  2084. };
  2085. 18189FD22260422200327157 /* CarPark */ = {
  2086. isa = PBXGroup;
  2087. children = (
  2088. 18189FD32260422200327157 /* Park_AdjustInfo.h */,
  2089. 18189FD42260422200327157 /* Points.h */,
  2090. 18189FD52260422200327157 /* CarInfo.h */,
  2091. );
  2092. path = CarPark;
  2093. sourceTree = "<group>";
  2094. };
  2095. 18189FD62260422200327157 /* TimeSyn */ = {
  2096. isa = PBXGroup;
  2097. children = (
  2098. 18189FD72260422200327157 /* System_TimeZone.h */,
  2099. 18189FD82260422200327157 /* TimeQuery.h */,
  2100. 18189FD92260422200327157 /* TimeQuery.m */,
  2101. );
  2102. path = TimeSyn;
  2103. sourceTree = "<group>";
  2104. };
  2105. 18189FDA2260422200327157 /* Analyzer */ = {
  2106. isa = PBXGroup;
  2107. children = (
  2108. 18189FDB2260422200327157 /* TripWireRule.h */,
  2109. 18189FDC2260422200327157 /* PerimeterRule.h */,
  2110. 18189FDD2260422200327157 /* RuleConfig.h */,
  2111. 18189FDE2260422200327157 /* EventHandler.h */,
  2112. 18189FDF2260422200327157 /* TripWire.h */,
  2113. 18189FE02260422200327157 /* Boundary.h */,
  2114. 18189FE12260422200327157 /* Detect_Analyze.h */,
  2115. 18189FE22260422200327157 /* StolenRule.h */,
  2116. 18189FE32260422200327157 /* SubRgC.h */,
  2117. 18189FE42260422200327157 /* SpclRgs.h */,
  2118. 18189FE52260422200327157 /* AbandumRule.h */,
  2119. 18189FE62260422200327157 /* StartPt.h */,
  2120. 18189FE72260422200327157 /* LimitPara.h */,
  2121. 18189FE82260422200327157 /* PEARule.h */,
  2122. 18189FE92260422200327157 /* SubRgB.h */,
  2123. 18189FEA2260422200327157 /* OscRg.h */,
  2124. 18189FEB2260422200327157 /* CPCRule.h */,
  2125. 18189FEC2260422200327157 /* NoParkingRule.h */,
  2126. 18189FED2260422200327157 /* SubRgA.h */,
  2127. 18189FEE2260422200327157 /* Line.h */,
  2128. 18189FEF2260422200327157 /* Points.h */,
  2129. 18189FF02260422200327157 /* EndPt.h */,
  2130. 18189FF12260422200327157 /* Limit.h */,
  2131. 18189FF22260422200327157 /* AVDRule.h */,
  2132. 18189FF32260422200327157 /* OscPara.h */,
  2133. 18189FF42260422200327157 /* OSCRule.h */,
  2134. );
  2135. path = Analyzer;
  2136. sourceTree = "<group>";
  2137. };
  2138. 18189FF52260422200327157 /* Device */ = {
  2139. isa = PBXGroup;
  2140. children = (
  2141. 18189FF62260422200327157 /* DevicelistArchiveModel.m */,
  2142. 18189FF72260422200327157 /* DeviceControl.h */,
  2143. 18189FF82260422200327157 /* DeviceInfo */,
  2144. 18189FFD2260422200327157 /* DeviceControl.m */,
  2145. 18189FFE2260422200327157 /* DevicelistArchiveModel.h */,
  2146. 18189FFF2260422200327157 /* DeviceAndChannel */,
  2147. );
  2148. path = Device;
  2149. sourceTree = "<group>";
  2150. };
  2151. 18189FF82260422200327157 /* DeviceInfo */ = {
  2152. isa = PBXGroup;
  2153. children = (
  2154. 18189FF92260422200327157 /* ObSysteminfo.h */,
  2155. 18189FFA2260422200327157 /* ObSystemFunction.m */,
  2156. 18189FFB2260422200327157 /* ObSysteminfo.m */,
  2157. 18189FFC2260422200327157 /* ObSystemFunction.h */,
  2158. );
  2159. path = DeviceInfo;
  2160. sourceTree = "<group>";
  2161. };
  2162. 18189FFF2260422200327157 /* DeviceAndChannel */ = {
  2163. isa = PBXGroup;
  2164. children = (
  2165. 1818A0002260422200327157 /* DeviceObject.m */,
  2166. 1818A0012260422200327157 /* ObjectCoder.m */,
  2167. 1818A0022260422200327157 /* ChannelObject.h */,
  2168. 1818A0032260422200327157 /* ObjectCoder.h */,
  2169. 1818A0042260422200327157 /* DeviceObject.h */,
  2170. 1818A0052260422200327157 /* ChannelObject.m */,
  2171. );
  2172. path = DeviceAndChannel;
  2173. sourceTree = "<group>";
  2174. };
  2175. 1818A0062260422200327157 /* ViewController */ = {
  2176. isa = PBXGroup;
  2177. children = (
  2178. 1818A0072260422200327157 /* DeviceConfigViewController */,
  2179. 1818A0972260422200327157 /* MainViewController */,
  2180. 1818A09E2260422200327157 /* PhotosViewController */,
  2181. 1818A0A62260422200327157 /* DeviceListViewController */,
  2182. 1818A0AE2260422200327157 /* PlayViewController */,
  2183. 1818A0DC2260422300327157 /* AccountViewController */,
  2184. 1818A1022260422300327157 /* DeviceAddViewController */,
  2185. );
  2186. path = ViewController;
  2187. sourceTree = "<group>";
  2188. };
  2189. 1818A0072260422200327157 /* DeviceConfigViewController */ = {
  2190. isa = PBXGroup;
  2191. children = (
  2192. 1818A0082260422200327157 /* DeviceConfigViewController.h */,
  2193. 1818A0522260422200327157 /* DeviceConfigViewController.mm */,
  2194. 1818A0092260422200327157 /* DeviceconfigTableViewCell.h */,
  2195. 1818A0672260422200327157 /* DeviceconfigTableViewCell.m */,
  2196. 1818A0682260422200327157 /* ItemTableviewCell.h */,
  2197. 1818A02C2260422200327157 /* ItemTableviewCell.m */,
  2198. 1818A0632260422200327157 /* ItemViewController.h */,
  2199. 1818A00D2260422200327157 /* ItemViewController.m */,
  2200. 1818A00A2260422200327157 /* UpgradeDeviceViewController */,
  2201. 1818A00E2260422200327157 /* WaterMarkViewController */,
  2202. 1818A0112260422200327157 /* ShutDowmTimeViewController */,
  2203. 1818A0142260422200327157 /* AlarmMessageViewController */,
  2204. 1818A01C2260422200327157 /* EncodeViewController */,
  2205. 1818A0242260422200327157 /* HumanDetectionViewController */,
  2206. 1818A0272260422200327157 /* PasswordViewController */,
  2207. 1818A02D2260422200327157 /* SensorConfigVC */,
  2208. 1818A04A2260422200327157 /* AlarmViewController */,
  2209. 1818A0532260422200327157 /* AnalyzerViewController */,
  2210. 1818A0562260422200327157 /* RecordViewController */,
  2211. 1818A0592260422200327157 /* BuzzerViewController */,
  2212. 1818A05C2260422200327157 /* EncodingFormatViewController */,
  2213. 1818A0602260422200327157 /* StorageViewController */,
  2214. 1818A0642260422200327157 /* TimeSynViewController */,
  2215. 1818A0692260422200327157 /* AboutDeviceViewController */,
  2216. 1818A06C2260422200327157 /* DeviceFileViewController */,
  2217. 1818A0812260422200327157 /* ParamViewController */,
  2218. 1818A0842260422200327157 /* CloudAbilityViewController */,
  2219. );
  2220. path = DeviceConfigViewController;
  2221. sourceTree = "<group>";
  2222. };
  2223. 1818A00A2260422200327157 /* UpgradeDeviceViewController */ = {
  2224. isa = PBXGroup;
  2225. children = (
  2226. 1818A00B2260422200327157 /* UpgradeDeviceViewController.h */,
  2227. 1818A00C2260422200327157 /* UpgradeDeviceViewController.mm */,
  2228. );
  2229. path = UpgradeDeviceViewController;
  2230. sourceTree = "<group>";
  2231. };
  2232. 1818A00E2260422200327157 /* WaterMarkViewController */ = {
  2233. isa = PBXGroup;
  2234. children = (
  2235. 1818A00F2260422200327157 /* WaterMarkViewController.mm */,
  2236. 1818A0102260422200327157 /* WaterMarkViewController.h */,
  2237. );
  2238. path = WaterMarkViewController;
  2239. sourceTree = "<group>";
  2240. };
  2241. 1818A0112260422200327157 /* ShutDowmTimeViewController */ = {
  2242. isa = PBXGroup;
  2243. children = (
  2244. 1818A0122260422200327157 /* ShutDownTimeViewController.mm */,
  2245. 1818A0132260422200327157 /* ShutDownTimeViewController.h */,
  2246. );
  2247. path = ShutDowmTimeViewController;
  2248. sourceTree = "<group>";
  2249. };
  2250. 1818A0142260422200327157 /* AlarmMessageViewController */ = {
  2251. isa = PBXGroup;
  2252. children = (
  2253. 1818A0152260422200327157 /* AlarmMessageCell */,
  2254. 1818A0182260422200327157 /* AlarmMessageViewController.mm */,
  2255. 1818A0192260422200327157 /* AlarmMessagePicViewController.m */,
  2256. 1818A01A2260422200327157 /* AlarmMessagePicViewController.h */,
  2257. 1818A01B2260422200327157 /* AlarmMessageViewController.h */,
  2258. );
  2259. path = AlarmMessageViewController;
  2260. sourceTree = "<group>";
  2261. };
  2262. 1818A0152260422200327157 /* AlarmMessageCell */ = {
  2263. isa = PBXGroup;
  2264. children = (
  2265. 1818A0162260422200327157 /* AlarmMessageCell.h */,
  2266. 1818A0172260422200327157 /* AlarmMessageCell.m */,
  2267. );
  2268. path = AlarmMessageCell;
  2269. sourceTree = "<group>";
  2270. };
  2271. 1818A01C2260422200327157 /* EncodeViewController */ = {
  2272. isa = PBXGroup;
  2273. children = (
  2274. 1818A0232260422200327157 /* EncodeItemViewController.h */,
  2275. 1818A01D2260422200327157 /* EncodeItemViewController.m */,
  2276. 1818A0222260422200327157 /* EncodeViewController.h */,
  2277. 1818A01E2260422200327157 /* EncodeViewController.mm */,
  2278. 1818A01F2260422200327157 /* Cell */,
  2279. );
  2280. path = EncodeViewController;
  2281. sourceTree = "<group>";
  2282. };
  2283. 1818A01F2260422200327157 /* Cell */ = {
  2284. isa = PBXGroup;
  2285. children = (
  2286. 1818A0202260422200327157 /* EncodeConfigTableviewCell.m */,
  2287. 1818A0212260422200327157 /* EncodeConfigTableviewCell.h */,
  2288. );
  2289. path = Cell;
  2290. sourceTree = "<group>";
  2291. };
  2292. 1818A0242260422200327157 /* HumanDetectionViewController */ = {
  2293. isa = PBXGroup;
  2294. children = (
  2295. 1818A0252260422200327157 /* HumanDetectionViewController.mm */,
  2296. 1818A0262260422200327157 /* HumanDetectionViewController.h */,
  2297. );
  2298. path = HumanDetectionViewController;
  2299. sourceTree = "<group>";
  2300. };
  2301. 1818A0272260422200327157 /* PasswordViewController */ = {
  2302. isa = PBXGroup;
  2303. children = (
  2304. 1818A0282260422200327157 /* PasswordView.m */,
  2305. 1818A0292260422200327157 /* PasswordViewController.h */,
  2306. 1818A02A2260422200327157 /* PasswordViewController.mm */,
  2307. 1818A02B2260422200327157 /* PasswordView.h */,
  2308. );
  2309. path = PasswordViewController;
  2310. sourceTree = "<group>";
  2311. };
  2312. 1818A02D2260422200327157 /* SensorConfigVC */ = {
  2313. isa = PBXGroup;
  2314. children = (
  2315. 1818A02E2260422200327157 /* SensorListCell.m */,
  2316. 1818A02F2260422200327157 /* UIColor+Util.h */,
  2317. 1818A0302260422200327157 /* SensorDeviceModel.m */,
  2318. 1818A0312260422200327157 /* WZLBadge */,
  2319. 1818A0402260422200327157 /* XMWallSwitchView.m */,
  2320. 1818A0412260422200327157 /* XMLinkWallSwitchCell.h */,
  2321. 1818A0422260422200327157 /* SensorListCell.h */,
  2322. 1818A0432260422200327157 /* UIColor+Util.m */,
  2323. 1818A0442260422200327157 /* SensorlistVCViewController.h */,
  2324. 1818A0452260422200327157 /* SensorDeviceModel.h */,
  2325. 1818A0462260422200327157 /* SensorInfo.h */,
  2326. 1818A0472260422200327157 /* XMLinkWallSwitchCell.m */,
  2327. 1818A0482260422200327157 /* XMWallSwitchView.h */,
  2328. 1818A0492260422200327157 /* SensorlistVCViewController.mm */,
  2329. );
  2330. path = SensorConfigVC;
  2331. sourceTree = "<group>";
  2332. };
  2333. 1818A0312260422200327157 /* WZLBadge */ = {
  2334. isa = PBXGroup;
  2335. children = (
  2336. 1818A0322260422200327157 /* CategorySupport */,
  2337. 1818A0352260422200327157 /* BarItem */,
  2338. 1818A03A2260422200327157 /* WZLBadgeImport.h */,
  2339. 1818A03B2260422200327157 /* Protocol */,
  2340. 1818A03D2260422200327157 /* View */,
  2341. );
  2342. path = WZLBadge;
  2343. sourceTree = "<group>";
  2344. };
  2345. 1818A0322260422200327157 /* CategorySupport */ = {
  2346. isa = PBXGroup;
  2347. children = (
  2348. 1818A0332260422200327157 /* CAAnimation+WAnimation.m */,
  2349. 1818A0342260422200327157 /* CAAnimation+WAnimation.h */,
  2350. );
  2351. path = CategorySupport;
  2352. sourceTree = "<group>";
  2353. };
  2354. 1818A0352260422200327157 /* BarItem */ = {
  2355. isa = PBXGroup;
  2356. children = (
  2357. 1818A0362260422200327157 /* UIBarButtonItem+WZLBadge.h */,
  2358. 1818A0372260422200327157 /* UITabBarItem+WZLBadge.h */,
  2359. 1818A0382260422200327157 /* UIBarButtonItem+WZLBadge.m */,
  2360. 1818A0392260422200327157 /* UITabBarItem+WZLBadge.m */,
  2361. );
  2362. path = BarItem;
  2363. sourceTree = "<group>";
  2364. };
  2365. 1818A03B2260422200327157 /* Protocol */ = {
  2366. isa = PBXGroup;
  2367. children = (
  2368. 1818A03C2260422200327157 /* WZLBadgeProtocol.h */,
  2369. );
  2370. path = Protocol;
  2371. sourceTree = "<group>";
  2372. };
  2373. 1818A03D2260422200327157 /* View */ = {
  2374. isa = PBXGroup;
  2375. children = (
  2376. 1818A03E2260422200327157 /* UIView+WZLBadge.h */,
  2377. 1818A03F2260422200327157 /* UIView+WZLBadge.m */,
  2378. );
  2379. path = View;
  2380. sourceTree = "<group>";
  2381. };
  2382. 1818A04A2260422200327157 /* AlarmViewController */ = {
  2383. isa = PBXGroup;
  2384. children = (
  2385. 1818A04B2260422200327157 /* AlarmLevelViewController.h */,
  2386. 1818A04C2260422200327157 /* AlarmDetectViewController.h */,
  2387. 1818A04D2260422200327157 /* DefaultTableViewCell */,
  2388. 1818A0502260422200327157 /* AlarmDetectViewController.mm */,
  2389. 1818A0512260422200327157 /* AlarmLevelViewController.m */,
  2390. );
  2391. path = AlarmViewController;
  2392. sourceTree = "<group>";
  2393. };
  2394. 1818A04D2260422200327157 /* DefaultTableViewCell */ = {
  2395. isa = PBXGroup;
  2396. children = (
  2397. 1818A04E2260422200327157 /* AlarmConfigTableViewCell.m */,
  2398. 1818A04F2260422200327157 /* AlarmConfigTableViewCell.h */,
  2399. );
  2400. path = DefaultTableViewCell;
  2401. sourceTree = "<group>";
  2402. };
  2403. 1818A0532260422200327157 /* AnalyzerViewController */ = {
  2404. isa = PBXGroup;
  2405. children = (
  2406. 1818A0542260422200327157 /* AnalyzerViewController.h */,
  2407. 1818A0552260422200327157 /* AnalyzerViewController.mm */,
  2408. );
  2409. path = AnalyzerViewController;
  2410. sourceTree = "<group>";
  2411. };
  2412. 1818A0562260422200327157 /* RecordViewController */ = {
  2413. isa = PBXGroup;
  2414. children = (
  2415. 1818A0572260422200327157 /* RecordViewController.mm */,
  2416. 1818A0582260422200327157 /* RecordViewController.h */,
  2417. );
  2418. path = RecordViewController;
  2419. sourceTree = "<group>";
  2420. };
  2421. 1818A0592260422200327157 /* BuzzerViewController */ = {
  2422. isa = PBXGroup;
  2423. children = (
  2424. 1818A05A2260422200327157 /* BuzzerViewController.h */,
  2425. 1818A05B2260422200327157 /* BuzzerViewController.mm */,
  2426. );
  2427. path = BuzzerViewController;
  2428. sourceTree = "<group>";
  2429. };
  2430. 1818A05C2260422200327157 /* EncodingFormatViewController */ = {
  2431. isa = PBXGroup;
  2432. children = (
  2433. 1818A05D2260422200327157 /* EncodingFormatViewController.mm */,
  2434. 1818A05F2260422200327157 /* EncodingFormatViewController.h */,
  2435. );
  2436. path = EncodingFormatViewController;
  2437. sourceTree = "<group>";
  2438. };
  2439. 1818A0602260422200327157 /* StorageViewController */ = {
  2440. isa = PBXGroup;
  2441. children = (
  2442. 1818A0612260422200327157 /* StorageViewController.mm */,
  2443. 1818A0622260422200327157 /* StorageViewController.h */,
  2444. );
  2445. path = StorageViewController;
  2446. sourceTree = "<group>";
  2447. };
  2448. 1818A0642260422200327157 /* TimeSynViewController */ = {
  2449. isa = PBXGroup;
  2450. children = (
  2451. 1818A0652260422200327157 /* TimeSynViewController.mm */,
  2452. 1818A0662260422200327157 /* TimeSynViewController.h */,
  2453. );
  2454. path = TimeSynViewController;
  2455. sourceTree = "<group>";
  2456. };
  2457. 1818A0692260422200327157 /* AboutDeviceViewController */ = {
  2458. isa = PBXGroup;
  2459. children = (
  2460. 1818A06A2260422200327157 /* AboutDeviceViewController.mm */,
  2461. 1818A06B2260422200327157 /* AboutDeviceViewController.h */,
  2462. );
  2463. path = AboutDeviceViewController;
  2464. sourceTree = "<group>";
  2465. };
  2466. 1818A06C2260422200327157 /* DeviceFileViewController */ = {
  2467. isa = PBXGroup;
  2468. children = (
  2469. 1818A06D2260422200327157 /* VideoFileViewController.mm */,
  2470. 1818A06E2260422200327157 /* PictureFileViewController.m */,
  2471. 1818A06F2260422200327157 /* PictureFileViewController */,
  2472. 1818A0762260422200327157 /* VideoFileViewController.h */,
  2473. 1818A0772260422200327157 /* VideoFileViewController */,
  2474. 1818A0802260422200327157 /* PictureFileViewController.h */,
  2475. );
  2476. path = DeviceFileViewController;
  2477. sourceTree = "<group>";
  2478. };
  2479. 1818A06F2260422200327157 /* PictureFileViewController */ = {
  2480. isa = PBXGroup;
  2481. children = (
  2482. 1818A0702260422200327157 /* PictureDownloadViewController.h */,
  2483. 1818A0712260422200327157 /* MonthPictureViewController.mm */,
  2484. 1818A0722260422200327157 /* PictureSearchViewController.h */,
  2485. 1818A0732260422200327157 /* MonthPictureViewController.h */,
  2486. 1818A0742260422200327157 /* PictureDownloadViewController.mm */,
  2487. 1818A0752260422200327157 /* PictureSearchViewController.mm */,
  2488. );
  2489. path = PictureFileViewController;
  2490. sourceTree = "<group>";
  2491. };
  2492. 1818A0772260422200327157 /* VideoFileViewController */ = {
  2493. isa = PBXGroup;
  2494. children = (
  2495. 1818A0782260422200327157 /* DownloadViewController.h */,
  2496. 1818A0792260422200327157 /* MonthFileViewController.h */,
  2497. 1818A07A2260422200327157 /* ByFileViewController.mm */,
  2498. 1818A07B2260422200327157 /* DownloadViewController.mm */,
  2499. 1818A07C2260422200327157 /* ByTimeViewController.h */,
  2500. 1818A07D2260422200327157 /* ByFileViewController.h */,
  2501. 1818A07E2260422200327157 /* MonthFileViewController.mm */,
  2502. 1818A07F2260422200327157 /* ByTimeViewController.mm */,
  2503. );
  2504. path = VideoFileViewController;
  2505. sourceTree = "<group>";
  2506. };
  2507. 1818A0812260422200327157 /* ParamViewController */ = {
  2508. isa = PBXGroup;
  2509. children = (
  2510. 1818A0822260422200327157 /* ParamViewController.h */,
  2511. 1818A0832260422200327157 /* ParamViewController.mm */,
  2512. );
  2513. path = ParamViewController;
  2514. sourceTree = "<group>";
  2515. };
  2516. 1818A0842260422200327157 /* CloudAbilityViewController */ = {
  2517. isa = PBXGroup;
  2518. children = (
  2519. 1818A0852260422200327157 /* CloudServerViewController.mm */,
  2520. 1818A0862260422200327157 /* CloudAbilityViewController.h */,
  2521. 1818A0872260422200327157 /* CloudAbilityViewController.mm */,
  2522. 1818A0882260422200327157 /* CloudPhotoServerViewController */,
  2523. 1818A08F2260422200327157 /* CloudServerViewController.h */,
  2524. 1818A0902260422200327157 /* CloudVideoServerViewController */,
  2525. );
  2526. path = CloudAbilityViewController;
  2527. sourceTree = "<group>";
  2528. };
  2529. 1818A0882260422200327157 /* CloudPhotoServerViewController */ = {
  2530. isa = PBXGroup;
  2531. children = (
  2532. 1818A0892260422200327157 /* CloudPhotoViewController.h */,
  2533. 1818A08A2260422200327157 /* CloudPhotoDownloadViewController.mm */,
  2534. 1818A08B2260422200327157 /* CloudphotoDayVController.h */,
  2535. 1818A08C2260422200327157 /* CloudphotoDayVController.mm */,
  2536. 1818A08D2260422200327157 /* CloudPhotoViewController.mm */,
  2537. 1818A08E2260422200327157 /* CloudPhotoDownloadViewController.h */,
  2538. );
  2539. path = CloudPhotoServerViewController;
  2540. sourceTree = "<group>";
  2541. };
  2542. 1818A0902260422200327157 /* CloudVideoServerViewController */ = {
  2543. isa = PBXGroup;
  2544. children = (
  2545. 1818A0912260422200327157 /* CloudVideoViewController.h */,
  2546. 1818A0922260422200327157 /* CloudVideoDownloadViewController.mm */,
  2547. 1818A0932260422200327157 /* CloudVideoDayViewController.h */,
  2548. 1818A0942260422200327157 /* CloudVideoDayViewController.mm */,
  2549. 1818A0952260422200327157 /* CloudVideoViewController.mm */,
  2550. 1818A0962260422200327157 /* CloudVideoDownloadViewController.h */,
  2551. );
  2552. path = CloudVideoServerViewController;
  2553. sourceTree = "<group>";
  2554. };
  2555. 1818A0972260422200327157 /* MainViewController */ = {
  2556. isa = PBXGroup;
  2557. children = (
  2558. 1818A0982260422200327157 /* DeviceAddViewController.h */,
  2559. 1818A09A2260422200327157 /* DeviceAddViewController.m */,
  2560. 1818A09C2260422200327157 /* MainViewController.h */,
  2561. 1818A0992260422200327157 /* MainViewController.mm */,
  2562. 1818A09D2260422200327157 /* AccountViewController.h */,
  2563. 1818A09B2260422200327157 /* AccountViewController.mm */,
  2564. );
  2565. path = MainViewController;
  2566. sourceTree = "<group>";
  2567. };
  2568. 1818A09E2260422200327157 /* PhotosViewController */ = {
  2569. isa = PBXGroup;
  2570. children = (
  2571. 1818A09F2260422200327157 /* H265PlayViewController */,
  2572. 1818A0A42260422200327157 /* PhotosViewController.mm */,
  2573. 1818A0A52260422200327157 /* PhotosViewController.h */,
  2574. );
  2575. path = PhotosViewController;
  2576. sourceTree = "<group>";
  2577. };
  2578. 1818A09F2260422200327157 /* H265PlayViewController */ = {
  2579. isa = PBXGroup;
  2580. children = (
  2581. 1818A0A02260422200327157 /* CYGLKView.m */,
  2582. 1818A0A12260422200327157 /* CYGLKView.h */,
  2583. 1818A0A22260422200327157 /* XMPlayerVC.mm */,
  2584. 1818A0A32260422200327157 /* XMPlayerVC.h */,
  2585. );
  2586. path = H265PlayViewController;
  2587. sourceTree = "<group>";
  2588. };
  2589. 1818A0A62260422200327157 /* DeviceListViewController */ = {
  2590. isa = PBXGroup;
  2591. children = (
  2592. 1818A0AC2260422200327157 /* DeviceListViewController.h */,
  2593. 1818A0A72260422200327157 /* DeviceListViewController.mm */,
  2594. 1818A0A82260422200327157 /* DeviceInfoEditViewController.h */,
  2595. 1818A0AD2260422200327157 /* DeviceInfoEditViewController.mm */,
  2596. 1818A0A92260422200327157 /* Cell */,
  2597. );
  2598. path = DeviceListViewController;
  2599. sourceTree = "<group>";
  2600. };
  2601. 1818A0A92260422200327157 /* Cell */ = {
  2602. isa = PBXGroup;
  2603. children = (
  2604. 1818A0AA2260422200327157 /* DeviceListTableViewCell.h */,
  2605. 1818A0AB2260422200327157 /* DeviceListTableViewCell.m */,
  2606. );
  2607. path = Cell;
  2608. sourceTree = "<group>";
  2609. };
  2610. 1818A0AE2260422200327157 /* PlayViewController */ = {
  2611. isa = PBXGroup;
  2612. children = (
  2613. 1818A0AF2260422200327157 /* FishPlayControl.mm */,
  2614. 1818A0B02260422200327157 /* PlayBackViewController.h */,
  2615. 1818A0B12260422200327157 /* PlayViewController.mm */,
  2616. 1818A0B22260422200327157 /* PlayCloudVideoViewController.mm */,
  2617. 1818A0B32260422200327157 /* PlayBackView */,
  2618. 1818A0BA2260422200327157 /* PlayCloudVideoViewController.h */,
  2619. 1818A0BB2260422200327157 /* PlayBackViewController.mm */,
  2620. 1818A0BC2260422200327157 /* FunctionView */,
  2621. 1818A0C72260422300327157 /* FishPlayControl.h */,
  2622. 1818A0C82260422300327157 /* PlayViewController.h */,
  2623. 1818A0C92260422300327157 /* 鱼眼相关 */,
  2624. );
  2625. path = PlayViewController;
  2626. sourceTree = "<group>";
  2627. };
  2628. 1818A0B32260422200327157 /* PlayBackView */ = {
  2629. isa = PBXGroup;
  2630. children = (
  2631. 1818A0B42260422200327157 /* ProgressBackView.mm */,
  2632. 1818A0B52260422200327157 /* DateSelectView.m */,
  2633. 1818A0B62260422200327157 /* MyProgressView.h */,
  2634. 1818A0B72260422200327157 /* ProgressBackView.h */,
  2635. 1818A0B82260422200327157 /* DateSelectView.h */,
  2636. 1818A0B92260422200327157 /* MyProgressView.m */,
  2637. );
  2638. path = PlayBackView;
  2639. sourceTree = "<group>";
  2640. };
  2641. 1818A0BC2260422200327157 /* FunctionView */ = {
  2642. isa = PBXGroup;
  2643. children = (
  2644. 1818A0BD2260422200327157 /* PlayFunctionView.m */,
  2645. 1818A0BE2260422200327157 /* TalkView.h */,
  2646. 1818A0BF2260422200327157 /* PlayView.h */,
  2647. 1818A0C02260422200327157 /* PTZView.m */,
  2648. 1818A0C12260422200327157 /* PlayMenuView.m */,
  2649. 1818A0C22260422200327157 /* PlayView.m */,
  2650. 1818A0C32260422300327157 /* PlayFunctionView.h */,
  2651. 1818A0C42260422300327157 /* TalkView.m */,
  2652. 1818A0C52260422300327157 /* PTZView.h */,
  2653. 1818A0C62260422300327157 /* PlayMenuView.h */,
  2654. );
  2655. path = FunctionView;
  2656. sourceTree = "<group>";
  2657. };
  2658. 1818A0C92260422300327157 /* 鱼眼相关 */ = {
  2659. isa = PBXGroup;
  2660. children = (
  2661. 1818A0CA2260422300327157 /* FishEyeVideoVC.h */,
  2662. 1818A0CB2260422300327157 /* fisheye.h */,
  2663. 1818A0CC2260422300327157 /* errordef.h */,
  2664. 1818A0CD2260422300327157 /* UILabelOutLined.m */,
  2665. 1818A0CE2260422300327157 /* VRSoft.h */,
  2666. 1818A0CF2260422300327157 /* fisheye_opengl_errordef.h */,
  2667. 1818A0D02260422300327157 /* VRGLViewController.h */,
  2668. 1818A0D12260422300327157 /* fisheye_opengl.h */,
  2669. 1818A0D22260422300327157 /* VRFunctionView.mm */,
  2670. 1818A0D32260422300327157 /* FishEyeVideoVC.mm */,
  2671. 1818A0D42260422300327157 /* VRGLViewController.mm */,
  2672. 1818A0D52260422300327157 /* fisheye_errordef.h */,
  2673. 1818A0D62260422300327157 /* VRFunctionView.h */,
  2674. 1818A0D72260422300327157 /* HardVRViewController.h */,
  2675. 1818A0D82260422300327157 /* VRSoftDef.h */,
  2676. 1818A0D92260422300327157 /* UILabelOutLined.h */,
  2677. 1818A0DA2260422300327157 /* typedef.h */,
  2678. 1818A0DB2260422300327157 /* HardVRViewController.mm */,
  2679. );
  2680. path = "鱼眼相关";
  2681. sourceTree = "<group>";
  2682. };
  2683. 1818A0DC2260422300327157 /* AccountViewController */ = {
  2684. isa = PBXGroup;
  2685. children = (
  2686. 1818A1002260422300327157 /* LoginViewController.h */,
  2687. 1818A0FE2260422300327157 /* LoginViewController.mm */,
  2688. 1818A0FD2260422300327157 /* LoginViewController.xib */,
  2689. 1818A0DD2260422300327157 /* ChangePasswordViewController.h */,
  2690. 1818A0FF2260422300327157 /* ChangePasswordViewController.mm */,
  2691. 1818A0F72260422300327157 /* PrivacyPolicyVC.h */,
  2692. 1818A0DE2260422300327157 /* PrivacyPolicyVC.m */,
  2693. 1818A0EA2260422300327157 /* PasswordSaveViewController.h */,
  2694. 1818A0DF2260422300327157 /* PasswordSaveViewController.m */,
  2695. 1818A0E02260422300327157 /* UserInfoViewController.h */,
  2696. 1818A0EE2260422300327157 /* UserInfoViewController.mm */,
  2697. 1818A0E12260422300327157 /* UserBindViewController.h */,
  2698. 1818A0F92260422300327157 /* UserBindViewController.mm */,
  2699. 1818A0E22260422300327157 /* ForgetPasswordViewController.h */,
  2700. 1818A0E92260422300327157 /* ForgetPasswordViewController.mm */,
  2701. 1818A1012260422300327157 /* RegisterViewController.h */,
  2702. 1818A0F82260422300327157 /* RegisterViewController.mm */,
  2703. 1818A0E32260422300327157 /* UserInfoView */,
  2704. 1818A0E62260422300327157 /* ForgetPasswordView */,
  2705. 1818A0EB2260422300327157 /* ChangePasswordView */,
  2706. 1818A0EF2260422300327157 /* Cell */,
  2707. 1818A0F42260422300327157 /* UserBindView */,
  2708. 1818A0FA2260422300327157 /* RegisterView */,
  2709. );
  2710. path = AccountViewController;
  2711. sourceTree = "<group>";
  2712. };
  2713. 1818A0E32260422300327157 /* UserInfoView */ = {
  2714. isa = PBXGroup;
  2715. children = (
  2716. 1818A0E42260422300327157 /* UserInfoView.h */,
  2717. 1818A0E52260422300327157 /* UserInfoView.m */,
  2718. );
  2719. path = UserInfoView;
  2720. sourceTree = "<group>";
  2721. };
  2722. 1818A0E62260422300327157 /* ForgetPasswordView */ = {
  2723. isa = PBXGroup;
  2724. children = (
  2725. 1818A0E72260422300327157 /* ForgetPasswordView.h */,
  2726. 1818A0E82260422300327157 /* ForgetPasswordView.m */,
  2727. );
  2728. path = ForgetPasswordView;
  2729. sourceTree = "<group>";
  2730. };
  2731. 1818A0EB2260422300327157 /* ChangePasswordView */ = {
  2732. isa = PBXGroup;
  2733. children = (
  2734. 1818A0EC2260422300327157 /* ChangePasswordView.m */,
  2735. 1818A0ED2260422300327157 /* ChangePasswordView.h */,
  2736. );
  2737. path = ChangePasswordView;
  2738. sourceTree = "<group>";
  2739. };
  2740. 1818A0EF2260422300327157 /* Cell */ = {
  2741. isa = PBXGroup;
  2742. children = (
  2743. 1818A0F02260422300327157 /* UserInputCell.h */,
  2744. 1818A0F12260422300327157 /* UserInfoCell.h */,
  2745. 1818A0F22260422300327157 /* UserInputCell.m */,
  2746. 1818A0F32260422300327157 /* UserInfoCell.m */,
  2747. );
  2748. path = Cell;
  2749. sourceTree = "<group>";
  2750. };
  2751. 1818A0F42260422300327157 /* UserBindView */ = {
  2752. isa = PBXGroup;
  2753. children = (
  2754. 1818A0F52260422300327157 /* UserBindView.h */,
  2755. 1818A0F62260422300327157 /* UserBindView.m */,
  2756. );
  2757. path = UserBindView;
  2758. sourceTree = "<group>";
  2759. };
  2760. 1818A0FA2260422300327157 /* RegisterView */ = {
  2761. isa = PBXGroup;
  2762. children = (
  2763. 1818A0FB2260422300327157 /* RegisterView.h */,
  2764. 1818A0FC2260422300327157 /* RegisterView.m */,
  2765. );
  2766. path = RegisterView;
  2767. sourceTree = "<group>";
  2768. };
  2769. 1818A1022260422300327157 /* DeviceAddViewController */ = {
  2770. isa = PBXGroup;
  2771. children = (
  2772. 1818A1072260422300327157 /* SerialNumAddViewController.h */,
  2773. 1818A1052260422300327157 /* SerialNumAddViewController.mm */,
  2774. 1818A1172260422300327157 /* IPAddViewController.h */,
  2775. 1818A1032260422300327157 /* IPAddViewController.mm */,
  2776. 1818A1082260422300327157 /* APLoginConfigVC.h */,
  2777. 1818A1042260422300327157 /* APLoginConfigVC.mm */,
  2778. 1818A1062260422300327157 /* OriginalScaner.mm */,
  2779. 1818A1092260422300327157 /* MyRadarView.h */,
  2780. 1818A1182260422300327157 /* MyRadarView.m */,
  2781. 1818A10A2260422300327157 /* OriginalScaner.h */,
  2782. 1818A10B2260422300327157 /* ScanAnimationView.h */,
  2783. 1818A1192260422300327157 /* ScanAnimationView.m */,
  2784. 1818A11A2260422300327157 /* QuickConfigurationViewController.h */,
  2785. 1818A10F2260422300327157 /* QuickConfigurationViewController.mm */,
  2786. 1818A10C2260422300327157 /* QuickConfigurationView */,
  2787. 1818A1102260422300327157 /* Cell */,
  2788. 1818A1152260422300327157 /* LANSearchViewController.mm */,
  2789. 1818A1162260422300327157 /* LANSearchViewController.h */,
  2790. );
  2791. path = DeviceAddViewController;
  2792. sourceTree = "<group>";
  2793. };
  2794. 1818A10C2260422300327157 /* QuickConfigurationView */ = {
  2795. isa = PBXGroup;
  2796. children = (
  2797. 1818A10D2260422300327157 /* QuickConfigurationView.h */,
  2798. 1818A10E2260422300327157 /* QuickConfigurationView.m */,
  2799. );
  2800. path = QuickConfigurationView;
  2801. sourceTree = "<group>";
  2802. };
  2803. 1818A1102260422300327157 /* Cell */ = {
  2804. isa = PBXGroup;
  2805. children = (
  2806. 1818A1112260422300327157 /* AddDeviceInputCell.m */,
  2807. 1818A1122260422300327157 /* SearchDeviceCell.m */,
  2808. 1818A1132260422300327157 /* AddDeviceInputCell.h */,
  2809. 1818A1142260422300327157 /* SearchDeviceCell.h */,
  2810. );
  2811. path = Cell;
  2812. sourceTree = "<group>";
  2813. };
  2814. AEF071EBEC5A0E68E742F913 /* Pods */ = {
  2815. isa = PBXGroup;
  2816. children = (
  2817. 9BE3BA4CD1BDF2DADB10D96F /* Pods-Haishenghai-master.debug.xcconfig */,
  2818. 6A9E328D76A8A71C94C8091A /* Pods-Haishenghai-master.release.xcconfig */,
  2819. );
  2820. name = Pods;
  2821. sourceTree = "<group>";
  2822. };
  2823. C604BFF421DF42DF0001BC82 /* ManagePlace */ = {
  2824. isa = PBXGroup;
  2825. children = (
  2826. C604BFF521DF43540001BC82 /* PlaceList_VC.h */,
  2827. C604BFF621DF43540001BC82 /* PlaceList_VC.m */,
  2828. C687A04921E71905003485B6 /* PlaceDetail_VC.h */,
  2829. C687A04A21E71905003485B6 /* PlaceDetail_VC.m */,
  2830. );
  2831. path = ManagePlace;
  2832. sourceTree = "<group>";
  2833. };
  2834. C604BFF821DF446B0001BC82 /* ManageDevece */ = {
  2835. isa = PBXGroup;
  2836. children = (
  2837. C604BFF921DF459B0001BC82 /* ManageDeveceList_VC.h */,
  2838. C604BFFA21DF459B0001BC82 /* ManageDeveceList_VC.m */,
  2839. );
  2840. path = ManageDevece;
  2841. sourceTree = "<group>";
  2842. };
  2843. C604C00021DF474C0001BC82 /* FireAlarm */ = {
  2844. isa = PBXGroup;
  2845. children = (
  2846. C604C00121DF47CE0001BC82 /* FireAlarm_VC.h */,
  2847. C604C00221DF47CE0001BC82 /* FireAlarm_VC.m */,
  2848. );
  2849. path = FireAlarm;
  2850. sourceTree = "<group>";
  2851. };
  2852. C604C00421DF48580001BC82 /* PushManagement */ = {
  2853. isa = PBXGroup;
  2854. children = (
  2855. C604C00521DF48840001BC82 /* PushManage_VC.h */,
  2856. C604C00621DF48840001BC82 /* PushManage_VC.m */,
  2857. );
  2858. path = PushManagement;
  2859. sourceTree = "<group>";
  2860. };
  2861. C604C00821DF48C30001BC82 /* Questions */ = {
  2862. isa = PBXGroup;
  2863. children = (
  2864. C604C00921DF48E60001BC82 /* ProblemViewController.h */,
  2865. C604C00A21DF48E60001BC82 /* ProblemViewController.m */,
  2866. );
  2867. path = Questions;
  2868. sourceTree = "<group>";
  2869. };
  2870. C604C00C21DF495E0001BC82 /* CustomerService */ = {
  2871. isa = PBXGroup;
  2872. children = (
  2873. C604C00D21DF499B0001BC82 /* Service_VC.h */,
  2874. C604C00E21DF499B0001BC82 /* Service_VC.m */,
  2875. );
  2876. path = CustomerService;
  2877. sourceTree = "<group>";
  2878. };
  2879. C60F0C00223B4EBD004446AA /* people */ = {
  2880. isa = PBXGroup;
  2881. children = (
  2882. C65726E321D8ACAA0013E52F /* Person_VC.h */,
  2883. C65726E421D8ACAA0013E52F /* Person_VC.m */,
  2884. C63D540B222A2C92002723EB /* Setting_VC.h */,
  2885. C63D540C222A2C92002723EB /* Setting_VC.m */,
  2886. C6457D7B21FAFEB000CD6276 /* About_VC.h */,
  2887. C6457D7C21FAFEB000CD6276 /* About_VC.m */,
  2888. C60F0C01223B4F25004446AA /* Protcol_VC.h */,
  2889. C60F0C02223B4F26004446AA /* Protcol_VC.m */,
  2890. C60F0C0D223B5104004446AA /* privacy_VC.h */,
  2891. C60F0C0E223B5104004446AA /* privacy_VC.m */,
  2892. );
  2893. path = people;
  2894. sourceTree = "<group>";
  2895. };
  2896. C60FC1A621E86C40004EC4C3 /* HttpManager */ = {
  2897. isa = PBXGroup;
  2898. children = (
  2899. C6114BBA225DA07D00D6BCE4 /* SXAlert.h */,
  2900. C6114BB9225DA07C00D6BCE4 /* SXAlert.m */,
  2901. C6C071D32255D66900474188 /* DataSourceManager.h */,
  2902. C6C071D22255D66800474188 /* DataSourceManager.m */,
  2903. C6576FFA22182A6B0022B990 /* NSMutableDictionary+NullSaf.h */,
  2904. C6576FFB22182A6C0022B990 /* NSMutableDictionary+NullSaf.m */,
  2905. );
  2906. path = HttpManager;
  2907. sourceTree = "<group>";
  2908. };
  2909. C615004121D7083F00FEBA22 = {
  2910. isa = PBXGroup;
  2911. children = (
  2912. C615004C21D7083F00FEBA22 /* Haishenghai-master */,
  2913. C615006521D7084000FEBA22 /* Haishenghai-masterTests */,
  2914. C615007021D7084000FEBA22 /* Haishenghai-masterUITests */,
  2915. C615004B21D7083F00FEBA22 /* Products */,
  2916. AEF071EBEC5A0E68E742F913 /* Pods */,
  2917. C71F25DA0AC004E2929F3A88 /* Frameworks */,
  2918. );
  2919. sourceTree = "<group>";
  2920. };
  2921. C615004B21D7083F00FEBA22 /* Products */ = {
  2922. isa = PBXGroup;
  2923. children = (
  2924. C615004A21D7083F00FEBA22 /* Haishenghai-master.app */,
  2925. C615006221D7084000FEBA22 /* Haishenghai-masterTests.xctest */,
  2926. C615006D21D7084000FEBA22 /* Haishenghai-masterUITests.xctest */,
  2927. );
  2928. name = Products;
  2929. sourceTree = "<group>";
  2930. };
  2931. C615004C21D7083F00FEBA22 /* Haishenghai-master */ = {
  2932. isa = PBXGroup;
  2933. children = (
  2934. 18189E4F2260422100327157 /* tool */,
  2935. C618482F224B684D006A586B /* fireAlarm.mp3 */,
  2936. C60E3F76225B1CBE003C1541 /* MBProgressHUD.h */,
  2937. C60E3F77225B1CCA003C1541 /* MBProgressHUD.m */,
  2938. C68433132240EBF9001D789D /* Haishenghai-master.entitlements */,
  2939. C6615DBD21E9B9890067BF83 /* MapLib */,
  2940. C60FC1A621E86C40004EC4C3 /* HttpManager */,
  2941. C615007F21D708F900FEBA22 /* model */,
  2942. C615008121D7095200FEBA22 /* Views */,
  2943. C615008221D7096500FEBA22 /* ViewControllers */,
  2944. C615004D21D7083F00FEBA22 /* AppDelegate.h */,
  2945. C615004E21D7083F00FEBA22 /* AppDelegate.mm */,
  2946. C615005021D7083F00FEBA22 /* ViewController.h */,
  2947. C615005121D7083F00FEBA22 /* ViewController.m */,
  2948. C615005321D7083F00FEBA22 /* Main.storyboard */,
  2949. C615009A21D720A400FEBA22 /* Assets.xcassets */,
  2950. C6F75F4221E4435E00D1B606 /* LaunchScreen.storyboard */,
  2951. C615005B21D7083F00FEBA22 /* Info.plist */,
  2952. C615005C21D7083F00FEBA22 /* main.m */,
  2953. C68BEE8821D7589D00639184 /* Header.h */,
  2954. );
  2955. path = "Haishenghai-master";
  2956. sourceTree = "<group>";
  2957. };
  2958. C615006521D7084000FEBA22 /* Haishenghai-masterTests */ = {
  2959. isa = PBXGroup;
  2960. children = (
  2961. C615006621D7084000FEBA22 /* Haishenghai_masterTests.m */,
  2962. C615006821D7084000FEBA22 /* Info.plist */,
  2963. );
  2964. path = "Haishenghai-masterTests";
  2965. sourceTree = "<group>";
  2966. };
  2967. C615007021D7084000FEBA22 /* Haishenghai-masterUITests */ = {
  2968. isa = PBXGroup;
  2969. children = (
  2970. C615007121D7084000FEBA22 /* Haishenghai_masterUITests.m */,
  2971. C615007321D7084000FEBA22 /* Info.plist */,
  2972. );
  2973. path = "Haishenghai-masterUITests";
  2974. sourceTree = "<group>";
  2975. };
  2976. C615007F21D708F900FEBA22 /* model */ = {
  2977. isa = PBXGroup;
  2978. children = (
  2979. C6576FF42217A2A00022B990 /* contactModel.h */,
  2980. C6576FF52217A2A00022B990 /* contactModel.m */,
  2981. C6576FF72217A2A00022B990 /* troubleDeveceModel.h */,
  2982. C6576FF62217A2A00022B990 /* troubleDeveceModel.m */,
  2983. C6472CC721F71B5400F5CD09 /* uploadModel.h */,
  2984. C6472CC621F71B5300F5CD09 /* uploadModel.m */,
  2985. C6478F7421F5ABD1004BB536 /* deveceModel.h */,
  2986. C6478F7521F5ABD1004BB536 /* deveceModel.m */,
  2987. C6472CC321F6E3D100F5CD09 /* deveceListModel.h */,
  2988. C6472CC421F6E3D100F5CD09 /* deveceListModel.m */,
  2989. C668A3002238A63500F866B0 /* detatilDeviceModel.h */,
  2990. C668A3012238A63500F866B0 /* detatilDeviceModel.m */,
  2991. C6472CC021F6C2A600F5CD09 /* PlaceModel.h */,
  2992. C6472CC121F6C2A600F5CD09 /* PlaceModel.m */,
  2993. C62F19C2223CF825001696B2 /* troubleSiteModel.h */,
  2994. C62F19C3223CF825001696B2 /* troubleSiteModel.m */,
  2995. C6184823224A2975006A586B /* FireNoticeModel.h */,
  2996. C6184824224A2975006A586B /* FireNoticeModel.m */,
  2997. );
  2998. path = model;
  2999. sourceTree = "<group>";
  3000. };
  3001. C615008121D7095200FEBA22 /* Views */ = {
  3002. isa = PBXGroup;
  3003. children = (
  3004. C6C071CF2254C44100474188 /* THDatePickerView.h */,
  3005. C6C071D82255FE3200474188 /* THDatePickerView.m */,
  3006. C64F214F2226586400DBD297 /* SelectBoxView.h */,
  3007. C64F21502226586400DBD297 /* SelectBoxView.m */,
  3008. C63F6BE421F2B0DD00868CE6 /* DetailTableViewCell.h */,
  3009. C63F6BE521F2B0DD00868CE6 /* DetailTableViewCell.m */,
  3010. C66E858D21EEEF17001997E0 /* popMenuView.h */,
  3011. C66E858C21EEEF16001997E0 /* popMenuView.m */,
  3012. C604C01021DF674D0001BC82 /* CustomPlaceView.h */,
  3013. C604C01121DF674D0001BC82 /* CustomPlaceView.m */,
  3014. C618E43521E0472500A65353 /* ZDYAlertView.h */,
  3015. C618E43621E0472500A65353 /* ZDYAlertView.m */,
  3016. C618E43821E04F5E00A65353 /* DeveceTableCell.h */,
  3017. C618E43921E04F5E00A65353 /* DeveceTableCell.m */,
  3018. C618E43E21E05D9200A65353 /* TableheaderView.h */,
  3019. C618E43F21E05D9200A65353 /* TableheaderView.m */,
  3020. C62678D621E0873A00F146BC /* MessageTableCell.h */,
  3021. C62678D721E0873A00F146BC /* MessageTableCell.m */,
  3022. C687A04C21E7380A003485B6 /* FireAlarmCell.h */,
  3023. C687A04D21E7380A003485B6 /* FireAlarmCell.m */,
  3024. C687A04F21E73DC2003485B6 /* DeveceListCell.h */,
  3025. C687A05021E73DC2003485B6 /* DeveceListCell.m */,
  3026. C687A05221E74685003485B6 /* PushManageCell.h */,
  3027. C687A05321E74685003485B6 /* PushManageCell.m */,
  3028. C643407421EAD887006A5D72 /* PersonCell.h */,
  3029. C643407521EAD887006A5D72 /* PersonCell.m */,
  3030. C6834EBA21F9605500E2DA26 /* LeftTableCell.h */,
  3031. C6834EBB21F9605500E2DA26 /* LeftTableCell.m */,
  3032. C6834EBD21F9607200E2DA26 /* RightTableCell.h */,
  3033. C6834EBE21F9607200E2DA26 /* RightTableCell.m */,
  3034. C647015F2223EC24009D2FCF /* BottomView.h */,
  3035. C64701602223EC24009D2FCF /* BottomView.m */,
  3036. C6C071D52255EEC800474188 /* SitTabCell.h */,
  3037. C6C071D62255EECE00474188 /* SitTabCell.m */,
  3038. );
  3039. path = Views;
  3040. sourceTree = "<group>";
  3041. };
  3042. C615008221D7096500FEBA22 /* ViewControllers */ = {
  3043. isa = PBXGroup;
  3044. children = (
  3045. C65FCE3D21DDE18900CA21F8 /* ZYView */,
  3046. C65726DF21D8AB1F0013E52F /* Place */,
  3047. C65726E021D8ABF40013E52F /* Device */,
  3048. C65726E121D8AC000013E52F /* Message */,
  3049. C65726E221D8AC2A0013E52F /* Person */,
  3050. C615008921D70C2600FEBA22 /* Login */,
  3051. );
  3052. path = ViewControllers;
  3053. sourceTree = "<group>";
  3054. };
  3055. C615008921D70C2600FEBA22 /* Login */ = {
  3056. isa = PBXGroup;
  3057. children = (
  3058. C615008A21D70C5800FEBA22 /* BaseLogin_VC.h */,
  3059. C615008B21D70C5800FEBA22 /* BaseLogin_VC.m */,
  3060. C68BEE8C21D75B4300639184 /* UserLogin_VC.h */,
  3061. C62F19C0223C9579001696B2 /* UserLogin_VC.m */,
  3062. C68BEE8F21D75B8900639184 /* UserRegister_VC.h */,
  3063. C62F19BE223C9561001696B2 /* UserRegister_VC.m */,
  3064. C65726DC21D8A10D0013E52F /* ResetPassword_VC.h */,
  3065. C65726DD21D8A10D0013E52F /* ResetPassword_VC.m */,
  3066. );
  3067. path = Login;
  3068. sourceTree = "<group>";
  3069. };
  3070. C65726DF21D8AB1F0013E52F /* Place */ = {
  3071. isa = PBXGroup;
  3072. children = (
  3073. C6ED0E0821DDBD580064FEAB /* Addplace_VC.h */,
  3074. C6ED0E0921DDBD580064FEAB /* Addplace_VC.m */,
  3075. C65FCE4421DDF9C000CA21F8 /* AddDevece_VC.h */,
  3076. C65FCE4521DDF9C000CA21F8 /* AddDevece_VC.m */,
  3077. C65FCE7121DE225F00CA21F8 /* ScanViewController.h */,
  3078. C65FCE7221DE225F00CA21F8 /* ScanViewController.m */,
  3079. C64FE3D221F4271000ACFCA1 /* EditLocationVC.h */,
  3080. C64FE3D321F4271000ACFCA1 /* EditLocationVC.m */,
  3081. C618E44121E0615400A65353 /* Contacts_VC.h */,
  3082. C618E44221E0615400A65353 /* Contacts_VC.m */,
  3083. );
  3084. path = Place;
  3085. sourceTree = "<group>";
  3086. };
  3087. C65726E021D8ABF40013E52F /* Device */ = {
  3088. isa = PBXGroup;
  3089. children = (
  3090. C65726E921D8AD1F0013E52F /* DeveceList_VC.h */,
  3091. C65726EA21D8AD1F0013E52F /* DeveceList_VC.m */,
  3092. C604C01621DF81DF0001BC82 /* DetailDeveceList_VC.h */,
  3093. C604C01721DF81DF0001BC82 /* DetailDeveceList_VC.m */,
  3094. C604BFF121DF33760001BC82 /* DeveceDetail_VC.h */,
  3095. C604BFF221DF33760001BC82 /* DeveceDetail_VC.m */,
  3096. );
  3097. path = Device;
  3098. sourceTree = "<group>";
  3099. };
  3100. C65726E121D8AC000013E52F /* Message */ = {
  3101. isa = PBXGroup;
  3102. children = (
  3103. C65726E621D8ACF10013E52F /* Message_VC.h */,
  3104. C65726E721D8ACF10013E52F /* Message_VC.m */,
  3105. C6413D3A21E1A3BF00605186 /* Recorddetail_VC.h */,
  3106. C6413D3B21E1A3BF00605186 /* Recorddetail_VC.m */,
  3107. C640782D21E1FF580070B632 /* FireManage_VC.h */,
  3108. C640782E21E1FF580070B632 /* FireManage_VC.m */,
  3109. C6119B3721E2E996008B44BE /* SubmitInformation_VC.h */,
  3110. C6119B3821E2E996008B44BE /* SubmitInformation_VC.m */,
  3111. C6119B4121E3477A008B44BE /* CommitMessage_VC.h */,
  3112. C6119B4221E3477A008B44BE /* CommitMessage_VC.m */,
  3113. C6114BBE225E105600D6BCE4 /* CheckMessage_VC.h */,
  3114. C6114BBF225E105600D6BCE4 /* CheckMessage_VC.m */,
  3115. );
  3116. path = Message;
  3117. sourceTree = "<group>";
  3118. };
  3119. C65726E221D8AC2A0013E52F /* Person */ = {
  3120. isa = PBXGroup;
  3121. children = (
  3122. C60F0C00223B4EBD004446AA /* people */,
  3123. C604C00C21DF495E0001BC82 /* CustomerService */,
  3124. C604C00821DF48C30001BC82 /* Questions */,
  3125. C604C00421DF48580001BC82 /* PushManagement */,
  3126. C604C00021DF474C0001BC82 /* FireAlarm */,
  3127. C604BFF821DF446B0001BC82 /* ManageDevece */,
  3128. C604BFF421DF42DF0001BC82 /* ManagePlace */,
  3129. );
  3130. path = Person;
  3131. sourceTree = "<group>";
  3132. };
  3133. C65FCE3D21DDE18900CA21F8 /* ZYView */ = {
  3134. isa = PBXGroup;
  3135. children = (
  3136. C65FCE4121DDE1E400CA21F8 /* popViewController.h */,
  3137. C65FCE4221DDE1E400CA21F8 /* popViewController.m */,
  3138. C65FCE6621DE1F7900CA21F8 /* CollectionViewCell.h */,
  3139. C65FCE6721DE1F7900CA21F8 /* CollectionViewCell.m */,
  3140. C6457D7521FAAB3F00CD6276 /* SiteTableViewController.h */,
  3141. C6457D7621FAAB3F00CD6276 /* SiteTableViewController.m */,
  3142. C6457D7221FAAB2D00CD6276 /* DeveceTableViewController.h */,
  3143. C6457D7321FAAB2D00CD6276 /* DeveceTableViewController.m */,
  3144. C60E3F88225B3F36003C1541 /* CustomAlertView.h */,
  3145. C60E3F89225B3F36003C1541 /* CustomAlertView.m */,
  3146. );
  3147. path = ZYView;
  3148. sourceTree = "<group>";
  3149. };
  3150. C6615DBD21E9B9890067BF83 /* MapLib */ = {
  3151. isa = PBXGroup;
  3152. children = (
  3153. C6615DDA21E9CF170067BF83 /* AMapLocationKit.framework */,
  3154. C6615DD621E9C74C0067BF83 /* AMapFoundationKit.framework */,
  3155. C6615DD721E9C7520067BF83 /* MAMapKit.framework */,
  3156. C6615DD421E9C6CC0067BF83 /* AMapSearchKit.framework */,
  3157. C6615DD121E9BE350067BF83 /* AMap.bundle */,
  3158. );
  3159. path = MapLib;
  3160. sourceTree = "<group>";
  3161. };
  3162. C71F25DA0AC004E2929F3A88 /* Frameworks */ = {
  3163. isa = PBXGroup;
  3164. children = (
  3165. 1818A23A226042B500327157 /* AdSupport.framework */,
  3166. 18189A622260343900327157 /* libsqlite3.0.tbd */,
  3167. 18189A60226023B300327157 /* VideoToolbox.framework */,
  3168. 18189A5E2260239900327157 /* MediaPlayer.framework */,
  3169. 18189A5C2260238600327157 /* CoreMedia.framework */,
  3170. 18189A5A2260236200327157 /* AudioToolbox.framework */,
  3171. 18189A562260233B00327157 /* UserNotifications.framework */,
  3172. 18189A572260233B00327157 /* UserNotificationsUI.framework */,
  3173. 18189A542260232F00327157 /* AssetsLibrary.framework */,
  3174. 18189A502260232400327157 /* AVFoundation.framework */,
  3175. 18189A512260232400327157 /* AVKit.framework */,
  3176. 18189A4E226022FD00327157 /* libbz2.tbd */,
  3177. 18189A4C226022F600327157 /* libiconv.tbd */,
  3178. 18189A4A226022ED00327157 /* libresolv.tbd */,
  3179. 18189A46226022DB00327157 /* OpenAL.framework */,
  3180. 18189A47226022DB00327157 /* OpenGLES.framework */,
  3181. C6114BBC225DBAED00D6BCE4 /* QuartzCore.framework */,
  3182. C60F0C10223B5231004446AA /* QuickLook.framework */,
  3183. C6615DDC21E9CFC70067BF83 /* ExternalAccessory.framework */,
  3184. C6615DD021E9BDD60067BF83 /* CoreLocation.framework */,
  3185. C6615DCC21E9BAF90067BF83 /* libc++.tbd */,
  3186. C6615DCA21E9BAEB0067BF83 /* libz.tbd */,
  3187. C6615DC821E9BAD30067BF83 /* GLKit.framework */,
  3188. C6615DC621E9BAB70067BF83 /* Security.framework */,
  3189. C6615DC421E9BA620067BF83 /* CoreTelephony.framework */,
  3190. C6615DC221E9BA330067BF83 /* SystemConfiguration.framework */,
  3191. 057E4FF4BB19D559388E05C8 /* libPods-Haishenghai-master.a */,
  3192. );
  3193. name = Frameworks;
  3194. sourceTree = "<group>";
  3195. };
  3196. /* End PBXGroup section */
  3197. /* Begin PBXNativeTarget section */
  3198. C615004921D7083F00FEBA22 /* Haishenghai-master */ = {
  3199. isa = PBXNativeTarget;
  3200. buildConfigurationList = C615007621D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-master" */;
  3201. buildPhases = (
  3202. 7778CBA06F56F007B1C952ED /* [CP] Check Pods Manifest.lock */,
  3203. C615004621D7083F00FEBA22 /* Sources */,
  3204. C615004721D7083F00FEBA22 /* Frameworks */,
  3205. C615004821D7083F00FEBA22 /* Resources */,
  3206. 53D4718F1A8281A34ADAC3CC /* [CP] Copy Pods Resources */,
  3207. );
  3208. buildRules = (
  3209. );
  3210. dependencies = (
  3211. );
  3212. name = "Haishenghai-master";
  3213. productName = "Haishenghai-master";
  3214. productReference = C615004A21D7083F00FEBA22 /* Haishenghai-master.app */;
  3215. productType = "com.apple.product-type.application";
  3216. };
  3217. C615006121D7084000FEBA22 /* Haishenghai-masterTests */ = {
  3218. isa = PBXNativeTarget;
  3219. buildConfigurationList = C615007921D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-masterTests" */;
  3220. buildPhases = (
  3221. C615005E21D7084000FEBA22 /* Sources */,
  3222. C615005F21D7084000FEBA22 /* Frameworks */,
  3223. C615006021D7084000FEBA22 /* Resources */,
  3224. );
  3225. buildRules = (
  3226. );
  3227. dependencies = (
  3228. C615006421D7084000FEBA22 /* PBXTargetDependency */,
  3229. );
  3230. name = "Haishenghai-masterTests";
  3231. productName = "Haishenghai-masterTests";
  3232. productReference = C615006221D7084000FEBA22 /* Haishenghai-masterTests.xctest */;
  3233. productType = "com.apple.product-type.bundle.unit-test";
  3234. };
  3235. C615006C21D7084000FEBA22 /* Haishenghai-masterUITests */ = {
  3236. isa = PBXNativeTarget;
  3237. buildConfigurationList = C615007C21D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-masterUITests" */;
  3238. buildPhases = (
  3239. C615006921D7084000FEBA22 /* Sources */,
  3240. C615006A21D7084000FEBA22 /* Frameworks */,
  3241. C615006B21D7084000FEBA22 /* Resources */,
  3242. );
  3243. buildRules = (
  3244. );
  3245. dependencies = (
  3246. C615006F21D7084000FEBA22 /* PBXTargetDependency */,
  3247. );
  3248. name = "Haishenghai-masterUITests";
  3249. productName = "Haishenghai-masterUITests";
  3250. productReference = C615006D21D7084000FEBA22 /* Haishenghai-masterUITests.xctest */;
  3251. productType = "com.apple.product-type.bundle.ui-testing";
  3252. };
  3253. /* End PBXNativeTarget section */
  3254. /* Begin PBXProject section */
  3255. C615004221D7083F00FEBA22 /* Project object */ = {
  3256. isa = PBXProject;
  3257. attributes = {
  3258. LastUpgradeCheck = 0910;
  3259. ORGANIZATIONNAME = "Haishenghai intelligence network technology";
  3260. TargetAttributes = {
  3261. C615004921D7083F00FEBA22 = {
  3262. CreatedOnToolsVersion = 9.1;
  3263. ProvisioningStyle = Automatic;
  3264. SystemCapabilities = {
  3265. com.apple.BackgroundModes = {
  3266. enabled = 1;
  3267. };
  3268. com.apple.Push = {
  3269. enabled = 1;
  3270. };
  3271. };
  3272. };
  3273. C615006121D7084000FEBA22 = {
  3274. CreatedOnToolsVersion = 9.1;
  3275. ProvisioningStyle = Automatic;
  3276. TestTargetID = C615004921D7083F00FEBA22;
  3277. };
  3278. C615006C21D7084000FEBA22 = {
  3279. CreatedOnToolsVersion = 9.1;
  3280. ProvisioningStyle = Automatic;
  3281. TestTargetID = C615004921D7083F00FEBA22;
  3282. };
  3283. };
  3284. };
  3285. buildConfigurationList = C615004521D7083F00FEBA22 /* Build configuration list for PBXProject "Haishenghai-master" */;
  3286. compatibilityVersion = "Xcode 8.0";
  3287. developmentRegion = en;
  3288. hasScannedForEncodings = 0;
  3289. knownRegions = (
  3290. en,
  3291. Base,
  3292. "zh-Hans",
  3293. "zh-Hans-CN",
  3294. );
  3295. mainGroup = C615004121D7083F00FEBA22;
  3296. productRefGroup = C615004B21D7083F00FEBA22 /* Products */;
  3297. projectDirPath = "";
  3298. projectRoot = "";
  3299. targets = (
  3300. C615004921D7083F00FEBA22 /* Haishenghai-master */,
  3301. C615006121D7084000FEBA22 /* Haishenghai-masterTests */,
  3302. C615006C21D7084000FEBA22 /* Haishenghai-masterUITests */,
  3303. );
  3304. };
  3305. /* End PBXProject section */
  3306. /* Begin PBXResourcesBuildPhase section */
  3307. C615004821D7083F00FEBA22 /* Resources */ = {
  3308. isa = PBXResourcesBuildPhase;
  3309. buildActionMask = 2147483647;
  3310. files = (
  3311. 1818A1B42260422300327157 /* xmjp_bob.png in Resources */,
  3312. 1818A1902260422300327157 /* VR-tow_nor.png in Resources */,
  3313. 1818A15E2260422300327157 /* icon_close.png in Resources */,
  3314. 1818A1B32260422300327157 /* xmjp_cloudbox.png in Resources */,
  3315. 1818A1812260422300327157 /* VR-tow_sel.png in Resources */,
  3316. 1818A22C2260422300327157 /* LoginViewController.xib in Resources */,
  3317. 1818A18F2260422300327157 /* VR-ball bowl_sel.png in Resources */,
  3318. 1818A16C2260422300327157 /* btn_stop_select.png in Resources */,
  3319. 1818A1822260422300327157 /* VR-ball bowl_nor.png in Resources */,
  3320. 1818A1B02260422300327157 /* xmjp_feye.png in Resources */,
  3321. 1818A18B2260422300327157 /* VR_Wall_sel.png in Resources */,
  3322. 1818A1642260422300327157 /* talk_unselect.png in Resources */,
  3323. 1818A19F2260422300327157 /* icon_hide_nor.png in Resources */,
  3324. 1818A1862260422300327157 /* 180_3R_sel.png in Resources */,
  3325. 1818A1762260422300327157 /* btn_SD_E.png in Resources */,
  3326. C615009B21D720A500FEBA22 /* Assets.xcassets in Resources */,
  3327. 1818A1752260422300327157 /* btn_plus_highlighted.png in Resources */,
  3328. 1818A1952260422300327157 /* btn_recording.png in Resources */,
  3329. 1818A1632260422300327157 /* btn_HD_E.png in Resources */,
  3330. 1818A1992260422300327157 /* btn_camera_normal.png in Resources */,
  3331. 1818A1BD2260422300327157 /* SVProgressHUD.bundle in Resources */,
  3332. 1818A1A92260422300327157 /* xmjp_seye.png in Resources */,
  3333. 1818A1B62260422300327157 /* Local_Settings.png in Resources */,
  3334. 1818A19B2260422300327157 /* radar_search_sign.png in Resources */,
  3335. 1818A1B12260422300327157 /* xmjp_cloudbox_klok.png in Resources */,
  3336. 1818A1882260422300327157 /* VR_180_nor.png in Resources */,
  3337. 1818A1C12260422300327157 /* zh_CN.txt in Resources */,
  3338. 1818A1AB2260422300327157 /* xmjp_car.png in Resources */,
  3339. 1818A15B2260422300327157 /* icon_hide_sel.png in Resources */,
  3340. 1818A15A2260422300327157 /* error.plist in Resources */,
  3341. 1818A15D2260422300327157 /* btn_SD.png in Resources */,
  3342. 1818A1892260422300327157 /* VR-Ceiling_sel.png in Resources */,
  3343. 1818A19A2260422300327157 /* QRCode.png in Resources */,
  3344. 1818A1A22260422300327157 /* sleepnotwakeup.png in Resources */,
  3345. 1818A15C2260422300327157 /* press_talk_selected_en.png in Resources */,
  3346. 1818A17A2260422300327157 /* Speed_Select.png in Resources */,
  3347. 1818A1602260422300327157 /* btn_HD_F.png in Resources */,
  3348. 1818A16F2260422300327157 /* btn_voice_selected.png in Resources */,
  3349. 1818A1782260422300327157 /* btn_pause_select.png in Resources */,
  3350. 1818A1982260422300327157 /* btn_control_right.png in Resources */,
  3351. 1818A1B52260422300327157 /* xmjp_bulbsocket.png in Resources */,
  3352. 1818A1742260422300327157 /* talk_select.png in Resources */,
  3353. 1818A18C2260422300327157 /* VR_Ball_nor.png in Resources */,
  3354. 1818A16D2260422300327157 /* press_talk_selected.png in Resources */,
  3355. 1818A1A72260422300327157 /* nor.png in Resources */,
  3356. 1818A18D2260422300327157 /* VR-four_sel.png in Resources */,
  3357. 1818A1832260422300327157 /* VR_ball hat_nor.png in Resources */,
  3358. C6184830224B684E006A586B /* fireAlarm.mp3 in Resources */,
  3359. 1818A1B72260422300327157 /* phone2.png in Resources */,
  3360. 1818A1A82260422300327157 /* xmjp_camera.png in Resources */,
  3361. 1818A1B82260422300327157 /* new_back.png in Resources */,
  3362. 1818A1A12260422300327157 /* offline.png in Resources */,
  3363. 1818A1802260422300327157 /* VR-rectangle_sel.png in Resources */,
  3364. 1818A1922260422300327157 /* VR_ball hat_sel.png in Resources */,
  3365. 1818A1662260422300327157 /* btn_voice_normal.png in Resources */,
  3366. 1818A1592260422300327157 /* PlayToolImage.plist in Resources */,
  3367. 1818A18E2260422300327157 /* 180_3R_nor.png in Resources */,
  3368. C6615DD221E9BE350067BF83 /* AMap.bundle in Resources */,
  3369. 1818A1AF2260422300327157 /* xmjp_rotot.png in Resources */,
  3370. 1818A1912260422300327157 /* 360VR-ins_default.png in Resources */,
  3371. 1818A19E2260422300327157 /* icon_funsdk.png in Resources */,
  3372. 1818A1682260422300327157 /* btn_control_left.png in Resources */,
  3373. 1818A1872260422300327157 /* VR-cylinder_nor.png in Resources */,
  3374. 1818A1A52260422300327157 /* ic_sleep.png in Resources */,
  3375. 1818A17E2260422300327157 /* VR-Ceiling_nor.png in Resources */,
  3376. 1818A17C2260422300327157 /* VR-cylinder_sel.png in Resources */,
  3377. 1818A17F2260422300327157 /* VR-close_nor.png in Resources */,
  3378. 1818A1622260422300327157 /* btn_minus_normal.png in Resources */,
  3379. 1818A1792260422300327157 /* btn_control_down.png in Resources */,
  3380. 1818A19C2260422300327157 /* radar_search_bg.png in Resources */,
  3381. 1818A1A42260422300327157 /* online.png in Resources */,
  3382. 1818A1AD2260422300327157 /* xmjp_bulb.png in Resources */,
  3383. 1818A1772260422300327157 /* btn_pause.png in Resources */,
  3384. 1818A1A02260422300327157 /* ic_wake_green.png in Resources */,
  3385. 1818A1712260422300327157 /* press_talk_sp.png in Resources */,
  3386. 1818A16E2260422300327157 /* ptz_unselect.png in Resources */,
  3387. 1818A15F2260422300327157 /* btn_control_normal.png in Resources */,
  3388. 1818A1852260422300327157 /* VR-four_nor.png in Resources */,
  3389. 1818A1A32260422300327157 /* Prepare_sleep.png in Resources */,
  3390. 1818A1842260422300327157 /* VR_Ball_sel.png in Resources */,
  3391. 1818A1722260422300327157 /* btn_tool_recording.png in Resources */,
  3392. 1818A1672260422300327157 /* press_talk_selected_sp.png in Resources */,
  3393. 1818A1612260422300327157 /* record_temp_normal.png in Resources */,
  3394. 1818A17B2260422300327157 /* VR_Wall_nor.png in Resources */,
  3395. 1818A1A62260422300327157 /* sleepnotwakeup_zh.png in Resources */,
  3396. 1818A1962260422300327157 /* btn_plus_normal.png in Resources */,
  3397. 1818A1692260422300327157 /* press_talk_en.png in Resources */,
  3398. 1818A17D2260422300327157 /* VR_180_sel.png in Resources */,
  3399. 1818A19D2260422300327157 /* sel.png in Resources */,
  3400. 1818A1C02260422300327157 /* en.txt in Resources */,
  3401. 1818A1942260422300327157 /* btn_minus_highlighted.png in Resources */,
  3402. 1818A1652260422300327157 /* btn_record.png in Resources */,
  3403. C6F75F4321E4435E00D1B606 /* LaunchScreen.storyboard in Resources */,
  3404. 1818A1932260422300327157 /* press_talk.png in Resources */,
  3405. 1818A16A2260422300327157 /* btn_stop.png in Resources */,
  3406. C615005521D7083F00FEBA22 /* Main.storyboard in Resources */,
  3407. 1818A1702260422300327157 /* btn_control_up.png in Resources */,
  3408. 1818A1972260422300327157 /* btn_HD.png in Resources */,
  3409. 1818A1B22260422300327157 /* xmjp_beye.png in Resources */,
  3410. 1818A1732260422300327157 /* btn_SD_F.png in Resources */,
  3411. 1818A1AE2260422300327157 /* xmjp_fbulb.png in Resources */,
  3412. 1818A16B2260422300327157 /* ic_alarm.png in Resources */,
  3413. 1818A1AA2260422300327157 /* xmjp_mov.png in Resources */,
  3414. 1818A1AC2260422300327157 /* xmjp_socket.png in Resources */,
  3415. 1818A18A2260422300327157 /* VR-rectangle_nor.png in Resources */,
  3416. );
  3417. runOnlyForDeploymentPostprocessing = 0;
  3418. };
  3419. C615006021D7084000FEBA22 /* Resources */ = {
  3420. isa = PBXResourcesBuildPhase;
  3421. buildActionMask = 2147483647;
  3422. files = (
  3423. );
  3424. runOnlyForDeploymentPostprocessing = 0;
  3425. };
  3426. C615006B21D7084000FEBA22 /* Resources */ = {
  3427. isa = PBXResourcesBuildPhase;
  3428. buildActionMask = 2147483647;
  3429. files = (
  3430. );
  3431. runOnlyForDeploymentPostprocessing = 0;
  3432. };
  3433. /* End PBXResourcesBuildPhase section */
  3434. /* Begin PBXShellScriptBuildPhase section */
  3435. 53D4718F1A8281A34ADAC3CC /* [CP] Copy Pods Resources */ = {
  3436. isa = PBXShellScriptBuildPhase;
  3437. buildActionMask = 2147483647;
  3438. files = (
  3439. );
  3440. inputPaths = (
  3441. "${SRCROOT}/Pods/Target Support Files/Pods-Haishenghai-master/Pods-Haishenghai-master-resources.sh",
  3442. "${PODS_ROOT}/MJRefresh/MJRefresh/MJRefresh.bundle",
  3443. );
  3444. name = "[CP] Copy Pods Resources";
  3445. outputPaths = (
  3446. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MJRefresh.bundle",
  3447. );
  3448. runOnlyForDeploymentPostprocessing = 0;
  3449. shellPath = /bin/sh;
  3450. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Haishenghai-master/Pods-Haishenghai-master-resources.sh\"\n";
  3451. showEnvVarsInLog = 0;
  3452. };
  3453. 7778CBA06F56F007B1C952ED /* [CP] Check Pods Manifest.lock */ = {
  3454. isa = PBXShellScriptBuildPhase;
  3455. buildActionMask = 2147483647;
  3456. files = (
  3457. );
  3458. inputPaths = (
  3459. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  3460. "${PODS_ROOT}/Manifest.lock",
  3461. );
  3462. name = "[CP] Check Pods Manifest.lock";
  3463. outputPaths = (
  3464. "$(DERIVED_FILE_DIR)/Pods-Haishenghai-master-checkManifestLockResult.txt",
  3465. );
  3466. runOnlyForDeploymentPostprocessing = 0;
  3467. shellPath = /bin/sh;
  3468. 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";
  3469. showEnvVarsInLog = 0;
  3470. };
  3471. /* End PBXShellScriptBuildPhase section */
  3472. /* Begin PBXSourcesBuildPhase section */
  3473. C615004621D7083F00FEBA22 /* Sources */ = {
  3474. isa = PBXSourcesBuildPhase;
  3475. buildActionMask = 2147483647;
  3476. files = (
  3477. C62F19BF223C9561001696B2 /* UserRegister_VC.m in Sources */,
  3478. C64FE3D421F4271000ACFCA1 /* EditLocationVC.m in Sources */,
  3479. 1818A1C92260422300327157 /* ObSysteminfo.m in Sources */,
  3480. 1818A1E62260422300327157 /* AlarmConfigTableViewCell.m in Sources */,
  3481. 1818A1362260422300327157 /* PasswordConfig.mm in Sources */,
  3482. 1818A1E42260422300327157 /* XMLinkWallSwitchCell.m in Sources */,
  3483. 1818A1C82260422300327157 /* ObSystemFunction.m in Sources */,
  3484. 1818A1F92260422300327157 /* DownloadViewController.mm in Sources */,
  3485. 1818A1FC2260422300327157 /* ParamViewController.mm in Sources */,
  3486. 1818A20B2260422300327157 /* DeviceListViewController.mm in Sources */,
  3487. 1818A2202260422300327157 /* PasswordSaveViewController.m in Sources */,
  3488. C604BFFB21DF459B0001BC82 /* ManageDeveceList_VC.m in Sources */,
  3489. 1818A1D82260422300327157 /* HumanDetectionViewController.mm in Sources */,
  3490. 1818A2132260422300327157 /* MyProgressView.m in Sources */,
  3491. 1818A2272260422300327157 /* UserInfoCell.m in Sources */,
  3492. C6576FF92217A2A00022B990 /* troubleDeveceModel.m in Sources */,
  3493. 1818A1CF2260422300327157 /* ItemViewController.m in Sources */,
  3494. 1818A22B2260422300327157 /* RegisterView.m in Sources */,
  3495. C65FCE7321DE225F00CA21F8 /* ScanViewController.m in Sources */,
  3496. 1818A1342260422300327157 /* AlarmPIRConfig.mm in Sources */,
  3497. C6C071D92255FE3200474188 /* THDatePickerView.m in Sources */,
  3498. 1818A14A2260422300327157 /* UIView+Layout.m in Sources */,
  3499. 1818A2362260422300327157 /* SearchDeviceCell.m in Sources */,
  3500. 1818A1D62260422300327157 /* EncodeViewController.mm in Sources */,
  3501. C62F19C4223CF825001696B2 /* troubleSiteModel.m in Sources */,
  3502. C604C01821DF81DF0001BC82 /* DetailDeveceList_VC.m in Sources */,
  3503. 1818A2242260422300327157 /* ChangePasswordView.m in Sources */,
  3504. 1818A14D2260422300327157 /* NSString+Path.m in Sources */,
  3505. 1818A2302260422300327157 /* APLoginConfigVC.mm in Sources */,
  3506. 1818A2152260422300327157 /* PlayFunctionView.m in Sources */,
  3507. C64F21512226586400DBD297 /* SelectBoxView.m in Sources */,
  3508. 1818A2032260422300327157 /* CloudVideoDayViewController.mm in Sources */,
  3509. C6457D7421FAAB2D00CD6276 /* DeveceTableViewController.m in Sources */,
  3510. 1818A1E32260422300327157 /* UIColor+Util.m in Sources */,
  3511. 1818A11F2260422300327157 /* AlarmMessageConfig.mm in Sources */,
  3512. 1818A1BC2260422300327157 /* SVProgressHUD.m in Sources */,
  3513. 1818A2312260422300327157 /* SerialNumAddViewController.mm in Sources */,
  3514. 1818A2382260422300327157 /* MyRadarView.m in Sources */,
  3515. 1818A2082260422300327157 /* CYGLKView.m in Sources */,
  3516. C618E43721E0472500A65353 /* ZDYAlertView.m in Sources */,
  3517. 1818A1FD2260422300327157 /* CloudServerViewController.mm in Sources */,
  3518. 1818A1E12260422300327157 /* UIView+WZLBadge.m in Sources */,
  3519. 1818A1572260422300327157 /* MediaPlaybackControl.mm in Sources */,
  3520. 1818A1582260422300327157 /* MediaplayerControl.mm in Sources */,
  3521. 1818A11E2260422300327157 /* AlarmMessageInfo.m in Sources */,
  3522. 1818A2342260422300327157 /* QuickConfigurationViewController.mm in Sources */,
  3523. 1818A2162260422300327157 /* PTZView.m in Sources */,
  3524. C615008C21D70C5800FEBA22 /* BaseLogin_VC.m in Sources */,
  3525. 1818A1F22260422300327157 /* AboutDeviceViewController.mm in Sources */,
  3526. 1818A12D2260422300327157 /* Storage.m in Sources */,
  3527. 1818A1332260422300327157 /* AnalyzeConfig.mm in Sources */,
  3528. C687A04E21E7380A003485B6 /* FireAlarmCell.m in Sources */,
  3529. C6834EBF21F9607200E2DA26 /* RightTableCell.m in Sources */,
  3530. 1818A1542260422300327157 /* CommonControl.m in Sources */,
  3531. C65726E821D8ACF10013E52F /* Message_VC.m in Sources */,
  3532. 1818A14F2260422300327157 /* MyStringManager.m in Sources */,
  3533. 1818A1F62260422300327157 /* PictureDownloadViewController.mm in Sources */,
  3534. 1818A1D22260422300327157 /* AlarmMessageCell.m in Sources */,
  3535. 1818A1202260422300327157 /* HumanDetectionConfig.mm in Sources */,
  3536. C6114BC0225E105600D6BCE4 /* CheckMessage_VC.m in Sources */,
  3537. 1818A1262260422300327157 /* CloudAbilityDataSource.m in Sources */,
  3538. 1818A1E82260422300327157 /* AlarmLevelViewController.m in Sources */,
  3539. 1818A1462260422300327157 /* UserAccountModel.mm in Sources */,
  3540. 1818A1F82260422300327157 /* ByFileViewController.mm in Sources */,
  3541. 1818A2392260422300327157 /* ScanAnimationView.m in Sources */,
  3542. 1818A1F52260422300327157 /* MonthPictureViewController.mm in Sources */,
  3543. C618E44021E05D9200A65353 /* TableheaderView.m in Sources */,
  3544. C65FCE4321DDE1E400CA21F8 /* popViewController.m in Sources */,
  3545. 1818A1252260422300327157 /* CloudPhotoConfig.mm in Sources */,
  3546. 1818A2112260422300327157 /* ProgressBackView.mm in Sources */,
  3547. 1818A1282260422300327157 /* EncodeConfig.mm in Sources */,
  3548. 1818A2292260422300327157 /* RegisterViewController.mm in Sources */,
  3549. 1818A1E02260422300327157 /* UITabBarItem+WZLBadge.m in Sources */,
  3550. 1818A1EC2260422300327157 /* BuzzerViewController.mm in Sources */,
  3551. 1818A13A2260422300327157 /* PictureInfo.m in Sources */,
  3552. 1818A2332260422300327157 /* QuickConfigurationView.m in Sources */,
  3553. 1818A22E2260422300327157 /* ChangePasswordViewController.mm in Sources */,
  3554. 1818A1DA2260422300327157 /* PasswordViewController.mm in Sources */,
  3555. 1818A1C52260422300327157 /* SDKInitializeModel.mm in Sources */,
  3556. 1818A1F12260422300327157 /* DeviceconfigTableViewCell.m in Sources */,
  3557. 1818A2092260422300327157 /* XMPlayerVC.mm in Sources */,
  3558. 1818A1322260422300327157 /* AnalyzeDataSource.m in Sources */,
  3559. 1818A1EF2260422300327157 /* StorageViewController.mm in Sources */,
  3560. C6472CC221F6C2A600F5CD09 /* PlaceModel.m in Sources */,
  3561. 1818A13F2260422300327157 /* VideoFileDownloadConfig.mm in Sources */,
  3562. 1818A1EB2260422300327157 /* RecordViewController.mm in Sources */,
  3563. 1818A1482260422300327157 /* MessageUI.mm in Sources */,
  3564. C604C01221DF674D0001BC82 /* CustomPlaceView.m in Sources */,
  3565. 1818A14B2260422300327157 /* NSDate+TimeCategory.m in Sources */,
  3566. C64701612223EC24009D2FCF /* BottomView.m in Sources */,
  3567. 1818A1F42260422300327157 /* PictureFileViewController.m in Sources */,
  3568. 1818A1FB2260422300327157 /* ByTimeViewController.mm in Sources */,
  3569. C65FCE6821DE1F7900CA21F8 /* CollectionViewCell.m in Sources */,
  3570. 1818A14E2260422300327157 /* NSString+Extention.m in Sources */,
  3571. C6576FF82217A2A00022B990 /* contactModel.m in Sources */,
  3572. 1818A1242260422300327157 /* XMAlarmMsgResource.m in Sources */,
  3573. C60E3F78225B1CCA003C1541 /* MBProgressHUD.m in Sources */,
  3574. 1818A1CC2260422300327157 /* ObjectCoder.m in Sources */,
  3575. 1818A1F32260422300327157 /* VideoFileViewController.mm in Sources */,
  3576. 1818A1CD2260422300327157 /* ChannelObject.m in Sources */,
  3577. 1818A1502260422300327157 /* GTMNSString+HTML.m in Sources */,
  3578. 1818A1372260422300327157 /* SystemFunctionConfig.mm in Sources */,
  3579. 1818A13D2260422300327157 /* TimeInfo.m in Sources */,
  3580. 1818A13E2260422300327157 /* VideoFileConfig.mm in Sources */,
  3581. 1818A12A2260422300327157 /* VodeoRotainDataSource.m in Sources */,
  3582. 1818A1D42260422300327157 /* AlarmMessagePicViewController.m in Sources */,
  3583. C6114BBB225DA07E00D6BCE4 /* SXAlert.m in Sources */,
  3584. 1818A2372260422300327157 /* LANSearchViewController.mm in Sources */,
  3585. C63D540D222A2C92002723EB /* Setting_VC.m in Sources */,
  3586. 1818A12E2260422300327157 /* StorageConfig.mm in Sources */,
  3587. 1818A2072260422300327157 /* AccountViewController.mm in Sources */,
  3588. 1818A2182260422300327157 /* PlayView.m in Sources */,
  3589. C615005221D7083F00FEBA22 /* ViewController.m in Sources */,
  3590. 1818A22A2260422300327157 /* UserBindViewController.mm in Sources */,
  3591. 1818A1D52260422300327157 /* EncodeItemViewController.m in Sources */,
  3592. C6119B4321E3477A008B44BE /* CommitMessage_VC.m in Sources */,
  3593. C65726DE21D8A10D0013E52F /* ResetPassword_VC.m in Sources */,
  3594. 1818A1412260422300327157 /* BuzzerConfig.mm in Sources */,
  3595. C6457D7721FAAB3F00CD6276 /* SiteTableViewController.m in Sources */,
  3596. 1818A11B2260422300327157 /* SystemResetConfig.mm in Sources */,
  3597. 1818A1D02260422300327157 /* WaterMarkViewController.mm in Sources */,
  3598. 1818A11D2260422300327157 /* TimeSynConfig.mm in Sources */,
  3599. 1818A1352260422300327157 /* AlarmDetectConfig.mm in Sources */,
  3600. 1818A2282260422300327157 /* UserBindView.m in Sources */,
  3601. 1818A2252260422300327157 /* UserInfoViewController.mm in Sources */,
  3602. C60F0C0F223B5104004446AA /* privacy_VC.m in Sources */,
  3603. C643407621EAD887006A5D72 /* PersonCell.m in Sources */,
  3604. 1818A1D12260422300327157 /* ShutDownTimeViewController.mm in Sources */,
  3605. 1818A1DB2260422300327157 /* ItemTableviewCell.m in Sources */,
  3606. C6184825224A2975006A586B /* FireNoticeModel.m in Sources */,
  3607. 1818A2232260422300327157 /* ForgetPasswordViewController.mm in Sources */,
  3608. 1818A1292260422300327157 /* EncodeDataSourse.m in Sources */,
  3609. 1818A1FE2260422300327157 /* CloudAbilityViewController.mm in Sources */,
  3610. 1818A13B2260422300327157 /* PictureFileDownloadConfig.mm in Sources */,
  3611. C615005D21D7083F00FEBA22 /* main.m in Sources */,
  3612. 1818A14C2260422300327157 /* NSString+Category.m in Sources */,
  3613. 1818A1432260422300327157 /* WaterMarkConfig.mm in Sources */,
  3614. 1818A1222260422300327157 /* CloudVideoConfig.mm in Sources */,
  3615. 1818A2012260422300327157 /* CloudPhotoViewController.mm in Sources */,
  3616. 1818A1392260422300327157 /* UpgradeConfig.mm in Sources */,
  3617. 1818A1C32260422300327157 /* ConfigControllerBase.mm in Sources */,
  3618. 1818A2192260422300327157 /* TalkView.m in Sources */,
  3619. C65726E521D8ACAA0013E52F /* Person_VC.m in Sources */,
  3620. C687A05121E73DC2003485B6 /* DeveceListCell.m in Sources */,
  3621. C63F6BE621F2B0DD00868CE6 /* DetailTableViewCell.m in Sources */,
  3622. 1818A1442260422300327157 /* XYShowAlertView.m in Sources */,
  3623. 1818A20E2260422300327157 /* FishPlayControl.mm in Sources */,
  3624. 1818A2102260422300327157 /* PlayCloudVideoViewController.mm in Sources */,
  3625. 1818A11C2260422300327157 /* TimeSynDataSource.m in Sources */,
  3626. 1818A12C2260422300327157 /* DataSource.m in Sources */,
  3627. 1818A21E2260422300327157 /* HardVRViewController.mm in Sources */,
  3628. C65FCE4621DDF9C000CA21F8 /* AddDevece_VC.m in Sources */,
  3629. C668A3022238A63500F866B0 /* detatilDeviceModel.m in Sources */,
  3630. 1818A1D32260422300327157 /* AlarmMessageViewController.mm in Sources */,
  3631. C60F0C03223B4F26004446AA /* Protcol_VC.m in Sources */,
  3632. 1818A2212260422300327157 /* UserInfoView.m in Sources */,
  3633. C640782F21E1FF580070B632 /* FireManage_VC.m in Sources */,
  3634. 1818A21A2260422300327157 /* UILabelOutLined.m in Sources */,
  3635. 1818A2002260422300327157 /* CloudphotoDayVController.mm in Sources */,
  3636. 1818A1522260422300327157 /* NSUserDefaultData.m in Sources */,
  3637. 1818A1452260422300327157 /* AlarmManager.mm in Sources */,
  3638. C66E858E21EEEF17001997E0 /* popMenuView.m in Sources */,
  3639. 1818A1E92260422300327157 /* DeviceConfigViewController.mm in Sources */,
  3640. 1818A2142260422300327157 /* PlayBackViewController.mm in Sources */,
  3641. C62F19C1223C9579001696B2 /* UserLogin_VC.m in Sources */,
  3642. 1818A21F2260422300327157 /* PrivacyPolicyVC.m in Sources */,
  3643. 1818A13C2260422300327157 /* PictureFileConfig.mm in Sources */,
  3644. C604C00721DF48840001BC82 /* PushManage_VC.m in Sources */,
  3645. 1818A1E52260422300327157 /* SensorlistVCViewController.mm in Sources */,
  3646. C6576FFC22182A6C0022B990 /* NSMutableDictionary+NullSaf.m in Sources */,
  3647. 1818A1492260422300327157 /* LanguageManager.mm in Sources */,
  3648. 1818A1ED2260422300327157 /* EncodingFormatViewController.mm in Sources */,
  3649. 1818A1D92260422300327157 /* PasswordView.m in Sources */,
  3650. 1818A1F72260422300327157 /* PictureSearchViewController.mm in Sources */,
  3651. 1818A2062260422300327157 /* DeviceAddViewController.m in Sources */,
  3652. 1818A1552260422300327157 /* Recode.mm in Sources */,
  3653. C6ED0E0A21DDBD580064FEAB /* Addplace_VC.m in Sources */,
  3654. 1818A1DC2260422300327157 /* SensorListCell.m in Sources */,
  3655. C6834EBC21F9605500E2DA26 /* LeftTableCell.m in Sources */,
  3656. 1818A1472260422300327157 /* DeviceManager.mm in Sources */,
  3657. 1818A2222260422300327157 /* ForgetPasswordView.m in Sources */,
  3658. 1818A1C62260422300327157 /* TimeQuery.m in Sources */,
  3659. 1818A1E22260422300327157 /* XMWallSwitchView.m in Sources */,
  3660. C604C00321DF47CE0001BC82 /* FireAlarm_VC.m in Sources */,
  3661. 1818A1422260422300327157 /* ShutDownTimeConfig.mm in Sources */,
  3662. C618E44321E0615400A65353 /* Contacts_VC.m in Sources */,
  3663. C6119B3921E2E996008B44BE /* SubmitInformation_VC.m in Sources */,
  3664. 1818A1DE2260422300327157 /* CAAnimation+WAnimation.m in Sources */,
  3665. 1818A1DD2260422300327157 /* SensorDeviceModel.m in Sources */,
  3666. C6C071D72255EECF00474188 /* SitTabCell.m in Sources */,
  3667. 1818A1CE2260422300327157 /* UpgradeDeviceViewController.mm in Sources */,
  3668. 1818A2172260422300327157 /* PlayMenuView.m in Sources */,
  3669. C604C00B21DF48E60001BC82 /* ProblemViewController.m in Sources */,
  3670. 1818A1C22260422300327157 /* BaseViewController.mm in Sources */,
  3671. 1818A2022260422300327157 /* CloudVideoDownloadViewController.mm in Sources */,
  3672. 1818A1E72260422300327157 /* AlarmDetectViewController.mm in Sources */,
  3673. 1818A20A2260422300327157 /* PhotosViewController.mm in Sources */,
  3674. 1818A1512260422300327157 /* FileControl.mm in Sources */,
  3675. 1818A1312260422300327157 /* RecordDataSourse.m in Sources */,
  3676. C687A05421E74685003485B6 /* PushManageCell.m in Sources */,
  3677. 1818A1232260422300327157 /* CLouldVideoResource.m in Sources */,
  3678. 1818A1C72260422300327157 /* DevicelistArchiveModel.m in Sources */,
  3679. C6413D3C21E1A3BF00605186 /* Recorddetail_VC.m in Sources */,
  3680. 1818A1D72260422300327157 /* EncodeConfigTableviewCell.m in Sources */,
  3681. C6472CC521F6E3D100F5CD09 /* deveceListModel.m in Sources */,
  3682. 1818A21B2260422300327157 /* VRFunctionView.mm in Sources */,
  3683. 1818A2262260422300327157 /* UserInputCell.m in Sources */,
  3684. C604C00F21DF499B0001BC82 /* Service_VC.m in Sources */,
  3685. C60E3F8A225B3F36003C1541 /* CustomAlertView.m in Sources */,
  3686. 1818A2352260422300327157 /* AddDeviceInputCell.m in Sources */,
  3687. 1818A20C2260422300327157 /* DeviceListTableViewCell.m in Sources */,
  3688. 1818A22D2260422300327157 /* LoginViewController.mm in Sources */,
  3689. 1818A2052260422300327157 /* MainViewController.mm in Sources */,
  3690. 1818A2122260422300327157 /* DateSelectView.m in Sources */,
  3691. 1818A21D2260422300327157 /* VRGLViewController.mm in Sources */,
  3692. 1818A1302260422300327157 /* RecordConfig.mm in Sources */,
  3693. 1818A1CA2260422300327157 /* DeviceControl.m in Sources */,
  3694. C618E43A21E04F5E00A65353 /* DeveceTableCell.m in Sources */,
  3695. 1818A12F2260422300327157 /* SystemInfoConfig.mm in Sources */,
  3696. 1818A2322260422300327157 /* OriginalScaner.mm in Sources */,
  3697. C62678D821E0873A00F146BC /* MessageTableCell.m in Sources */,
  3698. 1818A1FF2260422300327157 /* CloudPhotoDownloadViewController.mm in Sources */,
  3699. C6478F7621F5ABD1004BB536 /* deveceModel.m in Sources */,
  3700. 1818A1FA2260422300327157 /* MonthFileViewController.mm in Sources */,
  3701. 1818A21C2260422300327157 /* FishEyeVideoVC.mm in Sources */,
  3702. C604BFF721DF43540001BC82 /* PlaceList_VC.m in Sources */,
  3703. C65726EB21D8AD1F0013E52F /* DeveceList_VC.m in Sources */,
  3704. C687A04B21E71905003485B6 /* PlaceDetail_VC.m in Sources */,
  3705. 1818A1DF2260422300327157 /* UIBarButtonItem+WZLBadge.m in Sources */,
  3706. 1818A1F02260422300327157 /* TimeSynViewController.mm in Sources */,
  3707. C6457D7D21FAFEB000CD6276 /* About_VC.m in Sources */,
  3708. 1818A20F2260422300327157 /* PlayViewController.mm in Sources */,
  3709. 1818A1EA2260422300327157 /* AnalyzerViewController.mm in Sources */,
  3710. 1818A1532260422300327157 /* LoginShowControl.m in Sources */,
  3711. 1818A1212260422300327157 /* CommonConfig.mm in Sources */,
  3712. C6472CC821F71B5400F5CD09 /* uploadModel.m in Sources */,
  3713. 1818A1562260422300327157 /* TalkBackControl.mm in Sources */,
  3714. 1818A1272260422300327157 /* CloudAbilityConfig.mm in Sources */,
  3715. C6C071D42255D66900474188 /* DataSourceManager.m in Sources */,
  3716. 1818A20D2260422300327157 /* DeviceInfoEditViewController.mm in Sources */,
  3717. 1818A12B2260422300327157 /* VideoRotainConfig.mm in Sources */,
  3718. C615004F21D7083F00FEBA22 /* AppDelegate.mm in Sources */,
  3719. C604BFF321DF33760001BC82 /* DeveceDetail_VC.m in Sources */,
  3720. 1818A1402260422300327157 /* RecordInfo.m in Sources */,
  3721. 1818A2042260422300327157 /* CloudVideoViewController.mm in Sources */,
  3722. 1818A1382260422300327157 /* UpgradeDataSource.m in Sources */,
  3723. 1818A1C42260422300327157 /* FunMsgListener.mm in Sources */,
  3724. 1818A1CB2260422300327157 /* DeviceObject.m in Sources */,
  3725. 1818A22F2260422300327157 /* IPAddViewController.mm in Sources */,
  3726. );
  3727. runOnlyForDeploymentPostprocessing = 0;
  3728. };
  3729. C615005E21D7084000FEBA22 /* Sources */ = {
  3730. isa = PBXSourcesBuildPhase;
  3731. buildActionMask = 2147483647;
  3732. files = (
  3733. C615006721D7084000FEBA22 /* Haishenghai_masterTests.m in Sources */,
  3734. );
  3735. runOnlyForDeploymentPostprocessing = 0;
  3736. };
  3737. C615006921D7084000FEBA22 /* Sources */ = {
  3738. isa = PBXSourcesBuildPhase;
  3739. buildActionMask = 2147483647;
  3740. files = (
  3741. C615007221D7084000FEBA22 /* Haishenghai_masterUITests.m in Sources */,
  3742. );
  3743. runOnlyForDeploymentPostprocessing = 0;
  3744. };
  3745. /* End PBXSourcesBuildPhase section */
  3746. /* Begin PBXTargetDependency section */
  3747. C615006421D7084000FEBA22 /* PBXTargetDependency */ = {
  3748. isa = PBXTargetDependency;
  3749. target = C615004921D7083F00FEBA22 /* Haishenghai-master */;
  3750. targetProxy = C615006321D7084000FEBA22 /* PBXContainerItemProxy */;
  3751. };
  3752. C615006F21D7084000FEBA22 /* PBXTargetDependency */ = {
  3753. isa = PBXTargetDependency;
  3754. target = C615004921D7083F00FEBA22 /* Haishenghai-master */;
  3755. targetProxy = C615006E21D7084000FEBA22 /* PBXContainerItemProxy */;
  3756. };
  3757. /* End PBXTargetDependency section */
  3758. /* Begin PBXVariantGroup section */
  3759. 18189F432260422200327157 /* ic_wake_green.png */ = {
  3760. isa = PBXVariantGroup;
  3761. children = (
  3762. 18189F442260422200327157 /* zh-Hans */,
  3763. 18189F4F2260422200327157 /* en */,
  3764. 18189F562260422200327157 /* Base */,
  3765. 18189F5C2260422200327157 /* zh-Hans-CN */,
  3766. );
  3767. name = ic_wake_green.png;
  3768. sourceTree = "<group>";
  3769. };
  3770. 18189F452260422200327157 /* offline.png */ = {
  3771. isa = PBXVariantGroup;
  3772. children = (
  3773. 18189F462260422200327157 /* zh-Hans */,
  3774. 18189F502260422200327157 /* en */,
  3775. 18189F572260422200327157 /* Base */,
  3776. 18189F5D2260422200327157 /* zh-Hans-CN */,
  3777. );
  3778. name = offline.png;
  3779. sourceTree = "<group>";
  3780. };
  3781. 18189F472260422200327157 /* sleepnotwakeup.png */ = {
  3782. isa = PBXVariantGroup;
  3783. children = (
  3784. 18189F482260422200327157 /* zh-Hans */,
  3785. 18189F512260422200327157 /* en */,
  3786. 18189F582260422200327157 /* Base */,
  3787. 18189F5E2260422200327157 /* zh-Hans-CN */,
  3788. );
  3789. name = sleepnotwakeup.png;
  3790. sourceTree = "<group>";
  3791. };
  3792. 18189F492260422200327157 /* Prepare_sleep.png */ = {
  3793. isa = PBXVariantGroup;
  3794. children = (
  3795. 18189F4A2260422200327157 /* zh-Hans */,
  3796. 18189F522260422200327157 /* en */,
  3797. 18189F592260422200327157 /* Base */,
  3798. 18189F5F2260422200327157 /* zh-Hans-CN */,
  3799. );
  3800. name = Prepare_sleep.png;
  3801. sourceTree = "<group>";
  3802. };
  3803. 18189F4B2260422200327157 /* online.png */ = {
  3804. isa = PBXVariantGroup;
  3805. children = (
  3806. 18189F4C2260422200327157 /* zh-Hans */,
  3807. 18189F532260422200327157 /* en */,
  3808. 18189F5A2260422200327157 /* Base */,
  3809. 18189F602260422200327157 /* zh-Hans-CN */,
  3810. );
  3811. name = online.png;
  3812. sourceTree = "<group>";
  3813. };
  3814. 18189F4D2260422200327157 /* ic_sleep.png */ = {
  3815. isa = PBXVariantGroup;
  3816. children = (
  3817. 18189F4E2260422200327157 /* zh-Hans */,
  3818. 18189F542260422200327157 /* en */,
  3819. 18189F5B2260422200327157 /* Base */,
  3820. 18189F612260422200327157 /* zh-Hans-CN */,
  3821. );
  3822. name = ic_sleep.png;
  3823. sourceTree = "<group>";
  3824. };
  3825. C615005321D7083F00FEBA22 /* Main.storyboard */ = {
  3826. isa = PBXVariantGroup;
  3827. children = (
  3828. C615005421D7083F00FEBA22 /* Base */,
  3829. );
  3830. name = Main.storyboard;
  3831. sourceTree = "<group>";
  3832. };
  3833. /* End PBXVariantGroup section */
  3834. /* Begin XCBuildConfiguration section */
  3835. C615007421D7084000FEBA22 /* Debug */ = {
  3836. isa = XCBuildConfiguration;
  3837. buildSettings = {
  3838. ALWAYS_SEARCH_USER_PATHS = NO;
  3839. CLANG_ANALYZER_NONNULL = YES;
  3840. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3841. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3842. CLANG_CXX_LIBRARY = "libc++";
  3843. CLANG_ENABLE_MODULES = YES;
  3844. CLANG_ENABLE_OBJC_ARC = YES;
  3845. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3846. CLANG_WARN_BOOL_CONVERSION = YES;
  3847. CLANG_WARN_COMMA = YES;
  3848. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3849. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3850. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3851. CLANG_WARN_EMPTY_BODY = YES;
  3852. CLANG_WARN_ENUM_CONVERSION = YES;
  3853. CLANG_WARN_INFINITE_RECURSION = YES;
  3854. CLANG_WARN_INT_CONVERSION = YES;
  3855. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3856. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3857. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3858. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3859. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3860. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3861. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3862. CLANG_WARN_UNREACHABLE_CODE = YES;
  3863. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3864. CODE_SIGN_IDENTITY = "iPhone Developer";
  3865. COPY_PHASE_STRIP = NO;
  3866. DEBUG_INFORMATION_FORMAT = dwarf;
  3867. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3868. ENABLE_TESTABILITY = YES;
  3869. GCC_C_LANGUAGE_STANDARD = gnu11;
  3870. GCC_DYNAMIC_NO_PIC = NO;
  3871. GCC_NO_COMMON_BLOCKS = YES;
  3872. GCC_OPTIMIZATION_LEVEL = 0;
  3873. GCC_PREPROCESSOR_DEFINITIONS = (
  3874. "DEBUG=1",
  3875. "$(inherited)",
  3876. );
  3877. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3878. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3879. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3880. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3881. GCC_WARN_UNUSED_FUNCTION = YES;
  3882. GCC_WARN_UNUSED_VARIABLE = YES;
  3883. IPHONEOS_DEPLOYMENT_TARGET = 11.1;
  3884. MTL_ENABLE_DEBUG_INFO = YES;
  3885. ONLY_ACTIVE_ARCH = YES;
  3886. SDKROOT = iphoneos;
  3887. };
  3888. name = Debug;
  3889. };
  3890. C615007521D7084000FEBA22 /* Release */ = {
  3891. isa = XCBuildConfiguration;
  3892. buildSettings = {
  3893. ALWAYS_SEARCH_USER_PATHS = NO;
  3894. CLANG_ANALYZER_NONNULL = YES;
  3895. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3896. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3897. CLANG_CXX_LIBRARY = "libc++";
  3898. CLANG_ENABLE_MODULES = YES;
  3899. CLANG_ENABLE_OBJC_ARC = YES;
  3900. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3901. CLANG_WARN_BOOL_CONVERSION = YES;
  3902. CLANG_WARN_COMMA = YES;
  3903. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3904. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3905. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3906. CLANG_WARN_EMPTY_BODY = YES;
  3907. CLANG_WARN_ENUM_CONVERSION = YES;
  3908. CLANG_WARN_INFINITE_RECURSION = YES;
  3909. CLANG_WARN_INT_CONVERSION = YES;
  3910. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3911. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3912. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3913. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3914. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3915. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3916. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3917. CLANG_WARN_UNREACHABLE_CODE = YES;
  3918. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3919. CODE_SIGN_IDENTITY = "iPhone Developer";
  3920. COPY_PHASE_STRIP = NO;
  3921. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3922. ENABLE_NS_ASSERTIONS = NO;
  3923. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3924. GCC_C_LANGUAGE_STANDARD = gnu11;
  3925. GCC_NO_COMMON_BLOCKS = YES;
  3926. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3927. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3928. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3929. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3930. GCC_WARN_UNUSED_FUNCTION = YES;
  3931. GCC_WARN_UNUSED_VARIABLE = YES;
  3932. IPHONEOS_DEPLOYMENT_TARGET = 11.1;
  3933. MTL_ENABLE_DEBUG_INFO = NO;
  3934. SDKROOT = iphoneos;
  3935. VALIDATE_PRODUCT = YES;
  3936. };
  3937. name = Release;
  3938. };
  3939. C615007721D7084000FEBA22 /* Debug */ = {
  3940. isa = XCBuildConfiguration;
  3941. baseConfigurationReference = 9BE3BA4CD1BDF2DADB10D96F /* Pods-Haishenghai-master.debug.xcconfig */;
  3942. buildSettings = {
  3943. ARCHS = "$(ARCHS_STANDARD)";
  3944. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3945. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "LaunchImage-1";
  3946. CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
  3947. CLANG_CXX_LIBRARY = "compiler-default";
  3948. CODE_SIGN_ENTITLEMENTS = "Haishenghai-master/Haishenghai-master.entitlements";
  3949. CODE_SIGN_STYLE = Automatic;
  3950. DEVELOPMENT_TEAM = 65TFNSL3BL;
  3951. ENABLE_BITCODE = NO;
  3952. ENABLE_TESTABILITY = NO;
  3953. FRAMEWORK_SEARCH_PATHS = (
  3954. "$(inherited)",
  3955. "$(PROJECT_DIR)/Haishenghai-master/MapLib",
  3956. "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries",
  3957. "$(PROJECT_DIR)/雄迈摄像头/sdk相关/library",
  3958. "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/library",
  3959. "$(PROJECT_DIR)/tool/sdk相关/library",
  3960. );
  3961. GCC_C_LANGUAGE_STANDARD = "compiler-default";
  3962. GCC_PREPROCESSOR_DEFINITIONS = (
  3963. "$(inherited)",
  3964. "COCOAPODS=1",
  3965. "OS_IOS=1",
  3966. "FORMAL=1",
  3967. );
  3968. INFOPLIST_FILE = "Haishenghai-master/Info.plist";
  3969. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  3970. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  3971. LIBRARY_SEARCH_PATHS = (
  3972. "$(inherited)",
  3973. "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries",
  3974. "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries/鱼眼库",
  3975. "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/Libraries",
  3976. "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/Libraries/鱼眼库",
  3977. "$(PROJECT_DIR)/tool/sdk相关/Libraries",
  3978. "$(PROJECT_DIR)/tool/sdk相关/Libraries/鱼眼库",
  3979. );
  3980. ONLY_ACTIVE_ARCH = YES;
  3981. OTHER_LDFLAGS = (
  3982. "$(inherited)",
  3983. "-ObjC",
  3984. "-l\"AFNetworking\"",
  3985. "-l\"Masonry\"",
  3986. "-framework",
  3987. "\"CoreGraphics\"",
  3988. "-framework",
  3989. "\"Foundation\"",
  3990. "-framework",
  3991. "\"MobileCoreServices\"",
  3992. "-framework",
  3993. "\"Security\"",
  3994. "-framework",
  3995. "\"SystemConfiguration\"",
  3996. "-framework",
  3997. "\"UIKit\"",
  3998. "-ObjC",
  3999. );
  4000. PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-master";
  4001. PRODUCT_NAME = "$(TARGET_NAME)";
  4002. TARGETED_DEVICE_FAMILY = 1;
  4003. };
  4004. name = Debug;
  4005. };
  4006. C615007821D7084000FEBA22 /* Release */ = {
  4007. isa = XCBuildConfiguration;
  4008. baseConfigurationReference = 6A9E328D76A8A71C94C8091A /* Pods-Haishenghai-master.release.xcconfig */;
  4009. buildSettings = {
  4010. ARCHS = "$(ARCHS_STANDARD)";
  4011. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4012. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "LaunchImage-1";
  4013. CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
  4014. CLANG_CXX_LIBRARY = "compiler-default";
  4015. CODE_SIGN_ENTITLEMENTS = "Haishenghai-master/Haishenghai-master.entitlements";
  4016. CODE_SIGN_STYLE = Automatic;
  4017. DEVELOPMENT_TEAM = 65TFNSL3BL;
  4018. ENABLE_BITCODE = NO;
  4019. ENABLE_TESTABILITY = NO;
  4020. FRAMEWORK_SEARCH_PATHS = (
  4021. "$(inherited)",
  4022. "$(PROJECT_DIR)/Haishenghai-master/MapLib",
  4023. "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries",
  4024. "$(PROJECT_DIR)/雄迈摄像头/sdk相关/library",
  4025. "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/library",
  4026. "$(PROJECT_DIR)/tool/sdk相关/library",
  4027. );
  4028. GCC_C_LANGUAGE_STANDARD = "compiler-default";
  4029. GCC_PREPROCESSOR_DEFINITIONS = (
  4030. "$(inherited)",
  4031. "COCOAPODS=1",
  4032. "FORMAL=1",
  4033. "OS_IOS=1",
  4034. );
  4035. INFOPLIST_FILE = "Haishenghai-master/Info.plist";
  4036. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4037. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  4038. LIBRARY_SEARCH_PATHS = (
  4039. "$(inherited)",
  4040. "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries",
  4041. "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries/鱼眼库",
  4042. "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/Libraries",
  4043. "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/Libraries/鱼眼库",
  4044. "$(PROJECT_DIR)/tool/sdk相关/Libraries",
  4045. "$(PROJECT_DIR)/tool/sdk相关/Libraries/鱼眼库",
  4046. );
  4047. ONLY_ACTIVE_ARCH = YES;
  4048. OTHER_LDFLAGS = (
  4049. "$(inherited)",
  4050. "-ObjC",
  4051. "-l\"AFNetworking\"",
  4052. "-l\"Masonry\"",
  4053. "-framework",
  4054. "\"CoreGraphics\"",
  4055. "-framework",
  4056. "\"Foundation\"",
  4057. "-framework",
  4058. "\"MobileCoreServices\"",
  4059. "-framework",
  4060. "\"Security\"",
  4061. "-framework",
  4062. "\"SystemConfiguration\"",
  4063. "-framework",
  4064. "\"UIKit\"",
  4065. "-ObjC",
  4066. );
  4067. PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-master";
  4068. PRODUCT_NAME = "$(TARGET_NAME)";
  4069. TARGETED_DEVICE_FAMILY = 1;
  4070. };
  4071. name = Release;
  4072. };
  4073. C615007A21D7084000FEBA22 /* Debug */ = {
  4074. isa = XCBuildConfiguration;
  4075. buildSettings = {
  4076. BUNDLE_LOADER = "$(TEST_HOST)";
  4077. CODE_SIGN_STYLE = Automatic;
  4078. INFOPLIST_FILE = "Haishenghai-masterTests/Info.plist";
  4079. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  4080. PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-masterTests";
  4081. PRODUCT_NAME = "$(TARGET_NAME)";
  4082. TARGETED_DEVICE_FAMILY = "1,2";
  4083. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Haishenghai-master.app/Haishenghai-master";
  4084. };
  4085. name = Debug;
  4086. };
  4087. C615007B21D7084000FEBA22 /* Release */ = {
  4088. isa = XCBuildConfiguration;
  4089. buildSettings = {
  4090. BUNDLE_LOADER = "$(TEST_HOST)";
  4091. CODE_SIGN_STYLE = Automatic;
  4092. INFOPLIST_FILE = "Haishenghai-masterTests/Info.plist";
  4093. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  4094. PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-masterTests";
  4095. PRODUCT_NAME = "$(TARGET_NAME)";
  4096. TARGETED_DEVICE_FAMILY = "1,2";
  4097. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Haishenghai-master.app/Haishenghai-master";
  4098. };
  4099. name = Release;
  4100. };
  4101. C615007D21D7084000FEBA22 /* Debug */ = {
  4102. isa = XCBuildConfiguration;
  4103. buildSettings = {
  4104. CODE_SIGN_STYLE = Automatic;
  4105. DEVELOPMENT_TEAM = 65TFNSL3BL;
  4106. INFOPLIST_FILE = "Haishenghai-masterUITests/Info.plist";
  4107. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  4108. PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-masterUITests";
  4109. PRODUCT_NAME = "$(TARGET_NAME)";
  4110. TARGETED_DEVICE_FAMILY = "1,2";
  4111. TEST_TARGET_NAME = "Haishenghai-master";
  4112. };
  4113. name = Debug;
  4114. };
  4115. C615007E21D7084000FEBA22 /* Release */ = {
  4116. isa = XCBuildConfiguration;
  4117. buildSettings = {
  4118. CODE_SIGN_STYLE = Automatic;
  4119. DEVELOPMENT_TEAM = 65TFNSL3BL;
  4120. INFOPLIST_FILE = "Haishenghai-masterUITests/Info.plist";
  4121. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  4122. PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-masterUITests";
  4123. PRODUCT_NAME = "$(TARGET_NAME)";
  4124. TARGETED_DEVICE_FAMILY = "1,2";
  4125. TEST_TARGET_NAME = "Haishenghai-master";
  4126. };
  4127. name = Release;
  4128. };
  4129. /* End XCBuildConfiguration section */
  4130. /* Begin XCConfigurationList section */
  4131. C615004521D7083F00FEBA22 /* Build configuration list for PBXProject "Haishenghai-master" */ = {
  4132. isa = XCConfigurationList;
  4133. buildConfigurations = (
  4134. C615007421D7084000FEBA22 /* Debug */,
  4135. C615007521D7084000FEBA22 /* Release */,
  4136. );
  4137. defaultConfigurationIsVisible = 0;
  4138. defaultConfigurationName = Release;
  4139. };
  4140. C615007621D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-master" */ = {
  4141. isa = XCConfigurationList;
  4142. buildConfigurations = (
  4143. C615007721D7084000FEBA22 /* Debug */,
  4144. C615007821D7084000FEBA22 /* Release */,
  4145. );
  4146. defaultConfigurationIsVisible = 0;
  4147. defaultConfigurationName = Release;
  4148. };
  4149. C615007921D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-masterTests" */ = {
  4150. isa = XCConfigurationList;
  4151. buildConfigurations = (
  4152. C615007A21D7084000FEBA22 /* Debug */,
  4153. C615007B21D7084000FEBA22 /* Release */,
  4154. );
  4155. defaultConfigurationIsVisible = 0;
  4156. defaultConfigurationName = Release;
  4157. };
  4158. C615007C21D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-masterUITests" */ = {
  4159. isa = XCConfigurationList;
  4160. buildConfigurations = (
  4161. C615007D21D7084000FEBA22 /* Debug */,
  4162. C615007E21D7084000FEBA22 /* Release */,
  4163. );
  4164. defaultConfigurationIsVisible = 0;
  4165. defaultConfigurationName = Release;
  4166. };
  4167. /* End XCConfigurationList section */
  4168. };
  4169. rootObject = C615004221D7083F00FEBA22 /* Project object */;
  4170. }