123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 51;
- objects = {
- /* Begin PBXBuildFile section */
- 5F5E1E902536C944007EAC23 /* LMPlayVideoCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E8F2536C944007EAC23 /* LMPlayVideoCtr.swift */; };
- 5F5E1E922536C95C007EAC23 /* LMPlayVideoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E912536C95C007EAC23 /* LMPlayVideoView.swift */; };
- 5F5E1E942536C97F007EAC23 /* LMPlayVideoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E932536C97F007EAC23 /* LMPlayVideoModel.swift */; };
- 5F5E1E962536C99D007EAC23 /* LMPlayVideoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E952536C99D007EAC23 /* LMPlayVideoManager.swift */; };
- 5F5E1E982536CDA9007EAC23 /* LMPlayVideoService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E972536CDA9007EAC23 /* LMPlayVideoService.swift */; };
- 5F5E1E9A2536CEE6007EAC23 /* LMPlayVideoApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E992536CEE6007EAC23 /* LMPlayVideoApi.swift */; };
- 5F5E1E9C2536CFB6007EAC23 /* LMPlayVideoRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E9B2536CFB6007EAC23 /* LMPlayVideoRequest.swift */; };
- 5F63A8292539BCF200DD9DD6 /* CodeScan.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 5F63A8212539BCF200DD9DD6 /* CodeScan.bundle */; };
- 5F63A82A2539BCF200DD9DD6 /* LBXScanNetAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8222539BCF200DD9DD6 /* LBXScanNetAnimation.swift */; };
- 5F63A82B2539BCF200DD9DD6 /* LBXScanView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8232539BCF200DD9DD6 /* LBXScanView.swift */; };
- 5F63A82C2539BCF200DD9DD6 /* LBXScanViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8242539BCF200DD9DD6 /* LBXScanViewController.swift */; };
- 5F63A82D2539BCF200DD9DD6 /* LBXScanLineAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8252539BCF200DD9DD6 /* LBXScanLineAnimation.swift */; };
- 5F63A82E2539BCF200DD9DD6 /* LBXScanViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8262539BCF200DD9DD6 /* LBXScanViewStyle.swift */; };
- 5F63A82F2539BCF200DD9DD6 /* LBXPermissions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8272539BCF200DD9DD6 /* LBXPermissions.swift */; };
- 5F63A8302539BCF200DD9DD6 /* LBXScanWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8282539BCF200DD9DD6 /* LBXScanWrapper.swift */; };
- 5F6802AD253C845E0002577C /* LMRepairCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6802AC253C845E0002577C /* LMRepairCtr.swift */; };
- 5F6802AF253C84710002577C /* LMRepairManagerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6802AE253C84710002577C /* LMRepairManagerView.swift */; };
- 5F6802B2253C84B50002577C /* LMRepairModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6802B1253C84B50002577C /* LMRepairModel.swift */; };
- 5F6802B4253C84D30002577C /* LMRepairManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6802B3253C84D30002577C /* LMRepairManager.swift */; };
- 5F6A10D72537E33C007A20DC /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10D62537E33C007A20DC /* CoreAudio.framework */; };
- 5F6A10D92537E348007A20DC /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10D82537E348007A20DC /* MediaPlayer.framework */; };
- 5F6A10DB2537E353007A20DC /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10DA2537E353007A20DC /* AudioToolbox.framework */; };
- 5F6A10DC2537E362007A20DC /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92362537047500003727 /* VideoToolbox.framework */; };
- 5F6A10DE2537E371007A20DC /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10DD2537E371007A20DC /* OpenGLES.framework */; };
- 5F6A10E02537E38C007A20DC /* MediaAccessibility.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10DF2537E38C007A20DC /* MediaAccessibility.framework */; };
- 5F6A10E22537E39B007A20DC /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10E12537E39B007A20DC /* CoreVideo.framework */; };
- 5F6A10E32537E3A4007A20DC /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED922E2537041E00003727 /* AVFoundation.framework */; };
- 5F6A10E42537E3B3007A20DC /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92382537048700003727 /* CoreMedia.framework */; };
- 5F6A10E52537E3CB007A20DC /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED922C253703F600003727 /* libz.tbd */; };
- 5F6A10E72537E715007A20DC /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10E62537E715007A20DC /* libc++.tbd */; };
- 5F6A11462537FDE0007A20DC /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10ED2537FDE0007A20DC /* libcrypto.a */; };
- 5F6A11472537FDE0007A20DC /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A11452537FDE0007A20DC /* libssl.a */; };
- 5F6A11492537FEA8007A20DC /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92302537042E00003727 /* libiconv.tbd */; };
- 5F6A114A2537FEB9007A20DC /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92322537044E00003727 /* SystemConfiguration.framework */; };
- 5F6A114B2537FECA007A20DC /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92342537045B00003727 /* MobileCoreServices.framework */; };
- 5F6A114C2537FEEC007A20DC /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED923A2537049600003727 /* GLKit.framework */; };
- 5F6A114D2537FF04007A20DC /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED923C253704A300003727 /* OpenAL.framework */; };
- 5F6A115225382E13007A20DC /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A115125382DF8007A20DC /* libsqlite3.0.tbd */; };
- 5F6A115425382E58007A20DC /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A115325382E58007A20DC /* CoreTelephony.framework */; };
- 5F6A115625382E7F007A20DC /* libiconv.2.4.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A115525382E76007A20DC /* libiconv.2.4.0.tbd */; };
- 5F6A115725382E95007A20DC /* libbz2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A11482537FE83007A20DC /* libbz2.tbd */; };
- 83025EEB25E7C40000356051 /* LMAlarmDispathVctr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83025EED25E7C40000356051 /* LMAlarmDispathVctr.xib */; };
- 8304615425295F9600B6B291 /* LMNewStrategyGroupCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8304615325295F9600B6B291 /* LMNewStrategyGroupCell.swift */; };
- 830461562529CBCE00B6B291 /* LMNewStrategyGroupService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 830461552529CBCE00B6B291 /* LMNewStrategyGroupService.swift */; };
- 83068D2F2588B13400170DDE /* LMMonitorDetailRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83068D2E2588B13400170DDE /* LMMonitorDetailRequest.swift */; };
- 83068D342588B14400170DDE /* LMMonitorDetailApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83068D332588B14400170DDE /* LMMonitorDetailApi.swift */; };
- 83068D392588B14D00170DDE /* LMMonitorDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83068D382588B14D00170DDE /* LMMonitorDetailModel.swift */; };
- 831555AE2589F38200999EA7 /* LMAirQualityDatailServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831555AD2589F38200999EA7 /* LMAirQualityDatailServer.swift */; };
- 831F1A04258A17310078DB14 /* LMAlertDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A03258A17310078DB14 /* LMAlertDetailManager.swift */; };
- 831F1A0C258A174D0078DB14 /* LMAlertDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A0B258A174D0078DB14 /* LMAlertDetailView.swift */; };
- 831F1A11258A175D0078DB14 /* LMAlertDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A10258A175D0078DB14 /* LMAlertDetailCtr.swift */; };
- 831F1A16258A17810078DB14 /* LMLEDDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A15258A17810078DB14 /* LMLEDDetailManager.swift */; };
- 831F1A1B258A179B0078DB14 /* LMEDDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A1A258A179B0078DB14 /* LMEDDetailView.swift */; };
- 831F1A20258A17AB0078DB14 /* LMEDDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A1F258A17AB0078DB14 /* LMEDDetailCtr.swift */; };
- 831F1A25258A17C90078DB14 /* LMWifiDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A24258A17C90078DB14 /* LMWifiDetailManager.swift */; };
- 831F1A2A258A17E10078DB14 /* LMWifiDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A29258A17E10078DB14 /* LMWifiDetailView.swift */; };
- 831F1A2F258A17F30078DB14 /* LMWifiDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A2E258A17F30078DB14 /* LMWifiDetailCtr.swift */; };
- 831F1A34258A181A0078DB14 /* LMChargeDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A33258A181A0078DB14 /* LMChargeDetailManager.swift */; };
- 831F1A39258A18270078DB14 /* LMChargeDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A38258A18270078DB14 /* LMChargeDetailView.swift */; };
- 831F1A3E258A18390078DB14 /* LMChargeDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A3D258A18390078DB14 /* LMChargeDetailCtr.swift */; };
- 8329FEEC25B80F460001D20A /* libEZOpenSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8329FEEB25B80F450001D20A /* libEZOpenSDK.a */; };
- 8334ED5525122B9900E0766A /* LMLampDetailCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8334ED5425122B9900E0766A /* LMLampDetailCell.swift */; };
- 833559CE2510C6D8000F1EF2 /* LMLoopVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833559CD2510C6D8000F1EF2 /* LMLoopVCtr.swift */; };
- 833559D02510C705000F1EF2 /* LMGroupVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833559CF2510C705000F1EF2 /* LMGroupVCtr.swift */; };
- 833559D22510C725000F1EF2 /* LMStrategyVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833559D12510C725000F1EF2 /* LMStrategyVCtr.swift */; };
- 833559D42510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833559D32510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift */; };
- 8341650E25831A23006FAB0D /* LMLightPoleListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341650D25831A23006FAB0D /* LMLightPoleListView.swift */; };
- 8341651325832220006FAB0D /* LMLightPoleSever.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341651225832220006FAB0D /* LMLightPoleSever.swift */; };
- 8341651825834175006FAB0D /* LMLightPoleListRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341651725834175006FAB0D /* LMLightPoleListRequest.swift */; };
- 8341651D25834195006FAB0D /* LMLightPoleListApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341651C25834195006FAB0D /* LMLightPoleListApi.swift */; };
- 8341652525835899006FAB0D /* LMLightPoleListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341652425835899006FAB0D /* LMLightPoleListCell.swift */; };
- 8341652F25837CFC006FAB0D /* LMLightPoleDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341652E25837CFC006FAB0D /* LMLightPoleDetailCtr.swift */; };
- 8349179E25308D0D006B44BD /* LMLightPoleCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8349179D25308D0D006B44BD /* LMLightPoleCtr.swift */; };
- 834917A025308D1F006B44BD /* LMLightPoleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8349179F25308D1F006B44BD /* LMLightPoleView.swift */; };
- 834917A225308D49006B44BD /* LMLightPoleModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834917A125308D49006B44BD /* LMLightPoleModel.swift */; };
- 834917A425308D5D006B44BD /* LMLightPoleManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834917A325308D5D006B44BD /* LMLightPoleManager.swift */; };
- 834B89842514B65300E2108E /* LMLampDetailContentCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B89832514B65300E2108E /* LMLampDetailContentCtr.swift */; };
- 834B89862514B66E00E2108E /* LMLampDetailContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B89852514B66E00E2108E /* LMLampDetailContentView.swift */; };
- 834B89882514B69700E2108E /* LMLampDetailContentModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B89872514B69700E2108E /* LMLampDetailContentModel.swift */; };
- 834B898A2514B93C00E2108E /* LMLampDetailContentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B89892514B93C00E2108E /* LMLampDetailContentManager.swift */; };
- 834B898C2514BBD400E2108E /* LMLampDetaiContentApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B898B2514BBD400E2108E /* LMLampDetaiContentApi.swift */; };
- 834B898E2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B898D2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift */; };
- 834B89902514D63E00E2108E /* LMLampDetailContentService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B898F2514D63E00E2108E /* LMLampDetailContentService.swift */; };
- 834E295D251C370900BC3482 /* LMMainLoopService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E295C251C370900BC3482 /* LMMainLoopService.swift */; };
- 834E295F251C37BA00BC3482 /* LMMainLoopApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E295E251C37BA00BC3482 /* LMMainLoopApi.swift */; };
- 834E2961251C37CF00BC3482 /* LMMainLoopModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2960251C37CF00BC3482 /* LMMainLoopModel.swift */; };
- 834E2963251C37E400BC3482 /* LMMainLoopRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2962251C37E400BC3482 /* LMMainLoopRequest.swift */; };
- 834E2965251C459100BC3482 /* LMMainLoopCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2964251C459100BC3482 /* LMMainLoopCell.swift */; };
- 834E296C251CBD8E00BC3482 /* LMNewLoopCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E296B251CBD8E00BC3482 /* LMNewLoopCtr.swift */; };
- 834E296E251CBDA500BC3482 /* LMNewLoopTwoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E296D251CBDA500BC3482 /* LMNewLoopTwoView.swift */; };
- 834E2970251CBDBC00BC3482 /* LMNewLoopModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E296F251CBDBC00BC3482 /* LMNewLoopModel.swift */; };
- 834E2972251CBDCA00BC3482 /* LMNewLoopApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2971251CBDCA00BC3482 /* LMNewLoopApi.swift */; };
- 834E2974251CBDE100BC3482 /* LMNewLoopRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2973251CBDE100BC3482 /* LMNewLoopRequest.swift */; };
- 834E2976251CBDFD00BC3482 /* LMNewLoopManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2975251CBDFD00BC3482 /* LMNewLoopManager.swift */; };
- 834E45642511E85D00ED6B71 /* LMLampManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E45632511E85D00ED6B71 /* LMLampManager.swift */; };
- 834E45662511E88300ED6B71 /* LMLampDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E45652511E88300ED6B71 /* LMLampDetailView.swift */; };
- 834E45682511F4E300ED6B71 /* LMLampServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E45672511F4E300ED6B71 /* LMLampServer.swift */; };
- 834E456A2511F69A00ED6B71 /* LMLampDetailHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E45692511F69A00ED6B71 /* LMLampDetailHttpRequest.swift */; };
- 834E456E2511F6C600ED6B71 /* LMLampDetailApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E456D2511F6C600ED6B71 /* LMLampDetailApi.swift */; };
- 834E4570251201FB00ED6B71 /* LMLampDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E456F251201FB00ED6B71 /* LMLampDetailModel.swift */; };
- 834F9D832523726000BFFE58 /* LMGroupSettingService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834F9D822523725F00BFFE58 /* LMGroupSettingService.swift */; };
- 8350348925287A6A00BF947A /* LMNewStrategyGroupCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350348825287A6A00BF947A /* LMNewStrategyGroupCtr.swift */; };
- 8350348B25287A8800BF947A /* LMNewStrategyGroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350348A25287A8800BF947A /* LMNewStrategyGroupView.swift */; };
- 8350348D25287AA500BF947A /* LMNewStrategyGroupModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350348C25287AA500BF947A /* LMNewStrategyGroupModel.swift */; };
- 8350348F25287AC000BF947A /* LMNewStrategyGroupApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350348E25287AC000BF947A /* LMNewStrategyGroupApi.swift */; };
- 8350349125287AE800BF947A /* LMNewStrategyGroupRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350349025287AE800BF947A /* LMNewStrategyGroupRequest.swift */; };
- 8350349325287B0800BF947A /* LMNewStrategyGroupManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350349225287B0800BF947A /* LMNewStrategyGroupManager.swift */; };
- 83559F372522339300B166C4 /* LMDetailContentCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F362522339300B166C4 /* LMDetailContentCtr.swift */; };
- 83559F39252233B800B166C4 /* LMDetailContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F38252233B800B166C4 /* LMDetailContentView.swift */; };
- 83559F3B252233D100B166C4 /* LMDetailContentModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F3A252233D100B166C4 /* LMDetailContentModel.swift */; };
- 83559F3D252233E400B166C4 /* LMDetailContentApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F3C252233E400B166C4 /* LMDetailContentApi.swift */; };
- 83559F3F2522340000B166C4 /* LMDetailContentHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F3E2522340000B166C4 /* LMDetailContentHttpRequest.swift */; };
- 83559F412522341400B166C4 /* LMDetailContentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F402522341400B166C4 /* LMDetailContentManager.swift */; };
- 83559F432522342B00B166C4 /* LMDetailContentService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F422522342B00B166C4 /* LMDetailContentService.swift */; };
- 83559F452522490500B166C4 /* LMDetailContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F442522490500B166C4 /* LMDetailContentCell.swift */; };
- 8356659C25242B1100425C38 /* LMStrategyOperationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356659B25242B1100425C38 /* LMStrategyOperationCell.swift */; };
- 8356659E2524580500425C38 /* LMStrategyOperationDetailCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356659D2524580500425C38 /* LMStrategyOperationDetailCell.swift */; };
- 835665A02524883000425C38 /* LMHistoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356659F2524883000425C38 /* LMHistoryView.swift */; };
- 835665A22524884400425C38 /* LMHistoryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A12524884400425C38 /* LMHistoryModel.swift */; };
- 835665A42524885500425C38 /* LMHistoryApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A32524885500425C38 /* LMHistoryApi.swift */; };
- 835665A62524886C00425C38 /* LMHistoryHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A52524886C00425C38 /* LMHistoryHttpRequest.swift */; };
- 835665A82524888200425C38 /* LMHistoryManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A72524888200425C38 /* LMHistoryManager.swift */; };
- 835665AA25248FDE00425C38 /* LMHistoryService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A925248FDE00425C38 /* LMHistoryService.swift */; };
- 835665AC25249BF400425C38 /* LMHistoryCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665AB25249BF400425C38 /* LMHistoryCell.swift */; };
- 8356E1B5253FCC400024561F /* LMRepairService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356E1B4253FCC400024561F /* LMRepairService.swift */; };
- 8356E1B7253FCD200024561F /* LMRepairApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356E1B6253FCD200024561F /* LMRepairApi.swift */; };
- 8356E1B9253FCE7B0024561F /* LMRepairRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356E1B8253FCE7B0024561F /* LMRepairRequest.swift */; };
- 83577A2A2519DC89002A83A0 /* LMMainLoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83577A292519DC89002A83A0 /* LMMainLoopView.swift */; };
- 83577A2C2519DECC002A83A0 /* LMMainLoopManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83577A2B2519DECC002A83A0 /* LMMainLoopManager.swift */; };
- 8359C04A253424500027518B /* LMMeteorologicalCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C049253424500027518B /* LMMeteorologicalCell.swift */; };
- 8359C04C253427920027518B /* LMMeteorologicalApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C04B253427920027518B /* LMMeteorologicalApi.swift */; };
- 8359C04E253427A70027518B /* LMMeteorologicalRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C04D253427A70027518B /* LMMeteorologicalRequest.swift */; };
- 8359C050253429500027518B /* LMMeteorologicalService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C04F253429500027518B /* LMMeteorologicalService.swift */; };
- 8359C05225343C1B0027518B /* LMLightApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C05125343C1B0027518B /* LMLightApi.swift */; };
- 8359C05425343C400027518B /* LMLightRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C05325343C400027518B /* LMLightRequest.swift */; };
- 8359C056253440110027518B /* LMLightService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C055253440110027518B /* LMLightService.swift */; };
- 8359C0582534456B0027518B /* LMLightViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C0572534456B0027518B /* LMLightViewCell.swift */; };
- 835F1B9125E89DD0006A7CA1 /* LMDimmingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 835F1B9325E89DD0006A7CA1 /* LMDimmingView.xib */; };
- 8360226F2533434A00416047 /* LMLightManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360226E2533434A00416047 /* LMLightManager.swift */; };
- 83602271253345CE00416047 /* LMLightModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83602270253345CE00416047 /* LMLightModel.swift */; };
- 83602273253345E000416047 /* LMLightView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83602272253345E000416047 /* LMLightView.swift */; };
- 83602275253345F500416047 /* LMLightCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83602274253345F500416047 /* LMLightCtr.swift */; };
- 836022772533461900416047 /* LMMeteorologicalManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022762533461900416047 /* LMMeteorologicalManager.swift */; };
- 836022792533462700416047 /* LMMeteorologicalModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022782533462700416047 /* LMMeteorologicalModel.swift */; };
- 8360227B2533463500416047 /* LMMeteorologicalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360227A2533463500416047 /* LMMeteorologicalView.swift */; };
- 8360227D2533464700416047 /* LMMeteorologicalCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360227C2533464700416047 /* LMMeteorologicalCtr.swift */; };
- 8360227F2533465C00416047 /* LMMonitorManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360227E2533465C00416047 /* LMMonitorManager.swift */; };
- 836022812533467400416047 /* LMMonitorModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022802533467400416047 /* LMMonitorModel.swift */; };
- 836022832533470D00416047 /* LMMonitorPoleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022822533470D00416047 /* LMMonitorPoleView.swift */; };
- 836022852533471C00416047 /* LMMonitorCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022842533471C00416047 /* LMMonitorCtr.swift */; };
- 8360228725335F2000416047 /* LMMonitorPoleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360228625335F2000416047 /* LMMonitorPoleCell.swift */; };
- 83674E9425E60435000B4B3C /* LMRoadFilterView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83674E9625E60435000B4B3C /* LMRoadFilterView.xib */; };
- 836AAF1825E4B4D00068B7C6 /* LMLoopView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 836AAF1A25E4B4D00068B7C6 /* LMLoopView.xib */; };
- 836AAF1F25E4B53A0068B7C6 /* LMGroupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 836AAF2125E4B53A0068B7C6 /* LMGroupView.xib */; };
- 836D81BA25B98FA4001718E0 /* IJKMediaFramework.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 836D81B925B98FA3001718E0 /* IJKMediaFramework.framework */; };
- 836E8AE5258B6BB200883233 /* LMConnectDeviceCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836E8AE4258B6BB200883233 /* LMConnectDeviceCell.swift */; };
- 83711D92258C8422006387CE /* LMHistoryAlertCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83711D91258C8422006387CE /* LMHistoryAlertCell.swift */; };
- 83711D97258C89B8006387CE /* LMNowAlertCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83711D96258C89B8006387CE /* LMNowAlertCell.swift */; };
- 83725CB225EA1E47000222EB /* LMAlarmInfoVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83725CB425EA1E47000222EB /* LMAlarmInfoVCtr.xib */; };
- 8378142D2584C60A00FD3EC3 /* LMLightPoleDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378142C2584C60A00FD3EC3 /* LMLightPoleDetailView.swift */; };
- 837814322584C63B00FD3EC3 /* LMLightPoleDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814312584C63B00FD3EC3 /* LMLightPoleDetailManager.swift */; };
- 8378143C2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378143B2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift */; };
- 837814412584F24700FD3EC3 /* LMCloudBoxDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814402584F24700FD3EC3 /* LMCloudBoxDetailView.swift */; };
- 837814462584F26500FD3EC3 /* LMCloudBoxManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814452584F26500FD3EC3 /* LMCloudBoxManager.swift */; };
- 8378145F2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378145E2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift */; };
- 837814642584F40F00FD3EC3 /* LMAirQualityDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814632584F40F00FD3EC3 /* LMAirQualityDetailView.swift */; };
- 837814692584F42600FD3EC3 /* LMAirQualityDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814682584F42600FD3EC3 /* LMAirQualityDetailManager.swift */; };
- 8378146E2584F43E00FD3EC3 /* LMRadioDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378146D2584F43E00FD3EC3 /* LMRadioDetailCtr.swift */; };
- 837814732584F44C00FD3EC3 /* LMRadioDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814722584F44C00FD3EC3 /* LMRadioDetailView.swift */; };
- 837814782584F45F00FD3EC3 /* LMRadioDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814772584F45F00FD3EC3 /* LMRadioDetailManager.swift */; };
- 8378147D2584F47400FD3EC3 /* LMMonitorDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378147C2584F47400FD3EC3 /* LMMonitorDetailCtr.swift */; };
- 837814822584F48300FD3EC3 /* LMMonitorDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814812584F48300FD3EC3 /* LMMonitorDetailView.swift */; };
- 837814872584F49700FD3EC3 /* LMMonitorDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814862584F49700FD3EC3 /* LMMonitorDetailManager.swift */; };
- 8378148C2584F4C500FD3EC3 /* LMLightDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378148B2584F4C500FD3EC3 /* LMLightDetailCtr.swift */; };
- 837814912584F4D400FD3EC3 /* LMLightDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814902584F4D400FD3EC3 /* LMLightDetailView.swift */; };
- 837814962584F4E600FD3EC3 /* LMLightDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814952584F4E600FD3EC3 /* LMLightDetailManager.swift */; };
- 8380F1FC25874A0E001A1C94 /* LMLightDetailSever.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8380F1FB25874A0E001A1C94 /* LMLightDetailSever.swift */; };
- 8380F20125874A47001A1C94 /* LMLightDetailRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8380F20025874A47001A1C94 /* LMLightDetailRequest.swift */; };
- 8380F20625874A51001A1C94 /* LMLightDetailApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8380F20525874A51001A1C94 /* LMLightDetailApi.swift */; };
- 8380F20B25874A5C001A1C94 /* LMLightDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8380F20A25874A5C001A1C94 /* LMLightDetailModel.swift */; };
- 83ABC212251D9B5700D53141 /* LMNewLoopService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABC211251D9B5700D53141 /* LMNewLoopService.swift */; };
- 83ABDA7D25863F2000FDC0C7 /* LMCloudBoxServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABDA7C25863F2000FDC0C7 /* LMCloudBoxServer.swift */; };
- 83ABDA822586427F00FDC0C7 /* LMCloudBoxRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABDA812586427F00FDC0C7 /* LMCloudBoxRequest.swift */; };
- 83ABDA872586429500FDC0C7 /* LMCloudBoxModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABDA862586429500FDC0C7 /* LMCloudBoxModel.swift */; };
- 83ABDA8C258642A200FDC0C7 /* LMCloudBoxApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABDA8B258642A200FDC0C7 /* LMCloudBoxApi.swift */; };
- 83B73185251DBE2600953DFF /* LMNewLoopTwoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B73184251DBE2600953DFF /* LMNewLoopTwoCell.swift */; };
- 83B73187251DEF1A00953DFF /* LMNewLoopTwoCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B73186251DEF1A00953DFF /* LMNewLoopTwoCtr.swift */; };
- 83B7318D251DEF8A00953DFF /* LMNewLoopTwoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B7318C251DEF8A00953DFF /* LMNewLoopTwoManager.swift */; };
- 83B7318F251DF16A00953DFF /* LMNewLoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B7318E251DF16A00953DFF /* LMNewLoopView.swift */; };
- 83B73191251DF36800953DFF /* LMNewLoopInputContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B73190251DF36800953DFF /* LMNewLoopInputContentCell.swift */; };
- 83B73193251DF38100953DFF /* LMNewLoopChoseContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B73192251DF38100953DFF /* LMNewLoopChoseContentCell.swift */; };
- 83C7534325934E3B0072318F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83C7534225934E3B0072318F /* CoreGraphics.framework */; };
- 83C7534525934EA50072318F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83C7534425934EA50072318F /* QuartzCore.framework */; };
- 83CCBDBB239758230096AA9F /* LMLampBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDBA239758230096AA9F /* LMLampBaseView.swift */; };
- 83CCBDBD23975F9E0096AA9F /* LMSelectorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDBC23975F9E0096AA9F /* LMSelectorView.swift */; };
- 83CCBDBF23978F810096AA9F /* LMLampApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDBE23978F800096AA9F /* LMLampApi.swift */; };
- 83CCBDC123978F940096AA9F /* LMLampModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDC023978F940096AA9F /* LMLampModel.swift */; };
- 83CCBDC323978FA60096AA9F /* LMLampHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDC223978FA60096AA9F /* LMLampHttpRequest.swift */; };
- 83CCBDC52397A4800096AA9F /* LMLampBaseService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDC42397A4800096AA9F /* LMLampBaseService.swift */; };
- 83CCBDC82397B3DE0096AA9F /* LMSelectorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDC62397B3DE0096AA9F /* LMSelectorCell.swift */; };
- 83CCBDC92397B3DE0096AA9F /* LMSelectorCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83CCBDC72397B3DE0096AA9F /* LMSelectorCell.xib */; };
- 83CCBDCB2397C27E0096AA9F /* LMLightTimeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDCA2397C27E0096AA9F /* LMLightTimeView.swift */; };
- 83CCBDCD2397C2940096AA9F /* LMLoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDCC2397C2940096AA9F /* LMLoopView.swift */; };
- 83CCBDCF2397C31D0096AA9F /* LMGroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDCE2397C31D0096AA9F /* LMGroupView.swift */; };
- 83CCBDD12397C3450096AA9F /* LMPowerSavingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDD02397C3450096AA9F /* LMPowerSavingView.swift */; };
- 83CCBDD52397D4900096AA9F /* LMPowerSavingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83CCBDD42397D4900096AA9F /* LMPowerSavingView.xib */; };
- 83CCD2C02518477100AD14FD /* LMNewLampCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2BF2518477100AD14FD /* LMNewLampCtr.swift */; };
- 83CCD2C22518478400AD14FD /* LMNewLampView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C12518478400AD14FD /* LMNewLampView.swift */; };
- 83CCD2C42518479C00AD14FD /* LMNewLampModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C32518479C00AD14FD /* LMNewLampModel.swift */; };
- 83CCD2C6251847AD00AD14FD /* LMNewLampManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C5251847AD00AD14FD /* LMNewLampManager.swift */; };
- 83CCD2C82518500000AD14FD /* LMInputContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C72518500000AD14FD /* LMInputContentCell.swift */; };
- 83CCD2CA2518501900AD14FD /* LMChoseContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C92518501900AD14FD /* LMChoseContentCell.swift */; };
- 83CCD2CC2518503A00AD14FD /* LMInputAndChoseContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2CB2518503A00AD14FD /* LMInputAndChoseContentCell.swift */; };
- 83CCD2CE2518A48100AD14FD /* LMNewLampService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2CD2518A48100AD14FD /* LMNewLampService.swift */; };
- 83CCD2D02518B27B00AD14FD /* LMNewLampApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2CF2518B27B00AD14FD /* LMNewLampApi.swift */; };
- 83CCD2D22518B29700AD14FD /* LMNewLampRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2D12518B29700AD14FD /* LMNewLampRequest.swift */; };
- 83D9FAAB2522E18D009956A8 /* LMGroupSettingCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAAA2522E18D009956A8 /* LMGroupSettingCtr.swift */; };
- 83D9FAAD2522E1A1009956A8 /* LMGroupSettingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAAC2522E1A1009956A8 /* LMGroupSettingView.swift */; };
- 83D9FAAF2522E1BC009956A8 /* LMGroupSettingModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAAE2522E1BC009956A8 /* LMGroupSettingModel.swift */; };
- 83D9FAB12522E1D4009956A8 /* LMGroupSettingApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB02522E1D4009956A8 /* LMGroupSettingApi.swift */; };
- 83D9FAB32522E1EC009956A8 /* LMGroupSettingRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB22522E1EC009956A8 /* LMGroupSettingRequest.swift */; };
- 83D9FAB52522E200009956A8 /* LMGroupSettingManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB42522E200009956A8 /* LMGroupSettingManager.swift */; };
- 83D9FAB725230680009956A8 /* LMManualOperationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB625230680009956A8 /* LMManualOperationView.swift */; };
- 83D9FAB9252306A9009956A8 /* LMStrategyOperationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB8252306A9009956A8 /* LMStrategyOperationView.swift */; };
- 83D9FABB252306BF009956A8 /* LMAutoOperationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FABA252306BF009956A8 /* LMAutoOperationView.swift */; };
- 83DD400025E3450E00A5808E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83DD400225E3450E00A5808E /* InfoPlist.strings */; };
- 83DD400F25E3463D00A5808E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83DD401125E3463D00A5808E /* Localizable.strings */; };
- 83DD408925E3817E00A5808E /* LMLoginVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83DD408B25E3817E00A5808E /* LMLoginVCtr.xib */; };
- 83DD409325E38A3700A5808E /* LMAlarmNumberView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83DD409525E38A3700A5808E /* LMAlarmNumberView.xib */; };
- 83E23E5F2521BA6400678616 /* LMGroupManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E5E2521BA6400678616 /* LMGroupManager.swift */; };
- 83E23E612521BA7300678616 /* LMGroupService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E602521BA7300678616 /* LMGroupService.swift */; };
- 83E23E632521BA8100678616 /* LMGroupModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E622521BA8100678616 /* LMGroupModel.swift */; };
- 83E23E652521BA8C00678616 /* LMGroupApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E642521BA8C00678616 /* LMGroupApi.swift */; };
- 83E23E672521BAA500678616 /* LMGroupHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E662521BAA500678616 /* LMGroupHttpRequest.swift */; };
- 83E23E6B2521BB5400678616 /* LMMainGroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E6A2521BB5400678616 /* LMMainGroupView.swift */; };
- 83E23E6D2521D81200678616 /* LMTGroupItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E6C2521D81200678616 /* LMTGroupItemCell.swift */; };
- 83E4081C2387726800255664 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4081B2387726800255664 /* AppDelegate.swift */; };
- 83E4081E2387726800255664 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4081D2387726800255664 /* SceneDelegate.swift */; };
- 83E408202387726800255664 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4081F2387726800255664 /* ViewController.swift */; };
- 83E408232387726800255664 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 83E408212387726800255664 /* Main.storyboard */; };
- 83E408252387726C00255664 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 83E408242387726C00255664 /* Assets.xcassets */; };
- 83E408282387726C00255664 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 83E408262387726C00255664 /* LaunchScreen.storyboard */; };
- 83E408332387726D00255664 /* LampMindTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408322387726D00255664 /* LampMindTests.swift */; };
- 83E4083E2387726D00255664 /* LampMindUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4083D2387726D00255664 /* LampMindUITests.swift */; };
- 83E408852387782F00255664 /* UIBarButtonItem+item.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408562387782F00255664 /* UIBarButtonItem+item.swift */; };
- 83E408862387782F00255664 /* MKMapView+ZoomLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408572387782F00255664 /* MKMapView+ZoomLevel.swift */; };
- 83E408872387782F00255664 /* UIView+Gradient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408582387782F00255664 /* UIView+Gradient.swift */; };
- 83E408882387782F00255664 /* UIView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408592387782F00255664 /* UIView+Extension.swift */; };
- 83E408892387782F00255664 /* UIButton+Gradient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085A2387782F00255664 /* UIButton+Gradient.swift */; };
- 83E4088A2387782F00255664 /* LMView+UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085B2387782F00255664 /* LMView+UIViewController.swift */; };
- 83E4088B2387782F00255664 /* UIImagView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085C2387782F00255664 /* UIImagView+Kingfisher.swift */; };
- 83E4088C2387782F00255664 /* UIView+Configure.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085D2387782F00255664 /* UIView+Configure.swift */; };
- 83E4088D2387782F00255664 /* UIVIew+Positioning.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085E2387782F00255664 /* UIVIew+Positioning.swift */; };
- 83E4088E2387782F00255664 /* ProjectConstant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085F2387782F00255664 /* ProjectConstant.swift */; };
- 83E4088F2387782F00255664 /* ProviderSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408612387782F00255664 /* ProviderSupport.swift */; };
- 83E408902387782F00255664 /* LMCornerLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408642387782F00255664 /* LMCornerLabel.swift */; };
- 83E408912387782F00255664 /* LMViewModelProtocolDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408662387782F00255664 /* LMViewModelProtocolDelegate.swift */; };
- 83E408932387782F00255664 /* LMViewProtocolDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408682387782F00255664 /* LMViewProtocolDelegate.swift */; };
- 83E408942387782F00255664 /* LMViewManagerProtocolDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408692387782F00255664 /* LMViewManagerProtocolDelegate.swift */; };
- 83E408952387782F00255664 /* AppShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4086A2387782F00255664 /* AppShare.swift */; };
- 83E408962387782F00255664 /* THScrollChooseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E4086C2387782F00255664 /* THScrollChooseView.m */; };
- 83E408972387782F00255664 /* CXDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E4086D2387782F00255664 /* CXDatePickerView.m */; };
- 83E408982387782F00255664 /* DGKVOTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4086F2387782F00255664 /* DGKVOTool.swift */; };
- 83E408992387782F00255664 /* SegmentStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408732387782F00255664 /* SegmentStyle.swift */; };
- 83E4089A2387782F00255664 /* ScrollSegmentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408742387782F00255664 /* ScrollSegmentView.swift */; };
- 83E4089B2387782F00255664 /* HDEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408762387782F00255664 /* HDEmptyView.swift */; };
- 83E4089C2387782F00255664 /* HDRunTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408772387782F00255664 /* HDRunTime.swift */; };
- 83E4089D2387782F00255664 /* UIView+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408782387782F00255664 /* UIView+Position.swift */; };
- 83E4089E2387782F00255664 /* UIScrollView+Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408792387782F00255664 /* UIScrollView+Empty.swift */; };
- 83E4089F2387782F00255664 /* HDEmptyBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4087A2387782F00255664 /* HDEmptyBaseView.swift */; };
- 83E408A02387782F00255664 /* NSDate+CXCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E4087C2387782F00255664 /* NSDate+CXCategory.m */; };
- 83E408A12387782F00255664 /* KKWRefreshHeaderAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4087D2387782F00255664 /* KKWRefreshHeaderAnimator.swift */; };
- 83E4096A2387790A00255664 /* LMLoginModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409612387790900255664 /* LMLoginModel.swift */; };
- 83E4096B2387790A00255664 /* LMLoginHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409622387790900255664 /* LMLoginHttpRequest.swift */; };
- 83E4096C2387790A00255664 /* LMLoginApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409632387790900255664 /* LMLoginApi.swift */; };
- 83E4096D2387790A00255664 /* LMLoginManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409652387790900255664 /* LMLoginManager.swift */; };
- 83E4096E2387790A00255664 /* LMLoginVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409672387790900255664 /* LMLoginVCtr.swift */; };
- 83EAA59C23950E43008763FB /* RootNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA59723950E42008763FB /* RootNavigationController.swift */; };
- 83EAA59D23950E43008763FB /* MainViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA59923950E42008763FB /* MainViewController.swift */; };
- 83EAA59E23950E43008763FB /* LMNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA59B23950E43008763FB /* LMNavigationController.swift */; };
- 83EAA5FD23950EDD008763FB /* LMGISVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5A223950EDB008763FB /* LMGISVCtr.xib */; };
- 83EAA5FE23950EDD008763FB /* LMGISVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A323950EDB008763FB /* LMGISVCtr.swift */; };
- 83EAA5FF23950EDD008763FB /* LMGISManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A523950EDB008763FB /* LMGISManager.swift */; };
- 83EAA60023950EDD008763FB /* LMGISMapManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A623950EDB008763FB /* LMGISMapManager.swift */; };
- 83EAA60123950EDD008763FB /* LMGISModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A823950EDB008763FB /* LMGISModel.swift */; };
- 83EAA60223950EDD008763FB /* LMGisHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A923950EDB008763FB /* LMGisHttpRequest.swift */; };
- 83EAA60323950EDD008763FB /* LMGISApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5AA23950EDB008763FB /* LMGISApi.swift */; };
- 83EAA60423950EDD008763FB /* LMPoleCalloutView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5AC23950EDB008763FB /* LMPoleCalloutView.xib */; };
- 83EAA60523950EDD008763FB /* LMGisHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5AD23950EDB008763FB /* LMGisHeaderView.swift */; };
- 83EAA60623950EDD008763FB /* LMLampWithAlarmCalloutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5AE23950EDB008763FB /* LMLampWithAlarmCalloutView.swift */; };
- 83EAA60723950EDD008763FB /* LMPoleCalloutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5AF23950EDB008763FB /* LMPoleCalloutView.swift */; };
- 83EAA60823950EDD008763FB /* LMLampCalloutView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5B023950EDB008763FB /* LMLampCalloutView.xib */; };
- 83EAA60923950EDD008763FB /* LMLampCalloutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5B123950EDB008763FB /* LMLampCalloutView.swift */; };
- 83EAA60A23950EDD008763FB /* LMAnnotationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5B223950EDB008763FB /* LMAnnotationView.swift */; };
- 83EAA60B23950EDD008763FB /* LMMapView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5B323950EDB008763FB /* LMMapView.swift */; };
- 83EAA60C23950EDD008763FB /* LMLampNoAlarmCalloutView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5B423950EDB008763FB /* LMLampNoAlarmCalloutView.xib */; };
- 83EAA60D23950EDD008763FB /* LMLampWithAlarmCalloutView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5B523950EDB008763FB /* LMLampWithAlarmCalloutView.xib */; };
- 83EAA60E23950EDD008763FB /* LMLampNoAlarmCalloutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5B623950EDB008763FB /* LMLampNoAlarmCalloutView.swift */; };
- 83EAA65923950F22008763FB /* LMRoadFilterVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64223950F22008763FB /* LMRoadFilterVCtr.swift */; };
- 83EAA65A23950F22008763FB /* LMRoadFilterVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA64323950F22008763FB /* LMRoadFilterVCtr.xib */; };
- 83EAA65B23950F22008763FB /* LMRoadFilterManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64523950F22008763FB /* LMRoadFilterManager.swift */; };
- 83EAA65C23950F22008763FB /* LMRoadFilterCacheManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64623950F22008763FB /* LMRoadFilterCacheManager.swift */; };
- 83EAA65E23950F22008763FB /* LMRoadFilterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64923950F22008763FB /* LMRoadFilterView.swift */; };
- 83EAA65F23950F22008763FB /* LMDimmingVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA64C23950F22008763FB /* LMDimmingVCtr.xib */; };
- 83EAA66023950F22008763FB /* LMDimmingVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64D23950F22008763FB /* LMDimmingVCtr.swift */; };
- 83EAA66123950F22008763FB /* LMDimmingManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64F23950F22008763FB /* LMDimmingManager.swift */; };
- 83EAA66223950F22008763FB /* LMWebSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA65123950F22008763FB /* LMWebSocket.swift */; };
- 83EAA66323950F22008763FB /* LMSliderViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA65323950F22008763FB /* LMSliderViewStyle.swift */; };
- 83EAA66423950F22008763FB /* LMSliderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA65523950F22008763FB /* LMSliderView.swift */; };
- 83EAA66523950F22008763FB /* LMSliderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA65623950F22008763FB /* LMSliderView.xib */; };
- 83EAA66723950F22008763FB /* LMDimmingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA65823950F22008763FB /* LMDimmingView.swift */; };
- 83EAA6892395142B008763FB /* LMAlarmInfoManger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6742395142B008763FB /* LMAlarmInfoManger.swift */; };
- 83EAA68A2395142B008763FB /* LMAlarmVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6752395142B008763FB /* LMAlarmVCtr.xib */; };
- 83EAA68B2395142B008763FB /* LMAlarmDispathVctr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6762395142B008763FB /* LMAlarmDispathVctr.swift */; };
- 83EAA68C2395142B008763FB /* LMAlarmInfoVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6772395142B008763FB /* LMAlarmInfoVCtr.swift */; };
- 83EAA68D2395142B008763FB /* LMAlarmManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA67A2395142B008763FB /* LMAlarmManager.swift */; };
- 83EAA68E2395142B008763FB /* LMAlarmCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA67C2395142B008763FB /* LMAlarmCell.xib */; };
- 83EAA68F2395142B008763FB /* LMEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA67D2395142B008763FB /* LMEmptyView.xib */; };
- 83EAA6902395142B008763FB /* LMAlarmView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA67E2395142B008763FB /* LMAlarmView.swift */; };
- 83EAA6912395142B008763FB /* LMAlarmCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA67F2395142B008763FB /* LMAlarmCell.swift */; };
- 83EAA6922395142B008763FB /* LMEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6802395142B008763FB /* LMEmptyView.swift */; };
- 83EAA6932395142B008763FB /* LMAlarmVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6812395142B008763FB /* LMAlarmVCtr.swift */; };
- 83EAA6942395142B008763FB /* LMNetWorkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6822395142B008763FB /* LMNetWorkManager.swift */; };
- 83EAA6952395142B008763FB /* LMAlarmApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6832395142B008763FB /* LMAlarmApi.swift */; };
- 83EAA6972395142B008763FB /* LMAlarmModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6852395142B008763FB /* LMAlarmModel.swift */; };
- 83EAA6982395142B008763FB /* LMAlarmHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6862395142B008763FB /* LMAlarmHttpRequest.swift */; };
- 83EAA69A2395142B008763FB /* LMAlarmDispatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6882395142B008763FB /* LMAlarmDispatchManager.swift */; };
- 83EAA6B5239516AA008763FB /* LMDeviceVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6A2239516AA008763FB /* LMDeviceVCtr.xib */; };
- 83EAA6B6239516AA008763FB /* LMDeviceVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A3239516AA008763FB /* LMDeviceVCtr.swift */; };
- 83EAA6B7239516AA008763FB /* LMDeviceViewManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A5239516AA008763FB /* LMDeviceViewManager.swift */; };
- 83EAA6B8239516AA008763FB /* LMDeviceApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A7239516AA008763FB /* LMDeviceApi.swift */; };
- 83EAA6B9239516AA008763FB /* LMDeviceModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A8239516AA008763FB /* LMDeviceModel.swift */; };
- 83EAA6BA239516AA008763FB /* LMChartsModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A9239516AA008763FB /* LMChartsModel.swift */; };
- 83EAA6BB239516AA008763FB /* LMDeviceHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AA239516AA008763FB /* LMDeviceHttpRequest.swift */; };
- 83EAA6BC239516AA008763FB /* LMAlarmNumberView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AC239516AA008763FB /* LMAlarmNumberView.swift */; };
- 83EAA6BD239516AA008763FB /* LMElectricQuantityView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AD239516AA008763FB /* LMElectricQuantityView.swift */; };
- 83EAA6BE239516AA008763FB /* LMDeviceView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AE239516AA008763FB /* LMDeviceView.swift */; };
- 83EAA6BF239516AA008763FB /* BalloonMarker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AF239516AA008763FB /* BalloonMarker.swift */; };
- 83EAA6C0239516AA008763FB /* LMElectriQuantiyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6B0239516AA008763FB /* LMElectriQuantiyCell.xib */; };
- 83EAA6C1239516AA008763FB /* LMMonitorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6B1239516AA008763FB /* LMMonitorView.swift */; };
- 83EAA6C2239516AA008763FB /* LMElectriQuantiyCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6B2239516AA008763FB /* LMElectriQuantiyCell.swift */; };
- 83EAA6C3239516AA008763FB /* LMLightNumberView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6B3239516AA008763FB /* LMLightNumberView.swift */; };
- 83EAA6C4239516AA008763FB /* LMChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6B4239516AA008763FB /* LMChartView.swift */; };
- 83EAA6C723954149008763FB /* LMLightNumberView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6C623954149008763FB /* LMLightNumberView.xib */; };
- 83EAA6CC239645B2008763FB /* LMMonitorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6CA239645B1008763FB /* LMMonitorCell.swift */; };
- 83EAA6CD239645B2008763FB /* LMMonitorCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6CB239645B1008763FB /* LMMonitorCell.xib */; };
- 83EAA71F23966966008763FB /* UICollectionView+SideRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71323966966008763FB /* UICollectionView+SideRefresh.m */; };
- 83EAA72023966966008763FB /* SideRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71423966966008763FB /* SideRefreshHeader.m */; };
- 83EAA72123966966008763FB /* SideRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71523966966008763FB /* SideRefreshFooter.m */; };
- 83EAA72223966966008763FB /* SideRefreshEmptyFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71723966966008763FB /* SideRefreshEmptyFooter.m */; };
- 83EAA72323966966008763FB /* SideRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71823966966008763FB /* SideRefresh.m */; };
- 83EAA72423966966008763FB /* UICollectionView+SideExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71923966966008763FB /* UICollectionView+SideExtension.m */; };
- 83EAA72723968F9B008763FB /* LMLampVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA72623968F9A008763FB /* LMLampVCtr.swift */; };
- 83EAA730239749FD008763FB /* LMLampBaseVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA72E239749FD008763FB /* LMLampBaseVCtr.swift */; };
- 83EAA731239749FD008763FB /* LMLampBaseVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA72F239749FD008763FB /* LMLampBaseVCtr.xib */; };
- 83EAA73723974AA1008763FB /* LMLampBaseManger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA73623974AA1008763FB /* LMLampBaseManger.swift */; };
- FE42013DC374EEAC481BD190 /* Pods_LampMind.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 764030A0DF97F6C6E68A9282 /* Pods_LampMind.framework */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 83E4082F2387726C00255664 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 83E408102387726800255664 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 83E408172387726800255664;
- remoteInfo = LampMind;
- };
- 83E4083A2387726D00255664 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 83E408102387726800255664 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 83E408172387726800255664;
- remoteInfo = LampMind;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXFileReference section */
- 5F5E1E8F2536C944007EAC23 /* LMPlayVideoCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoCtr.swift; sourceTree = "<group>"; };
- 5F5E1E912536C95C007EAC23 /* LMPlayVideoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoView.swift; sourceTree = "<group>"; };
- 5F5E1E932536C97F007EAC23 /* LMPlayVideoModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoModel.swift; sourceTree = "<group>"; };
- 5F5E1E952536C99D007EAC23 /* LMPlayVideoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoManager.swift; sourceTree = "<group>"; };
- 5F5E1E972536CDA9007EAC23 /* LMPlayVideoService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoService.swift; sourceTree = "<group>"; };
- 5F5E1E992536CEE6007EAC23 /* LMPlayVideoApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoApi.swift; sourceTree = "<group>"; };
- 5F5E1E9B2536CFB6007EAC23 /* LMPlayVideoRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoRequest.swift; sourceTree = "<group>"; };
- 5F5E1E9E2536E2B1007EAC23 /* libEZUIKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libEZUIKit.a; path = ../LampMind/LampMind/Global/Vender/EZUIKit/libEZUIKit.a; sourceTree = "<group>"; };
- 5F63A8212539BCF200DD9DD6 /* CodeScan.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CodeScan.bundle; sourceTree = "<group>"; };
- 5F63A8222539BCF200DD9DD6 /* LBXScanNetAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanNetAnimation.swift; sourceTree = "<group>"; };
- 5F63A8232539BCF200DD9DD6 /* LBXScanView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanView.swift; sourceTree = "<group>"; };
- 5F63A8242539BCF200DD9DD6 /* LBXScanViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewController.swift; sourceTree = "<group>"; };
- 5F63A8252539BCF200DD9DD6 /* LBXScanLineAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanLineAnimation.swift; sourceTree = "<group>"; };
- 5F63A8262539BCF200DD9DD6 /* LBXScanViewStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewStyle.swift; sourceTree = "<group>"; };
- 5F63A8272539BCF200DD9DD6 /* LBXPermissions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXPermissions.swift; sourceTree = "<group>"; };
- 5F63A8282539BCF200DD9DD6 /* LBXScanWrapper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanWrapper.swift; sourceTree = "<group>"; };
- 5F6802AC253C845E0002577C /* LMRepairCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairCtr.swift; sourceTree = "<group>"; };
- 5F6802AE253C84710002577C /* LMRepairManagerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairManagerView.swift; sourceTree = "<group>"; };
- 5F6802B1253C84B50002577C /* LMRepairModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairModel.swift; sourceTree = "<group>"; };
- 5F6802B3253C84D30002577C /* LMRepairManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairManager.swift; sourceTree = "<group>"; };
- 5F6A10D62537E33C007A20DC /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
- 5F6A10D82537E348007A20DC /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
- 5F6A10DA2537E353007A20DC /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- 5F6A10DD2537E371007A20DC /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
- 5F6A10DF2537E38C007A20DC /* MediaAccessibility.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaAccessibility.framework; path = System/Library/Frameworks/MediaAccessibility.framework; sourceTree = SDKROOT; };
- 5F6A10E12537E39B007A20DC /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
- 5F6A10E62537E715007A20DC /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
- 5F6A10ED2537FDE0007A20DC /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
- 5F6A10EF2537FDE0007A20DC /* pem2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = "<group>"; };
- 5F6A10F02537FDE0007A20DC /* pem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = "<group>"; };
- 5F6A10F12537FDE0007A20DC /* md2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md2.h; sourceTree = "<group>"; };
- 5F6A10F22537FDE0007A20DC /* ssl3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = "<group>"; };
- 5F6A10F32537FDE0007A20DC /* ossl_typ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = "<group>"; };
- 5F6A10F42537FDE0007A20DC /* dtls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = "<group>"; };
- 5F6A10F52537FDE0007A20DC /* err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = "<group>"; };
- 5F6A10F62537FDE0007A20DC /* bn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = "<group>"; };
- 5F6A10F72537FDE0007A20DC /* blowfish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = "<group>"; };
- 5F6A10F82537FDE0007A20DC /* cms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = "<group>"; };
- 5F6A10F92537FDE0007A20DC /* engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = "<group>"; };
- 5F6A10FA2537FDE0007A20DC /* conf_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = "<group>"; };
- 5F6A10FB2537FDE0007A20DC /* x509.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = "<group>"; };
- 5F6A10FC2537FDE0007A20DC /* asn1_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = "<group>"; };
- 5F6A10FD2537FDE0007A20DC /* opensslconf_ios_x86_64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_x86_64.h; sourceTree = "<group>"; };
- 5F6A10FE2537FDE0007A20DC /* ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = "<group>"; };
- 5F6A10FF2537FDE0007A20DC /* kssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kssl.h; sourceTree = "<group>"; };
- 5F6A11002537FDE0007A20DC /* opensslconf_tvos_x86_64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_tvos_x86_64.h; sourceTree = "<group>"; };
- 5F6A11012537FDE0007A20DC /* opensslconf_ios_armv7s.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_armv7s.h; sourceTree = "<group>"; };
- 5F6A11022537FDE0007A20DC /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = "<group>"; };
- 5F6A11032537FDE0007A20DC /* symhacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = "<group>"; };
- 5F6A11042537FDE0007A20DC /* asn1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = "<group>"; };
- 5F6A11052537FDE0007A20DC /* opensslconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = "<group>"; };
- 5F6A11062537FDE0007A20DC /* opensslconf_ios_i386.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_i386.h; sourceTree = "<group>"; };
- 5F6A11072537FDE0007A20DC /* bio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = "<group>"; };
- 5F6A11082537FDE0007A20DC /* rc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = "<group>"; };
- 5F6A11092537FDE0007A20DC /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = "<group>"; };
- 5F6A110A2537FDE0007A20DC /* ui_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui_compat.h; sourceTree = "<group>"; };
- 5F6A110B2537FDE0007A20DC /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
- 5F6A110C2537FDE0007A20DC /* ssl23.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl23.h; sourceTree = "<group>"; };
- 5F6A110D2537FDE0007A20DC /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
- 5F6A110E2537FDE0007A20DC /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
- 5F6A110F2537FDE0007A20DC /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
- 5F6A11102537FDE0007A20DC /* txt_db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = "<group>"; };
- 5F6A11112537FDE0007A20DC /* safestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = "<group>"; };
- 5F6A11122537FDE0007A20DC /* ecdsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = "<group>"; };
- 5F6A11132537FDE0007A20DC /* objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = "<group>"; };
- 5F6A11142537FDE0007A20DC /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = "<group>"; };
- 5F6A11152537FDE0007A20DC /* crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = "<group>"; };
- 5F6A11162537FDE0007A20DC /* opensslv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = "<group>"; };
- 5F6A11172537FDE0007A20DC /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = "<group>"; };
- 5F6A11182537FDE0007A20DC /* obj_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = "<group>"; };
- 5F6A11192537FDE0007A20DC /* tmdiff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tmdiff.h; sourceTree = "<group>"; };
- 5F6A111A2537FDE0007A20DC /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
- 5F6A111B2537FDE0007A20DC /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = "<group>"; };
- 5F6A111C2537FDE0007A20DC /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = "<group>"; };
- 5F6A111D2537FDE0007A20DC /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = "<group>"; };
- 5F6A111E2537FDE0007A20DC /* opensslconf_ios_arm64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_arm64.h; sourceTree = "<group>"; };
- 5F6A111F2537FDE0007A20DC /* evp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = "<group>"; };
- 5F6A11202537FDE0007A20DC /* e_os2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = "<group>"; };
- 5F6A11212537FDE0007A20DC /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = "<group>"; };
- 5F6A11222537FDE0007A20DC /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
- 5F6A11232537FDE0007A20DC /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
- 5F6A11242537FDE0007A20DC /* comp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = "<group>"; };
- 5F6A11252537FDE0007A20DC /* cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = "<group>"; };
- 5F6A11262537FDE0007A20DC /* rc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = "<group>"; };
- 5F6A11272537FDE0007A20DC /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
- 5F6A11282537FDE0007A20DC /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
- 5F6A11292537FDE0007A20DC /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = "<group>"; };
- 5F6A112A2537FDE0007A20DC /* ec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = "<group>"; };
- 5F6A112B2537FDE0007A20DC /* ecdh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = "<group>"; };
- 5F6A112C2537FDE0007A20DC /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
- 5F6A112D2537FDE0007A20DC /* opensslconf_ios_armv7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_armv7.h; sourceTree = "<group>"; };
- 5F6A112E2537FDE0007A20DC /* opensslconf_tvos_arm64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_tvos_arm64.h; sourceTree = "<group>"; };
- 5F6A112F2537FDE0007A20DC /* ts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = "<group>"; };
- 5F6A11302537FDE0007A20DC /* pqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pqueue.h; sourceTree = "<group>"; };
- 5F6A11312537FDE0007A20DC /* dso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dso.h; sourceTree = "<group>"; };
- 5F6A11322537FDE0007A20DC /* seed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = "<group>"; };
- 5F6A11332537FDE0007A20DC /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
- 5F6A11342537FDE0007A20DC /* ssl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = "<group>"; };
- 5F6A11352537FDE0007A20DC /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = "<group>"; };
- 5F6A11362537FDE0007A20DC /* krb5_asn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = krb5_asn.h; sourceTree = "<group>"; };
- 5F6A11372537FDE0007A20DC /* des_old.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des_old.h; sourceTree = "<group>"; };
- 5F6A11382537FDE0007A20DC /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = "<group>"; };
- 5F6A11392537FDE0007A20DC /* whrlpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = "<group>"; };
- 5F6A113A2537FDE0007A20DC /* tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = "<group>"; };
- 5F6A113B2537FDE0007A20DC /* mdc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = "<group>"; };
- 5F6A113C2537FDE0007A20DC /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = "<group>"; };
- 5F6A113D2537FDE0007A20DC /* srtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = "<group>"; };
- 5F6A113E2537FDE0007A20DC /* asn1t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = "<group>"; };
- 5F6A113F2537FDE0007A20DC /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = "<group>"; };
- 5F6A11402537FDE0007A20DC /* ebcdic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = "<group>"; };
- 5F6A11412537FDE0007A20DC /* store.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = store.h; sourceTree = "<group>"; };
- 5F6A11422537FDE0007A20DC /* idea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = "<group>"; };
- 5F6A11432537FDE0007A20DC /* lhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = "<group>"; };
- 5F6A11442537FDE0007A20DC /* pq_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pq_compat.h; sourceTree = "<group>"; };
- 5F6A11452537FDE0007A20DC /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
- 5F6A11482537FE83007A20DC /* libbz2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.tbd; path = usr/lib/libbz2.tbd; sourceTree = SDKROOT; };
- 5F6A115125382DF8007A20DC /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
- 5F6A115325382E58007A20DC /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
- 5F6A115525382E76007A20DC /* libiconv.2.4.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.2.4.0.tbd; path = usr/lib/libiconv.2.4.0.tbd; sourceTree = SDKROOT; };
- 5FED922C253703F600003727 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
- 5FED922E2537041E00003727 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
- 5FED92302537042E00003727 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
- 5FED92322537044E00003727 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
- 5FED92342537045B00003727 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
- 5FED92362537047500003727 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
- 5FED92382537048700003727 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
- 5FED923A2537049600003727 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
- 5FED923C253704A300003727 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; };
- 6A62B2657BB335FF65D53B0C /* Pods-LampMind.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LampMind.debug.xcconfig"; path = "Target Support Files/Pods-LampMind/Pods-LampMind.debug.xcconfig"; sourceTree = "<group>"; };
- 764030A0DF97F6C6E68A9282 /* Pods_LampMind.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LampMind.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 83025EEC25E7C40000356051 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMAlarmDispathVctr.xib; sourceTree = "<group>"; };
- 83025EEF25E7C40900356051 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMAlarmDispathVctr.strings; sourceTree = "<group>"; };
- 83025EF125E7C40F00356051 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMAlarmDispathVctr.strings"; sourceTree = "<group>"; };
- 8304615325295F9600B6B291 /* LMNewStrategyGroupCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupCell.swift; sourceTree = "<group>"; };
- 830461552529CBCE00B6B291 /* LMNewStrategyGroupService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupService.swift; sourceTree = "<group>"; };
- 83068D2E2588B13400170DDE /* LMMonitorDetailRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailRequest.swift; sourceTree = "<group>"; };
- 83068D332588B14400170DDE /* LMMonitorDetailApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailApi.swift; sourceTree = "<group>"; };
- 83068D382588B14D00170DDE /* LMMonitorDetailModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailModel.swift; sourceTree = "<group>"; };
- 831555AD2589F38200999EA7 /* LMAirQualityDatailServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAirQualityDatailServer.swift; sourceTree = "<group>"; };
- 831F1A03258A17310078DB14 /* LMAlertDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAlertDetailManager.swift; sourceTree = "<group>"; };
- 831F1A0B258A174D0078DB14 /* LMAlertDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAlertDetailView.swift; sourceTree = "<group>"; };
- 831F1A10258A175D0078DB14 /* LMAlertDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAlertDetailCtr.swift; sourceTree = "<group>"; };
- 831F1A15258A17810078DB14 /* LMLEDDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLEDDetailManager.swift; sourceTree = "<group>"; };
- 831F1A1A258A179B0078DB14 /* LMEDDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMEDDetailView.swift; sourceTree = "<group>"; };
- 831F1A1F258A17AB0078DB14 /* LMEDDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMEDDetailCtr.swift; sourceTree = "<group>"; };
- 831F1A24258A17C90078DB14 /* LMWifiDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMWifiDetailManager.swift; sourceTree = "<group>"; };
- 831F1A29258A17E10078DB14 /* LMWifiDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMWifiDetailView.swift; sourceTree = "<group>"; };
- 831F1A2E258A17F30078DB14 /* LMWifiDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMWifiDetailCtr.swift; sourceTree = "<group>"; };
- 831F1A33258A181A0078DB14 /* LMChargeDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMChargeDetailManager.swift; sourceTree = "<group>"; };
- 831F1A38258A18270078DB14 /* LMChargeDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMChargeDetailView.swift; sourceTree = "<group>"; };
- 831F1A3D258A18390078DB14 /* LMChargeDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMChargeDetailCtr.swift; sourceTree = "<group>"; };
- 8329FEC725B80F450001D20A /* EZConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZConstants.h; sourceTree = "<group>"; };
- 8329FEC825B80F450001D20A /* EZHCNetDeviceSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHCNetDeviceSDK.h; sourceTree = "<group>"; };
- 8329FEC925B80F450001D20A /* EZStreamPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZStreamPlayer.h; sourceTree = "<group>"; };
- 8329FECA25B80F450001D20A /* EZOpenSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZOpenSDK.h; sourceTree = "<group>"; };
- 8329FECB25B80F450001D20A /* EZPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZPlayer.h; sourceTree = "<group>"; };
- 8329FECC25B80F450001D20A /* EZGlobalSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZGlobalSDK.h; sourceTree = "<group>"; };
- 8329FECE25B80F450001D20A /* EZDeviceVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceVersion.h; sourceTree = "<group>"; };
- 8329FECF25B80F450001D20A /* EZUserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZUserInfo.h; sourceTree = "<group>"; };
- 8329FED025B80F450001D20A /* EZDeviceUpgradeStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceUpgradeStatus.h; sourceTree = "<group>"; };
- 8329FED125B80F450001D20A /* EZAccessToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAccessToken.h; sourceTree = "<group>"; };
- 8329FED225B80F450001D20A /* EZPlayerExParamInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZPlayerExParamInfo.h; sourceTree = "<group>"; };
- 8329FED325B80F450001D20A /* EzvizWatchServerInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EzvizWatchServerInfo.h; sourceTree = "<group>"; };
- 8329FED425B80F450001D20A /* EZDeviceRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceRecordDownloadTask.h; sourceTree = "<group>"; };
- 8329FED525B80F450001D20A /* EzvizRecordFileInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EzvizRecordFileInfo.h; sourceTree = "<group>"; };
- 8329FED625B80F450001D20A /* EZDeviceRecordFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceRecordFile.h; sourceTree = "<group>"; };
- 8329FED725B80F450001D20A /* EZLeaveMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZLeaveMessage.h; sourceTree = "<group>"; };
- 8329FED825B80F450001D20A /* EZHiddnsDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHiddnsDeviceInfo.h; sourceTree = "<group>"; };
- 8329FED925B80F450001D20A /* EZDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceInfo.h; sourceTree = "<group>"; };
- 8329FEDA25B80F450001D20A /* EZRecordDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZRecordDownloader.h; sourceTree = "<group>"; };
- 8329FEDB25B80F450001D20A /* EZRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZRecordDownloadTask.h; sourceTree = "<group>"; };
- 8329FEDC25B80F450001D20A /* EZVideoTransformer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTransformer.h; sourceTree = "<group>"; };
- 8329FEDD25B80F450001D20A /* EZTokenKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZTokenKit.h; sourceTree = "<group>"; };
- 8329FEDE25B80F450001D20A /* EZDetectorInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDetectorInfo.h; sourceTree = "<group>"; };
- 8329FEDF25B80F450001D20A /* EZHCNetDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHCNetDeviceInfo.h; sourceTree = "<group>"; };
- 8329FEE025B80F450001D20A /* EZCameraInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCameraInfo.h; sourceTree = "<group>"; };
- 8329FEE125B80F450001D20A /* EZCloudRecordFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCloudRecordFile.h; sourceTree = "<group>"; };
- 8329FEE225B80F450001D20A /* EZCloudRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCloudRecordDownloadTask.h; sourceTree = "<group>"; };
- 8329FEE325B80F450001D20A /* EZAreaInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAreaInfo.h; sourceTree = "<group>"; };
- 8329FEE425B80F450001D20A /* EZProbeDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZProbeDeviceInfo.h; sourceTree = "<group>"; };
- 8329FEE525B80F450001D20A /* EZVideoTalkSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTalkSDK.h; sourceTree = "<group>"; };
- 8329FEE625B80F450001D20A /* EZVideoQualityInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoQualityInfo.h; sourceTree = "<group>"; };
- 8329FEE725B80F450001D20A /* EZAlarmInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAlarmInfo.h; sourceTree = "<group>"; };
- 8329FEE825B80F450001D20A /* EZVideoTalkParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTalkParam.h; sourceTree = "<group>"; };
- 8329FEE925B80F450001D20A /* EZSADPDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZSADPDeviceInfo.h; sourceTree = "<group>"; };
- 8329FEEA25B80F450001D20A /* EZStorageInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZStorageInfo.h; sourceTree = "<group>"; };
- 8329FEEB25B80F450001D20A /* libEZOpenSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libEZOpenSDK.a; sourceTree = "<group>"; };
- 8334ED5425122B9900E0766A /* LMLampDetailCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailCell.swift; sourceTree = "<group>"; };
- 833559CD2510C6D8000F1EF2 /* LMLoopVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLoopVCtr.swift; sourceTree = "<group>"; };
- 833559CF2510C705000F1EF2 /* LMGroupVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupVCtr.swift; sourceTree = "<group>"; };
- 833559D12510C725000F1EF2 /* LMStrategyVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMStrategyVCtr.swift; sourceTree = "<group>"; };
- 833559D32510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoricalReportVCtr.swift; sourceTree = "<group>"; };
- 8341650D25831A23006FAB0D /* LMLightPoleListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleListView.swift; sourceTree = "<group>"; };
- 8341651225832220006FAB0D /* LMLightPoleSever.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleSever.swift; sourceTree = "<group>"; };
- 8341651725834175006FAB0D /* LMLightPoleListRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleListRequest.swift; sourceTree = "<group>"; };
- 8341651C25834195006FAB0D /* LMLightPoleListApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleListApi.swift; sourceTree = "<group>"; };
- 8341652425835899006FAB0D /* LMLightPoleListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleListCell.swift; sourceTree = "<group>"; };
- 8341652E25837CFC006FAB0D /* LMLightPoleDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleDetailCtr.swift; sourceTree = "<group>"; };
- 8348482D24692D4A00F71465 /* LampMind交接文档.pages */ = {isa = PBXFileReference; lastKnownFileType = file; path = "LampMind交接文档.pages"; sourceTree = "<group>"; };
- 8349179D25308D0D006B44BD /* LMLightPoleCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleCtr.swift; sourceTree = "<group>"; };
- 8349179F25308D1F006B44BD /* LMLightPoleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleView.swift; sourceTree = "<group>"; };
- 834917A125308D49006B44BD /* LMLightPoleModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleModel.swift; sourceTree = "<group>"; };
- 834917A325308D5D006B44BD /* LMLightPoleManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleManager.swift; sourceTree = "<group>"; };
- 834B89832514B65300E2108E /* LMLampDetailContentCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentCtr.swift; sourceTree = "<group>"; };
- 834B89852514B66E00E2108E /* LMLampDetailContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentView.swift; sourceTree = "<group>"; };
- 834B89872514B69700E2108E /* LMLampDetailContentModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentModel.swift; sourceTree = "<group>"; };
- 834B89892514B93C00E2108E /* LMLampDetailContentManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentManager.swift; sourceTree = "<group>"; };
- 834B898B2514BBD400E2108E /* LMLampDetaiContentApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetaiContentApi.swift; sourceTree = "<group>"; };
- 834B898D2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetainlContentHttpRequest.swift; sourceTree = "<group>"; };
- 834B898F2514D63E00E2108E /* LMLampDetailContentService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentService.swift; sourceTree = "<group>"; };
- 834E295C251C370900BC3482 /* LMMainLoopService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopService.swift; sourceTree = "<group>"; };
- 834E295E251C37BA00BC3482 /* LMMainLoopApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopApi.swift; sourceTree = "<group>"; };
- 834E2960251C37CF00BC3482 /* LMMainLoopModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopModel.swift; sourceTree = "<group>"; };
- 834E2962251C37E400BC3482 /* LMMainLoopRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopRequest.swift; sourceTree = "<group>"; };
- 834E2964251C459100BC3482 /* LMMainLoopCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopCell.swift; sourceTree = "<group>"; };
- 834E296B251CBD8E00BC3482 /* LMNewLoopCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopCtr.swift; sourceTree = "<group>"; };
- 834E296D251CBDA500BC3482 /* LMNewLoopTwoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopTwoView.swift; sourceTree = "<group>"; };
- 834E296F251CBDBC00BC3482 /* LMNewLoopModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopModel.swift; sourceTree = "<group>"; };
- 834E2971251CBDCA00BC3482 /* LMNewLoopApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopApi.swift; sourceTree = "<group>"; };
- 834E2973251CBDE100BC3482 /* LMNewLoopRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopRequest.swift; sourceTree = "<group>"; };
- 834E2975251CBDFD00BC3482 /* LMNewLoopManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopManager.swift; sourceTree = "<group>"; };
- 834E45632511E85D00ED6B71 /* LMLampManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampManager.swift; sourceTree = "<group>"; };
- 834E45652511E88300ED6B71 /* LMLampDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailView.swift; sourceTree = "<group>"; };
- 834E45672511F4E300ED6B71 /* LMLampServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampServer.swift; sourceTree = "<group>"; };
- 834E45692511F69A00ED6B71 /* LMLampDetailHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailHttpRequest.swift; sourceTree = "<group>"; };
- 834E456D2511F6C600ED6B71 /* LMLampDetailApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailApi.swift; sourceTree = "<group>"; };
- 834E456F251201FB00ED6B71 /* LMLampDetailModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailModel.swift; sourceTree = "<group>"; };
- 834F9D822523725F00BFFE58 /* LMGroupSettingService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingService.swift; sourceTree = "<group>"; };
- 8350348825287A6A00BF947A /* LMNewStrategyGroupCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupCtr.swift; sourceTree = "<group>"; };
- 8350348A25287A8800BF947A /* LMNewStrategyGroupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupView.swift; sourceTree = "<group>"; };
- 8350348C25287AA500BF947A /* LMNewStrategyGroupModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupModel.swift; sourceTree = "<group>"; };
- 8350348E25287AC000BF947A /* LMNewStrategyGroupApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupApi.swift; sourceTree = "<group>"; };
- 8350349025287AE800BF947A /* LMNewStrategyGroupRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupRequest.swift; sourceTree = "<group>"; };
- 8350349225287B0800BF947A /* LMNewStrategyGroupManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupManager.swift; sourceTree = "<group>"; };
- 83559F362522339300B166C4 /* LMDetailContentCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentCtr.swift; sourceTree = "<group>"; };
- 83559F38252233B800B166C4 /* LMDetailContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentView.swift; sourceTree = "<group>"; };
- 83559F3A252233D100B166C4 /* LMDetailContentModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentModel.swift; sourceTree = "<group>"; };
- 83559F3C252233E400B166C4 /* LMDetailContentApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentApi.swift; sourceTree = "<group>"; };
- 83559F3E2522340000B166C4 /* LMDetailContentHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentHttpRequest.swift; sourceTree = "<group>"; };
- 83559F402522341400B166C4 /* LMDetailContentManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentManager.swift; sourceTree = "<group>"; };
- 83559F422522342B00B166C4 /* LMDetailContentService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentService.swift; sourceTree = "<group>"; };
- 83559F442522490500B166C4 /* LMDetailContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentCell.swift; sourceTree = "<group>"; };
- 8356659B25242B1100425C38 /* LMStrategyOperationCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMStrategyOperationCell.swift; sourceTree = "<group>"; };
- 8356659D2524580500425C38 /* LMStrategyOperationDetailCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMStrategyOperationDetailCell.swift; sourceTree = "<group>"; };
- 8356659F2524883000425C38 /* LMHistoryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryView.swift; sourceTree = "<group>"; };
- 835665A12524884400425C38 /* LMHistoryModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryModel.swift; sourceTree = "<group>"; };
- 835665A32524885500425C38 /* LMHistoryApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryApi.swift; sourceTree = "<group>"; };
- 835665A52524886C00425C38 /* LMHistoryHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryHttpRequest.swift; sourceTree = "<group>"; };
- 835665A72524888200425C38 /* LMHistoryManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryManager.swift; sourceTree = "<group>"; };
- 835665A925248FDE00425C38 /* LMHistoryService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryService.swift; sourceTree = "<group>"; };
- 835665AB25249BF400425C38 /* LMHistoryCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryCell.swift; sourceTree = "<group>"; };
- 8356E1B4253FCC400024561F /* LMRepairService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairService.swift; sourceTree = "<group>"; };
- 8356E1B6253FCD200024561F /* LMRepairApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairApi.swift; sourceTree = "<group>"; };
- 8356E1B8253FCE7B0024561F /* LMRepairRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairRequest.swift; sourceTree = "<group>"; };
- 83577A292519DC89002A83A0 /* LMMainLoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopView.swift; sourceTree = "<group>"; };
- 83577A2B2519DECC002A83A0 /* LMMainLoopManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopManager.swift; sourceTree = "<group>"; };
- 8359C049253424500027518B /* LMMeteorologicalCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalCell.swift; sourceTree = "<group>"; };
- 8359C04B253427920027518B /* LMMeteorologicalApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalApi.swift; sourceTree = "<group>"; };
- 8359C04D253427A70027518B /* LMMeteorologicalRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalRequest.swift; sourceTree = "<group>"; };
- 8359C04F253429500027518B /* LMMeteorologicalService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalService.swift; sourceTree = "<group>"; };
- 8359C05125343C1B0027518B /* LMLightApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightApi.swift; sourceTree = "<group>"; };
- 8359C05325343C400027518B /* LMLightRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightRequest.swift; sourceTree = "<group>"; };
- 8359C055253440110027518B /* LMLightService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightService.swift; sourceTree = "<group>"; };
- 8359C0572534456B0027518B /* LMLightViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightViewCell.swift; sourceTree = "<group>"; };
- 835F1B9225E89DD0006A7CA1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMDimmingView.xib; sourceTree = "<group>"; };
- 835F1B9825E89DD8006A7CA1 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMDimmingView.strings; sourceTree = "<group>"; };
- 835F1B9A25E89DDE006A7CA1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMDimmingView.strings"; sourceTree = "<group>"; };
- 8360226E2533434A00416047 /* LMLightManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightManager.swift; sourceTree = "<group>"; };
- 83602270253345CE00416047 /* LMLightModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightModel.swift; sourceTree = "<group>"; };
- 83602272253345E000416047 /* LMLightView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightView.swift; sourceTree = "<group>"; };
- 83602274253345F500416047 /* LMLightCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightCtr.swift; sourceTree = "<group>"; };
- 836022762533461900416047 /* LMMeteorologicalManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalManager.swift; sourceTree = "<group>"; };
- 836022782533462700416047 /* LMMeteorologicalModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalModel.swift; sourceTree = "<group>"; };
- 8360227A2533463500416047 /* LMMeteorologicalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalView.swift; sourceTree = "<group>"; };
- 8360227C2533464700416047 /* LMMeteorologicalCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalCtr.swift; sourceTree = "<group>"; };
- 8360227E2533465C00416047 /* LMMonitorManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorManager.swift; sourceTree = "<group>"; };
- 836022802533467400416047 /* LMMonitorModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorModel.swift; sourceTree = "<group>"; };
- 836022822533470D00416047 /* LMMonitorPoleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorPoleView.swift; sourceTree = "<group>"; };
- 836022842533471C00416047 /* LMMonitorCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorCtr.swift; sourceTree = "<group>"; };
- 8360228625335F2000416047 /* LMMonitorPoleCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorPoleCell.swift; sourceTree = "<group>"; };
- 83674E9525E60435000B4B3C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMRoadFilterView.xib; sourceTree = "<group>"; };
- 83674E9B25E60442000B4B3C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMRoadFilterView.strings; sourceTree = "<group>"; };
- 83674E9D25E60446000B4B3C /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMRoadFilterView.strings"; sourceTree = "<group>"; };
- 836AAF1925E4B4D00068B7C6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMLoopView.xib; sourceTree = "<group>"; };
- 836AAF1C25E4B4D90068B7C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMLoopView.strings; sourceTree = "<group>"; };
- 836AAF1E25E4B4E00068B7C6 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMLoopView.strings"; sourceTree = "<group>"; };
- 836AAF2025E4B53A0068B7C6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMGroupView.xib; sourceTree = "<group>"; };
- 836AAF2625E4CE760068B7C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMGroupView.strings; sourceTree = "<group>"; };
- 836AAF2825E4CE7C0068B7C6 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMGroupView.strings"; sourceTree = "<group>"; };
- 836D81B925B98FA3001718E0 /* IJKMediaFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = IJKMediaFramework.framework; sourceTree = "<group>"; };
- 836E8AE4258B6BB200883233 /* LMConnectDeviceCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMConnectDeviceCell.swift; sourceTree = "<group>"; };
- 836FC31925E0BE170071051F /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
- 836FC31D25E0BE1B0071051F /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
- 83711D91258C8422006387CE /* LMHistoryAlertCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryAlertCell.swift; sourceTree = "<group>"; };
- 83711D96258C89B8006387CE /* LMNowAlertCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNowAlertCell.swift; sourceTree = "<group>"; };
- 83725CB325EA1E47000222EB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMAlarmInfoVCtr.xib; sourceTree = "<group>"; };
- 83725CB925EA1E52000222EB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMAlarmInfoVCtr.strings; sourceTree = "<group>"; };
- 83725CBB25EA1F0B000222EB /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMAlarmInfoVCtr.strings"; sourceTree = "<group>"; };
- 8378142C2584C60A00FD3EC3 /* LMLightPoleDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleDetailView.swift; sourceTree = "<group>"; };
- 837814312584C63B00FD3EC3 /* LMLightPoleDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleDetailManager.swift; sourceTree = "<group>"; };
- 8378143B2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxDetailCtr.swift; sourceTree = "<group>"; };
- 837814402584F24700FD3EC3 /* LMCloudBoxDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxDetailView.swift; sourceTree = "<group>"; };
- 837814452584F26500FD3EC3 /* LMCloudBoxManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxManager.swift; sourceTree = "<group>"; };
- 8378145E2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAirQualityDetailCtr.swift; sourceTree = "<group>"; };
- 837814632584F40F00FD3EC3 /* LMAirQualityDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAirQualityDetailView.swift; sourceTree = "<group>"; };
- 837814682584F42600FD3EC3 /* LMAirQualityDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAirQualityDetailManager.swift; sourceTree = "<group>"; };
- 8378146D2584F43E00FD3EC3 /* LMRadioDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRadioDetailCtr.swift; sourceTree = "<group>"; };
- 837814722584F44C00FD3EC3 /* LMRadioDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRadioDetailView.swift; sourceTree = "<group>"; };
- 837814772584F45F00FD3EC3 /* LMRadioDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRadioDetailManager.swift; sourceTree = "<group>"; };
- 8378147C2584F47400FD3EC3 /* LMMonitorDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailCtr.swift; sourceTree = "<group>"; };
- 837814812584F48300FD3EC3 /* LMMonitorDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailView.swift; sourceTree = "<group>"; };
- 837814862584F49700FD3EC3 /* LMMonitorDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailManager.swift; sourceTree = "<group>"; };
- 8378148B2584F4C500FD3EC3 /* LMLightDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailCtr.swift; sourceTree = "<group>"; };
- 837814902584F4D400FD3EC3 /* LMLightDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailView.swift; sourceTree = "<group>"; };
- 837814952584F4E600FD3EC3 /* LMLightDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailManager.swift; sourceTree = "<group>"; };
- 8380F1FB25874A0E001A1C94 /* LMLightDetailSever.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailSever.swift; sourceTree = "<group>"; };
- 8380F20025874A47001A1C94 /* LMLightDetailRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailRequest.swift; sourceTree = "<group>"; };
- 8380F20525874A51001A1C94 /* LMLightDetailApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailApi.swift; sourceTree = "<group>"; };
- 8380F20A25874A5C001A1C94 /* LMLightDetailModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailModel.swift; sourceTree = "<group>"; };
- 83ABC211251D9B5700D53141 /* LMNewLoopService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopService.swift; sourceTree = "<group>"; };
- 83ABDA7C25863F2000FDC0C7 /* LMCloudBoxServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxServer.swift; sourceTree = "<group>"; };
- 83ABDA812586427F00FDC0C7 /* LMCloudBoxRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxRequest.swift; sourceTree = "<group>"; };
- 83ABDA862586429500FDC0C7 /* LMCloudBoxModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxModel.swift; sourceTree = "<group>"; };
- 83ABDA8B258642A200FDC0C7 /* LMCloudBoxApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxApi.swift; sourceTree = "<group>"; };
- 83B73184251DBE2600953DFF /* LMNewLoopTwoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopTwoCell.swift; sourceTree = "<group>"; };
- 83B73186251DEF1A00953DFF /* LMNewLoopTwoCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopTwoCtr.swift; sourceTree = "<group>"; };
- 83B7318C251DEF8A00953DFF /* LMNewLoopTwoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopTwoManager.swift; sourceTree = "<group>"; };
- 83B7318E251DF16A00953DFF /* LMNewLoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopView.swift; sourceTree = "<group>"; };
- 83B73190251DF36800953DFF /* LMNewLoopInputContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopInputContentCell.swift; sourceTree = "<group>"; };
- 83B73192251DF38100953DFF /* LMNewLoopChoseContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopChoseContentCell.swift; sourceTree = "<group>"; };
- 83C7534225934E3B0072318F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 83C7534425934EA50072318F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
- 83CCBDBA239758230096AA9F /* LMLampBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampBaseView.swift; sourceTree = "<group>"; };
- 83CCBDBC23975F9E0096AA9F /* LMSelectorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMSelectorView.swift; sourceTree = "<group>"; };
- 83CCBDBE23978F800096AA9F /* LMLampApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampApi.swift; sourceTree = "<group>"; };
- 83CCBDC023978F940096AA9F /* LMLampModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampModel.swift; sourceTree = "<group>"; };
- 83CCBDC223978FA60096AA9F /* LMLampHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampHttpRequest.swift; sourceTree = "<group>"; };
- 83CCBDC42397A4800096AA9F /* LMLampBaseService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampBaseService.swift; sourceTree = "<group>"; };
- 83CCBDC62397B3DE0096AA9F /* LMSelectorCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMSelectorCell.swift; sourceTree = "<group>"; };
- 83CCBDC72397B3DE0096AA9F /* LMSelectorCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMSelectorCell.xib; sourceTree = "<group>"; };
- 83CCBDCA2397C27E0096AA9F /* LMLightTimeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightTimeView.swift; sourceTree = "<group>"; };
- 83CCBDCC2397C2940096AA9F /* LMLoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLoopView.swift; sourceTree = "<group>"; };
- 83CCBDCE2397C31D0096AA9F /* LMGroupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupView.swift; sourceTree = "<group>"; };
- 83CCBDD02397C3450096AA9F /* LMPowerSavingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPowerSavingView.swift; sourceTree = "<group>"; };
- 83CCBDD42397D4900096AA9F /* LMPowerSavingView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMPowerSavingView.xib; sourceTree = "<group>"; };
- 83CCD2BF2518477100AD14FD /* LMNewLampCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampCtr.swift; sourceTree = "<group>"; };
- 83CCD2C12518478400AD14FD /* LMNewLampView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampView.swift; sourceTree = "<group>"; };
- 83CCD2C32518479C00AD14FD /* LMNewLampModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampModel.swift; sourceTree = "<group>"; };
- 83CCD2C5251847AD00AD14FD /* LMNewLampManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampManager.swift; sourceTree = "<group>"; };
- 83CCD2C72518500000AD14FD /* LMInputContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMInputContentCell.swift; sourceTree = "<group>"; };
- 83CCD2C92518501900AD14FD /* LMChoseContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMChoseContentCell.swift; sourceTree = "<group>"; };
- 83CCD2CB2518503A00AD14FD /* LMInputAndChoseContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMInputAndChoseContentCell.swift; sourceTree = "<group>"; };
- 83CCD2CD2518A48100AD14FD /* LMNewLampService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampService.swift; sourceTree = "<group>"; };
- 83CCD2CF2518B27B00AD14FD /* LMNewLampApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampApi.swift; sourceTree = "<group>"; };
- 83CCD2D12518B29700AD14FD /* LMNewLampRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampRequest.swift; sourceTree = "<group>"; };
- 83D9FAAA2522E18D009956A8 /* LMGroupSettingCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingCtr.swift; sourceTree = "<group>"; };
- 83D9FAAC2522E1A1009956A8 /* LMGroupSettingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingView.swift; sourceTree = "<group>"; };
- 83D9FAAE2522E1BC009956A8 /* LMGroupSettingModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingModel.swift; sourceTree = "<group>"; };
- 83D9FAB02522E1D4009956A8 /* LMGroupSettingApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingApi.swift; sourceTree = "<group>"; };
- 83D9FAB22522E1EC009956A8 /* LMGroupSettingRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingRequest.swift; sourceTree = "<group>"; };
- 83D9FAB42522E200009956A8 /* LMGroupSettingManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingManager.swift; sourceTree = "<group>"; };
- 83D9FAB625230680009956A8 /* LMManualOperationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMManualOperationView.swift; sourceTree = "<group>"; };
- 83D9FAB8252306A9009956A8 /* LMStrategyOperationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMStrategyOperationView.swift; sourceTree = "<group>"; };
- 83D9FABA252306BF009956A8 /* LMAutoOperationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAutoOperationView.swift; sourceTree = "<group>"; };
- 83DD400125E3450E00A5808E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 83DD400625E3451700A5808E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- 83DD401025E3463D00A5808E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
- 83DD401525E3464600A5808E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 83DD408A25E3817E00A5808E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMLoginVCtr.xib; sourceTree = "<group>"; };
- 83DD408D25E3818400A5808E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMLoginVCtr.strings; sourceTree = "<group>"; };
- 83DD408F25E3819700A5808E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMLoginVCtr.strings"; sourceTree = "<group>"; };
- 83DD409425E38A3700A5808E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMAlarmNumberView.xib; sourceTree = "<group>"; };
- 83DD409725E38A4000A5808E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMAlarmNumberView.strings; sourceTree = "<group>"; };
- 83DD409925E38A4B00A5808E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMAlarmNumberView.strings"; sourceTree = "<group>"; };
- 83E23E5E2521BA6400678616 /* LMGroupManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupManager.swift; sourceTree = "<group>"; };
- 83E23E602521BA7300678616 /* LMGroupService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupService.swift; sourceTree = "<group>"; };
- 83E23E622521BA8100678616 /* LMGroupModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupModel.swift; sourceTree = "<group>"; };
- 83E23E642521BA8C00678616 /* LMGroupApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupApi.swift; sourceTree = "<group>"; };
- 83E23E662521BAA500678616 /* LMGroupHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupHttpRequest.swift; sourceTree = "<group>"; };
- 83E23E6A2521BB5400678616 /* LMMainGroupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainGroupView.swift; sourceTree = "<group>"; };
- 83E23E6C2521D81200678616 /* LMTGroupItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMTGroupItemCell.swift; sourceTree = "<group>"; };
- 83E408182387726800255664 /* LampMind.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LampMind.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 83E4081B2387726800255664 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
- 83E4081D2387726800255664 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
- 83E4081F2387726800255664 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
- 83E408222387726800255664 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- 83E408242387726C00255664 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- 83E408272387726C00255664 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- 83E408292387726C00255664 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 83E4082E2387726C00255664 /* LampMindTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LampMindTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 83E408322387726D00255664 /* LampMindTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LampMindTests.swift; sourceTree = "<group>"; };
- 83E408342387726D00255664 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 83E408392387726D00255664 /* LampMindUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LampMindUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 83E4083D2387726D00255664 /* LampMindUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LampMindUITests.swift; sourceTree = "<group>"; };
- 83E4083F2387726D00255664 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 83E4084B2387759A00255664 /* LampMind-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "LampMind-Bridging-Header.h"; sourceTree = "<group>"; };
- 83E408562387782F00255664 /* UIBarButtonItem+item.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIBarButtonItem+item.swift"; sourceTree = "<group>"; };
- 83E408572387782F00255664 /* MKMapView+ZoomLevel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "MKMapView+ZoomLevel.swift"; sourceTree = "<group>"; };
- 83E408582387782F00255664 /* UIView+Gradient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Gradient.swift"; sourceTree = "<group>"; };
- 83E408592387782F00255664 /* UIView+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Extension.swift"; sourceTree = "<group>"; };
- 83E4085A2387782F00255664 /* UIButton+Gradient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIButton+Gradient.swift"; sourceTree = "<group>"; };
- 83E4085B2387782F00255664 /* LMView+UIViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "LMView+UIViewController.swift"; sourceTree = "<group>"; };
- 83E4085C2387782F00255664 /* UIImagView+Kingfisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImagView+Kingfisher.swift"; sourceTree = "<group>"; };
- 83E4085D2387782F00255664 /* UIView+Configure.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Configure.swift"; sourceTree = "<group>"; };
- 83E4085E2387782F00255664 /* UIVIew+Positioning.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIVIew+Positioning.swift"; sourceTree = "<group>"; };
- 83E4085F2387782F00255664 /* ProjectConstant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProjectConstant.swift; sourceTree = "<group>"; };
- 83E408612387782F00255664 /* ProviderSupport.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProviderSupport.swift; sourceTree = "<group>"; };
- 83E408642387782F00255664 /* LMCornerLabel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMCornerLabel.swift; sourceTree = "<group>"; };
- 83E408662387782F00255664 /* LMViewModelProtocolDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMViewModelProtocolDelegate.swift; sourceTree = "<group>"; };
- 83E408682387782F00255664 /* LMViewProtocolDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMViewProtocolDelegate.swift; sourceTree = "<group>"; };
- 83E408692387782F00255664 /* LMViewManagerProtocolDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMViewManagerProtocolDelegate.swift; sourceTree = "<group>"; };
- 83E4086A2387782F00255664 /* AppShare.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppShare.swift; sourceTree = "<group>"; };
- 83E4086C2387782F00255664 /* THScrollChooseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = THScrollChooseView.m; sourceTree = "<group>"; };
- 83E4086D2387782F00255664 /* CXDatePickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CXDatePickerView.m; sourceTree = "<group>"; };
- 83E4086F2387782F00255664 /* DGKVOTool.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DGKVOTool.swift; sourceTree = "<group>"; };
- 83E408702387782F00255664 /* NSDate+CXCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+CXCategory.h"; sourceTree = "<group>"; };
- 83E408712387782F00255664 /* THScrollChooseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = THScrollChooseView.h; sourceTree = "<group>"; };
- 83E408732387782F00255664 /* SegmentStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SegmentStyle.swift; sourceTree = "<group>"; };
- 83E408742387782F00255664 /* ScrollSegmentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScrollSegmentView.swift; sourceTree = "<group>"; };
- 83E408762387782F00255664 /* HDEmptyView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HDEmptyView.swift; sourceTree = "<group>"; };
- 83E408772387782F00255664 /* HDRunTime.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HDRunTime.swift; sourceTree = "<group>"; };
- 83E408782387782F00255664 /* UIView+Position.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Position.swift"; sourceTree = "<group>"; };
- 83E408792387782F00255664 /* UIScrollView+Empty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIScrollView+Empty.swift"; sourceTree = "<group>"; };
- 83E4087A2387782F00255664 /* HDEmptyBaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HDEmptyBaseView.swift; sourceTree = "<group>"; };
- 83E4087B2387782F00255664 /* CXDatePickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CXDatePickerView.h; sourceTree = "<group>"; };
- 83E4087C2387782F00255664 /* NSDate+CXCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+CXCategory.m"; sourceTree = "<group>"; };
- 83E4087D2387782F00255664 /* KKWRefreshHeaderAnimator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KKWRefreshHeaderAnimator.swift; sourceTree = "<group>"; };
- 83E408842387782F00255664 /* PickerViewParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PickerViewParameter.h; sourceTree = "<group>"; };
- 83E409612387790900255664 /* LMLoginModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginModel.swift; sourceTree = "<group>"; };
- 83E409622387790900255664 /* LMLoginHttpRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginHttpRequest.swift; sourceTree = "<group>"; };
- 83E409632387790900255664 /* LMLoginApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginApi.swift; sourceTree = "<group>"; };
- 83E409652387790900255664 /* LMLoginManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginManager.swift; sourceTree = "<group>"; };
- 83E409672387790900255664 /* LMLoginVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginVCtr.swift; sourceTree = "<group>"; };
- 83EAA59723950E42008763FB /* RootNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RootNavigationController.swift; sourceTree = "<group>"; };
- 83EAA59923950E42008763FB /* MainViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainViewController.swift; sourceTree = "<group>"; };
- 83EAA59B23950E43008763FB /* LMNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMNavigationController.swift; sourceTree = "<group>"; };
- 83EAA5A223950EDB008763FB /* LMGISVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMGISVCtr.xib; sourceTree = "<group>"; };
- 83EAA5A323950EDB008763FB /* LMGISVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISVCtr.swift; sourceTree = "<group>"; };
- 83EAA5A523950EDB008763FB /* LMGISManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISManager.swift; sourceTree = "<group>"; };
- 83EAA5A623950EDB008763FB /* LMGISMapManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISMapManager.swift; sourceTree = "<group>"; };
- 83EAA5A823950EDB008763FB /* LMGISModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISModel.swift; sourceTree = "<group>"; };
- 83EAA5A923950EDB008763FB /* LMGisHttpRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGisHttpRequest.swift; sourceTree = "<group>"; };
- 83EAA5AA23950EDB008763FB /* LMGISApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISApi.swift; sourceTree = "<group>"; };
- 83EAA5AC23950EDB008763FB /* LMPoleCalloutView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMPoleCalloutView.xib; sourceTree = "<group>"; };
- 83EAA5AD23950EDB008763FB /* LMGisHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGisHeaderView.swift; sourceTree = "<group>"; };
- 83EAA5AE23950EDB008763FB /* LMLampWithAlarmCalloutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLampWithAlarmCalloutView.swift; sourceTree = "<group>"; };
- 83EAA5AF23950EDB008763FB /* LMPoleCalloutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMPoleCalloutView.swift; sourceTree = "<group>"; };
- 83EAA5B023950EDB008763FB /* LMLampCalloutView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMLampCalloutView.xib; sourceTree = "<group>"; };
- 83EAA5B123950EDB008763FB /* LMLampCalloutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLampCalloutView.swift; sourceTree = "<group>"; };
- 83EAA5B223950EDB008763FB /* LMAnnotationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAnnotationView.swift; sourceTree = "<group>"; };
- 83EAA5B323950EDB008763FB /* LMMapView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMMapView.swift; sourceTree = "<group>"; };
- 83EAA5B423950EDB008763FB /* LMLampNoAlarmCalloutView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMLampNoAlarmCalloutView.xib; sourceTree = "<group>"; };
- 83EAA5B523950EDB008763FB /* LMLampWithAlarmCalloutView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMLampWithAlarmCalloutView.xib; sourceTree = "<group>"; };
- 83EAA5B623950EDB008763FB /* LMLampNoAlarmCalloutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLampNoAlarmCalloutView.swift; sourceTree = "<group>"; };
- 83EAA64223950F22008763FB /* LMRoadFilterVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMRoadFilterVCtr.swift; sourceTree = "<group>"; };
- 83EAA64323950F22008763FB /* LMRoadFilterVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMRoadFilterVCtr.xib; sourceTree = "<group>"; };
- 83EAA64523950F22008763FB /* LMRoadFilterManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMRoadFilterManager.swift; sourceTree = "<group>"; };
- 83EAA64623950F22008763FB /* LMRoadFilterCacheManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMRoadFilterCacheManager.swift; sourceTree = "<group>"; };
- 83EAA64923950F22008763FB /* LMRoadFilterView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMRoadFilterView.swift; sourceTree = "<group>"; };
- 83EAA64C23950F22008763FB /* LMDimmingVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMDimmingVCtr.xib; sourceTree = "<group>"; };
- 83EAA64D23950F22008763FB /* LMDimmingVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDimmingVCtr.swift; sourceTree = "<group>"; };
- 83EAA64F23950F22008763FB /* LMDimmingManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDimmingManager.swift; sourceTree = "<group>"; };
- 83EAA65123950F22008763FB /* LMWebSocket.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMWebSocket.swift; sourceTree = "<group>"; };
- 83EAA65323950F22008763FB /* LMSliderViewStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMSliderViewStyle.swift; sourceTree = "<group>"; };
- 83EAA65523950F22008763FB /* LMSliderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMSliderView.swift; sourceTree = "<group>"; };
- 83EAA65623950F22008763FB /* LMSliderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMSliderView.xib; sourceTree = "<group>"; };
- 83EAA65823950F22008763FB /* LMDimmingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDimmingView.swift; sourceTree = "<group>"; };
- 83EAA6742395142B008763FB /* LMAlarmInfoManger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmInfoManger.swift; sourceTree = "<group>"; };
- 83EAA6752395142B008763FB /* LMAlarmVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMAlarmVCtr.xib; sourceTree = "<group>"; };
- 83EAA6762395142B008763FB /* LMAlarmDispathVctr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmDispathVctr.swift; sourceTree = "<group>"; };
- 83EAA6772395142B008763FB /* LMAlarmInfoVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmInfoVCtr.swift; sourceTree = "<group>"; };
- 83EAA67A2395142B008763FB /* LMAlarmManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmManager.swift; sourceTree = "<group>"; };
- 83EAA67C2395142B008763FB /* LMAlarmCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMAlarmCell.xib; sourceTree = "<group>"; };
- 83EAA67D2395142B008763FB /* LMEmptyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMEmptyView.xib; sourceTree = "<group>"; };
- 83EAA67E2395142B008763FB /* LMAlarmView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmView.swift; sourceTree = "<group>"; };
- 83EAA67F2395142B008763FB /* LMAlarmCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmCell.swift; sourceTree = "<group>"; };
- 83EAA6802395142B008763FB /* LMEmptyView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMEmptyView.swift; sourceTree = "<group>"; };
- 83EAA6812395142B008763FB /* LMAlarmVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmVCtr.swift; sourceTree = "<group>"; };
- 83EAA6822395142B008763FB /* LMNetWorkManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMNetWorkManager.swift; sourceTree = "<group>"; };
- 83EAA6832395142B008763FB /* LMAlarmApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmApi.swift; sourceTree = "<group>"; };
- 83EAA6852395142B008763FB /* LMAlarmModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmModel.swift; sourceTree = "<group>"; };
- 83EAA6862395142B008763FB /* LMAlarmHttpRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmHttpRequest.swift; sourceTree = "<group>"; };
- 83EAA6882395142B008763FB /* LMAlarmDispatchManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmDispatchManager.swift; sourceTree = "<group>"; };
- 83EAA6A2239516AA008763FB /* LMDeviceVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMDeviceVCtr.xib; sourceTree = "<group>"; };
- 83EAA6A3239516AA008763FB /* LMDeviceVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceVCtr.swift; sourceTree = "<group>"; };
- 83EAA6A5239516AA008763FB /* LMDeviceViewManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceViewManager.swift; sourceTree = "<group>"; };
- 83EAA6A7239516AA008763FB /* LMDeviceApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceApi.swift; sourceTree = "<group>"; };
- 83EAA6A8239516AA008763FB /* LMDeviceModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceModel.swift; sourceTree = "<group>"; };
- 83EAA6A9239516AA008763FB /* LMChartsModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMChartsModel.swift; sourceTree = "<group>"; };
- 83EAA6AA239516AA008763FB /* LMDeviceHttpRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceHttpRequest.swift; sourceTree = "<group>"; };
- 83EAA6AC239516AA008763FB /* LMAlarmNumberView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmNumberView.swift; sourceTree = "<group>"; };
- 83EAA6AD239516AA008763FB /* LMElectricQuantityView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMElectricQuantityView.swift; sourceTree = "<group>"; };
- 83EAA6AE239516AA008763FB /* LMDeviceView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceView.swift; sourceTree = "<group>"; };
- 83EAA6AF239516AA008763FB /* BalloonMarker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BalloonMarker.swift; sourceTree = "<group>"; };
- 83EAA6B0239516AA008763FB /* LMElectriQuantiyCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMElectriQuantiyCell.xib; sourceTree = "<group>"; };
- 83EAA6B1239516AA008763FB /* LMMonitorView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMMonitorView.swift; sourceTree = "<group>"; };
- 83EAA6B2239516AA008763FB /* LMElectriQuantiyCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMElectriQuantiyCell.swift; sourceTree = "<group>"; };
- 83EAA6B3239516AA008763FB /* LMLightNumberView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLightNumberView.swift; sourceTree = "<group>"; };
- 83EAA6B4239516AA008763FB /* LMChartView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMChartView.swift; sourceTree = "<group>"; };
- 83EAA6C623954149008763FB /* LMLightNumberView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMLightNumberView.xib; sourceTree = "<group>"; };
- 83EAA6CA239645B1008763FB /* LMMonitorCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorCell.swift; sourceTree = "<group>"; };
- 83EAA6CB239645B1008763FB /* LMMonitorCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMMonitorCell.xib; sourceTree = "<group>"; };
- 83EAA71323966966008763FB /* UICollectionView+SideRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+SideRefresh.m"; sourceTree = "<group>"; };
- 83EAA71423966966008763FB /* SideRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SideRefreshHeader.m; sourceTree = "<group>"; };
- 83EAA71523966966008763FB /* SideRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SideRefreshFooter.m; sourceTree = "<group>"; };
- 83EAA71623966966008763FB /* UICollectionView+SideExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+SideExtension.h"; sourceTree = "<group>"; };
- 83EAA71723966966008763FB /* SideRefreshEmptyFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SideRefreshEmptyFooter.m; sourceTree = "<group>"; };
- 83EAA71823966966008763FB /* SideRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SideRefresh.m; sourceTree = "<group>"; };
- 83EAA71923966966008763FB /* UICollectionView+SideExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+SideExtension.m"; sourceTree = "<group>"; };
- 83EAA71A23966966008763FB /* SideRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SideRefreshFooter.h; sourceTree = "<group>"; };
- 83EAA71B23966966008763FB /* SideRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SideRefreshHeader.h; sourceTree = "<group>"; };
- 83EAA71C23966966008763FB /* UICollectionView+SideRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+SideRefresh.h"; sourceTree = "<group>"; };
- 83EAA71D23966966008763FB /* SideRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SideRefresh.h; sourceTree = "<group>"; };
- 83EAA71E23966966008763FB /* SideRefreshEmptyFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SideRefreshEmptyFooter.h; sourceTree = "<group>"; };
- 83EAA72623968F9A008763FB /* LMLampVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampVCtr.swift; sourceTree = "<group>"; };
- 83EAA72E239749FD008763FB /* LMLampBaseVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampBaseVCtr.swift; sourceTree = "<group>"; };
- 83EAA72F239749FD008763FB /* LMLampBaseVCtr.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMLampBaseVCtr.xib; sourceTree = "<group>"; };
- 83EAA73623974AA1008763FB /* LMLampBaseManger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampBaseManger.swift; sourceTree = "<group>"; };
- B6A851A2A19952A236929375 /* Pods-LampMind.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LampMind.release.xcconfig"; path = "Target Support Files/Pods-LampMind/Pods-LampMind.release.xcconfig"; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 83E408152387726800255664 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 5F6A115625382E7F007A20DC /* libiconv.2.4.0.tbd in Frameworks */,
- 5F6A10E72537E715007A20DC /* libc++.tbd in Frameworks */,
- 5F6A10E02537E38C007A20DC /* MediaAccessibility.framework in Frameworks */,
- 5F6A11472537FDE0007A20DC /* libssl.a in Frameworks */,
- 5F6A10E52537E3CB007A20DC /* libz.tbd in Frameworks */,
- 5F6A10E42537E3B3007A20DC /* CoreMedia.framework in Frameworks */,
- 5F6A10DE2537E371007A20DC /* OpenGLES.framework in Frameworks */,
- 5F6A114D2537FF04007A20DC /* OpenAL.framework in Frameworks */,
- 5F6A114A2537FEB9007A20DC /* SystemConfiguration.framework in Frameworks */,
- 5F6A10E32537E3A4007A20DC /* AVFoundation.framework in Frameworks */,
- 5F6A10D72537E33C007A20DC /* CoreAudio.framework in Frameworks */,
- 5F6A10DC2537E362007A20DC /* VideoToolbox.framework in Frameworks */,
- 5F6A114C2537FEEC007A20DC /* GLKit.framework in Frameworks */,
- 8329FEEC25B80F460001D20A /* libEZOpenSDK.a in Frameworks */,
- 83C7534525934EA50072318F /* QuartzCore.framework in Frameworks */,
- 836D81BA25B98FA4001718E0 /* IJKMediaFramework.framework in Frameworks */,
- 5F6A11492537FEA8007A20DC /* libiconv.tbd in Frameworks */,
- 5F6A10E22537E39B007A20DC /* CoreVideo.framework in Frameworks */,
- 5F6A10DB2537E353007A20DC /* AudioToolbox.framework in Frameworks */,
- 5F6A115725382E95007A20DC /* libbz2.tbd in Frameworks */,
- 5F6A11462537FDE0007A20DC /* libcrypto.a in Frameworks */,
- 5F6A115425382E58007A20DC /* CoreTelephony.framework in Frameworks */,
- 5F6A114B2537FECA007A20DC /* MobileCoreServices.framework in Frameworks */,
- 5F6A10D92537E348007A20DC /* MediaPlayer.framework in Frameworks */,
- 5F6A115225382E13007A20DC /* libsqlite3.0.tbd in Frameworks */,
- 83C7534325934E3B0072318F /* CoreGraphics.framework in Frameworks */,
- FE42013DC374EEAC481BD190 /* Pods_LampMind.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 83E4082B2387726C00255664 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 83E408362387726D00255664 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 5F5E1E8A2536AF54007EAC23 /* PlayVideo */ = {
- isa = PBXGroup;
- children = (
- 5F5E1E8E2536AF9B007EAC23 /* Manager */,
- 5F5E1E8D2536AF8C007EAC23 /* Model */,
- 5F5E1E8C2536AF85007EAC23 /* View */,
- 5F5E1E8B2536AF7B007EAC23 /* Controller */,
- );
- path = PlayVideo;
- sourceTree = "<group>";
- };
- 5F5E1E8B2536AF7B007EAC23 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 5F5E1E8F2536C944007EAC23 /* LMPlayVideoCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 5F5E1E8C2536AF85007EAC23 /* View */ = {
- isa = PBXGroup;
- children = (
- 5F5E1E912536C95C007EAC23 /* LMPlayVideoView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 5F5E1E8D2536AF8C007EAC23 /* Model */ = {
- isa = PBXGroup;
- children = (
- 5F5E1E932536C97F007EAC23 /* LMPlayVideoModel.swift */,
- 5F5E1E992536CEE6007EAC23 /* LMPlayVideoApi.swift */,
- 5F5E1E9B2536CFB6007EAC23 /* LMPlayVideoRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 5F5E1E8E2536AF9B007EAC23 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 5F5E1E952536C99D007EAC23 /* LMPlayVideoManager.swift */,
- 5F5E1E972536CDA9007EAC23 /* LMPlayVideoService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 5F63A8202539BCF200DD9DD6 /* SwiftScan */ = {
- isa = PBXGroup;
- children = (
- 5F63A8212539BCF200DD9DD6 /* CodeScan.bundle */,
- 5F63A8222539BCF200DD9DD6 /* LBXScanNetAnimation.swift */,
- 5F63A8232539BCF200DD9DD6 /* LBXScanView.swift */,
- 5F63A8242539BCF200DD9DD6 /* LBXScanViewController.swift */,
- 5F63A8252539BCF200DD9DD6 /* LBXScanLineAnimation.swift */,
- 5F63A8262539BCF200DD9DD6 /* LBXScanViewStyle.swift */,
- 5F63A8272539BCF200DD9DD6 /* LBXPermissions.swift */,
- 5F63A8282539BCF200DD9DD6 /* LBXScanWrapper.swift */,
- );
- path = SwiftScan;
- sourceTree = "<group>";
- };
- 5F6802A7253C833F0002577C /* RepairManager */ = {
- isa = PBXGroup;
- children = (
- 5F6802AB253C84290002577C /* Manager */,
- 5F6802AA253C84170002577C /* Model */,
- 5F6802A9253C840B0002577C /* View */,
- 5F6802A8253C83FC0002577C /* Controller */,
- );
- path = RepairManager;
- sourceTree = "<group>";
- };
- 5F6802A8253C83FC0002577C /* Controller */ = {
- isa = PBXGroup;
- children = (
- 5F6802AC253C845E0002577C /* LMRepairCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 5F6802A9253C840B0002577C /* View */ = {
- isa = PBXGroup;
- children = (
- 5F6802AE253C84710002577C /* LMRepairManagerView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 5F6802AA253C84170002577C /* Model */ = {
- isa = PBXGroup;
- children = (
- 5F6802B1253C84B50002577C /* LMRepairModel.swift */,
- 8356E1B6253FCD200024561F /* LMRepairApi.swift */,
- 8356E1B8253FCE7B0024561F /* LMRepairRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 5F6802AB253C84290002577C /* Manager */ = {
- isa = PBXGroup;
- children = (
- 5F6802B3253C84D30002577C /* LMRepairManager.swift */,
- 8356E1B4253FCC400024561F /* LMRepairService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 5F6A10EC2537FDE0007A20DC /* Openssl */ = {
- isa = PBXGroup;
- children = (
- 5F6A10ED2537FDE0007A20DC /* libcrypto.a */,
- 5F6A10EE2537FDE0007A20DC /* include */,
- 5F6A11452537FDE0007A20DC /* libssl.a */,
- );
- path = Openssl;
- sourceTree = "<group>";
- };
- 5F6A10EE2537FDE0007A20DC /* include */ = {
- isa = PBXGroup;
- children = (
- 5F6A10EF2537FDE0007A20DC /* pem2.h */,
- 5F6A10F02537FDE0007A20DC /* pem.h */,
- 5F6A10F12537FDE0007A20DC /* md2.h */,
- 5F6A10F22537FDE0007A20DC /* ssl3.h */,
- 5F6A10F32537FDE0007A20DC /* ossl_typ.h */,
- 5F6A10F42537FDE0007A20DC /* dtls1.h */,
- 5F6A10F52537FDE0007A20DC /* err.h */,
- 5F6A10F62537FDE0007A20DC /* bn.h */,
- 5F6A10F72537FDE0007A20DC /* blowfish.h */,
- 5F6A10F82537FDE0007A20DC /* cms.h */,
- 5F6A10F92537FDE0007A20DC /* engine.h */,
- 5F6A10FA2537FDE0007A20DC /* conf_api.h */,
- 5F6A10FB2537FDE0007A20DC /* x509.h */,
- 5F6A10FC2537FDE0007A20DC /* asn1_mac.h */,
- 5F6A10FD2537FDE0007A20DC /* opensslconf_ios_x86_64.h */,
- 5F6A10FE2537FDE0007A20DC /* ui.h */,
- 5F6A10FF2537FDE0007A20DC /* kssl.h */,
- 5F6A11002537FDE0007A20DC /* opensslconf_tvos_x86_64.h */,
- 5F6A11012537FDE0007A20DC /* opensslconf_ios_armv7s.h */,
- 5F6A11022537FDE0007A20DC /* sha.h */,
- 5F6A11032537FDE0007A20DC /* symhacks.h */,
- 5F6A11042537FDE0007A20DC /* asn1.h */,
- 5F6A11052537FDE0007A20DC /* opensslconf.h */,
- 5F6A11062537FDE0007A20DC /* opensslconf_ios_i386.h */,
- 5F6A11072537FDE0007A20DC /* bio.h */,
- 5F6A11082537FDE0007A20DC /* rc2.h */,
- 5F6A11092537FDE0007A20DC /* dh.h */,
- 5F6A110A2537FDE0007A20DC /* ui_compat.h */,
- 5F6A110B2537FDE0007A20DC /* x509v3.h */,
- 5F6A110C2537FDE0007A20DC /* ssl23.h */,
- 5F6A110D2537FDE0007A20DC /* conf.h */,
- 5F6A110E2537FDE0007A20DC /* md5.h */,
- 5F6A110F2537FDE0007A20DC /* x509_vfy.h */,
- 5F6A11102537FDE0007A20DC /* txt_db.h */,
- 5F6A11112537FDE0007A20DC /* safestack.h */,
- 5F6A11122537FDE0007A20DC /* ecdsa.h */,
- 5F6A11132537FDE0007A20DC /* objects.h */,
- 5F6A11142537FDE0007A20DC /* pkcs12.h */,
- 5F6A11152537FDE0007A20DC /* crypto.h */,
- 5F6A11162537FDE0007A20DC /* opensslv.h */,
- 5F6A11172537FDE0007A20DC /* pkcs7.h */,
- 5F6A11182537FDE0007A20DC /* obj_mac.h */,
- 5F6A11192537FDE0007A20DC /* tmdiff.h */,
- 5F6A111A2537FDE0007A20DC /* buffer.h */,
- 5F6A111B2537FDE0007A20DC /* ssl.h */,
- 5F6A111C2537FDE0007A20DC /* srp.h */,
- 5F6A111D2537FDE0007A20DC /* camellia.h */,
- 5F6A111E2537FDE0007A20DC /* opensslconf_ios_arm64.h */,
- 5F6A111F2537FDE0007A20DC /* evp.h */,
- 5F6A11202537FDE0007A20DC /* e_os2.h */,
- 5F6A11212537FDE0007A20DC /* md4.h */,
- 5F6A11222537FDE0007A20DC /* hmac.h */,
- 5F6A11232537FDE0007A20DC /* aes.h */,
- 5F6A11242537FDE0007A20DC /* comp.h */,
- 5F6A11252537FDE0007A20DC /* cast.h */,
- 5F6A11262537FDE0007A20DC /* rc4.h */,
- 5F6A11272537FDE0007A20DC /* stack.h */,
- 5F6A11282537FDE0007A20DC /* des.h */,
- 5F6A11292537FDE0007A20DC /* ocsp.h */,
- 5F6A112A2537FDE0007A20DC /* ec.h */,
- 5F6A112B2537FDE0007A20DC /* ecdh.h */,
- 5F6A112C2537FDE0007A20DC /* rand.h */,
- 5F6A112D2537FDE0007A20DC /* opensslconf_ios_armv7.h */,
- 5F6A112E2537FDE0007A20DC /* opensslconf_tvos_arm64.h */,
- 5F6A112F2537FDE0007A20DC /* ts.h */,
- 5F6A11302537FDE0007A20DC /* pqueue.h */,
- 5F6A11312537FDE0007A20DC /* dso.h */,
- 5F6A11322537FDE0007A20DC /* seed.h */,
- 5F6A11332537FDE0007A20DC /* modes.h */,
- 5F6A11342537FDE0007A20DC /* ssl2.h */,
- 5F6A11352537FDE0007A20DC /* rsa.h */,
- 5F6A11362537FDE0007A20DC /* krb5_asn.h */,
- 5F6A11372537FDE0007A20DC /* des_old.h */,
- 5F6A11382537FDE0007A20DC /* ripemd.h */,
- 5F6A11392537FDE0007A20DC /* whrlpool.h */,
- 5F6A113A2537FDE0007A20DC /* tls1.h */,
- 5F6A113B2537FDE0007A20DC /* mdc2.h */,
- 5F6A113C2537FDE0007A20DC /* dsa.h */,
- 5F6A113D2537FDE0007A20DC /* srtp.h */,
- 5F6A113E2537FDE0007A20DC /* asn1t.h */,
- 5F6A113F2537FDE0007A20DC /* cmac.h */,
- 5F6A11402537FDE0007A20DC /* ebcdic.h */,
- 5F6A11412537FDE0007A20DC /* store.h */,
- 5F6A11422537FDE0007A20DC /* idea.h */,
- 5F6A11432537FDE0007A20DC /* lhash.h */,
- 5F6A11442537FDE0007A20DC /* pq_compat.h */,
- );
- path = include;
- sourceTree = "<group>";
- };
- 7154D0FDA87A9D40FF675349 /* Pods */ = {
- isa = PBXGroup;
- children = (
- 6A62B2657BB335FF65D53B0C /* Pods-LampMind.debug.xcconfig */,
- B6A851A2A19952A236929375 /* Pods-LampMind.release.xcconfig */,
- );
- path = Pods;
- sourceTree = "<group>";
- };
- 831F19EF258A15CC0078DB14 /* ChargeDetail */ = {
- isa = PBXGroup;
- children = (
- 831F19F3258A164C0078DB14 /* Manager */,
- 831F19F2258A16440078DB14 /* View */,
- 831F19F1258A16340078DB14 /* Model */,
- 831F19F0258A162B0078DB14 /* Controller */,
- );
- path = ChargeDetail;
- sourceTree = "<group>";
- };
- 831F19F0258A162B0078DB14 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 831F1A3D258A18390078DB14 /* LMChargeDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 831F19F1258A16340078DB14 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 831F19F2258A16440078DB14 /* View */ = {
- isa = PBXGroup;
- children = (
- 831F1A38258A18270078DB14 /* LMChargeDetailView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 831F19F3258A164C0078DB14 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 831F1A33258A181A0078DB14 /* LMChargeDetailManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 831F19F4258A165A0078DB14 /* WifiDetail */ = {
- isa = PBXGroup;
- children = (
- 831F19F8258A16880078DB14 /* Manager */,
- 831F19F7258A16820078DB14 /* View */,
- 831F19F6258A16780078DB14 /* Model */,
- 831F19F5258A166E0078DB14 /* Controller */,
- );
- path = WifiDetail;
- sourceTree = "<group>";
- };
- 831F19F5258A166E0078DB14 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 831F1A2E258A17F30078DB14 /* LMWifiDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 831F19F6258A16780078DB14 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 831F19F7258A16820078DB14 /* View */ = {
- isa = PBXGroup;
- children = (
- 831F1A29258A17E10078DB14 /* LMWifiDetailView.swift */,
- 836E8AE4258B6BB200883233 /* LMConnectDeviceCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 831F19F8258A16880078DB14 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 831F1A24258A17C90078DB14 /* LMWifiDetailManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 831F19F9258A16A10078DB14 /* LEDDetail */ = {
- isa = PBXGroup;
- children = (
- 831F19FD258A16C90078DB14 /* Manager */,
- 831F19FC258A16C20078DB14 /* View */,
- 831F19FB258A16BA0078DB14 /* Controller */,
- 831F19FA258A16B30078DB14 /* Model */,
- );
- path = LEDDetail;
- sourceTree = "<group>";
- };
- 831F19FA258A16B30078DB14 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 831F19FB258A16BA0078DB14 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 831F1A1F258A17AB0078DB14 /* LMEDDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 831F19FC258A16C20078DB14 /* View */ = {
- isa = PBXGroup;
- children = (
- 831F1A1A258A179B0078DB14 /* LMEDDetailView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 831F19FD258A16C90078DB14 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 831F1A15258A17810078DB14 /* LMLEDDetailManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 831F19FE258A16D70078DB14 /* AlertDetail */ = {
- isa = PBXGroup;
- children = (
- 831F1A02258A16FF0078DB14 /* Manager */,
- 831F1A01258A16F50078DB14 /* View */,
- 831F1A00258A16EE0078DB14 /* Controller */,
- 831F19FF258A16E60078DB14 /* Model */,
- );
- path = AlertDetail;
- sourceTree = "<group>";
- };
- 831F19FF258A16E60078DB14 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 831F1A00258A16EE0078DB14 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 831F1A10258A175D0078DB14 /* LMAlertDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 831F1A01258A16F50078DB14 /* View */ = {
- isa = PBXGroup;
- children = (
- 831F1A0B258A174D0078DB14 /* LMAlertDetailView.swift */,
- 83711D96258C89B8006387CE /* LMNowAlertCell.swift */,
- 83711D91258C8422006387CE /* LMHistoryAlertCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 831F1A02258A16FF0078DB14 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 831F1A03258A17310078DB14 /* LMAlertDetailManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 8329FEC525B80F450001D20A /* OpenSDK */ = {
- isa = PBXGroup;
- children = (
- 8329FEC625B80F450001D20A /* include */,
- 8329FEEB25B80F450001D20A /* libEZOpenSDK.a */,
- );
- path = OpenSDK;
- sourceTree = "<group>";
- };
- 8329FEC625B80F450001D20A /* include */ = {
- isa = PBXGroup;
- children = (
- 8329FEC725B80F450001D20A /* EZConstants.h */,
- 8329FEC825B80F450001D20A /* EZHCNetDeviceSDK.h */,
- 8329FEC925B80F450001D20A /* EZStreamPlayer.h */,
- 8329FECA25B80F450001D20A /* EZOpenSDK.h */,
- 8329FECB25B80F450001D20A /* EZPlayer.h */,
- 8329FECC25B80F450001D20A /* EZGlobalSDK.h */,
- 8329FECD25B80F450001D20A /* modules */,
- );
- path = include;
- sourceTree = "<group>";
- };
- 8329FECD25B80F450001D20A /* modules */ = {
- isa = PBXGroup;
- children = (
- 8329FECE25B80F450001D20A /* EZDeviceVersion.h */,
- 8329FECF25B80F450001D20A /* EZUserInfo.h */,
- 8329FED025B80F450001D20A /* EZDeviceUpgradeStatus.h */,
- 8329FED125B80F450001D20A /* EZAccessToken.h */,
- 8329FED225B80F450001D20A /* EZPlayerExParamInfo.h */,
- 8329FED325B80F450001D20A /* EzvizWatchServerInfo.h */,
- 8329FED425B80F450001D20A /* EZDeviceRecordDownloadTask.h */,
- 8329FED525B80F450001D20A /* EzvizRecordFileInfo.h */,
- 8329FED625B80F450001D20A /* EZDeviceRecordFile.h */,
- 8329FED725B80F450001D20A /* EZLeaveMessage.h */,
- 8329FED825B80F450001D20A /* EZHiddnsDeviceInfo.h */,
- 8329FED925B80F450001D20A /* EZDeviceInfo.h */,
- 8329FEDA25B80F450001D20A /* EZRecordDownloader.h */,
- 8329FEDB25B80F450001D20A /* EZRecordDownloadTask.h */,
- 8329FEDC25B80F450001D20A /* EZVideoTransformer.h */,
- 8329FEDD25B80F450001D20A /* EZTokenKit.h */,
- 8329FEDE25B80F450001D20A /* EZDetectorInfo.h */,
- 8329FEDF25B80F450001D20A /* EZHCNetDeviceInfo.h */,
- 8329FEE025B80F450001D20A /* EZCameraInfo.h */,
- 8329FEE125B80F450001D20A /* EZCloudRecordFile.h */,
- 8329FEE225B80F450001D20A /* EZCloudRecordDownloadTask.h */,
- 8329FEE325B80F450001D20A /* EZAreaInfo.h */,
- 8329FEE425B80F450001D20A /* EZProbeDeviceInfo.h */,
- 8329FEE525B80F450001D20A /* EZVideoTalkSDK.h */,
- 8329FEE625B80F450001D20A /* EZVideoQualityInfo.h */,
- 8329FEE725B80F450001D20A /* EZAlarmInfo.h */,
- 8329FEE825B80F450001D20A /* EZVideoTalkParam.h */,
- 8329FEE925B80F450001D20A /* EZSADPDeviceInfo.h */,
- 8329FEEA25B80F450001D20A /* EZStorageInfo.h */,
- );
- path = modules;
- sourceTree = "<group>";
- };
- 833559B92510C4EC000F1EF2 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83EAA72623968F9A008763FB /* LMLampVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 833559BA2510C4F7000F1EF2 /* View */ = {
- isa = PBXGroup;
- children = (
- 834E45652511E88300ED6B71 /* LMLampDetailView.swift */,
- 8334ED5425122B9900E0766A /* LMLampDetailCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 833559BB2510C4FF000F1EF2 /* Model */ = {
- isa = PBXGroup;
- children = (
- 834E45692511F69A00ED6B71 /* LMLampDetailHttpRequest.swift */,
- 834E456F251201FB00ED6B71 /* LMLampDetailModel.swift */,
- 834E456D2511F6C600ED6B71 /* LMLampDetailApi.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 833559BC2510C507000F1EF2 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 834E45632511E85D00ED6B71 /* LMLampManager.swift */,
- 834E45672511F4E300ED6B71 /* LMLampServer.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 833559BD2510C5AB000F1EF2 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 833559CD2510C6D8000F1EF2 /* LMLoopVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 833559BE2510C5B5000F1EF2 /* View */ = {
- isa = PBXGroup;
- children = (
- 83577A292519DC89002A83A0 /* LMMainLoopView.swift */,
- 834E2964251C459100BC3482 /* LMMainLoopCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 833559BF2510C5C0000F1EF2 /* Model */ = {
- isa = PBXGroup;
- children = (
- 834E295E251C37BA00BC3482 /* LMMainLoopApi.swift */,
- 834E2960251C37CF00BC3482 /* LMMainLoopModel.swift */,
- 834E2962251C37E400BC3482 /* LMMainLoopRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 833559C02510C5C8000F1EF2 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83577A2B2519DECC002A83A0 /* LMMainLoopManager.swift */,
- 834E295C251C370900BC3482 /* LMMainLoopService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 833559C12510C5D3000F1EF2 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 833559CF2510C705000F1EF2 /* LMGroupVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 833559C22510C5DD000F1EF2 /* View */ = {
- isa = PBXGroup;
- children = (
- 83E23E6A2521BB5400678616 /* LMMainGroupView.swift */,
- 83E23E6C2521D81200678616 /* LMTGroupItemCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 833559C32510C5EA000F1EF2 /* Model */ = {
- isa = PBXGroup;
- children = (
- 83E23E622521BA8100678616 /* LMGroupModel.swift */,
- 83E23E642521BA8C00678616 /* LMGroupApi.swift */,
- 83E23E662521BAA500678616 /* LMGroupHttpRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 833559C42510C5F1000F1EF2 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83E23E5E2521BA6400678616 /* LMGroupManager.swift */,
- 83E23E602521BA7300678616 /* LMGroupService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 833559C52510C657000F1EF2 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 833559D12510C725000F1EF2 /* LMStrategyVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 833559C62510C663000F1EF2 /* View */ = {
- isa = PBXGroup;
- children = (
- );
- path = View;
- sourceTree = "<group>";
- };
- 833559C72510C66C000F1EF2 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 833559C82510C673000F1EF2 /* Manager */ = {
- isa = PBXGroup;
- children = (
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 833559C92510C67D000F1EF2 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 833559D32510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 833559CA2510C686000F1EF2 /* View */ = {
- isa = PBXGroup;
- children = (
- 8356659F2524883000425C38 /* LMHistoryView.swift */,
- 835665AB25249BF400425C38 /* LMHistoryCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 833559CB2510C68D000F1EF2 /* Model */ = {
- isa = PBXGroup;
- children = (
- 835665A12524884400425C38 /* LMHistoryModel.swift */,
- 835665A32524885500425C38 /* LMHistoryApi.swift */,
- 835665A52524886C00425C38 /* LMHistoryHttpRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 833559CC2510C695000F1EF2 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 835665A72524888200425C38 /* LMHistoryManager.swift */,
- 835665A925248FDE00425C38 /* LMHistoryService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 8341652925837C89006FAB0D /* BaseLightPoleDetail */ = {
- isa = PBXGroup;
- children = (
- 8341652D25837CD4006FAB0D /* Manager */,
- 8341652C25837CC6006FAB0D /* Controller */,
- 8341652B25837CBB006FAB0D /* Model */,
- 8341652A25837CB1006FAB0D /* View */,
- );
- path = BaseLightPoleDetail;
- sourceTree = "<group>";
- };
- 8341652A25837CB1006FAB0D /* View */ = {
- isa = PBXGroup;
- children = (
- 8378142C2584C60A00FD3EC3 /* LMLightPoleDetailView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 8341652B25837CBB006FAB0D /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 8341652C25837CC6006FAB0D /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8341652E25837CFC006FAB0D /* LMLightPoleDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 8341652D25837CD4006FAB0D /* Manager */ = {
- isa = PBXGroup;
- children = (
- 837814312584C63B00FD3EC3 /* LMLightPoleDetailManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83491798253089EB006B44BD /* LightpoleManagement */ = {
- isa = PBXGroup;
- children = (
- 831F19FE258A16D70078DB14 /* AlertDetail */,
- 831F19F9258A16A10078DB14 /* LEDDetail */,
- 831F19F4258A165A0078DB14 /* WifiDetail */,
- 831F19EF258A15CC0078DB14 /* ChargeDetail */,
- 837814592584F39D00FD3EC3 /* AirQualityDetail */,
- 837814542584F33900FD3EC3 /* RadioDetail */,
- 8378144F2584F2FE00FD3EC3 /* MonitorDetail */,
- 8378144A2584F26F00FD3EC3 /* LampDetail */,
- 837814362584F1BE00FD3EC3 /* CloudBoxDetail */,
- 8341652925837C89006FAB0D /* BaseLightPoleDetail */,
- 83602261253342C100416047 /* Light */,
- 83602260253342A000416047 /* Meteorological */,
- 5F5E1E8A2536AF54007EAC23 /* PlayVideo */,
- 8360225F2533422C00416047 /* Monitor */,
- 8360225E2533421700416047 /* Main */,
- );
- path = LightpoleManagement;
- sourceTree = "<group>";
- };
- 8349179925308CAA006B44BD /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8349179D25308D0D006B44BD /* LMLightPoleCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 8349179A25308CC9006B44BD /* View */ = {
- isa = PBXGroup;
- children = (
- 8349179F25308D1F006B44BD /* LMLightPoleView.swift */,
- 8341650D25831A23006FAB0D /* LMLightPoleListView.swift */,
- 8341652425835899006FAB0D /* LMLightPoleListCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 8349179B25308CD2006B44BD /* Model */ = {
- isa = PBXGroup;
- children = (
- 8341651725834175006FAB0D /* LMLightPoleListRequest.swift */,
- 834917A125308D49006B44BD /* LMLightPoleModel.swift */,
- 8341651C25834195006FAB0D /* LMLightPoleListApi.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 8349179C25308CDA006B44BD /* Manager */ = {
- isa = PBXGroup;
- children = (
- 834917A325308D5D006B44BD /* LMLightPoleManager.swift */,
- 8341651225832220006FAB0D /* LMLightPoleSever.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 834B897E2514B5A000E2108E /* main */ = {
- isa = PBXGroup;
- children = (
- 833559BC2510C507000F1EF2 /* Manager */,
- 833559BB2510C4FF000F1EF2 /* Model */,
- 833559BA2510C4F7000F1EF2 /* View */,
- 833559B92510C4EC000F1EF2 /* Controller */,
- );
- path = main;
- sourceTree = "<group>";
- };
- 834B897F2514B5C500E2108E /* Controller */ = {
- isa = PBXGroup;
- children = (
- 834B89832514B65300E2108E /* LMLampDetailContentCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 834B89802514B5DC00E2108E /* View */ = {
- isa = PBXGroup;
- children = (
- 834B89852514B66E00E2108E /* LMLampDetailContentView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 834B89812514B5E600E2108E /* Model */ = {
- isa = PBXGroup;
- children = (
- 834B89872514B69700E2108E /* LMLampDetailContentModel.swift */,
- 834B898B2514BBD400E2108E /* LMLampDetaiContentApi.swift */,
- 834B898D2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 834B89822514B5EF00E2108E /* Manager */ = {
- isa = PBXGroup;
- children = (
- 834B89892514B93C00E2108E /* LMLampDetailContentManager.swift */,
- 834B898F2514D63E00E2108E /* LMLampDetailContentService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 834E2966251CBD0000BC3482 /* AddNewLoop */ = {
- isa = PBXGroup;
- children = (
- 834E296A251CBD5E00BC3482 /* Manager */,
- 834E2969251CBD2C00BC3482 /* Model */,
- 834E2968251CBD2300BC3482 /* View */,
- 834E2967251CBD1700BC3482 /* Controller */,
- );
- path = AddNewLoop;
- sourceTree = "<group>";
- };
- 834E2967251CBD1700BC3482 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 834E296B251CBD8E00BC3482 /* LMNewLoopCtr.swift */,
- 83B73186251DEF1A00953DFF /* LMNewLoopTwoCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 834E2968251CBD2300BC3482 /* View */ = {
- isa = PBXGroup;
- children = (
- 83B7318E251DF16A00953DFF /* LMNewLoopView.swift */,
- 83B73190251DF36800953DFF /* LMNewLoopInputContentCell.swift */,
- 83B73192251DF38100953DFF /* LMNewLoopChoseContentCell.swift */,
- 834E296D251CBDA500BC3482 /* LMNewLoopTwoView.swift */,
- 83B73184251DBE2600953DFF /* LMNewLoopTwoCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 834E2969251CBD2C00BC3482 /* Model */ = {
- isa = PBXGroup;
- children = (
- 834E296F251CBDBC00BC3482 /* LMNewLoopModel.swift */,
- 834E2971251CBDCA00BC3482 /* LMNewLoopApi.swift */,
- 834E2973251CBDE100BC3482 /* LMNewLoopRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 834E296A251CBD5E00BC3482 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 834E2975251CBDFD00BC3482 /* LMNewLoopManager.swift */,
- 83ABC211251D9B5700D53141 /* LMNewLoopService.swift */,
- 83B7318C251DEF8A00953DFF /* LMNewLoopTwoManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83503483252879E500BF947A /* AddNewStrategy */ = {
- isa = PBXGroup;
- children = (
- 8350348725287A3D00BF947A /* Manager */,
- 8350348625287A3400BF947A /* Model */,
- 8350348525287A2700BF947A /* View */,
- 8350348425287A0300BF947A /* Controller */,
- );
- path = AddNewStrategy;
- sourceTree = "<group>";
- };
- 8350348425287A0300BF947A /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8350348825287A6A00BF947A /* LMNewStrategyGroupCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 8350348525287A2700BF947A /* View */ = {
- isa = PBXGroup;
- children = (
- 8350348A25287A8800BF947A /* LMNewStrategyGroupView.swift */,
- 8304615325295F9600B6B291 /* LMNewStrategyGroupCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 8350348625287A3400BF947A /* Model */ = {
- isa = PBXGroup;
- children = (
- 8350348C25287AA500BF947A /* LMNewStrategyGroupModel.swift */,
- 8350348E25287AC000BF947A /* LMNewStrategyGroupApi.swift */,
- 8350349025287AE800BF947A /* LMNewStrategyGroupRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 8350348725287A3D00BF947A /* Manager */ = {
- isa = PBXGroup;
- children = (
- 8350349225287B0800BF947A /* LMNewStrategyGroupManager.swift */,
- 830461552529CBCE00B6B291 /* LMNewStrategyGroupService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83559F2D25222DD700B166C4 /* Main */ = {
- isa = PBXGroup;
- children = (
- 833559C42510C5F1000F1EF2 /* Manager */,
- 833559C32510C5EA000F1EF2 /* Model */,
- 833559C22510C5DD000F1EF2 /* View */,
- 833559C12510C5D3000F1EF2 /* Controller */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 83559F2E252232C300B166C4 /* GroupDetail */ = {
- isa = PBXGroup;
- children = (
- 83559F2F252232F900B166C4 /* DetailContent */,
- );
- path = GroupDetail;
- sourceTree = "<group>";
- };
- 83559F2F252232F900B166C4 /* DetailContent */ = {
- isa = PBXGroup;
- children = (
- 83559F332522334000B166C4 /* Manager */,
- 83559F322522332F00B166C4 /* Model */,
- 83559F312522332500B166C4 /* View */,
- 83559F302522331A00B166C4 /* Controller */,
- );
- path = DetailContent;
- sourceTree = "<group>";
- };
- 83559F302522331A00B166C4 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83559F362522339300B166C4 /* LMDetailContentCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83559F312522332500B166C4 /* View */ = {
- isa = PBXGroup;
- children = (
- 83559F38252233B800B166C4 /* LMDetailContentView.swift */,
- 83559F442522490500B166C4 /* LMDetailContentCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83559F322522332F00B166C4 /* Model */ = {
- isa = PBXGroup;
- children = (
- 83559F3A252233D100B166C4 /* LMDetailContentModel.swift */,
- 83559F3C252233E400B166C4 /* LMDetailContentApi.swift */,
- 83559F3E2522340000B166C4 /* LMDetailContentHttpRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83559F332522334000B166C4 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83559F402522341400B166C4 /* LMDetailContentManager.swift */,
- 83559F422522342B00B166C4 /* LMDetailContentService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83577A262519DB8F002A83A0 /* Main */ = {
- isa = PBXGroup;
- children = (
- 833559C02510C5C8000F1EF2 /* Manager */,
- 833559BF2510C5C0000F1EF2 /* Model */,
- 833559BE2510C5B5000F1EF2 /* View */,
- 833559BD2510C5AB000F1EF2 /* Controller */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 8360225E2533421700416047 /* Main */ = {
- isa = PBXGroup;
- children = (
- 8349179C25308CDA006B44BD /* Manager */,
- 8349179B25308CD2006B44BD /* Model */,
- 8349179A25308CC9006B44BD /* View */,
- 8349179925308CAA006B44BD /* Controller */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 8360225F2533422C00416047 /* Monitor */ = {
- isa = PBXGroup;
- children = (
- 83602265253342EB00416047 /* Manager */,
- 83602264253342E300416047 /* Model */,
- 83602263253342DB00416047 /* View */,
- 83602262253342CF00416047 /* Controller */,
- );
- path = Monitor;
- sourceTree = "<group>";
- };
- 83602260253342A000416047 /* Meteorological */ = {
- isa = PBXGroup;
- children = (
- 836022692533431000416047 /* Manager */,
- 836022682533430900416047 /* Model */,
- 83602267253342FF00416047 /* View */,
- 83602266253342F600416047 /* Controller */,
- );
- path = Meteorological;
- sourceTree = "<group>";
- };
- 83602261253342C100416047 /* Light */ = {
- isa = PBXGroup;
- children = (
- 8360226D2533432F00416047 /* Manager */,
- 8360226C2533432800416047 /* Model */,
- 8360226B2533432100416047 /* View */,
- 8360226A2533431900416047 /* Controller */,
- );
- path = Light;
- sourceTree = "<group>";
- };
- 83602262253342CF00416047 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 836022842533471C00416047 /* LMMonitorCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83602263253342DB00416047 /* View */ = {
- isa = PBXGroup;
- children = (
- 836022822533470D00416047 /* LMMonitorPoleView.swift */,
- 8360228625335F2000416047 /* LMMonitorPoleCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83602264253342E300416047 /* Model */ = {
- isa = PBXGroup;
- children = (
- 836022802533467400416047 /* LMMonitorModel.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83602265253342EB00416047 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 8360227E2533465C00416047 /* LMMonitorManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83602266253342F600416047 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8360227C2533464700416047 /* LMMeteorologicalCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83602267253342FF00416047 /* View */ = {
- isa = PBXGroup;
- children = (
- 8360227A2533463500416047 /* LMMeteorologicalView.swift */,
- 8359C049253424500027518B /* LMMeteorologicalCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 836022682533430900416047 /* Model */ = {
- isa = PBXGroup;
- children = (
- 836022782533462700416047 /* LMMeteorologicalModel.swift */,
- 8359C04B253427920027518B /* LMMeteorologicalApi.swift */,
- 8359C04D253427A70027518B /* LMMeteorologicalRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 836022692533431000416047 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 836022762533461900416047 /* LMMeteorologicalManager.swift */,
- 8359C04F253429500027518B /* LMMeteorologicalService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 8360226A2533431900416047 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83602274253345F500416047 /* LMLightCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 8360226B2533432100416047 /* View */ = {
- isa = PBXGroup;
- children = (
- 83602272253345E000416047 /* LMLightView.swift */,
- 8359C0572534456B0027518B /* LMLightViewCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 8360226C2533432800416047 /* Model */ = {
- isa = PBXGroup;
- children = (
- 83602270253345CE00416047 /* LMLightModel.swift */,
- 8359C05125343C1B0027518B /* LMLightApi.swift */,
- 8359C05325343C400027518B /* LMLightRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 8360226D2533432F00416047 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 8360226E2533434A00416047 /* LMLightManager.swift */,
- 8359C055253440110027518B /* LMLightService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 837814362584F1BE00FD3EC3 /* CloudBoxDetail */ = {
- isa = PBXGroup;
- children = (
- 8378143A2584F20100FD3EC3 /* Manager */,
- 837814392584F1F400FD3EC3 /* Model */,
- 837814382584F1EA00FD3EC3 /* View */,
- 837814372584F1DE00FD3EC3 /* Controller */,
- );
- path = CloudBoxDetail;
- sourceTree = "<group>";
- };
- 837814372584F1DE00FD3EC3 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8378143B2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 837814382584F1EA00FD3EC3 /* View */ = {
- isa = PBXGroup;
- children = (
- 837814402584F24700FD3EC3 /* LMCloudBoxDetailView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 837814392584F1F400FD3EC3 /* Model */ = {
- isa = PBXGroup;
- children = (
- 83ABDA812586427F00FDC0C7 /* LMCloudBoxRequest.swift */,
- 83ABDA862586429500FDC0C7 /* LMCloudBoxModel.swift */,
- 83ABDA8B258642A200FDC0C7 /* LMCloudBoxApi.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 8378143A2584F20100FD3EC3 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 837814452584F26500FD3EC3 /* LMCloudBoxManager.swift */,
- 83ABDA7C25863F2000FDC0C7 /* LMCloudBoxServer.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 8378144A2584F26F00FD3EC3 /* LampDetail */ = {
- isa = PBXGroup;
- children = (
- 8378144E2584F2F600FD3EC3 /* Manager */,
- 8378144D2584F2F000FD3EC3 /* Model */,
- 8378144C2584F2E900FD3EC3 /* View */,
- 8378144B2584F2DE00FD3EC3 /* Controller */,
- );
- path = LampDetail;
- sourceTree = "<group>";
- };
- 8378144B2584F2DE00FD3EC3 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8378148B2584F4C500FD3EC3 /* LMLightDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 8378144C2584F2E900FD3EC3 /* View */ = {
- isa = PBXGroup;
- children = (
- 837814902584F4D400FD3EC3 /* LMLightDetailView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 8378144D2584F2F000FD3EC3 /* Model */ = {
- isa = PBXGroup;
- children = (
- 8380F20025874A47001A1C94 /* LMLightDetailRequest.swift */,
- 8380F20525874A51001A1C94 /* LMLightDetailApi.swift */,
- 8380F20A25874A5C001A1C94 /* LMLightDetailModel.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 8378144E2584F2F600FD3EC3 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 837814952584F4E600FD3EC3 /* LMLightDetailManager.swift */,
- 8380F1FB25874A0E001A1C94 /* LMLightDetailSever.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 8378144F2584F2FE00FD3EC3 /* MonitorDetail */ = {
- isa = PBXGroup;
- children = (
- 837814532584F32C00FD3EC3 /* Manager */,
- 837814522584F32500FD3EC3 /* Model */,
- 837814512584F31E00FD3EC3 /* View */,
- 837814502584F31500FD3EC3 /* Controller */,
- );
- path = MonitorDetail;
- sourceTree = "<group>";
- };
- 837814502584F31500FD3EC3 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8378147C2584F47400FD3EC3 /* LMMonitorDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 837814512584F31E00FD3EC3 /* View */ = {
- isa = PBXGroup;
- children = (
- 837814812584F48300FD3EC3 /* LMMonitorDetailView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 837814522584F32500FD3EC3 /* Model */ = {
- isa = PBXGroup;
- children = (
- 83068D2E2588B13400170DDE /* LMMonitorDetailRequest.swift */,
- 83068D332588B14400170DDE /* LMMonitorDetailApi.swift */,
- 83068D382588B14D00170DDE /* LMMonitorDetailModel.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 837814532584F32C00FD3EC3 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 837814862584F49700FD3EC3 /* LMMonitorDetailManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 837814542584F33900FD3EC3 /* RadioDetail */ = {
- isa = PBXGroup;
- children = (
- 837814582584F37000FD3EC3 /* Manager */,
- 837814572584F36900FD3EC3 /* Model */,
- 837814562584F36300FD3EC3 /* View */,
- 837814552584F35A00FD3EC3 /* Controller */,
- );
- path = RadioDetail;
- sourceTree = "<group>";
- };
- 837814552584F35A00FD3EC3 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8378146D2584F43E00FD3EC3 /* LMRadioDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 837814562584F36300FD3EC3 /* View */ = {
- isa = PBXGroup;
- children = (
- 837814722584F44C00FD3EC3 /* LMRadioDetailView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 837814572584F36900FD3EC3 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 837814582584F37000FD3EC3 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 837814772584F45F00FD3EC3 /* LMRadioDetailManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 837814592584F39D00FD3EC3 /* AirQualityDetail */ = {
- isa = PBXGroup;
- children = (
- 8378145D2584F3D400FD3EC3 /* Manager */,
- 8378145C2584F3CE00FD3EC3 /* Model */,
- 8378145B2584F3C800FD3EC3 /* View */,
- 8378145A2584F3C000FD3EC3 /* Controller */,
- );
- path = AirQualityDetail;
- sourceTree = "<group>";
- };
- 8378145A2584F3C000FD3EC3 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 8378145E2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 8378145B2584F3C800FD3EC3 /* View */ = {
- isa = PBXGroup;
- children = (
- 837814632584F40F00FD3EC3 /* LMAirQualityDetailView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 8378145C2584F3CE00FD3EC3 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 8378145D2584F3D400FD3EC3 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 837814682584F42600FD3EC3 /* LMAirQualityDetailManager.swift */,
- 831555AD2589F38200999EA7 /* LMAirQualityDatailServer.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83CCD2B9251846A800AD14FD /* DetailContent */ = {
- isa = PBXGroup;
- children = (
- 834B89822514B5EF00E2108E /* Manager */,
- 834B89812514B5E600E2108E /* Model */,
- 834B89802514B5DC00E2108E /* View */,
- 834B897F2514B5C500E2108E /* Controller */,
- );
- path = DetailContent;
- sourceTree = "<group>";
- };
- 83CCD2BA251846C300AD14FD /* AdddNewLamp */ = {
- isa = PBXGroup;
- children = (
- 83CCD2BE251846FD00AD14FD /* Manager */,
- 83CCD2BD251846F300AD14FD /* Model */,
- 83CCD2BC251846EC00AD14FD /* View */,
- 83CCD2BB251846E300AD14FD /* Controller */,
- );
- path = AdddNewLamp;
- sourceTree = "<group>";
- };
- 83CCD2BB251846E300AD14FD /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83CCD2BF2518477100AD14FD /* LMNewLampCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83CCD2BC251846EC00AD14FD /* View */ = {
- isa = PBXGroup;
- children = (
- 83CCD2C12518478400AD14FD /* LMNewLampView.swift */,
- 83CCD2C72518500000AD14FD /* LMInputContentCell.swift */,
- 83CCD2C92518501900AD14FD /* LMChoseContentCell.swift */,
- 83CCD2CB2518503A00AD14FD /* LMInputAndChoseContentCell.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83CCD2BD251846F300AD14FD /* Model */ = {
- isa = PBXGroup;
- children = (
- 83CCD2C32518479C00AD14FD /* LMNewLampModel.swift */,
- 83CCD2CF2518B27B00AD14FD /* LMNewLampApi.swift */,
- 83CCD2D12518B29700AD14FD /* LMNewLampRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83CCD2BE251846FD00AD14FD /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83CCD2C5251847AD00AD14FD /* LMNewLampManager.swift */,
- 83CCD2CD2518A48100AD14FD /* LMNewLampService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83D9FAA52522E13E009956A8 /* GroupSetting */ = {
- isa = PBXGroup;
- children = (
- 83D9FAA92522E170009956A8 /* Manager */,
- 83D9FAA82522E169009956A8 /* Model */,
- 83D9FAA72522E162009956A8 /* View */,
- 83D9FAA62522E156009956A8 /* Controller */,
- );
- path = GroupSetting;
- sourceTree = "<group>";
- };
- 83D9FAA62522E156009956A8 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83D9FAAA2522E18D009956A8 /* LMGroupSettingCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83D9FAA72522E162009956A8 /* View */ = {
- isa = PBXGroup;
- children = (
- 83D9FAAC2522E1A1009956A8 /* LMGroupSettingView.swift */,
- 83D9FAB625230680009956A8 /* LMManualOperationView.swift */,
- 83D9FAB8252306A9009956A8 /* LMStrategyOperationView.swift */,
- 8356659B25242B1100425C38 /* LMStrategyOperationCell.swift */,
- 8356659D2524580500425C38 /* LMStrategyOperationDetailCell.swift */,
- 83D9FABA252306BF009956A8 /* LMAutoOperationView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83D9FAA82522E169009956A8 /* Model */ = {
- isa = PBXGroup;
- children = (
- 83D9FAAE2522E1BC009956A8 /* LMGroupSettingModel.swift */,
- 83D9FAB02522E1D4009956A8 /* LMGroupSettingApi.swift */,
- 83D9FAB22522E1EC009956A8 /* LMGroupSettingRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83D9FAA92522E170009956A8 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83D9FAB42522E200009956A8 /* LMGroupSettingManager.swift */,
- 834F9D822523725F00BFFE58 /* LMGroupSettingService.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83E4080F2387726800255664 = {
- isa = PBXGroup;
- children = (
- 83E4081A2387726800255664 /* LampMind */,
- 83E408312387726C00255664 /* LampMindTests */,
- 83E4083C2387726D00255664 /* LampMindUITests */,
- 83E408192387726800255664 /* Products */,
- 7154D0FDA87A9D40FF675349 /* Pods */,
- AA674B10D65B021AD315EF73 /* Frameworks */,
- );
- sourceTree = "<group>";
- usesTabs = 0;
- };
- 83E408192387726800255664 /* Products */ = {
- isa = PBXGroup;
- children = (
- 83E408182387726800255664 /* LampMind.app */,
- 83E4082E2387726C00255664 /* LampMindTests.xctest */,
- 83E408392387726D00255664 /* LampMindUITests.xctest */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 83E4081A2387726800255664 /* LampMind */ = {
- isa = PBXGroup;
- children = (
- 83E40850238777A200255664 /* Classes */,
- 83E4084F238775DB00255664 /* LampMindShare */,
- );
- path = LampMind;
- sourceTree = "<group>";
- };
- 83E408312387726C00255664 /* LampMindTests */ = {
- isa = PBXGroup;
- children = (
- 83E408322387726D00255664 /* LampMindTests.swift */,
- 83E408342387726D00255664 /* Info.plist */,
- );
- path = LampMindTests;
- sourceTree = "<group>";
- };
- 83E4083C2387726D00255664 /* LampMindUITests */ = {
- isa = PBXGroup;
- children = (
- 83E4083D2387726D00255664 /* LampMindUITests.swift */,
- 83E4083F2387726D00255664 /* Info.plist */,
- );
- path = LampMindUITests;
- sourceTree = "<group>";
- };
- 83E4084F238775DB00255664 /* LampMindShare */ = {
- isa = PBXGroup;
- children = (
- 83E4081B2387726800255664 /* AppDelegate.swift */,
- 83E4081D2387726800255664 /* SceneDelegate.swift */,
- 83E4081F2387726800255664 /* ViewController.swift */,
- 83E408212387726800255664 /* Main.storyboard */,
- 83E408242387726C00255664 /* Assets.xcassets */,
- 83E408262387726C00255664 /* LaunchScreen.storyboard */,
- 83E408292387726C00255664 /* Info.plist */,
- 83DD401125E3463D00A5808E /* Localizable.strings */,
- 83DD400225E3450E00A5808E /* InfoPlist.strings */,
- 83E4084B2387759A00255664 /* LampMind-Bridging-Header.h */,
- );
- name = LampMindShare;
- sourceTree = "<group>";
- };
- 83E40850238777A200255664 /* Classes */ = {
- isa = PBXGroup;
- children = (
- 8348482D24692D4A00F71465 /* LampMind交接文档.pages */,
- 83E4095E2387788200255664 /* Main */,
- 83E408532387782F00255664 /* Global */,
- );
- name = Classes;
- sourceTree = "<group>";
- };
- 83E408532387782F00255664 /* Global */ = {
- isa = PBXGroup;
- children = (
- 83E408542387782F00255664 /* Database */,
- 83E408552387782F00255664 /* Extension */,
- 83E4085F2387782F00255664 /* ProjectConstant.swift */,
- 83E408602387782F00255664 /* Networking */,
- 83E408622387782F00255664 /* Utils */,
- 83E408632387782F00255664 /* BaseClass */,
- 83E408652387782F00255664 /* ProtocolDelegate */,
- 83E4086A2387782F00255664 /* AppShare.swift */,
- 83E4086B2387782F00255664 /* Vender */,
- );
- path = Global;
- sourceTree = "<group>";
- };
- 83E408542387782F00255664 /* Database */ = {
- isa = PBXGroup;
- children = (
- );
- path = Database;
- sourceTree = "<group>";
- };
- 83E408552387782F00255664 /* Extension */ = {
- isa = PBXGroup;
- children = (
- 83E408562387782F00255664 /* UIBarButtonItem+item.swift */,
- 83E408572387782F00255664 /* MKMapView+ZoomLevel.swift */,
- 83E408582387782F00255664 /* UIView+Gradient.swift */,
- 83E408592387782F00255664 /* UIView+Extension.swift */,
- 83E4085A2387782F00255664 /* UIButton+Gradient.swift */,
- 83E4085B2387782F00255664 /* LMView+UIViewController.swift */,
- 83E4085C2387782F00255664 /* UIImagView+Kingfisher.swift */,
- 83E4085D2387782F00255664 /* UIView+Configure.swift */,
- 83E4085E2387782F00255664 /* UIVIew+Positioning.swift */,
- );
- path = Extension;
- sourceTree = "<group>";
- };
- 83E408602387782F00255664 /* Networking */ = {
- isa = PBXGroup;
- children = (
- 83E408612387782F00255664 /* ProviderSupport.swift */,
- );
- path = Networking;
- sourceTree = "<group>";
- };
- 83E408622387782F00255664 /* Utils */ = {
- isa = PBXGroup;
- children = (
- );
- path = Utils;
- sourceTree = "<group>";
- };
- 83E408632387782F00255664 /* BaseClass */ = {
- isa = PBXGroup;
- children = (
- 83E408642387782F00255664 /* LMCornerLabel.swift */,
- );
- path = BaseClass;
- sourceTree = "<group>";
- };
- 83E408652387782F00255664 /* ProtocolDelegate */ = {
- isa = PBXGroup;
- children = (
- 83E408662387782F00255664 /* LMViewModelProtocolDelegate.swift */,
- 83E408682387782F00255664 /* LMViewProtocolDelegate.swift */,
- 83E408692387782F00255664 /* LMViewManagerProtocolDelegate.swift */,
- );
- path = ProtocolDelegate;
- sourceTree = "<group>";
- };
- 83E4086B2387782F00255664 /* Vender */ = {
- isa = PBXGroup;
- children = (
- 836D81B925B98FA3001718E0 /* IJKMediaFramework.framework */,
- 8329FEC525B80F450001D20A /* OpenSDK */,
- 5F63A8202539BCF200DD9DD6 /* SwiftScan */,
- 5F6A10EC2537FDE0007A20DC /* Openssl */,
- 83EAA71223966966008763FB /* SideRefresh */,
- 83EAA71023966904008763FB /* THScrollChooseView */,
- 83EAA7112396693B008763FB /* CXDatePickerView */,
- 83E4086E2387782F00255664 /* DGKVOTool */,
- 83E408722387782F00255664 /* ScrollSegmentView */,
- 83E408752387782F00255664 /* HDEmptyView */,
- 83E4087D2387782F00255664 /* KKWRefreshHeaderAnimator.swift */,
- 83E408842387782F00255664 /* PickerViewParameter.h */,
- );
- path = Vender;
- sourceTree = "<group>";
- };
- 83E4086E2387782F00255664 /* DGKVOTool */ = {
- isa = PBXGroup;
- children = (
- 83E4086F2387782F00255664 /* DGKVOTool.swift */,
- );
- path = DGKVOTool;
- sourceTree = "<group>";
- };
- 83E408722387782F00255664 /* ScrollSegmentView */ = {
- isa = PBXGroup;
- children = (
- 83E408732387782F00255664 /* SegmentStyle.swift */,
- 83E408742387782F00255664 /* ScrollSegmentView.swift */,
- );
- path = ScrollSegmentView;
- sourceTree = "<group>";
- };
- 83E408752387782F00255664 /* HDEmptyView */ = {
- isa = PBXGroup;
- children = (
- 83E408762387782F00255664 /* HDEmptyView.swift */,
- 83E408772387782F00255664 /* HDRunTime.swift */,
- 83E408782387782F00255664 /* UIView+Position.swift */,
- 83E408792387782F00255664 /* UIScrollView+Empty.swift */,
- 83E4087A2387782F00255664 /* HDEmptyBaseView.swift */,
- );
- path = HDEmptyView;
- sourceTree = "<group>";
- };
- 83E4095E2387788200255664 /* Main */ = {
- isa = PBXGroup;
- children = (
- 83EAA59823950E42008763FB /* TabbarController */,
- 83EAA59A23950E43008763FB /* NavigationController */,
- 83EAA69F239516AA008763FB /* Device */,
- 83EAA6732395142B008763FB /* Alarm */,
- 83EAA59F23950EDB008763FB /* GIS */,
- 83E4095F238778B800255664 /* Login */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 83E4095F238778B800255664 /* Login */ = {
- isa = PBXGroup;
- children = (
- 83E409662387790900255664 /* Controller */,
- 83E409642387790900255664 /* Manager */,
- 83E409602387790900255664 /* Model */,
- 83E409682387790A00255664 /* View */,
- );
- path = Login;
- sourceTree = "<group>";
- };
- 83E409602387790900255664 /* Model */ = {
- isa = PBXGroup;
- children = (
- 83E409612387790900255664 /* LMLoginModel.swift */,
- 83E409622387790900255664 /* LMLoginHttpRequest.swift */,
- 83E409632387790900255664 /* LMLoginApi.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83E409642387790900255664 /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83E409652387790900255664 /* LMLoginManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83E409662387790900255664 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83E409672387790900255664 /* LMLoginVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83E409682387790A00255664 /* View */ = {
- isa = PBXGroup;
- children = (
- 83DD408B25E3817E00A5808E /* LMLoginVCtr.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83EAA59823950E42008763FB /* TabbarController */ = {
- isa = PBXGroup;
- children = (
- 83EAA59923950E42008763FB /* MainViewController.swift */,
- );
- path = TabbarController;
- sourceTree = "<group>";
- };
- 83EAA59A23950E43008763FB /* NavigationController */ = {
- isa = PBXGroup;
- children = (
- 83EAA59723950E42008763FB /* RootNavigationController.swift */,
- 83EAA59B23950E43008763FB /* LMNavigationController.swift */,
- );
- path = NavigationController;
- sourceTree = "<group>";
- };
- 83EAA59F23950EDB008763FB /* GIS */ = {
- isa = PBXGroup;
- children = (
- 5F6802A7253C833F0002577C /* RepairManager */,
- 83EAA64A23950F22008763FB /* Dimming */,
- 83EAA64023950F22008763FB /* RoadFilter */,
- 83EAA5A023950EDB008763FB /* Home */,
- );
- path = GIS;
- sourceTree = "<group>";
- };
- 83EAA5A023950EDB008763FB /* Home */ = {
- isa = PBXGroup;
- children = (
- 83EAA5A123950EDB008763FB /* Controller */,
- 83EAA5A423950EDB008763FB /* Manager */,
- 83EAA5A723950EDB008763FB /* Model */,
- 83EAA5AB23950EDB008763FB /* View */,
- );
- path = Home;
- sourceTree = "<group>";
- };
- 83EAA5A123950EDB008763FB /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83EAA5A223950EDB008763FB /* LMGISVCtr.xib */,
- 83EAA5A323950EDB008763FB /* LMGISVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83EAA5A423950EDB008763FB /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83EAA5A523950EDB008763FB /* LMGISManager.swift */,
- 83EAA5A623950EDB008763FB /* LMGISMapManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83EAA5A723950EDB008763FB /* Model */ = {
- isa = PBXGroup;
- children = (
- 83EAA5A823950EDB008763FB /* LMGISModel.swift */,
- 83EAA5A923950EDB008763FB /* LMGisHttpRequest.swift */,
- 83EAA5AA23950EDB008763FB /* LMGISApi.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83EAA5AB23950EDB008763FB /* View */ = {
- isa = PBXGroup;
- children = (
- 83EAA5B323950EDB008763FB /* LMMapView.swift */,
- 83EAA5AD23950EDB008763FB /* LMGisHeaderView.swift */,
- 83EAA5AC23950EDB008763FB /* LMPoleCalloutView.xib */,
- 83EAA5AF23950EDB008763FB /* LMPoleCalloutView.swift */,
- 83EAA5B023950EDB008763FB /* LMLampCalloutView.xib */,
- 83EAA5B123950EDB008763FB /* LMLampCalloutView.swift */,
- 83EAA5B223950EDB008763FB /* LMAnnotationView.swift */,
- 83EAA5AE23950EDB008763FB /* LMLampWithAlarmCalloutView.swift */,
- 83EAA5B523950EDB008763FB /* LMLampWithAlarmCalloutView.xib */,
- 83EAA5B623950EDB008763FB /* LMLampNoAlarmCalloutView.swift */,
- 83EAA5B423950EDB008763FB /* LMLampNoAlarmCalloutView.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83EAA64023950F22008763FB /* RoadFilter */ = {
- isa = PBXGroup;
- children = (
- 83EAA64123950F22008763FB /* Controller */,
- 83EAA64423950F22008763FB /* Manager */,
- 83EAA64723950F22008763FB /* View */,
- );
- path = RoadFilter;
- sourceTree = "<group>";
- };
- 83EAA64123950F22008763FB /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83EAA64223950F22008763FB /* LMRoadFilterVCtr.swift */,
- 83EAA64323950F22008763FB /* LMRoadFilterVCtr.xib */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83EAA64423950F22008763FB /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83EAA64523950F22008763FB /* LMRoadFilterManager.swift */,
- 83EAA64623950F22008763FB /* LMRoadFilterCacheManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83EAA64723950F22008763FB /* View */ = {
- isa = PBXGroup;
- children = (
- 83674E9625E60435000B4B3C /* LMRoadFilterView.xib */,
- 83EAA64923950F22008763FB /* LMRoadFilterView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83EAA64A23950F22008763FB /* Dimming */ = {
- isa = PBXGroup;
- children = (
- 83EAA64B23950F22008763FB /* Controller */,
- 83EAA64E23950F22008763FB /* Manager */,
- 83EAA65023950F22008763FB /* DimmingSocket */,
- 83EAA65223950F22008763FB /* model */,
- 83EAA65423950F22008763FB /* View */,
- );
- path = Dimming;
- sourceTree = "<group>";
- };
- 83EAA64B23950F22008763FB /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83EAA64C23950F22008763FB /* LMDimmingVCtr.xib */,
- 83EAA64D23950F22008763FB /* LMDimmingVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83EAA64E23950F22008763FB /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83EAA64F23950F22008763FB /* LMDimmingManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83EAA65023950F22008763FB /* DimmingSocket */ = {
- isa = PBXGroup;
- children = (
- 83EAA65123950F22008763FB /* LMWebSocket.swift */,
- );
- path = DimmingSocket;
- sourceTree = "<group>";
- };
- 83EAA65223950F22008763FB /* model */ = {
- isa = PBXGroup;
- children = (
- 83EAA65323950F22008763FB /* LMSliderViewStyle.swift */,
- );
- path = model;
- sourceTree = "<group>";
- };
- 83EAA65423950F22008763FB /* View */ = {
- isa = PBXGroup;
- children = (
- 83EAA65523950F22008763FB /* LMSliderView.swift */,
- 83EAA65623950F22008763FB /* LMSliderView.xib */,
- 835F1B9325E89DD0006A7CA1 /* LMDimmingView.xib */,
- 83EAA65823950F22008763FB /* LMDimmingView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83EAA6732395142B008763FB /* Alarm */ = {
- isa = PBXGroup;
- children = (
- 83EAA6782395142B008763FB /* mainController */,
- 83EAA69D23951556008763FB /* AlarmInfo */,
- 83EAA69E23951570008763FB /* AlarmDispath */,
- 83EAA6822395142B008763FB /* LMNetWorkManager.swift */,
- );
- path = Alarm;
- sourceTree = "<group>";
- };
- 83EAA6782395142B008763FB /* mainController */ = {
- isa = PBXGroup;
- children = (
- 83EAA69C23951539008763FB /* Model */,
- 83EAA69B2395151C008763FB /* Controller */,
- 83EAA6792395142B008763FB /* Manager */,
- 83EAA67B2395142B008763FB /* View */,
- );
- path = mainController;
- sourceTree = "<group>";
- };
- 83EAA6792395142B008763FB /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83EAA67A2395142B008763FB /* LMAlarmManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83EAA67B2395142B008763FB /* View */ = {
- isa = PBXGroup;
- children = (
- 83EAA67C2395142B008763FB /* LMAlarmCell.xib */,
- 83EAA67D2395142B008763FB /* LMEmptyView.xib */,
- 83EAA67E2395142B008763FB /* LMAlarmView.swift */,
- 83EAA67F2395142B008763FB /* LMAlarmCell.swift */,
- 83EAA6802395142B008763FB /* LMEmptyView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83EAA69B2395151C008763FB /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83EAA6812395142B008763FB /* LMAlarmVCtr.swift */,
- 83EAA6752395142B008763FB /* LMAlarmVCtr.xib */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83EAA69C23951539008763FB /* Model */ = {
- isa = PBXGroup;
- children = (
- 83EAA6832395142B008763FB /* LMAlarmApi.swift */,
- 83EAA6852395142B008763FB /* LMAlarmModel.swift */,
- 83EAA6862395142B008763FB /* LMAlarmHttpRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83EAA69D23951556008763FB /* AlarmInfo */ = {
- isa = PBXGroup;
- children = (
- 83EAA6742395142B008763FB /* LMAlarmInfoManger.swift */,
- 83EAA6772395142B008763FB /* LMAlarmInfoVCtr.swift */,
- 83725CB425EA1E47000222EB /* LMAlarmInfoVCtr.xib */,
- );
- path = AlarmInfo;
- sourceTree = "<group>";
- };
- 83EAA69E23951570008763FB /* AlarmDispath */ = {
- isa = PBXGroup;
- children = (
- 83EAA6762395142B008763FB /* LMAlarmDispathVctr.swift */,
- 83025EED25E7C40000356051 /* LMAlarmDispathVctr.xib */,
- 83EAA6882395142B008763FB /* LMAlarmDispatchManager.swift */,
- );
- path = AlarmDispath;
- sourceTree = "<group>";
- };
- 83EAA69F239516AA008763FB /* Device */ = {
- isa = PBXGroup;
- children = (
- 83491798253089EB006B44BD /* LightpoleManagement */,
- 83EAA72523968F59008763FB /* LampManagement */,
- 83EAA6A0239516AA008763FB /* DeviceManagerMain */,
- );
- path = Device;
- sourceTree = "<group>";
- };
- 83EAA6A0239516AA008763FB /* DeviceManagerMain */ = {
- isa = PBXGroup;
- children = (
- 83EAA6A1239516AA008763FB /* Controller */,
- 83EAA6A4239516AA008763FB /* Manager */,
- 83EAA6A6239516AA008763FB /* Model */,
- 83EAA6AB239516AA008763FB /* View */,
- );
- path = DeviceManagerMain;
- sourceTree = "<group>";
- };
- 83EAA6A1239516AA008763FB /* Controller */ = {
- isa = PBXGroup;
- children = (
- 83EAA6A2239516AA008763FB /* LMDeviceVCtr.xib */,
- 83EAA6A3239516AA008763FB /* LMDeviceVCtr.swift */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 83EAA6A4239516AA008763FB /* Manager */ = {
- isa = PBXGroup;
- children = (
- 83EAA6A5239516AA008763FB /* LMDeviceViewManager.swift */,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 83EAA6A6239516AA008763FB /* Model */ = {
- isa = PBXGroup;
- children = (
- 83EAA6A7239516AA008763FB /* LMDeviceApi.swift */,
- 83EAA6A8239516AA008763FB /* LMDeviceModel.swift */,
- 83EAA6A9239516AA008763FB /* LMChartsModel.swift */,
- 83EAA6AA239516AA008763FB /* LMDeviceHttpRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83EAA6AB239516AA008763FB /* View */ = {
- isa = PBXGroup;
- children = (
- 83EAA6AC239516AA008763FB /* LMAlarmNumberView.swift */,
- 83DD409525E38A3700A5808E /* LMAlarmNumberView.xib */,
- 83EAA6AD239516AA008763FB /* LMElectricQuantityView.swift */,
- 83EAA6B2239516AA008763FB /* LMElectriQuantiyCell.swift */,
- 83EAA6B0239516AA008763FB /* LMElectriQuantiyCell.xib */,
- 83EAA6AE239516AA008763FB /* LMDeviceView.swift */,
- 83EAA6AF239516AA008763FB /* BalloonMarker.swift */,
- 83EAA6B1239516AA008763FB /* LMMonitorView.swift */,
- 83EAA6CA239645B1008763FB /* LMMonitorCell.swift */,
- 83EAA6CB239645B1008763FB /* LMMonitorCell.xib */,
- 83EAA6B3239516AA008763FB /* LMLightNumberView.swift */,
- 83EAA6C623954149008763FB /* LMLightNumberView.xib */,
- 83EAA6B4239516AA008763FB /* LMChartView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83EAA71023966904008763FB /* THScrollChooseView */ = {
- isa = PBXGroup;
- children = (
- 83E408712387782F00255664 /* THScrollChooseView.h */,
- 83E4086C2387782F00255664 /* THScrollChooseView.m */,
- );
- path = THScrollChooseView;
- sourceTree = "<group>";
- };
- 83EAA7112396693B008763FB /* CXDatePickerView */ = {
- isa = PBXGroup;
- children = (
- 83E4086D2387782F00255664 /* CXDatePickerView.m */,
- 83E4087B2387782F00255664 /* CXDatePickerView.h */,
- 83E408702387782F00255664 /* NSDate+CXCategory.h */,
- 83E4087C2387782F00255664 /* NSDate+CXCategory.m */,
- );
- path = CXDatePickerView;
- sourceTree = "<group>";
- };
- 83EAA71223966966008763FB /* SideRefresh */ = {
- isa = PBXGroup;
- children = (
- 83EAA71323966966008763FB /* UICollectionView+SideRefresh.m */,
- 83EAA71423966966008763FB /* SideRefreshHeader.m */,
- 83EAA71523966966008763FB /* SideRefreshFooter.m */,
- 83EAA71623966966008763FB /* UICollectionView+SideExtension.h */,
- 83EAA71723966966008763FB /* SideRefreshEmptyFooter.m */,
- 83EAA71823966966008763FB /* SideRefresh.m */,
- 83EAA71923966966008763FB /* UICollectionView+SideExtension.m */,
- 83EAA71A23966966008763FB /* SideRefreshFooter.h */,
- 83EAA71B23966966008763FB /* SideRefreshHeader.h */,
- 83EAA71C23966966008763FB /* UICollectionView+SideRefresh.h */,
- 83EAA71D23966966008763FB /* SideRefresh.h */,
- 83EAA71E23966966008763FB /* SideRefreshEmptyFooter.h */,
- );
- path = SideRefresh;
- sourceTree = "<group>";
- };
- 83EAA72523968F59008763FB /* LampManagement */ = {
- isa = PBXGroup;
- children = (
- 83EAA72D23974991008763FB /* DeviceBase */,
- 83EAA72C23969681008763FB /* HistoricalReport */,
- 83EAA72B23969659008763FB /* Strategy */,
- 83EAA72A23969636008763FB /* Group */,
- 83EAA72923969608008763FB /* Loop */,
- 83EAA728239695B6008763FB /* LampDetial */,
- );
- path = LampManagement;
- sourceTree = "<group>";
- };
- 83EAA728239695B6008763FB /* LampDetial */ = {
- isa = PBXGroup;
- children = (
- 83CCD2BA251846C300AD14FD /* AdddNewLamp */,
- 83CCD2B9251846A800AD14FD /* DetailContent */,
- 834B897E2514B5A000E2108E /* main */,
- );
- path = LampDetial;
- sourceTree = "<group>";
- };
- 83EAA72923969608008763FB /* Loop */ = {
- isa = PBXGroup;
- children = (
- 834E2966251CBD0000BC3482 /* AddNewLoop */,
- 83577A262519DB8F002A83A0 /* Main */,
- );
- path = Loop;
- sourceTree = "<group>";
- };
- 83EAA72A23969636008763FB /* Group */ = {
- isa = PBXGroup;
- children = (
- 83503483252879E500BF947A /* AddNewStrategy */,
- 83D9FAA52522E13E009956A8 /* GroupSetting */,
- 83559F2E252232C300B166C4 /* GroupDetail */,
- 83559F2D25222DD700B166C4 /* Main */,
- );
- path = Group;
- sourceTree = "<group>";
- };
- 83EAA72B23969659008763FB /* Strategy */ = {
- isa = PBXGroup;
- children = (
- 833559C82510C673000F1EF2 /* Manager */,
- 833559C72510C66C000F1EF2 /* Model */,
- 833559C62510C663000F1EF2 /* View */,
- 833559C52510C657000F1EF2 /* Controller */,
- );
- path = Strategy;
- sourceTree = "<group>";
- };
- 83EAA72C23969681008763FB /* HistoricalReport */ = {
- isa = PBXGroup;
- children = (
- 833559CC2510C695000F1EF2 /* Manager */,
- 833559CB2510C68D000F1EF2 /* Model */,
- 833559CA2510C686000F1EF2 /* View */,
- 833559C92510C67D000F1EF2 /* Controller */,
- );
- path = " HistoricalReport";
- sourceTree = "<group>";
- };
- 83EAA72D23974991008763FB /* DeviceBase */ = {
- isa = PBXGroup;
- children = (
- 83EAA73523974A77008763FB /* Manger */,
- 83EAA73423974A69008763FB /* Model */,
- 83EAA73323974A1B008763FB /* View */,
- 83EAA73223974A05008763FB /* Coltroller */,
- );
- path = DeviceBase;
- sourceTree = "<group>";
- };
- 83EAA73223974A05008763FB /* Coltroller */ = {
- isa = PBXGroup;
- children = (
- 83EAA72E239749FD008763FB /* LMLampBaseVCtr.swift */,
- 83EAA72F239749FD008763FB /* LMLampBaseVCtr.xib */,
- );
- path = Coltroller;
- sourceTree = "<group>";
- };
- 83EAA73323974A1B008763FB /* View */ = {
- isa = PBXGroup;
- children = (
- 83CCBDBA239758230096AA9F /* LMLampBaseView.swift */,
- 83CCBDBC23975F9E0096AA9F /* LMSelectorView.swift */,
- 83CCBDC62397B3DE0096AA9F /* LMSelectorCell.swift */,
- 83CCBDC72397B3DE0096AA9F /* LMSelectorCell.xib */,
- 83CCBDCA2397C27E0096AA9F /* LMLightTimeView.swift */,
- 83CCBDCC2397C2940096AA9F /* LMLoopView.swift */,
- 836AAF1A25E4B4D00068B7C6 /* LMLoopView.xib */,
- 83CCBDCE2397C31D0096AA9F /* LMGroupView.swift */,
- 836AAF2125E4B53A0068B7C6 /* LMGroupView.xib */,
- 83CCBDD02397C3450096AA9F /* LMPowerSavingView.swift */,
- 83CCBDD42397D4900096AA9F /* LMPowerSavingView.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 83EAA73423974A69008763FB /* Model */ = {
- isa = PBXGroup;
- children = (
- 83CCBDBE23978F800096AA9F /* LMLampApi.swift */,
- 83CCBDC023978F940096AA9F /* LMLampModel.swift */,
- 83CCBDC223978FA60096AA9F /* LMLampHttpRequest.swift */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 83EAA73523974A77008763FB /* Manger */ = {
- isa = PBXGroup;
- children = (
- 83EAA73623974AA1008763FB /* LMLampBaseManger.swift */,
- 83CCBDC42397A4800096AA9F /* LMLampBaseService.swift */,
- );
- path = Manger;
- sourceTree = "<group>";
- };
- AA674B10D65B021AD315EF73 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 83C7534425934EA50072318F /* QuartzCore.framework */,
- 83C7534225934E3B0072318F /* CoreGraphics.framework */,
- 5F6A115525382E76007A20DC /* libiconv.2.4.0.tbd */,
- 5F6A115325382E58007A20DC /* CoreTelephony.framework */,
- 5F6A115125382DF8007A20DC /* libsqlite3.0.tbd */,
- 5F6A11482537FE83007A20DC /* libbz2.tbd */,
- 5F6A10E62537E715007A20DC /* libc++.tbd */,
- 5F6A10E12537E39B007A20DC /* CoreVideo.framework */,
- 5F6A10DF2537E38C007A20DC /* MediaAccessibility.framework */,
- 5F6A10DD2537E371007A20DC /* OpenGLES.framework */,
- 5F6A10DA2537E353007A20DC /* AudioToolbox.framework */,
- 5F6A10D82537E348007A20DC /* MediaPlayer.framework */,
- 5F6A10D62537E33C007A20DC /* CoreAudio.framework */,
- 5FED923C253704A300003727 /* OpenAL.framework */,
- 5FED923A2537049600003727 /* GLKit.framework */,
- 5FED92382537048700003727 /* CoreMedia.framework */,
- 5FED92362537047500003727 /* VideoToolbox.framework */,
- 5FED92342537045B00003727 /* MobileCoreServices.framework */,
- 5FED92322537044E00003727 /* SystemConfiguration.framework */,
- 5FED92302537042E00003727 /* libiconv.tbd */,
- 5FED922E2537041E00003727 /* AVFoundation.framework */,
- 5FED922C253703F600003727 /* libz.tbd */,
- 5F5E1E9E2536E2B1007EAC23 /* libEZUIKit.a */,
- 764030A0DF97F6C6E68A9282 /* Pods_LampMind.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 83E408172387726800255664 /* LampMind */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 83E408422387726D00255664 /* Build configuration list for PBXNativeTarget "LampMind" */;
- buildPhases = (
- 7AF283C2AEBCBC63075C08B5 /* [CP] Check Pods Manifest.lock */,
- 83E408142387726800255664 /* Sources */,
- 83E408152387726800255664 /* Frameworks */,
- 83E408162387726800255664 /* Resources */,
- CC683218C465EEC5AF4FBE99 /* [CP] Embed Pods Frameworks */,
- 461B8A7290D122A2029F8C17 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = LampMind;
- productName = LampMind;
- productReference = 83E408182387726800255664 /* LampMind.app */;
- productType = "com.apple.product-type.application";
- };
- 83E4082D2387726C00255664 /* LampMindTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 83E408452387726D00255664 /* Build configuration list for PBXNativeTarget "LampMindTests" */;
- buildPhases = (
- 83E4082A2387726C00255664 /* Sources */,
- 83E4082B2387726C00255664 /* Frameworks */,
- 83E4082C2387726C00255664 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 83E408302387726C00255664 /* PBXTargetDependency */,
- );
- name = LampMindTests;
- productName = LampMindTests;
- productReference = 83E4082E2387726C00255664 /* LampMindTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 83E408382387726D00255664 /* LampMindUITests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 83E408482387726D00255664 /* Build configuration list for PBXNativeTarget "LampMindUITests" */;
- buildPhases = (
- 83E408352387726D00255664 /* Sources */,
- 83E408362387726D00255664 /* Frameworks */,
- 83E408372387726D00255664 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 83E4083B2387726D00255664 /* PBXTargetDependency */,
- );
- name = LampMindUITests;
- productName = LampMindUITests;
- productReference = 83E408392387726D00255664 /* LampMindUITests.xctest */;
- productType = "com.apple.product-type.bundle.ui-testing";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 83E408102387726800255664 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- CLASSPREFIX = LM;
- LastSwiftUpdateCheck = 1120;
- LastUpgradeCheck = 1120;
- ORGANIZATIONNAME = weclouds;
- TargetAttributes = {
- 83E408172387726800255664 = {
- CreatedOnToolsVersion = 11.2.1;
- LastSwiftMigration = 1120;
- };
- 83E4082D2387726C00255664 = {
- CreatedOnToolsVersion = 11.2.1;
- TestTargetID = 83E408172387726800255664;
- };
- 83E408382387726D00255664 = {
- CreatedOnToolsVersion = 11.2.1;
- TestTargetID = 83E408172387726800255664;
- };
- };
- };
- buildConfigurationList = 83E408132387726800255664 /* Build configuration list for PBXProject "LampMind" */;
- compatibilityVersion = "Xcode 9.3";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- "zh-Hans",
- );
- mainGroup = 83E4080F2387726800255664;
- productRefGroup = 83E408192387726800255664 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 83E408172387726800255664 /* LampMind */,
- 83E4082D2387726C00255664 /* LampMindTests */,
- 83E408382387726D00255664 /* LampMindUITests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 83E408162387726800255664 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 83EAA731239749FD008763FB /* LMLampBaseVCtr.xib in Resources */,
- 83DD400025E3450E00A5808E /* InfoPlist.strings in Resources */,
- 83EAA68F2395142B008763FB /* LMEmptyView.xib in Resources */,
- 83725CB225EA1E47000222EB /* LMAlarmInfoVCtr.xib in Resources */,
- 83EAA65F23950F22008763FB /* LMDimmingVCtr.xib in Resources */,
- 83EAA6CD239645B2008763FB /* LMMonitorCell.xib in Resources */,
- 83EAA60D23950EDD008763FB /* LMLampWithAlarmCalloutView.xib in Resources */,
- 83E408282387726C00255664 /* LaunchScreen.storyboard in Resources */,
- 83EAA60C23950EDD008763FB /* LMLampNoAlarmCalloutView.xib in Resources */,
- 83DD408925E3817E00A5808E /* LMLoginVCtr.xib in Resources */,
- 83EAA68E2395142B008763FB /* LMAlarmCell.xib in Resources */,
- 83EAA60423950EDD008763FB /* LMPoleCalloutView.xib in Resources */,
- 83CCBDD52397D4900096AA9F /* LMPowerSavingView.xib in Resources */,
- 83DD400F25E3463D00A5808E /* Localizable.strings in Resources */,
- 83EAA6B5239516AA008763FB /* LMDeviceVCtr.xib in Resources */,
- 83025EEB25E7C40000356051 /* LMAlarmDispathVctr.xib in Resources */,
- 83EAA6C0239516AA008763FB /* LMElectriQuantiyCell.xib in Resources */,
- 83DD409325E38A3700A5808E /* LMAlarmNumberView.xib in Resources */,
- 835F1B9125E89DD0006A7CA1 /* LMDimmingView.xib in Resources */,
- 836AAF1F25E4B53A0068B7C6 /* LMGroupView.xib in Resources */,
- 83EAA6C723954149008763FB /* LMLightNumberView.xib in Resources */,
- 83EAA65A23950F22008763FB /* LMRoadFilterVCtr.xib in Resources */,
- 83EAA66523950F22008763FB /* LMSliderView.xib in Resources */,
- 83E408252387726C00255664 /* Assets.xcassets in Resources */,
- 836AAF1825E4B4D00068B7C6 /* LMLoopView.xib in Resources */,
- 83EAA68A2395142B008763FB /* LMAlarmVCtr.xib in Resources */,
- 83E408232387726800255664 /* Main.storyboard in Resources */,
- 5F63A8292539BCF200DD9DD6 /* CodeScan.bundle in Resources */,
- 83674E9425E60435000B4B3C /* LMRoadFilterView.xib in Resources */,
- 83CCBDC92397B3DE0096AA9F /* LMSelectorCell.xib in Resources */,
- 83EAA60823950EDD008763FB /* LMLampCalloutView.xib in Resources */,
- 83EAA5FD23950EDD008763FB /* LMGISVCtr.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 83E4082C2387726C00255664 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 83E408372387726D00255664 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- 461B8A7290D122A2029F8C17 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 7AF283C2AEBCBC63075C08B5 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-LampMind-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- CC683218C465EEC5AF4FBE99 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-frameworks-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Embed Pods Frameworks";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-frameworks-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 83E408142387726800255664 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 5F6802AF253C84710002577C /* LMRepairManagerView.swift in Sources */,
- 8359C04A253424500027518B /* LMMeteorologicalCell.swift in Sources */,
- 83B73187251DEF1A00953DFF /* LMNewLoopTwoCtr.swift in Sources */,
- 83EAA5FE23950EDD008763FB /* LMGISVCtr.swift in Sources */,
- 833559D02510C705000F1EF2 /* LMGroupVCtr.swift in Sources */,
- 83EAA66123950F22008763FB /* LMDimmingManager.swift in Sources */,
- 831F1A2A258A17E10078DB14 /* LMWifiDetailView.swift in Sources */,
- 83E408902387782F00255664 /* LMCornerLabel.swift in Sources */,
- 8341652525835899006FAB0D /* LMLightPoleListCell.swift in Sources */,
- 83559F3B252233D100B166C4 /* LMDetailContentModel.swift in Sources */,
- 83E23E672521BAA500678616 /* LMGroupHttpRequest.swift in Sources */,
- 83E4096E2387790A00255664 /* LMLoginVCtr.swift in Sources */,
- 83559F452522490500B166C4 /* LMDetailContentCell.swift in Sources */,
- 837814732584F44C00FD3EC3 /* LMRadioDetailView.swift in Sources */,
- 8359C0582534456B0027518B /* LMLightViewCell.swift in Sources */,
- 83E4088F2387782F00255664 /* ProviderSupport.swift in Sources */,
- 837814822584F48300FD3EC3 /* LMMonitorDetailView.swift in Sources */,
- 5F5E1E9A2536CEE6007EAC23 /* LMPlayVideoApi.swift in Sources */,
- 834F9D832523726000BFFE58 /* LMGroupSettingService.swift in Sources */,
- 831F1A04258A17310078DB14 /* LMAlertDetailManager.swift in Sources */,
- 83E408932387782F00255664 /* LMViewProtocolDelegate.swift in Sources */,
- 8360227D2533464700416047 /* LMMeteorologicalCtr.swift in Sources */,
- 83EAA73723974AA1008763FB /* LMLampBaseManger.swift in Sources */,
- 83EAA60223950EDD008763FB /* LMGisHttpRequest.swift in Sources */,
- 83B7318F251DF16A00953DFF /* LMNewLoopView.swift in Sources */,
- 83E4089E2387782F00255664 /* UIScrollView+Empty.swift in Sources */,
- 837814782584F45F00FD3EC3 /* LMRadioDetailManager.swift in Sources */,
- 8359C04C253427920027518B /* LMMeteorologicalApi.swift in Sources */,
- 83559F372522339300B166C4 /* LMDetailContentCtr.swift in Sources */,
- 83D9FABB252306BF009956A8 /* LMAutoOperationView.swift in Sources */,
- 83559F432522342B00B166C4 /* LMDetailContentService.swift in Sources */,
- 83EAA68D2395142B008763FB /* LMAlarmManager.swift in Sources */,
- 831F1A1B258A179B0078DB14 /* LMEDDetailView.swift in Sources */,
- 834917A225308D49006B44BD /* LMLightPoleModel.swift in Sources */,
- 837814412584F24700FD3EC3 /* LMCloudBoxDetailView.swift in Sources */,
- 83602273253345E000416047 /* LMLightView.swift in Sources */,
- 83711D97258C89B8006387CE /* LMNowAlertCell.swift in Sources */,
- 83D9FAB9252306A9009956A8 /* LMStrategyOperationView.swift in Sources */,
- 83EAA6B7239516AA008763FB /* LMDeviceViewManager.swift in Sources */,
- 8356659E2524580500425C38 /* LMStrategyOperationDetailCell.swift in Sources */,
- 83EAA6932395142B008763FB /* LMAlarmVCtr.swift in Sources */,
- 837814692584F42600FD3EC3 /* LMAirQualityDetailManager.swift in Sources */,
- 83E408982387782F00255664 /* DGKVOTool.swift in Sources */,
- 83CCBDD12397C3450096AA9F /* LMPowerSavingView.swift in Sources */,
- 831F1A25258A17C90078DB14 /* LMWifiDetailManager.swift in Sources */,
- 83E408992387782F00255664 /* SegmentStyle.swift in Sources */,
- 8378147D2584F47400FD3EC3 /* LMMonitorDetailCtr.swift in Sources */,
- 8359C04E253427A70027518B /* LMMeteorologicalRequest.swift in Sources */,
- 8360228725335F2000416047 /* LMMonitorPoleCell.swift in Sources */,
- 83EAA6BE239516AA008763FB /* LMDeviceView.swift in Sources */,
- 834E2961251C37CF00BC3482 /* LMMainLoopModel.swift in Sources */,
- 834B898A2514B93C00E2108E /* LMLampDetailContentManager.swift in Sources */,
- 83EAA60A23950EDD008763FB /* LMAnnotationView.swift in Sources */,
- 8360227B2533463500416047 /* LMMeteorologicalView.swift in Sources */,
- 83E4088D2387782F00255664 /* UIVIew+Positioning.swift in Sources */,
- 83EAA66323950F22008763FB /* LMSliderViewStyle.swift in Sources */,
- 83EAA72723968F9B008763FB /* LMLampVCtr.swift in Sources */,
- 834B898E2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift in Sources */,
- 83E408A12387782F00255664 /* KKWRefreshHeaderAnimator.swift in Sources */,
- 834E45662511E88300ED6B71 /* LMLampDetailView.swift in Sources */,
- 837814962584F4E600FD3EC3 /* LMLightDetailManager.swift in Sources */,
- 8341651D25834195006FAB0D /* LMLightPoleListApi.swift in Sources */,
- 8356E1B7253FCD200024561F /* LMRepairApi.swift in Sources */,
- 83B73191251DF36800953DFF /* LMNewLoopInputContentCell.swift in Sources */,
- 834917A025308D1F006B44BD /* LMLightPoleView.swift in Sources */,
- 83ABDA822586427F00FDC0C7 /* LMCloudBoxRequest.swift in Sources */,
- 83E408962387782F00255664 /* THScrollChooseView.m in Sources */,
- 83EAA6912395142B008763FB /* LMAlarmCell.swift in Sources */,
- 8359C056253440110027518B /* LMLightService.swift in Sources */,
- 83E23E5F2521BA6400678616 /* LMGroupManager.swift in Sources */,
- 834E4570251201FB00ED6B71 /* LMLampDetailModel.swift in Sources */,
- 83ABDA7D25863F2000FDC0C7 /* LMCloudBoxServer.swift in Sources */,
- 83EAA6922395142B008763FB /* LMEmptyView.swift in Sources */,
- 5F63A82F2539BCF200DD9DD6 /* LBXPermissions.swift in Sources */,
- 5F63A82C2539BCF200DD9DD6 /* LBXScanViewController.swift in Sources */,
- 834B89862514B66E00E2108E /* LMLampDetailContentView.swift in Sources */,
- 834E296E251CBDA500BC3482 /* LMNewLoopTwoView.swift in Sources */,
- 8356E1B5253FCC400024561F /* LMRepairService.swift in Sources */,
- 83D9FAB32522E1EC009956A8 /* LMGroupSettingRequest.swift in Sources */,
- 83B73193251DF38100953DFF /* LMNewLoopChoseContentCell.swift in Sources */,
- 83E408872387782F00255664 /* UIView+Gradient.swift in Sources */,
- 834E2974251CBDE100BC3482 /* LMNewLoopRequest.swift in Sources */,
- 83E408882387782F00255664 /* UIView+Extension.swift in Sources */,
- 8378145F2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift in Sources */,
- 836022852533471C00416047 /* LMMonitorCtr.swift in Sources */,
- 83E408862387782F00255664 /* MKMapView+ZoomLevel.swift in Sources */,
- 83EAA6BF239516AA008763FB /* BalloonMarker.swift in Sources */,
- 8378142D2584C60A00FD3EC3 /* LMLightPoleDetailView.swift in Sources */,
- 831555AE2589F38200999EA7 /* LMAirQualityDatailServer.swift in Sources */,
- 834E2963251C37E400BC3482 /* LMMainLoopRequest.swift in Sources */,
- 83E4089D2387782F00255664 /* UIView+Position.swift in Sources */,
- 83ABDA872586429500FDC0C7 /* LMCloudBoxModel.swift in Sources */,
- 830461562529CBCE00B6B291 /* LMNewStrategyGroupService.swift in Sources */,
- 8380F20625874A51001A1C94 /* LMLightDetailApi.swift in Sources */,
- 83EAA72423966966008763FB /* UICollectionView+SideExtension.m in Sources */,
- 83E4096A2387790A00255664 /* LMLoginModel.swift in Sources */,
- 834E2976251CBDFD00BC3482 /* LMNewLoopManager.swift in Sources */,
- 83EAA66723950F22008763FB /* LMDimmingView.swift in Sources */,
- 83E4088B2387782F00255664 /* UIImagView+Kingfisher.swift in Sources */,
- 83E408202387726800255664 /* ViewController.swift in Sources */,
- 5F5E1E9C2536CFB6007EAC23 /* LMPlayVideoRequest.swift in Sources */,
- 83EAA59C23950E43008763FB /* RootNavigationController.swift in Sources */,
- 831F1A3E258A18390078DB14 /* LMChargeDetailCtr.swift in Sources */,
- 831F1A20258A17AB0078DB14 /* LMEDDetailCtr.swift in Sources */,
- 83EAA72123966966008763FB /* SideRefreshFooter.m in Sources */,
- 83EAA65B23950F22008763FB /* LMRoadFilterManager.swift in Sources */,
- 834E295D251C370900BC3482 /* LMMainLoopService.swift in Sources */,
- 83CCBDCF2397C31D0096AA9F /* LMGroupView.swift in Sources */,
- 5F5E1E902536C944007EAC23 /* LMPlayVideoCtr.swift in Sources */,
- 83EAA60523950EDD008763FB /* LMGisHeaderView.swift in Sources */,
- 83E4089A2387782F00255664 /* ScrollSegmentView.swift in Sources */,
- 83EAA60123950EDD008763FB /* LMGISModel.swift in Sources */,
- 83602271253345CE00416047 /* LMLightModel.swift in Sources */,
- 83D9FAB12522E1D4009956A8 /* LMGroupSettingApi.swift in Sources */,
- 83EAA65923950F22008763FB /* LMRoadFilterVCtr.swift in Sources */,
- 83EAA6942395142B008763FB /* LMNetWorkManager.swift in Sources */,
- 8359C050253429500027518B /* LMMeteorologicalService.swift in Sources */,
- 83559F3D252233E400B166C4 /* LMDetailContentApi.swift in Sources */,
- 83E4088E2387782F00255664 /* ProjectConstant.swift in Sources */,
- 5F63A82D2539BCF200DD9DD6 /* LBXScanLineAnimation.swift in Sources */,
- 5F5E1E962536C99D007EAC23 /* LMPlayVideoManager.swift in Sources */,
- 83E408A02387782F00255664 /* NSDate+CXCategory.m in Sources */,
- 8380F20125874A47001A1C94 /* LMLightDetailRequest.swift in Sources */,
- 83E408912387782F00255664 /* LMViewModelProtocolDelegate.swift in Sources */,
- 83EAA6B6239516AA008763FB /* LMDeviceVCtr.swift in Sources */,
- 5F5E1E942536C97F007EAC23 /* LMPlayVideoModel.swift in Sources */,
- 83EAA6B8239516AA008763FB /* LMDeviceApi.swift in Sources */,
- 83CCBDC323978FA60096AA9F /* LMLampHttpRequest.swift in Sources */,
- 83CCD2CE2518A48100AD14FD /* LMNewLampService.swift in Sources */,
- 83CCD2CC2518503A00AD14FD /* LMInputAndChoseContentCell.swift in Sources */,
- 836022832533470D00416047 /* LMMonitorPoleView.swift in Sources */,
- 8360226F2533434A00416047 /* LMLightManager.swift in Sources */,
- 83EAA60923950EDD008763FB /* LMLampCalloutView.swift in Sources */,
- 83D9FAAB2522E18D009956A8 /* LMGroupSettingCtr.swift in Sources */,
- 83CCBDC123978F940096AA9F /* LMLampModel.swift in Sources */,
- 83CCD2D02518B27B00AD14FD /* LMNewLampApi.swift in Sources */,
- 836022792533462700416047 /* LMMeteorologicalModel.swift in Sources */,
- 83711D92258C8422006387CE /* LMHistoryAlertCell.swift in Sources */,
- 83E4081C2387726800255664 /* AppDelegate.swift in Sources */,
- 834B89902514D63E00E2108E /* LMLampDetailContentService.swift in Sources */,
- 83EAA6C1239516AA008763FB /* LMMonitorView.swift in Sources */,
- 83EAA6CC239645B2008763FB /* LMMonitorCell.swift in Sources */,
- 8334ED5525122B9900E0766A /* LMLampDetailCell.swift in Sources */,
- 5F5E1E982536CDA9007EAC23 /* LMPlayVideoService.swift in Sources */,
- 83EAA6C2239516AA008763FB /* LMElectriQuantiyCell.swift in Sources */,
- 83CCBDCD2397C2940096AA9F /* LMLoopView.swift in Sources */,
- 8350348D25287AA500BF947A /* LMNewStrategyGroupModel.swift in Sources */,
- 833559D42510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift in Sources */,
- 83E4096D2387790A00255664 /* LMLoginManager.swift in Sources */,
- 831F1A11258A175D0078DB14 /* LMAlertDetailCtr.swift in Sources */,
- 83EAA60623950EDD008763FB /* LMLampWithAlarmCalloutView.swift in Sources */,
- 835665A42524885500425C38 /* LMHistoryApi.swift in Sources */,
- 83E23E652521BA8C00678616 /* LMGroupApi.swift in Sources */,
- 837814462584F26500FD3EC3 /* LMCloudBoxManager.swift in Sources */,
- 83B73185251DBE2600953DFF /* LMNewLoopTwoCell.swift in Sources */,
- 835665A62524886C00425C38 /* LMHistoryHttpRequest.swift in Sources */,
- 83B7318D251DEF8A00953DFF /* LMNewLoopTwoManager.swift in Sources */,
- 83E408972387782F00255664 /* CXDatePickerView.m in Sources */,
- 83068D2F2588B13400170DDE /* LMMonitorDetailRequest.swift in Sources */,
- 834E295F251C37BA00BC3482 /* LMMainLoopApi.swift in Sources */,
- 5F6802AD253C845E0002577C /* LMRepairCtr.swift in Sources */,
- 83E4096C2387790A00255664 /* LMLoginApi.swift in Sources */,
- 83EAA60723950EDD008763FB /* LMPoleCalloutView.swift in Sources */,
- 83EAA68B2395142B008763FB /* LMAlarmDispathVctr.swift in Sources */,
- 83E4089C2387782F00255664 /* HDRunTime.swift in Sources */,
- 831F1A2F258A17F30078DB14 /* LMWifiDetailCtr.swift in Sources */,
- 835665A22524884400425C38 /* LMHistoryModel.swift in Sources */,
- 8304615425295F9600B6B291 /* LMNewStrategyGroupCell.swift in Sources */,
- 83EAA59D23950E43008763FB /* MainViewController.swift in Sources */,
- 8341652F25837CFC006FAB0D /* LMLightPoleDetailCtr.swift in Sources */,
- 83E23E632521BA8100678616 /* LMGroupModel.swift in Sources */,
- 5F6802B4253C84D30002577C /* LMRepairManager.swift in Sources */,
- 83EAA66423950F22008763FB /* LMSliderView.swift in Sources */,
- 834E45642511E85D00ED6B71 /* LMLampManager.swift in Sources */,
- 83E4088C2387782F00255664 /* UIView+Configure.swift in Sources */,
- 5F63A82A2539BCF200DD9DD6 /* LBXScanNetAnimation.swift in Sources */,
- 83EAA6BC239516AA008763FB /* LMAlarmNumberView.swift in Sources */,
- 83559F3F2522340000B166C4 /* LMDetailContentHttpRequest.swift in Sources */,
- 83ABDA8C258642A200FDC0C7 /* LMCloudBoxApi.swift in Sources */,
- 831F1A39258A18270078DB14 /* LMChargeDetailView.swift in Sources */,
- 83ABC212251D9B5700D53141 /* LMNewLoopService.swift in Sources */,
- 83EAA6C4239516AA008763FB /* LMChartView.swift in Sources */,
- 83EAA66223950F22008763FB /* LMWebSocket.swift in Sources */,
- 83EAA65E23950F22008763FB /* LMRoadFilterView.swift in Sources */,
- 83EAA5FF23950EDD008763FB /* LMGISManager.swift in Sources */,
- 834E2965251C459100BC3482 /* LMMainLoopCell.swift in Sources */,
- 83EAA72323966966008763FB /* SideRefresh.m in Sources */,
- 83D9FAB725230680009956A8 /* LMManualOperationView.swift in Sources */,
- 835665AC25249BF400425C38 /* LMHistoryCell.swift in Sources */,
- 835665A82524888200425C38 /* LMHistoryManager.swift in Sources */,
- 8359C05425343C400027518B /* LMLightRequest.swift in Sources */,
- 83D9FAAD2522E1A1009956A8 /* LMGroupSettingView.swift in Sources */,
- 83CCBDBF23978F810096AA9F /* LMLampApi.swift in Sources */,
- 83E23E612521BA7300678616 /* LMGroupService.swift in Sources */,
- 83E23E6B2521BB5400678616 /* LMMainGroupView.swift in Sources */,
- 83EAA65C23950F22008763FB /* LMRoadFilterCacheManager.swift in Sources */,
- 83CCBDC52397A4800096AA9F /* LMLampBaseService.swift in Sources */,
- 83D9FAB52522E200009956A8 /* LMGroupSettingManager.swift in Sources */,
- 836022772533461900416047 /* LMMeteorologicalManager.swift in Sources */,
- 83CCBDBB239758230096AA9F /* LMLampBaseView.swift in Sources */,
- 8349179E25308D0D006B44BD /* LMLightPoleCtr.swift in Sources */,
- 8356E1B9253FCE7B0024561F /* LMRepairRequest.swift in Sources */,
- 837814642584F40F00FD3EC3 /* LMAirQualityDetailView.swift in Sources */,
- 835665AA25248FDE00425C38 /* LMHistoryService.swift in Sources */,
- 83CCD2C42518479C00AD14FD /* LMNewLampModel.swift in Sources */,
- 834E456A2511F69A00ED6B71 /* LMLampDetailHttpRequest.swift in Sources */,
- 835665A02524883000425C38 /* LMHistoryView.swift in Sources */,
- 8350348925287A6A00BF947A /* LMNewStrategyGroupCtr.swift in Sources */,
- 834E45682511F4E300ED6B71 /* LMLampServer.swift in Sources */,
- 83E408852387782F00255664 /* UIBarButtonItem+item.swift in Sources */,
- 83E408892387782F00255664 /* UIButton+Gradient.swift in Sources */,
- 83EAA6BD239516AA008763FB /* LMElectricQuantityView.swift in Sources */,
- 83EAA60323950EDD008763FB /* LMGISApi.swift in Sources */,
- 837814322584C63B00FD3EC3 /* LMLightPoleDetailManager.swift in Sources */,
- 83068D392588B14D00170DDE /* LMMonitorDetailModel.swift in Sources */,
- 8350349325287B0800BF947A /* LMNewStrategyGroupManager.swift in Sources */,
- 83068D342588B14400170DDE /* LMMonitorDetailApi.swift in Sources */,
- 83E4089F2387782F00255664 /* HDEmptyBaseView.swift in Sources */,
- 5F63A8302539BCF200DD9DD6 /* LBXScanWrapper.swift in Sources */,
- 834B89842514B65300E2108E /* LMLampDetailContentCtr.swift in Sources */,
- 834B89882514B69700E2108E /* LMLampDetailContentModel.swift in Sources */,
- 836E8AE5258B6BB200883233 /* LMConnectDeviceCell.swift in Sources */,
- 83E4089B2387782F00255664 /* HDEmptyView.swift in Sources */,
- 83CCD2C6251847AD00AD14FD /* LMNewLampManager.swift in Sources */,
- 8380F20B25874A5C001A1C94 /* LMLightDetailModel.swift in Sources */,
- 5F63A82E2539BCF200DD9DD6 /* LBXScanViewStyle.swift in Sources */,
- 5F5E1E922536C95C007EAC23 /* LMPlayVideoView.swift in Sources */,
- 83E4088A2387782F00255664 /* LMView+UIViewController.swift in Sources */,
- 836022812533467400416047 /* LMMonitorModel.swift in Sources */,
- 83E408952387782F00255664 /* AppShare.swift in Sources */,
- 83EAA6B9239516AA008763FB /* LMDeviceModel.swift in Sources */,
- 8378146E2584F43E00FD3EC3 /* LMRadioDetailCtr.swift in Sources */,
- 833559CE2510C6D8000F1EF2 /* LMLoopVCtr.swift in Sources */,
- 83EAA6982395142B008763FB /* LMAlarmHttpRequest.swift in Sources */,
- 83EAA60E23950EDD008763FB /* LMLampNoAlarmCalloutView.swift in Sources */,
- 83EAA59E23950E43008763FB /* LMNavigationController.swift in Sources */,
- 834E296C251CBD8E00BC3482 /* LMNewLoopCtr.swift in Sources */,
- 83EAA71F23966966008763FB /* UICollectionView+SideRefresh.m in Sources */,
- 831F1A0C258A174D0078DB14 /* LMAlertDetailView.swift in Sources */,
- 83602275253345F500416047 /* LMLightCtr.swift in Sources */,
- 83EAA72223966966008763FB /* SideRefreshEmptyFooter.m in Sources */,
- 834E2970251CBDBC00BC3482 /* LMNewLoopModel.swift in Sources */,
- 831F1A16258A17810078DB14 /* LMLEDDetailManager.swift in Sources */,
- 833559D22510C725000F1EF2 /* LMStrategyVCtr.swift in Sources */,
- 8356659C25242B1100425C38 /* LMStrategyOperationCell.swift in Sources */,
- 83CCBDBD23975F9E0096AA9F /* LMSelectorView.swift in Sources */,
- 83EAA69A2395142B008763FB /* LMAlarmDispatchManager.swift in Sources */,
- 83E408942387782F00255664 /* LMViewManagerProtocolDelegate.swift in Sources */,
- 8341651325832220006FAB0D /* LMLightPoleSever.swift in Sources */,
- 8350348F25287AC000BF947A /* LMNewStrategyGroupApi.swift in Sources */,
- 8350349125287AE800BF947A /* LMNewStrategyGroupRequest.swift in Sources */,
- 83EAA6892395142B008763FB /* LMAlarmInfoManger.swift in Sources */,
- 8341650E25831A23006FAB0D /* LMLightPoleListView.swift in Sources */,
- 834E456E2511F6C600ED6B71 /* LMLampDetailApi.swift in Sources */,
- 834E2972251CBDCA00BC3482 /* LMNewLoopApi.swift in Sources */,
- 834B898C2514BBD400E2108E /* LMLampDetaiContentApi.swift in Sources */,
- 83EAA6BB239516AA008763FB /* LMDeviceHttpRequest.swift in Sources */,
- 8378148C2584F4C500FD3EC3 /* LMLightDetailCtr.swift in Sources */,
- 83E23E6D2521D81200678616 /* LMTGroupItemCell.swift in Sources */,
- 83EAA60B23950EDD008763FB /* LMMapView.swift in Sources */,
- 83EAA730239749FD008763FB /* LMLampBaseVCtr.swift in Sources */,
- 8380F1FC25874A0E001A1C94 /* LMLightDetailSever.swift in Sources */,
- 83D9FAAF2522E1BC009956A8 /* LMGroupSettingModel.swift in Sources */,
- 83CCBDCB2397C27E0096AA9F /* LMLightTimeView.swift in Sources */,
- 83577A2A2519DC89002A83A0 /* LMMainLoopView.swift in Sources */,
- 837814912584F4D400FD3EC3 /* LMLightDetailView.swift in Sources */,
- 83CCD2C82518500000AD14FD /* LMInputContentCell.swift in Sources */,
- 83EAA6952395142B008763FB /* LMAlarmApi.swift in Sources */,
- 83EAA6C3239516AA008763FB /* LMLightNumberView.swift in Sources */,
- 837814872584F49700FD3EC3 /* LMMonitorDetailManager.swift in Sources */,
- 8360227F2533465C00416047 /* LMMonitorManager.swift in Sources */,
- 8359C05225343C1B0027518B /* LMLightApi.swift in Sources */,
- 83577A2C2519DECC002A83A0 /* LMMainLoopManager.swift in Sources */,
- 8378143C2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift in Sources */,
- 83CCD2C22518478400AD14FD /* LMNewLampView.swift in Sources */,
- 83EAA60023950EDD008763FB /* LMGISMapManager.swift in Sources */,
- 831F1A34258A181A0078DB14 /* LMChargeDetailManager.swift in Sources */,
- 83EAA66023950F22008763FB /* LMDimmingVCtr.swift in Sources */,
- 83CCD2C02518477100AD14FD /* LMNewLampCtr.swift in Sources */,
- 83CCD2CA2518501900AD14FD /* LMChoseContentCell.swift in Sources */,
- 5F63A82B2539BCF200DD9DD6 /* LBXScanView.swift in Sources */,
- 83E4081E2387726800255664 /* SceneDelegate.swift in Sources */,
- 83EAA68C2395142B008763FB /* LMAlarmInfoVCtr.swift in Sources */,
- 83559F412522341400B166C4 /* LMDetailContentManager.swift in Sources */,
- 83EAA6972395142B008763FB /* LMAlarmModel.swift in Sources */,
- 8341651825834175006FAB0D /* LMLightPoleListRequest.swift in Sources */,
- 834917A425308D5D006B44BD /* LMLightPoleManager.swift in Sources */,
- 83EAA6BA239516AA008763FB /* LMChartsModel.swift in Sources */,
- 83E4096B2387790A00255664 /* LMLoginHttpRequest.swift in Sources */,
- 83CCBDC82397B3DE0096AA9F /* LMSelectorCell.swift in Sources */,
- 83EAA6902395142B008763FB /* LMAlarmView.swift in Sources */,
- 83559F39252233B800B166C4 /* LMDetailContentView.swift in Sources */,
- 8350348B25287A8800BF947A /* LMNewStrategyGroupView.swift in Sources */,
- 83EAA72023966966008763FB /* SideRefreshHeader.m in Sources */,
- 5F6802B2253C84B50002577C /* LMRepairModel.swift in Sources */,
- 83CCD2D22518B29700AD14FD /* LMNewLampRequest.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 83E4082A2387726C00255664 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 83E408332387726D00255664 /* LampMindTests.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 83E408352387726D00255664 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 83E4083E2387726D00255664 /* LampMindUITests.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 83E408302387726C00255664 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 83E408172387726800255664 /* LampMind */;
- targetProxy = 83E4082F2387726C00255664 /* PBXContainerItemProxy */;
- };
- 83E4083B2387726D00255664 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 83E408172387726800255664 /* LampMind */;
- targetProxy = 83E4083A2387726D00255664 /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- 83025EED25E7C40000356051 /* LMAlarmDispathVctr.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 83025EEC25E7C40000356051 /* Base */,
- 83025EEF25E7C40900356051 /* en */,
- 83025EF125E7C40F00356051 /* zh-Hans */,
- );
- name = LMAlarmDispathVctr.xib;
- sourceTree = "<group>";
- };
- 835F1B9325E89DD0006A7CA1 /* LMDimmingView.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 835F1B9225E89DD0006A7CA1 /* Base */,
- 835F1B9825E89DD8006A7CA1 /* en */,
- 835F1B9A25E89DDE006A7CA1 /* zh-Hans */,
- );
- name = LMDimmingView.xib;
- sourceTree = "<group>";
- };
- 83674E9625E60435000B4B3C /* LMRoadFilterView.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 83674E9525E60435000B4B3C /* Base */,
- 83674E9B25E60442000B4B3C /* en */,
- 83674E9D25E60446000B4B3C /* zh-Hans */,
- );
- name = LMRoadFilterView.xib;
- sourceTree = "<group>";
- };
- 836AAF1A25E4B4D00068B7C6 /* LMLoopView.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 836AAF1925E4B4D00068B7C6 /* Base */,
- 836AAF1C25E4B4D90068B7C6 /* en */,
- 836AAF1E25E4B4E00068B7C6 /* zh-Hans */,
- );
- name = LMLoopView.xib;
- sourceTree = "<group>";
- };
- 836AAF2125E4B53A0068B7C6 /* LMGroupView.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 836AAF2025E4B53A0068B7C6 /* Base */,
- 836AAF2625E4CE760068B7C6 /* en */,
- 836AAF2825E4CE7C0068B7C6 /* zh-Hans */,
- );
- name = LMGroupView.xib;
- sourceTree = "<group>";
- };
- 83725CB425EA1E47000222EB /* LMAlarmInfoVCtr.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 83725CB325EA1E47000222EB /* Base */,
- 83725CB925EA1E52000222EB /* en */,
- 83725CBB25EA1F0B000222EB /* zh-Hans */,
- );
- name = LMAlarmInfoVCtr.xib;
- sourceTree = "<group>";
- };
- 83DD400225E3450E00A5808E /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 83DD400125E3450E00A5808E /* en */,
- 83DD400625E3451700A5808E /* zh-Hans */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 83DD401125E3463D00A5808E /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 83DD401025E3463D00A5808E /* en */,
- 83DD401525E3464600A5808E /* zh-Hans */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- 83DD408B25E3817E00A5808E /* LMLoginVCtr.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 83DD408A25E3817E00A5808E /* Base */,
- 83DD408D25E3818400A5808E /* en */,
- 83DD408F25E3819700A5808E /* zh-Hans */,
- );
- name = LMLoginVCtr.xib;
- sourceTree = "<group>";
- };
- 83DD409525E38A3700A5808E /* LMAlarmNumberView.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 83DD409425E38A3700A5808E /* Base */,
- 83DD409725E38A4000A5808E /* en */,
- 83DD409925E38A4B00A5808E /* zh-Hans */,
- );
- name = LMAlarmNumberView.xib;
- sourceTree = "<group>";
- };
- 83E408212387726800255664 /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 83E408222387726800255664 /* Base */,
- 836FC31925E0BE170071051F /* zh-Hans */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- 83E408262387726C00255664 /* LaunchScreen.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 83E408272387726C00255664 /* Base */,
- 836FC31D25E0BE1B0071051F /* zh-Hans */,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 83E408402387726D00255664 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- };
- name = Debug;
- };
- 83E408412387726D00255664 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- SDKROOT = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 83E408432387726D00255664 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 6A62B2657BB335FF65D53B0C /* Pods-LampMind.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_IDENTITY = "Apple Development";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 20210308;
- DEVELOPMENT_TEAM = XX76ZRB47G;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Charts\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/ESPullToRefresh\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjcExceptionBridging\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/PKHUD\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Result\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Starscream\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftPopup\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwifterSwift\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/XCGLogger\"",
- "\"${PODS_ROOT}/AMap3DMap-NO-IDFA\"",
- "\"${PODS_ROOT}/AMapFoundation-NO-IDFA\"",
- "\"${PODS_ROOT}/AMapLocation-NO-IDFA\"",
- "\"${PODS_ROOT}/AMapSearch-NO-IDFA\"",
- "$(PROJECT_DIR)/LampMind/Global/Vender",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Charts/Charts.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/ESPullToRefresh/ESPullToRefresh.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView/JXCategoryView.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjcExceptionBridging/ObjcExceptionBridging.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/PKHUD/PKHUD.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Starscream/Starscream.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftPopup/SwiftPopup.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwifterSwift/SwifterSwift.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift/Toast_Swift.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/XCGLogger/XCGLogger.framework/Headers\"",
- "\"$(SRCROOT)/LampMind/Global/Vender/LCOpenSDKDynamic.framework/Headers\"",
- );
- INFOPLIST_FILE = LampMind/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/LampMind/Global/Vender/Openssl",
- "$(PROJECT_DIR)/LampMind/Global/Vender/OpenSDK",
- );
- MARKETING_VERSION = 1.0.4;
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-l\"c++\"",
- "-l\"z\"",
- "-framework",
- "\"AMapFoundationKit\"",
- "-framework",
- "\"AMapLocationKit\"",
- "-framework",
- "\"AMapSearchKit\"",
- "-framework",
- "\"Accelerate\"",
- "-framework",
- "\"Alamofire\"",
- "-framework",
- "\"CFNetwork\"",
- "-framework",
- "\"Charts\"",
- "-framework",
- "\"CoreGraphics\"",
- "-framework",
- "\"CoreLocation\"",
- "-framework",
- "\"CoreTelephony\"",
- "-framework",
- "\"CoreText\"",
- "-framework",
- "\"ESPullToRefresh\"",
- "-framework",
- "\"ExternalAccessory\"",
- "-framework",
- "\"Foundation\"",
- "-framework",
- "\"GLKit\"",
- "-framework",
- "\"IQKeyboardManagerSwift\"",
- "-framework",
- "\"JXCategoryView\"",
- "-framework",
- "\"Kingfisher\"",
- "-framework",
- "\"MAMapKit\"",
- "-framework",
- "\"Moya\"",
- "-framework",
- "\"ObjcExceptionBridging\"",
- "-framework",
- "\"OpenGLES\"",
- "-framework",
- "\"PKHUD\"",
- "-framework",
- "\"QuartzCore\"",
- "-framework",
- "\"Result\"",
- "-framework",
- "\"RxCocoa\"",
- "-framework",
- "\"RxSwift\"",
- "-framework",
- "\"Security\"",
- "-framework",
- "\"SnapKit\"",
- "-framework",
- "\"Starscream\"",
- "-framework",
- "\"SwiftPopup\"",
- "-framework",
- "\"SwifterSwift\"",
- "-framework",
- "\"SwiftyJSON\"",
- "-framework",
- "\"SystemConfiguration\"",
- "-framework",
- "\"Toast_Swift\"",
- "-framework",
- "\"UIKit\"",
- "-framework",
- "\"XCGLogger\"",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.lampmind;
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE_SPECIFIER = "";
- SWIFT_OBJC_BRIDGING_HEADER = "LampMind/LampMind-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 1;
- };
- name = Debug;
- };
- 83E408442387726D00255664 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = B6A851A2A19952A236929375 /* Pods-LampMind.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_IDENTITY = "Apple Development";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 20210308;
- DEVELOPMENT_TEAM = XX76ZRB47G;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Charts\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/ESPullToRefresh\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjcExceptionBridging\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/PKHUD\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Result\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Starscream\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftPopup\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwifterSwift\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/XCGLogger\"",
- "\"${PODS_ROOT}/AMap3DMap-NO-IDFA\"",
- "\"${PODS_ROOT}/AMapFoundation-NO-IDFA\"",
- "\"${PODS_ROOT}/AMapLocation-NO-IDFA\"",
- "\"${PODS_ROOT}/AMapSearch-NO-IDFA\"",
- "$(PROJECT_DIR)/LampMind/Global/Vender",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Charts/Charts.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/ESPullToRefresh/ESPullToRefresh.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView/JXCategoryView.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjcExceptionBridging/ObjcExceptionBridging.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/PKHUD/PKHUD.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Starscream/Starscream.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftPopup/SwiftPopup.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwifterSwift/SwifterSwift.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift/Toast_Swift.framework/Headers\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/XCGLogger/XCGLogger.framework/Headers\"",
- "\"$(SRCROOT)/LampMind/Global/Vender/LCOpenSDKDynamic.framework/Headers\"",
- );
- INFOPLIST_FILE = LampMind/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/LampMind/Global/Vender/Openssl",
- "$(PROJECT_DIR)/LampMind/Global/Vender/OpenSDK",
- );
- MARKETING_VERSION = 1.0.4;
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-l\"c++\"",
- "-l\"z\"",
- "-framework",
- "\"AMapFoundationKit\"",
- "-framework",
- "\"AMapLocationKit\"",
- "-framework",
- "\"AMapSearchKit\"",
- "-framework",
- "\"Accelerate\"",
- "-framework",
- "\"Alamofire\"",
- "-framework",
- "\"CFNetwork\"",
- "-framework",
- "\"Charts\"",
- "-framework",
- "\"CoreGraphics\"",
- "-framework",
- "\"CoreLocation\"",
- "-framework",
- "\"CoreTelephony\"",
- "-framework",
- "\"CoreText\"",
- "-framework",
- "\"ESPullToRefresh\"",
- "-framework",
- "\"ExternalAccessory\"",
- "-framework",
- "\"Foundation\"",
- "-framework",
- "\"GLKit\"",
- "-framework",
- "\"IQKeyboardManagerSwift\"",
- "-framework",
- "\"JXCategoryView\"",
- "-framework",
- "\"Kingfisher\"",
- "-framework",
- "\"MAMapKit\"",
- "-framework",
- "\"Moya\"",
- "-framework",
- "\"ObjcExceptionBridging\"",
- "-framework",
- "\"OpenGLES\"",
- "-framework",
- "\"PKHUD\"",
- "-framework",
- "\"QuartzCore\"",
- "-framework",
- "\"Result\"",
- "-framework",
- "\"RxCocoa\"",
- "-framework",
- "\"RxSwift\"",
- "-framework",
- "\"Security\"",
- "-framework",
- "\"SnapKit\"",
- "-framework",
- "\"Starscream\"",
- "-framework",
- "\"SwiftPopup\"",
- "-framework",
- "\"SwifterSwift\"",
- "-framework",
- "\"SwiftyJSON\"",
- "-framework",
- "\"SystemConfiguration\"",
- "-framework",
- "\"Toast_Swift\"",
- "-framework",
- "\"UIKit\"",
- "-framework",
- "\"XCGLogger\"",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.lampmind;
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE_SPECIFIER = "";
- SWIFT_OBJC_BRIDGING_HEADER = "LampMind/LampMind-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 1;
- };
- name = Release;
- };
- 83E408462387726D00255664 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = XX76ZRB47G;
- INFOPLIST_FILE = LampMindTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 13.2;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.LampMindTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LampMind.app/LampMind";
- };
- name = Debug;
- };
- 83E408472387726D00255664 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = XX76ZRB47G;
- INFOPLIST_FILE = LampMindTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 13.2;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.LampMindTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LampMind.app/LampMind";
- };
- name = Release;
- };
- 83E408492387726D00255664 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = XX76ZRB47G;
- INFOPLIST_FILE = LampMindUITests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.LampMindUITests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = LampMind;
- };
- name = Debug;
- };
- 83E4084A2387726D00255664 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = XX76ZRB47G;
- INFOPLIST_FILE = LampMindUITests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.LampMindUITests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = LampMind;
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 83E408132387726800255664 /* Build configuration list for PBXProject "LampMind" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83E408402387726D00255664 /* Debug */,
- 83E408412387726D00255664 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 83E408422387726D00255664 /* Build configuration list for PBXNativeTarget "LampMind" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83E408432387726D00255664 /* Debug */,
- 83E408442387726D00255664 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 83E408452387726D00255664 /* Build configuration list for PBXNativeTarget "LampMindTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83E408462387726D00255664 /* Debug */,
- 83E408472387726D00255664 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 83E408482387726D00255664 /* Build configuration list for PBXNativeTarget "LampMindUITests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83E408492387726D00255664 /* Debug */,
- 83E4084A2387726D00255664 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 83E408102387726800255664 /* Project object */;
- }
|