project.pbxproj 398 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  10. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  11. F70022A11EC4C9100080073F /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  12. F70022A21EC4C9100080073F /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  13. F70022A41EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  14. F70022A51EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  15. F70022A71EC4C9100080073F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  16. F70022A81EC4C9100080073F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  17. F70022AA1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  18. F70022AB1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  19. F70022AD1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  20. F70022AE1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  21. F70022B01EC4C9100080073F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  22. F70022B11EC4C9100080073F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  23. F70022B31EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  24. F70022B41EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  25. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  26. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  27. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  28. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  29. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  30. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  31. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  32. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  33. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  34. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  35. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  36. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  37. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  38. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  39. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  40. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  41. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  42. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  43. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  44. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  45. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  46. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  47. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  48. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  49. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  50. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  51. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  52. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  53. F70022E01EC4C9100080073F /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  54. F70022E11EC4C9100080073F /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  55. F70022E31EC4C9100080073F /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  56. F70022E41EC4C9100080073F /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  57. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  58. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  59. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  60. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  61. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  62. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  63. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  64. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  65. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  66. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  67. F70A630B1D5B3467004E2AA5 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  68. F70A630F1D5B3467004E2AA5 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  69. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  70. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  71. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  72. F710E8101EF95C9C00DC2427 /* CCIntro.m in Sources */ = {isa = PBXBuildFile; fileRef = F710E80E1EF95C9C00DC2427 /* CCIntro.m */; };
  73. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
  74. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  75. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  76. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  77. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  78. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 /* ShareViewController.m */; };
  79. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  80. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  81. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  82. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  83. F71459D51D12E3B700CAFEEC /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  84. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  85. F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  86. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  87. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
  88. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  89. F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  90. F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  91. F7145A211D12E3B700CAFEEC /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  92. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  93. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A181EE590930086BD69 /* NCShares.m */; };
  94. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A1A1EE590930086BD69 /* NCSharesCell.m */; };
  95. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7169A1B1EE590930086BD69 /* NCSharesCell.xib */; };
  96. F720E01F1E48C73E001A4B9E /* CCActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F720E01E1E48C73E001A4B9E /* CCActions.swift */; };
  97. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  98. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  99. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */; };
  100. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */; };
  101. F732B3371E8045A1002B7D75 /* SwiftWebVC.strings in Resources */ = {isa = PBXBuildFile; fileRef = F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */; };
  102. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  103. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  104. F734E5891F019D860060CB77 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */; };
  105. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */; };
  106. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */; };
  107. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */; };
  108. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */; };
  109. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */; };
  110. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */; };
  111. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */; };
  112. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB41F470D9100BBEE4B /* JISFreq.tab */; };
  113. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */; };
  114. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */; };
  115. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */; };
  116. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */; };
  117. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */; };
  118. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */; };
  119. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */; };
  120. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */; };
  121. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */; };
  122. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */; };
  123. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */; };
  124. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */; };
  125. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */; };
  126. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */; };
  127. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */; };
  128. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */; };
  129. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */; };
  130. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */; };
  131. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */; };
  132. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */; };
  133. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */; };
  134. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */; };
  135. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */; };
  136. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */; };
  137. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */; };
  138. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */; };
  139. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */; };
  140. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */; };
  141. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */; };
  142. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */; };
  143. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */; };
  144. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */; };
  145. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EEA1F470D9100BBEE4B /* symbols.cmake */; };
  146. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */; };
  147. F73B4F791E8D3BF800A97F07 /* CCMainTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */; };
  148. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  149. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  150. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  151. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  152. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  153. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  154. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  155. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  156. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  157. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  158. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  159. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  160. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  161. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  162. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  163. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  164. F73CCE261DC13788007E38D8 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */; };
  165. F73CCE301DC13798007E38D8 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  166. F73CCE321DC13798007E38D8 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  167. F73D71621F2673C200E233EB /* NCText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D71611F2673C200E233EB /* NCText.swift */; };
  168. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D71631F2674A400E233EB /* NCText.storyboard */; };
  169. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* CCMore.swift */; };
  170. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  171. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  172. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  173. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  174. F7434B3A20E2403500417916 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  175. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  176. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  177. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  178. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  179. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  180. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  181. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  182. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  183. F7434B4320E2405900417916 /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  184. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  185. F7434B4520E2406400417916 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  186. F7434B4620E2406900417916 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  187. F7434B4720E2406C00417916 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  188. F7434B4820E2407000417916 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  189. F7434B4920E2407300417916 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  190. F7434B4A20E2407600417916 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  191. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  192. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  193. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  194. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  195. F7434B4F20E2408E00417916 /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  196. F7434B5020E2409100417916 /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  197. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  198. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  199. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  200. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  201. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  202. F7434B5620E2412900417916 /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  203. F7434B5720E2416800417916 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  204. F7434B5820E241B100417916 /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  205. F7434B5920E241B600417916 /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  206. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  207. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  208. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  209. F7434B5D20E241E800417916 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  210. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  211. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  212. F7434B6120E2445C00417916 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  213. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  214. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  215. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  216. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  217. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  218. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 /* ALView+PureLayout.m */; };
  219. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */; };
  220. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */; };
  221. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  222. F75797AE1E81356C00187A1B /* CTAssetsPicker.strings in Resources */ = {isa = PBXBuildFile; fileRef = F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */; };
  223. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  224. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */; };
  225. F75AE3C71E9D12900088BB09 /* SwiftyAvatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */; };
  226. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */; };
  227. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */; };
  228. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA41EACB66200B38484 /* XLFormBaseCell.m */; };
  229. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA61EACB66200B38484 /* XLFormButtonCell.m */; };
  230. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA81EACB66200B38484 /* XLFormCheckCell.m */; };
  231. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAA1EACB66200B38484 /* XLFormDateCell.m */; };
  232. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */; };
  233. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAF1EACB66200B38484 /* XLFormImageCell.m */; };
  234. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */; };
  235. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */; };
  236. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB61EACB66200B38484 /* XLFormPickerCell.m */; };
  237. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */; };
  238. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */; };
  239. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABC1EACB66200B38484 /* XLFormSliderCell.m */; };
  240. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */; };
  241. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */; };
  242. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */; };
  243. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */; };
  244. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */; };
  245. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */; };
  246. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACC1EACB66200B38484 /* XLFormViewController.m */; };
  247. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACF1EACB66200B38484 /* XLFormDescriptor.m */; };
  248. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */; };
  249. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */; };
  250. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */; };
  251. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */; };
  252. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */; };
  253. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */; };
  254. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */; };
  255. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */; };
  256. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */; };
  257. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */; };
  258. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */; };
  259. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEA1EACB66200B38484 /* XLFormTextView.m */; };
  260. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */; };
  261. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */; };
  262. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF11EACB66200B38484 /* XLFormValidator.m */; };
  263. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF41EACB66200B38484 /* XLForm.m */; };
  264. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F762CAF51EACB66200B38484 /* XLForm.bundle */; };
  265. F762CB861EACB81000B38484 /* RECommonFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB7D1EACB81000B38484 /* RECommonFunctions.m */; };
  266. F762CB871EACB81000B38484 /* REMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB7F1EACB81000B38484 /* REMenu.m */; };
  267. F762CB881EACB81000B38484 /* REMenuContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB811EACB81000B38484 /* REMenuContainerView.m */; };
  268. F762CB891EACB81000B38484 /* REMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB831EACB81000B38484 /* REMenuItem.m */; };
  269. F762CB8A1EACB81000B38484 /* REMenuItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB851EACB81000B38484 /* REMenuItemView.m */; };
  270. F762CB951EACB84400B38484 /* icon-error.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8D1EACB84400B38484 /* icon-error.png */; };
  271. F762CB961EACB84400B38484 /* icon-error@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8E1EACB84400B38484 /* icon-error@2x.png */; };
  272. F762CB971EACB84400B38484 /* icon-info.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8F1EACB84400B38484 /* icon-info.png */; };
  273. F762CB981EACB84400B38484 /* icon-info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB901EACB84400B38484 /* icon-info@2x.png */; };
  274. F762CB991EACB84400B38484 /* icon-success.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB911EACB84400B38484 /* icon-success.png */; };
  275. F762CB9A1EACB84400B38484 /* icon-success@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB921EACB84400B38484 /* icon-success@2x.png */; };
  276. F762CB9B1EACB84400B38484 /* TWMessageBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB941EACB84400B38484 /* TWMessageBarManager.m */; };
  277. F7659A271DC0B726004860C4 /* EAIntroPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A231DC0B726004860C4 /* EAIntroPage.m */; };
  278. F7659A291DC0B726004860C4 /* EAIntroView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A251DC0B726004860C4 /* EAIntroView.m */; };
  279. F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */; };
  280. F7659A371DC0B737004860C4 /* iRate.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F7659A311DC0B737004860C4 /* iRate.bundle */; };
  281. F7659A391DC0B737004860C4 /* iRate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A331DC0B737004860C4 /* iRate.m */; };
  282. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  283. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  284. F76F23341ED4603700C40023 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = F76F23331ED4603700C40023 /* LaunchScreen.xib */; };
  285. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  286. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  287. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  288. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  289. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  290. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  291. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  292. F771E3F920E239B500AFB62D /* FileProviderExtension+Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F620E239B400AFB62D /* FileProviderExtension+Network.swift */; };
  293. F771E3FD20E23BA700AFB62D /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  294. F771E3FE20E23BAB00AFB62D /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  295. F771E3FF20E23C3A00AFB62D /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  296. F771E40020E23C3D00AFB62D /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  297. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */; };
  298. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */; };
  299. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */; };
  300. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */; };
  301. F77B0DF41D118A16002130FE /* CCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E /* CCMain.m */; };
  302. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  303. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  304. F77B0E031D118A16002130FE /* CCShareInfoCMOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */; };
  305. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  306. F77B0E131D118A16002130FE /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A582D61A24DAB500E903D7 /* AppDelegate.m */; };
  307. F77B0E141D118A16002130FE /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  308. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  309. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  310. F77B0E201D118A16002130FE /* CCShareUserOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F78316871C0CB3CA00C43975 /* CCShareUserOC.m */; };
  311. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 /* CCManageLocation.m */; };
  312. F77B0E231D118A16002130FE /* CCSharePermissionOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */; };
  313. F77B0E301D118A16002130FE /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  314. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  315. F77B0E411D118A16002130FE /* CCSplit.m in Sources */ = {isa = PBXBuildFile; fileRef = F792A77C1BC7C45400C9388E /* CCSplit.m */; };
  316. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D0E65F1BC5042E008D989A /* CCDetail.m */; };
  317. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  318. F77B0E541D118A16002130FE /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  319. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
  320. F77B0E631D118A16002130FE /* CCShareOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */; };
  321. F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  322. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  323. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
  324. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  325. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  326. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  327. F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  328. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
  329. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  330. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
  331. F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
  332. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
  333. F77B0F0E1D118A16002130FE /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  334. F77B0F181D118A16002130FE /* Intro.strings in Resources */ = {isa = PBXBuildFile; fileRef = F744BE9F1BEBB69F004FFF66 /* Intro.strings */; };
  335. F77B0F2F1D118A16002130FE /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  336. F77B0F481D118A16002130FE /* synchronized.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 /* synchronized.gif */; };
  337. F77B0F4D1D118A16002130FE /* CCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F768EB021BFB7EA900B6E341 /* CCShare.storyboard */; };
  338. F77B0F551D118A16002130FE /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  339. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 /* synchronizedcrypto.gif */; };
  340. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  341. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  342. F77B0F671D118A16002130FE /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */; };
  343. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  344. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E /* CCCellMain.xib */; };
  345. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */; };
  346. F77D49A91DC238E500CDC568 /* loading@2x.gif in Resources */ = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 /* loading@2x.gif */; };
  347. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  348. F77EB62A1EC0B50A003F814F /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  349. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  350. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  351. F78071211EDB135100EAFFF6 /* CCPhotos.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071201EDB135100EAFFF6 /* CCPhotos.m */; };
  352. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  353. F78964AD1EBB576C00403E13 /* JDStatusBarNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */; };
  354. F78964AE1EBB576C00403E13 /* JDStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */; };
  355. F78964AF1EBB576C00403E13 /* JDStatusBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964AC1EBB576C00403E13 /* JDStatusBarView.m */; };
  356. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */; };
  357. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3214F1E9E2A070069AD1B /* CCFavorites.m */; };
  358. F7A321651E9E37960069AD1B /* CCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321641E9E37960069AD1B /* CCActivity.m */; };
  359. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */; };
  360. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  361. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377141EB2364A002856D3 /* Crashlytics.framework */; };
  362. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377151EB2364A002856D3 /* Fabric.framework */; };
  363. F7A5541E204EF8AF008468EC /* TOScrollBarGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A55418204EF8AF008468EC /* TOScrollBarGestureRecognizer.m */; };
  364. F7A5541F204EF8AF008468EC /* TOScrollBar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A5541B204EF8AF008468EC /* TOScrollBar.m */; };
  365. F7A55420204EF8AF008468EC /* UIScrollView+TOScrollBar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A5541D204EF8AF008468EC /* UIScrollView+TOScrollBar.m */; };
  366. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */; };
  367. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */; };
  368. F7B1FBC41E72E3D1001781FE /* Media.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7B1FBB11E72E3D1001781FE /* Media.xcassets */; };
  369. F7B1FBC61E72E3D1001781FE /* SwiftModalWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */; };
  370. F7B1FBC71E72E3D1001781FE /* SwiftWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */; };
  371. F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */; };
  372. F7B1FBC91E72E3D1001781FE /* SwiftWebVCActivityChrome.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */; };
  373. F7B1FBCA1E72E3D1001781FE /* SwiftWebVCActivitySafari.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */; };
  374. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */; };
  375. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F7B2DEED1F976785007CF4D2 /* english.txt */; };
  376. F7B3A4EE1E97818A000DACE8 /* CCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */; };
  377. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B4F1C81F44356F00B53B42 /* NCUchardet.m */; };
  378. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  379. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  380. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  381. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  382. F7BB14961D5B62C000ECEE68 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  383. F7BB14971D5B62C000ECEE68 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  384. F7BE6E2F1D2D5C3B00106933 /* CCQuickActions.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */; };
  385. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 /* CCLogin.m */; };
  386. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C /* CCNotification.swift */; };
  387. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */; };
  388. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */; };
  389. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */; };
  390. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */; };
  391. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */; };
  392. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */; };
  393. F7CA1ED520E7E3FE002CC65E /* .gitkeep in Resources */ = {isa = PBXBuildFile; fileRef = F7CA1EC520E7E3FE002CC65E /* .gitkeep */; };
  394. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */; };
  395. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */; };
  396. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */; };
  397. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */; };
  398. F7D423331F0596AC009C9782 /* AppIcon-076.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423161F0596AC009C9782 /* AppIcon-076.png */; };
  399. F7D423341F0596AC009C9782 /* AppIcon-120.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423171F0596AC009C9782 /* AppIcon-120.png */; };
  400. F7D423351F0596AC009C9782 /* AppIcon-152.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423181F0596AC009C9782 /* AppIcon-152.png */; };
  401. F7D423361F0596AC009C9782 /* AppIcon-167.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423191F0596AC009C9782 /* AppIcon-167.png */; };
  402. F7D423371F0596AC009C9782 /* AppIcon-180.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231A1F0596AC009C9782 /* AppIcon-180.png */; };
  403. F7D423381F0596AC009C9782 /* Reader-Button-H.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */; };
  404. F7D423391F0596AC009C9782 /* Reader-Button-H@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */; };
  405. F7D4233A1F0596AC009C9782 /* Reader-Button-H@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */; };
  406. F7D4233B1F0596AC009C9782 /* Reader-Button-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */; };
  407. F7D4233C1F0596AC009C9782 /* Reader-Button-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */; };
  408. F7D4233D1F0596AC009C9782 /* Reader-Button-N@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */; };
  409. F7D4233E1F0596AC009C9782 /* Reader-Email.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423211F0596AC009C9782 /* Reader-Email.png */; };
  410. F7D4233F1F0596AC009C9782 /* Reader-Email@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423221F0596AC009C9782 /* Reader-Email@2x.png */; };
  411. F7D423401F0596AC009C9782 /* Reader-Email@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423231F0596AC009C9782 /* Reader-Email@3x.png */; };
  412. F7D423411F0596AC009C9782 /* Reader-Export.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423241F0596AC009C9782 /* Reader-Export.png */; };
  413. F7D423421F0596AC009C9782 /* Reader-Export@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423251F0596AC009C9782 /* Reader-Export@2x.png */; };
  414. F7D423431F0596AC009C9782 /* Reader-Export@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423261F0596AC009C9782 /* Reader-Export@3x.png */; };
  415. F7D423441F0596AC009C9782 /* Reader-Mark-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423271F0596AC009C9782 /* Reader-Mark-N.png */; };
  416. F7D423451F0596AC009C9782 /* Reader-Mark-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */; };
  417. F7D423461F0596AC009C9782 /* Reader-Mark-N@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */; };
  418. F7D423471F0596AC009C9782 /* Reader-Mark-Y.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */; };
  419. F7D423481F0596AC009C9782 /* Reader-Mark-Y@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */; };
  420. F7D423491F0596AC009C9782 /* Reader-Mark-Y@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */; };
  421. F7D4234A1F0596AC009C9782 /* Reader-Print.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232D1F0596AC009C9782 /* Reader-Print.png */; };
  422. F7D4234B1F0596AC009C9782 /* Reader-Print@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */; };
  423. F7D4234C1F0596AC009C9782 /* Reader-Print@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */; };
  424. F7D4234D1F0596AC009C9782 /* Reader-Thumbs.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423301F0596AC009C9782 /* Reader-Thumbs.png */; };
  425. F7D4234E1F0596AC009C9782 /* Reader-Thumbs@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */; };
  426. F7D4234F1F0596AC009C9782 /* Reader-Thumbs@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */; };
  427. F7D423791F0596C6009C9782 /* CGPDFDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423521F0596C6009C9782 /* CGPDFDocument.m */; };
  428. F7D4237A1F0596C6009C9782 /* ReaderConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423541F0596C6009C9782 /* ReaderConstants.m */; };
  429. F7D4237B1F0596C6009C9782 /* ReaderContentPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423561F0596C6009C9782 /* ReaderContentPage.m */; };
  430. F7D4237C1F0596C6009C9782 /* ReaderContentTile.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423581F0596C6009C9782 /* ReaderContentTile.m */; };
  431. F7D4237D1F0596C6009C9782 /* ReaderContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235A1F0596C6009C9782 /* ReaderContentView.m */; };
  432. F7D4237E1F0596C6009C9782 /* ReaderDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235C1F0596C6009C9782 /* ReaderDocument.m */; };
  433. F7D4237F1F0596C6009C9782 /* ReaderDocumentOutline.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */; };
  434. F7D423801F0596C6009C9782 /* ReaderMainPagebar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */; };
  435. F7D423811F0596C6009C9782 /* ReaderMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */; };
  436. F7D423821F0596C6009C9782 /* ReaderThumbCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423641F0596C6009C9782 /* ReaderThumbCache.m */; };
  437. F7D423831F0596C6009C9782 /* ReaderThumbFetch.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */; };
  438. F7D423841F0596C6009C9782 /* ReaderThumbQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */; };
  439. F7D423851F0596C6009C9782 /* ReaderThumbRender.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */; };
  440. F7D423861F0596C6009C9782 /* ReaderThumbRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */; };
  441. F7D423871F0596C6009C9782 /* ReaderThumbsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */; };
  442. F7D423881F0596C6009C9782 /* ReaderThumbView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423701F0596C6009C9782 /* ReaderThumbView.m */; };
  443. F7D423891F0596C6009C9782 /* ReaderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423721F0596C6009C9782 /* ReaderViewController.m */; };
  444. F7D4238A1F0596C6009C9782 /* ThumbsMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */; };
  445. F7D4238B1F0596C6009C9782 /* ThumbsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423761F0596C6009C9782 /* ThumbsViewController.m */; };
  446. F7D4238C1F0596C6009C9782 /* UIXToolbarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423781F0596C6009C9782 /* UIXToolbarView.m */; };
  447. F7D424531F063B82009C9782 /* NSBundle+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423A81F063B81009C9782 /* NSBundle+CTAssetsPickerController.m */; };
  448. F7D424541F063B82009C9782 /* NSDateFormatter+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423AA1F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.m */; };
  449. F7D424551F063B82009C9782 /* NSIndexSet+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423AC1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.m */; };
  450. F7D424561F063B82009C9782 /* NSNumberFormatter+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423AE1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.m */; };
  451. F7D424571F063B82009C9782 /* PHAsset+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B01F063B81009C9782 /* PHAsset+CTAssetsPickerController.m */; };
  452. F7D424581F063B82009C9782 /* PHAssetCollection+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B21F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.m */; };
  453. F7D424591F063B82009C9782 /* PHImageManager+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B41F063B81009C9782 /* PHImageManager+CTAssetsPickerController.m */; };
  454. F7D4245A1F063B82009C9782 /* UICollectionView+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B61F063B81009C9782 /* UICollectionView+CTAssetsPickerController.m */; };
  455. F7D4245B1F063B82009C9782 /* UIImage+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B81F063B81009C9782 /* UIImage+CTAssetsPickerController.m */; };
  456. F7D4245C1F063B82009C9782 /* CTAssetCheckmark.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423BA1F063B81009C9782 /* CTAssetCheckmark.m */; };
  457. F7D4245D1F063B82009C9782 /* CTAssetCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423BC1F063B81009C9782 /* CTAssetCollectionViewCell.m */; };
  458. F7D4245E1F063B82009C9782 /* CTAssetCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423BE1F063B81009C9782 /* CTAssetCollectionViewController.m */; };
  459. F7D4245F1F063B82009C9782 /* CTAssetItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C01F063B81009C9782 /* CTAssetItemViewController.m */; };
  460. F7D424601F063B82009C9782 /* CTAssetPlayButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C21F063B81009C9782 /* CTAssetPlayButton.m */; };
  461. F7D424611F063B82009C9782 /* CTAssetScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C41F063B81009C9782 /* CTAssetScrollView.m */; };
  462. F7D424621F063B82009C9782 /* CTAssetSelectionButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C61F063B81009C9782 /* CTAssetSelectionButton.m */; };
  463. F7D424631F063B82009C9782 /* CTAssetSelectionLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C81F063B81009C9782 /* CTAssetSelectionLabel.m */; };
  464. F7D424641F063B82009C9782 /* CTAssetsGridSelectedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423CA1F063B81009C9782 /* CTAssetsGridSelectedView.m */; };
  465. F7D424651F063B82009C9782 /* CTAssetsGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423CC1F063B81009C9782 /* CTAssetsGridView.m */; };
  466. F7D424661F063B82009C9782 /* CTAssetsGridViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423CE1F063B81009C9782 /* CTAssetsGridViewCell.m */; };
  467. F7D424671F063B82009C9782 /* CTAssetsGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D01F063B81009C9782 /* CTAssetsGridViewController.m */; };
  468. F7D424681F063B82009C9782 /* CTAssetsGridViewFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D21F063B81009C9782 /* CTAssetsGridViewFooter.m */; };
  469. F7D424691F063B82009C9782 /* CTAssetsGridViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D41F063B81009C9782 /* CTAssetsGridViewLayout.m */; };
  470. F7D4246A1F063B82009C9782 /* CTAssetsNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D61F063B82009C9782 /* CTAssetsNavigationController.m */; };
  471. F7D4246B1F063B82009C9782 /* CTAssetsPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D81F063B82009C9782 /* CTAssetsPageView.m */; };
  472. F7D4246C1F063B82009C9782 /* CTAssetsPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423DA1F063B82009C9782 /* CTAssetsPageViewController.m */; };
  473. F7D4246D1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423DC1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m */; };
  474. F7D4246E1F063B82009C9782 /* CTAssetsPickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F7D423DD1F063B82009C9782 /* CTAssetsPickerController.bundle */; };
  475. F7D4246F1F063B82009C9782 /* CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423DF1F063B82009C9782 /* CTAssetsPickerController.m */; };
  476. F7D424701F063B82009C9782 /* CTAssetsPickerNoAssetsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423E21F063B82009C9782 /* CTAssetsPickerNoAssetsView.m */; };
  477. F7D424711F063B82009C9782 /* CTAssetsViewControllerTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423E41F063B82009C9782 /* CTAssetsViewControllerTransition.m */; };
  478. F7D424721F063B82009C9782 /* CTAssetThumbnailOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423E61F063B82009C9782 /* CTAssetThumbnailOverlay.m */; };
  479. F7D424731F063B82009C9782 /* CTAssetThumbnailStacks.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423E81F063B82009C9782 /* CTAssetThumbnailStacks.m */; };
  480. F7D424741F063B82009C9782 /* CTAssetThumbnailView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423EA1F063B82009C9782 /* CTAssetThumbnailView.m */; };
  481. F7DC5FEC1F011EB700A903C7 /* MGSwipeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */; };
  482. F7DC5FED1F011EB700A903C7 /* MGSwipeTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */; };
  483. F7DFE2521EBDC3A400CF5202 /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  484. F7DFE2541EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  485. F7DFE2551EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  486. F7DFE2571EBDC52E00CF5202 /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  487. F7DFE2581EBDC52E00CF5202 /* Realm.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  488. F7DFE25A1EBDC53200CF5202 /* RealmSwift.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  489. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E9C41820F4CA870040CF18 /* CCTransfers.m */; };
  490. F7ECBA6D1E239DCD003E6328 /* CCCreateCloud.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */; };
  491. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CAF1E5B14C700E19C62 /* ImageError.png */; };
  492. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */; };
  493. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */; };
  494. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */; };
  495. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */; };
  496. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */; };
  497. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */; };
  498. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */; };
  499. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */; };
  500. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */; };
  501. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */; };
  502. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */; };
  503. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */; };
  504. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */; };
  505. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */; };
  506. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */; };
  507. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */; };
  508. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */; };
  509. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */; };
  510. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */; };
  511. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */; };
  512. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */; };
  513. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */; };
  514. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */; };
  515. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */; };
  516. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */; };
  517. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */; };
  518. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */; };
  519. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */; };
  520. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */; };
  521. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */; };
  522. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */; };
  523. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */; };
  524. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */; };
  525. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD81E5B14C700E19C62 /* MWPhoto.m */; };
  526. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */; };
  527. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */; };
  528. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */; };
  529. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */; };
  530. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */; };
  531. F7F801031D98205A007537BC /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  532. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  533. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  534. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */; };
  535. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */; };
  536. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A /* libz.tbd */; };
  537. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */; };
  538. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */; };
  539. /* End PBXBuildFile section */
  540. /* Begin PBXContainerItemProxy section */
  541. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  542. isa = PBXContainerItemProxy;
  543. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  544. proxyType = 1;
  545. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  546. remoteInfo = "Share Ext Nextcloud";
  547. };
  548. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  549. isa = PBXContainerItemProxy;
  550. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  551. proxyType = 1;
  552. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  553. remoteInfo = "File Provider Extension";
  554. };
  555. /* End PBXContainerItemProxy section */
  556. /* Begin PBXCopyFilesBuildPhase section */
  557. F75A3FFF1EBCB55B00B213E8 /* Embed Frameworks */ = {
  558. isa = PBXCopyFilesBuildPhase;
  559. buildActionMask = 2147483647;
  560. dstPath = "";
  561. dstSubfolderSpec = 10;
  562. files = (
  563. F7DFE25A1EBDC53200CF5202 /* RealmSwift.framework in Embed Frameworks */,
  564. F7DFE2581EBDC52E00CF5202 /* Realm.framework in Embed Frameworks */,
  565. );
  566. name = "Embed Frameworks";
  567. runOnlyForDeploymentPostprocessing = 0;
  568. };
  569. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  570. isa = PBXCopyFilesBuildPhase;
  571. buildActionMask = 2147483647;
  572. dstPath = "";
  573. dstSubfolderSpec = 13;
  574. files = (
  575. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */,
  576. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  577. );
  578. name = "Embed App Extensions";
  579. runOnlyForDeploymentPostprocessing = 0;
  580. };
  581. /* End PBXCopyFilesBuildPhase section */
  582. /* Begin PBXFileReference section */
  583. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  584. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  585. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  586. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  587. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  588. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  589. F70022591EC4C9100080073F /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
  590. F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
  591. F700225B1EC4C9100080073F /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
  592. F700225C1EC4C9100080073F /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
  593. F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
  594. F700225E1EC4C9100080073F /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
  595. F700225F1EC4C9100080073F /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
  596. F70022601EC4C9100080073F /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
  597. F70022611EC4C9100080073F /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
  598. F70022621EC4C9100080073F /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
  599. F70022631EC4C9100080073F /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
  600. F70022641EC4C9100080073F /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
  601. F70022651EC4C9100080073F /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
  602. F70022661EC4C9100080073F /* OCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCActivity.h; sourceTree = "<group>"; };
  603. F70022671EC4C9100080073F /* OCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCActivity.m; sourceTree = "<group>"; };
  604. F70022681EC4C9100080073F /* OCCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCapabilities.h; sourceTree = "<group>"; };
  605. F70022691EC4C9100080073F /* OCCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCapabilities.m; sourceTree = "<group>"; };
  606. F700226A1EC4C9100080073F /* OCCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCommunication.h; sourceTree = "<group>"; };
  607. F700226B1EC4C9100080073F /* OCCommunication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCommunication.m; sourceTree = "<group>"; };
  608. F700226C1EC4C9100080073F /* OCErrorMsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCErrorMsg.h; sourceTree = "<group>"; };
  609. F700226D1EC4C9100080073F /* OCExternalSites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCExternalSites.h; sourceTree = "<group>"; };
  610. F700226E1EC4C9100080073F /* OCExternalSites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCExternalSites.m; sourceTree = "<group>"; };
  611. F700226F1EC4C9100080073F /* OCFileDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFileDto.h; sourceTree = "<group>"; };
  612. F70022701EC4C9100080073F /* OCFileDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCFileDto.m; sourceTree = "<group>"; };
  613. F70022711EC4C9100080073F /* OCFrameworkConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFrameworkConstants.h; sourceTree = "<group>"; };
  614. F70022721EC4C9100080073F /* OCNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotifications.h; sourceTree = "<group>"; };
  615. F70022731EC4C9100080073F /* OCNotifications.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotifications.m; sourceTree = "<group>"; };
  616. F70022741EC4C9100080073F /* OCNotificationsAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotificationsAction.h; sourceTree = "<group>"; };
  617. F70022751EC4C9100080073F /* OCNotificationsAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotificationsAction.m; sourceTree = "<group>"; };
  618. F70022761EC4C9100080073F /* OCRichObjectStrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCRichObjectStrings.h; sourceTree = "<group>"; };
  619. F70022771EC4C9100080073F /* OCRichObjectStrings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCRichObjectStrings.m; sourceTree = "<group>"; };
  620. F70022781EC4C9100080073F /* OCSharedDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCSharedDto.h; sourceTree = "<group>"; };
  621. F70022791EC4C9100080073F /* OCSharedDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCSharedDto.m; sourceTree = "<group>"; };
  622. F700227A1EC4C9100080073F /* OCShareUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCShareUser.h; sourceTree = "<group>"; };
  623. F700227B1EC4C9100080073F /* OCShareUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCShareUser.m; sourceTree = "<group>"; };
  624. F700227C1EC4C9100080073F /* OCUserProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCUserProfile.h; sourceTree = "<group>"; };
  625. F700227D1EC4C9100080073F /* OCUserProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCUserProfile.m; sourceTree = "<group>"; };
  626. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+ISO8601.h"; sourceTree = "<group>"; };
  627. F70022801EC4C9100080073F /* NSDate+ISO8601.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+ISO8601.m"; sourceTree = "<group>"; };
  628. F70022811EC4C9100080073F /* NSDate+RFC1123.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+RFC1123.h"; sourceTree = "<group>"; };
  629. F70022821EC4C9100080073F /* NSDate+RFC1123.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+RFC1123.m"; sourceTree = "<group>"; };
  630. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCHTTPRequestOperation.h; sourceTree = "<group>"; };
  631. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCHTTPRequestOperation.m; sourceTree = "<group>"; };
  632. F70022851EC4C9100080073F /* OCWebDAVClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCWebDAVClient.h; sourceTree = "<group>"; };
  633. F70022861EC4C9100080073F /* OCWebDAVClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCWebDAVClient.m; sourceTree = "<group>"; };
  634. F70022881EC4C9100080073F /* OCXMLListParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLListParser.h; sourceTree = "<group>"; };
  635. F70022891EC4C9100080073F /* OCXMLListParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLListParser.m; sourceTree = "<group>"; };
  636. F700228A1EC4C9100080073F /* OCXMLParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLParser.h; sourceTree = "<group>"; };
  637. F700228B1EC4C9100080073F /* OCXMLParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLParser.m; sourceTree = "<group>"; };
  638. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLServerErrorsParser.h; sourceTree = "<group>"; };
  639. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLServerErrorsParser.m; sourceTree = "<group>"; };
  640. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLShareByLinkParser.h; sourceTree = "<group>"; };
  641. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLShareByLinkParser.m; sourceTree = "<group>"; };
  642. F70022901EC4C9100080073F /* OCXMLSharedParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLSharedParser.h; sourceTree = "<group>"; };
  643. F70022911EC4C9100080073F /* OCXMLSharedParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLSharedParser.m; sourceTree = "<group>"; };
  644. F700229C1EC4C9100080073F /* NSString+Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Encode.h"; sourceTree = "<group>"; };
  645. F700229D1EC4C9100080073F /* NSString+Encode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Encode.m"; sourceTree = "<group>"; };
  646. F700229E1EC4C9100080073F /* OCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCConstants.h; sourceTree = "<group>"; };
  647. F700229F1EC4C9100080073F /* UtilsFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsFramework.h; sourceTree = "<group>"; };
  648. F70022A01EC4C9100080073F /* UtilsFramework.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UtilsFramework.m; sourceTree = "<group>"; };
  649. F70211F51BAC56E9003FC03E /* CCCellMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
  650. F70211F61BAC56E9003FC03E /* CCCellMain.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
  651. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
  652. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
  653. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
  654. F70211FA1BAC56E9003FC03E /* CCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
  655. F70211FB1BAC56E9003FC03E /* CCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMain.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  656. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  657. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  658. F70A07C5205285FA00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  659. F70A07C6205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  660. F70A07C7205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  661. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  662. F70A07C9205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  663. F70A07CA205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Intro.strings"; sourceTree = "<group>"; };
  664. F70A07CB205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Error.strings"; sourceTree = "<group>"; };
  665. F70A63061D5B3467004E2AA5 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
  666. F70A63071D5B3467004E2AA5 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
  667. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  668. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  669. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  670. F70F02B31C889183008DAB36 /* AFViewShaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFViewShaker.h; sourceTree = "<group>"; };
  671. F70F02B41C889183008DAB36 /* AFViewShaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
  672. F70F04831C889183008DAB36 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
  673. F70F04841C889183008DAB36 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
  674. F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  675. F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  676. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  677. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  678. F710E80D1EF95C9C00DC2427 /* CCIntro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCIntro.h; sourceTree = "<group>"; };
  679. F710E80E1EF95C9C00DC2427 /* CCIntro.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCIntro.m; sourceTree = "<group>"; };
  680. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  681. F7151A801D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  682. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  683. F7151A821D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  684. F7151A831D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intro.strings; sourceTree = "<group>"; };
  685. F7151A841D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Error.strings; sourceTree = "<group>"; };
  686. F7169A171EE590930086BD69 /* NCShares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCShares.h; sourceTree = "<group>"; };
  687. F7169A181EE590930086BD69 /* NCShares.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCShares.m; sourceTree = "<group>"; };
  688. F7169A191EE590930086BD69 /* NCSharesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSharesCell.h; sourceTree = "<group>"; };
  689. F7169A1A1EE590930086BD69 /* NCSharesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSharesCell.m; sourceTree = "<group>"; };
  690. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSharesCell.xib; sourceTree = "<group>"; };
  691. F7169A2D1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  692. F7169A2E1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  693. F7169A2F1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  694. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  695. F7169A311EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  696. F7169A321EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intro.strings; sourceTree = "<group>"; };
  697. F7169A331EE59BB80086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Error.strings; sourceTree = "<group>"; };
  698. F7169A491EE59C630086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  699. F7169A4A1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  700. F7169A4B1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  701. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  702. F7169A4D1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  703. F7169A4E1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Intro.strings; sourceTree = "<group>"; };
  704. F7169A4F1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Error.strings; sourceTree = "<group>"; };
  705. F720E01E1E48C73E001A4B9E /* CCActions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; lineEnding = 0; name = CCActions.swift; path = Actions/CCActions.swift; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
  706. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  707. F7229B491DF71BB300E8C4E7 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
  708. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  709. F7296A661C8880ED001A7809 /* CCloadItemData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
  710. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheet.h; sourceTree = "<group>"; };
  711. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheet.m; sourceTree = "<group>"; };
  712. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheetViewController.h; sourceTree = "<group>"; };
  713. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheetViewController.m; sourceTree = "<group>"; };
  714. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
  715. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
  716. F7320931201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  717. F7320932201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  718. F7320933201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  719. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  720. F7320935201B8130008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  721. F7320936201B8130008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Intro.strings; sourceTree = "<group>"; };
  722. F7320937201B8130008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Error.strings; sourceTree = "<group>"; };
  723. F7320938201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  724. F7320939201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  725. F732093A201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  726. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  727. F732093C201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  728. F732093D201B81E5008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Intro.strings"; sourceTree = "<group>"; };
  729. F732093E201B81E5008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Error.strings"; sourceTree = "<group>"; };
  730. F732B3361E8045A1002B7D75 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  731. F732BA031D76CE1500E9878B /* CCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
  732. F732BA041D76CE1500E9878B /* CCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
  733. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCManageEndToEndEncryption.h; sourceTree = "<group>"; };
  734. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCManageEndToEndEncryption.m; sourceTree = "<group>"; };
  735. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Big5Freq.tab; sourceTree = "<group>"; };
  736. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CharDistribution.cpp; sourceTree = "<group>"; };
  737. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CharDistribution.h; sourceTree = "<group>"; };
  738. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
  739. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCKRFreq.tab; sourceTree = "<group>"; };
  740. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCTWFreq.tab; sourceTree = "<group>"; };
  741. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GB2312Freq.tab; sourceTree = "<group>"; };
  742. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = JISFreq.tab; sourceTree = "<group>"; };
  743. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JpCntx.cpp; sourceTree = "<group>"; };
  744. F73B4EB61F470D9100BBEE4B /* JpCntx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JpCntx.h; sourceTree = "<group>"; };
  745. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangArabicModel.cpp; sourceTree = "<group>"; };
  746. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangBulgarianModel.cpp; sourceTree = "<group>"; };
  747. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangDanishModel.cpp; sourceTree = "<group>"; };
  748. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangEsperantoModel.cpp; sourceTree = "<group>"; };
  749. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangFrenchModel.cpp; sourceTree = "<group>"; };
  750. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGermanModel.cpp; sourceTree = "<group>"; };
  751. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGreekModel.cpp; sourceTree = "<group>"; };
  752. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHebrewModel.cpp; sourceTree = "<group>"; };
  753. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHungarianModel.cpp; sourceTree = "<group>"; };
  754. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangRussianModel.cpp; sourceTree = "<group>"; };
  755. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangSpanishModel.cpp; sourceTree = "<group>"; };
  756. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangThaiModel.cpp; sourceTree = "<group>"; };
  757. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangTurkishModel.cpp; sourceTree = "<group>"; };
  758. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangVietnameseModel.cpp; sourceTree = "<group>"; };
  759. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsBig5Prober.cpp; sourceTree = "<group>"; };
  760. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsBig5Prober.h; sourceTree = "<group>"; };
  761. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsCharSetProber.cpp; sourceTree = "<group>"; };
  762. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCharSetProber.h; sourceTree = "<group>"; };
  763. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCodingStateMachine.h; sourceTree = "<group>"; };
  764. F73B4ECB1F470D9100BBEE4B /* nscore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nscore.h; sourceTree = "<group>"; };
  765. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscCharsetProber.cpp; sourceTree = "<group>"; };
  766. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEscCharsetProber.h; sourceTree = "<group>"; };
  767. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscSM.cpp; sourceTree = "<group>"; };
  768. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCJPProber.cpp; sourceTree = "<group>"; };
  769. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCJPProber.h; sourceTree = "<group>"; };
  770. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCKRProber.cpp; sourceTree = "<group>"; };
  771. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCKRProber.h; sourceTree = "<group>"; };
  772. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCTWProber.cpp; sourceTree = "<group>"; };
  773. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCTWProber.h; sourceTree = "<group>"; };
  774. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsGB2312Prober.cpp; sourceTree = "<group>"; };
  775. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsGB2312Prober.h; sourceTree = "<group>"; };
  776. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsHebrewProber.cpp; sourceTree = "<group>"; };
  777. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsHebrewProber.h; sourceTree = "<group>"; };
  778. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsLatin1Prober.cpp; sourceTree = "<group>"; };
  779. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsLatin1Prober.h; sourceTree = "<group>"; };
  780. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSGroupProber.cpp; sourceTree = "<group>"; };
  781. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsMBCSGroupProber.h; sourceTree = "<group>"; };
  782. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSSM.cpp; sourceTree = "<group>"; };
  783. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsPkgInt.h; sourceTree = "<group>"; };
  784. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCharSetProber.cpp; sourceTree = "<group>"; };
  785. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCharSetProber.h; sourceTree = "<group>"; };
  786. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCSGroupProber.cpp; sourceTree = "<group>"; };
  787. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCSGroupProber.h; sourceTree = "<group>"; };
  788. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSJISProber.cpp; sourceTree = "<group>"; };
  789. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSJISProber.h; sourceTree = "<group>"; };
  790. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUniversalDetector.cpp; sourceTree = "<group>"; };
  791. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUniversalDetector.h; sourceTree = "<group>"; };
  792. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUTF8Prober.cpp; sourceTree = "<group>"; };
  793. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUTF8Prober.h; sourceTree = "<group>"; };
  794. F73B4EE91F470D9100BBEE4B /* prmem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prmem.h; sourceTree = "<group>"; };
  795. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = symbols.cmake; sourceTree = "<group>"; };
  796. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uchardet.cpp; sourceTree = "<group>"; };
  797. F73B4EED1F470D9100BBEE4B /* uchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchardet.h; sourceTree = "<group>"; };
  798. F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMainTabBarController.swift; sourceTree = "<group>"; };
  799. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  800. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeDummyViewController.h; sourceTree = "<group>"; };
  801. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeDummyViewController.m; sourceTree = "<group>"; };
  802. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeField.h; sourceTree = "<group>"; };
  803. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeField.m; sourceTree = "<group>"; };
  804. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeInputView.h; sourceTree = "<group>"; };
  805. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeInputView.m; sourceTree = "<group>"; };
  806. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeLockScreenManager.h; sourceTree = "<group>"; };
  807. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeLockScreenManager.m; sourceTree = "<group>"; };
  808. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeUtils.h; sourceTree = "<group>"; };
  809. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeViewController.h; sourceTree = "<group>"; };
  810. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeViewController.m; sourceTree = "<group>"; };
  811. F73CC0631E813DFF006E3047 /* BKShiftingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKShiftingView.h; sourceTree = "<group>"; };
  812. F73CC0641E813DFF006E3047 /* BKShiftingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKShiftingView.m; sourceTree = "<group>"; };
  813. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDManager.h; sourceTree = "<group>"; };
  814. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDManager.m; sourceTree = "<group>"; };
  815. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDSwitchView.h; sourceTree = "<group>"; };
  816. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDSwitchView.m; sourceTree = "<group>"; };
  817. F73CCE231DC13788007E38D8 /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+EmptyDataSet.h"; sourceTree = "<group>"; };
  818. F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+EmptyDataSet.m"; sourceTree = "<group>"; };
  819. F73CCE281DC13798007E38D8 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  820. F73CCE291DC13798007E38D8 /* UICKeyChainStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICKeyChainStore.h; sourceTree = "<group>"; };
  821. F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICKeyChainStore.m; sourceTree = "<group>"; };
  822. F73D71611F2673C200E233EB /* NCText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCText.swift; sourceTree = "<group>"; };
  823. F73D71631F2674A400E233EB /* NCText.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCText.storyboard; sourceTree = "<group>"; };
  824. F73F537E1E929C8500F8678D /* CCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMore.swift; sourceTree = "<group>"; };
  825. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  826. F743B2C31C95BBE8006F5B4A /* CCShareInfoCMOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareInfoCMOC.h; sourceTree = "<group>"; };
  827. F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareInfoCMOC.m; sourceTree = "<group>"; };
  828. F7496B81208F5651004B299C /* iOSClient.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
  829. F7496B83208F5652004B299C /* Share.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
  830. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
  831. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
  832. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCNetworkingEndToEnd.h; sourceTree = "<group>"; };
  833. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCNetworkingEndToEnd.m; sourceTree = "<group>"; };
  834. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
  835. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
  836. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
  837. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
  838. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
  839. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
  840. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
  841. F750374A1DBFA91A008FB480 /* PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
  842. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
  843. F7514EDA1C7B1336008F3338 /* CCHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
  844. F7514EDB1C7B1336008F3338 /* CCHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
  845. F7540EE21D5B238600C3FFA8 /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
  846. F7540EE31D5B238600C3FFA8 /* asn1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = "<group>"; };
  847. F7540EE41D5B238600C3FFA8 /* asn1_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = "<group>"; };
  848. F7540EE51D5B238600C3FFA8 /* asn1t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = "<group>"; };
  849. F7540EE61D5B238600C3FFA8 /* bio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = "<group>"; };
  850. F7540EE71D5B238600C3FFA8 /* blowfish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = "<group>"; };
  851. F7540EE81D5B238600C3FFA8 /* bn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = "<group>"; };
  852. F7540EE91D5B238600C3FFA8 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
  853. F7540EEA1D5B238600C3FFA8 /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = "<group>"; };
  854. F7540EEB1D5B238600C3FFA8 /* cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = "<group>"; };
  855. F7540EEC1D5B238600C3FFA8 /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = "<group>"; };
  856. F7540EED1D5B238600C3FFA8 /* cms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = "<group>"; };
  857. F7540EEE1D5B238600C3FFA8 /* comp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = "<group>"; };
  858. F7540EEF1D5B238600C3FFA8 /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
  859. F7540EF01D5B238600C3FFA8 /* conf_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = "<group>"; };
  860. F7540EF11D5B238600C3FFA8 /* crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = "<group>"; };
  861. F7540EF21D5B238600C3FFA8 /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
  862. F7540EF41D5B238600C3FFA8 /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = "<group>"; };
  863. F7540EF51D5B238600C3FFA8 /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = "<group>"; };
  864. F7540EF71D5B238600C3FFA8 /* dtls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = "<group>"; };
  865. F7540EF81D5B238600C3FFA8 /* e_os2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = "<group>"; };
  866. F7540EF91D5B238600C3FFA8 /* ebcdic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = "<group>"; };
  867. F7540EFA1D5B238600C3FFA8 /* ec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = "<group>"; };
  868. F7540EFB1D5B238600C3FFA8 /* ecdh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = "<group>"; };
  869. F7540EFC1D5B238600C3FFA8 /* ecdsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = "<group>"; };
  870. F7540EFD1D5B238600C3FFA8 /* engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = "<group>"; };
  871. F7540EFE1D5B238600C3FFA8 /* err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = "<group>"; };
  872. F7540EFF1D5B238600C3FFA8 /* evp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = "<group>"; };
  873. F7540F001D5B238600C3FFA8 /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
  874. F7540F011D5B238600C3FFA8 /* idea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = "<group>"; };
  875. F7540F041D5B238600C3FFA8 /* lhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = "<group>"; };
  876. F7540F051D5B238600C3FFA8 /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = "<group>"; };
  877. F7540F061D5B238600C3FFA8 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
  878. F7540F071D5B238600C3FFA8 /* mdc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = "<group>"; };
  879. F7540F081D5B238600C3FFA8 /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
  880. F7540F091D5B238600C3FFA8 /* obj_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = "<group>"; };
  881. F7540F0A1D5B238600C3FFA8 /* objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = "<group>"; };
  882. F7540F0B1D5B238600C3FFA8 /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = "<group>"; };
  883. F7540F0C1D5B238600C3FFA8 /* opensslconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = "<group>"; };
  884. F7540F0D1D5B238600C3FFA8 /* opensslv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = "<group>"; };
  885. F7540F0E1D5B238600C3FFA8 /* ossl_typ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = "<group>"; };
  886. F7540F0F1D5B238600C3FFA8 /* pem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = "<group>"; };
  887. F7540F101D5B238600C3FFA8 /* pem2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = "<group>"; };
  888. F7540F111D5B238600C3FFA8 /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = "<group>"; };
  889. F7540F121D5B238600C3FFA8 /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = "<group>"; };
  890. F7540F141D5B238600C3FFA8 /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
  891. F7540F151D5B238600C3FFA8 /* rc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = "<group>"; };
  892. F7540F161D5B238600C3FFA8 /* rc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = "<group>"; };
  893. F7540F171D5B238600C3FFA8 /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = "<group>"; };
  894. F7540F181D5B238600C3FFA8 /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = "<group>"; };
  895. F7540F191D5B238600C3FFA8 /* safestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = "<group>"; };
  896. F7540F1A1D5B238600C3FFA8 /* seed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = "<group>"; };
  897. F7540F1B1D5B238600C3FFA8 /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = "<group>"; };
  898. F7540F1C1D5B238600C3FFA8 /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = "<group>"; };
  899. F7540F1D1D5B238600C3FFA8 /* srtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = "<group>"; };
  900. F7540F1E1D5B238600C3FFA8 /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = "<group>"; };
  901. F7540F1F1D5B238600C3FFA8 /* ssl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = "<group>"; };
  902. F7540F211D5B238600C3FFA8 /* ssl3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = "<group>"; };
  903. F7540F221D5B238600C3FFA8 /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
  904. F7540F231D5B238600C3FFA8 /* symhacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = "<group>"; };
  905. F7540F241D5B238600C3FFA8 /* tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = "<group>"; };
  906. F7540F251D5B238600C3FFA8 /* ts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = "<group>"; };
  907. F7540F261D5B238600C3FFA8 /* txt_db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = "<group>"; };
  908. F7540F271D5B238600C3FFA8 /* ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = "<group>"; };
  909. F7540F291D5B238600C3FFA8 /* whrlpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = "<group>"; };
  910. F7540F2A1D5B238600C3FFA8 /* x509.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = "<group>"; };
  911. F7540F2B1D5B238600C3FFA8 /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
  912. F7540F2C1D5B238600C3FFA8 /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
  913. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  914. F75797AD1E81356C00187A1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  915. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  916. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
  917. F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftyAvatar.swift; sourceTree = "<group>"; };
  918. F75B91DF1ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  919. F75B91E01ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  920. F75B91E11ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  921. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  922. F75B91E31ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  923. F75B91E41ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Intro.strings; sourceTree = "<group>"; };
  924. F75B91E51ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Error.strings; sourceTree = "<group>"; };
  925. F75B91F41ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  926. F75B91F51ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  927. F75B91F61ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  928. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  929. F75B91F81ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  930. F75B91F91ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Intro.strings"; sourceTree = "<group>"; };
  931. F75B91FA1ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Error.strings"; sourceTree = "<group>"; };
  932. F75B923A1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  933. F75B923B1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  934. F75B923C1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  935. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  936. F75B923E1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  937. F75B923F1ECAE55F00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intro.strings; sourceTree = "<group>"; };
  938. F75B92401ECAE55F00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Error.strings; sourceTree = "<group>"; };
  939. F75CDBF51DF063AD00116AD0 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
  940. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  941. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  942. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormBaseCell.h; sourceTree = "<group>"; };
  943. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormBaseCell.m; sourceTree = "<group>"; };
  944. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormButtonCell.h; sourceTree = "<group>"; };
  945. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormButtonCell.m; sourceTree = "<group>"; };
  946. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormCheckCell.h; sourceTree = "<group>"; };
  947. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormCheckCell.m; sourceTree = "<group>"; };
  948. F762CAA91EACB66200B38484 /* XLFormDateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDateCell.h; sourceTree = "<group>"; };
  949. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDateCell.m; sourceTree = "<group>"; };
  950. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDatePickerCell.h; sourceTree = "<group>"; };
  951. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDatePickerCell.m; sourceTree = "<group>"; };
  952. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorCell.h; sourceTree = "<group>"; };
  953. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormImageCell.h; sourceTree = "<group>"; };
  954. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormImageCell.m; sourceTree = "<group>"; };
  955. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineRowDescriptorCell.h; sourceTree = "<group>"; };
  956. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineSelectorCell.h; sourceTree = "<group>"; };
  957. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormInlineSelectorCell.m; sourceTree = "<group>"; };
  958. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormLeftRightSelectorCell.h; sourceTree = "<group>"; };
  959. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormLeftRightSelectorCell.m; sourceTree = "<group>"; };
  960. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormPickerCell.h; sourceTree = "<group>"; };
  961. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormPickerCell.m; sourceTree = "<group>"; };
  962. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSegmentedCell.h; sourceTree = "<group>"; };
  963. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSegmentedCell.m; sourceTree = "<group>"; };
  964. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSelectorCell.h; sourceTree = "<group>"; };
  965. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSelectorCell.m; sourceTree = "<group>"; };
  966. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSliderCell.h; sourceTree = "<group>"; };
  967. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSliderCell.m; sourceTree = "<group>"; };
  968. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormStepCounterCell.h; sourceTree = "<group>"; };
  969. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormStepCounterCell.m; sourceTree = "<group>"; };
  970. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSwitchCell.h; sourceTree = "<group>"; };
  971. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSwitchCell.m; sourceTree = "<group>"; };
  972. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextFieldCell.h; sourceTree = "<group>"; };
  973. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextFieldCell.m; sourceTree = "<group>"; };
  974. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextViewCell.h; sourceTree = "<group>"; };
  975. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextViewCell.m; sourceTree = "<group>"; };
  976. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsObject.h; sourceTree = "<group>"; };
  977. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsObject.m; sourceTree = "<group>"; };
  978. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsViewController.h; sourceTree = "<group>"; };
  979. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsViewController.m; sourceTree = "<group>"; };
  980. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptorViewController.h; sourceTree = "<group>"; };
  981. F762CACB1EACB66200B38484 /* XLFormViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormViewController.h; sourceTree = "<group>"; };
  982. F762CACC1EACB66200B38484 /* XLFormViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormViewController.m; sourceTree = "<group>"; };
  983. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptor.h; sourceTree = "<group>"; };
  984. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDescriptor.m; sourceTree = "<group>"; };
  985. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorDelegate.h; sourceTree = "<group>"; };
  986. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptor.h; sourceTree = "<group>"; };
  987. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowDescriptor.m; sourceTree = "<group>"; };
  988. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSectionDescriptor.h; sourceTree = "<group>"; };
  989. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSectionDescriptor.m; sourceTree = "<group>"; };
  990. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+XLFormAdditions.h"; sourceTree = "<group>"; };
  991. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+XLFormAdditions.m"; sourceTree = "<group>"; };
  992. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSExpression+XLFormAdditions.h"; sourceTree = "<group>"; };
  993. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSExpression+XLFormAdditions.m"; sourceTree = "<group>"; };
  994. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XLFormAdditions.h"; sourceTree = "<group>"; };
  995. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XLFormAdditions.m"; sourceTree = "<group>"; };
  996. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPredicate+XLFormAdditions.h"; sourceTree = "<group>"; };
  997. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPredicate+XLFormAdditions.m"; sourceTree = "<group>"; };
  998. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XLFormAdditions.h"; sourceTree = "<group>"; };
  999. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XLFormAdditions.m"; sourceTree = "<group>"; };
  1000. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XLFormAdditions.h"; sourceTree = "<group>"; };
  1001. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XLFormAdditions.m"; sourceTree = "<group>"; };
  1002. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightDetailCell.h; sourceTree = "<group>"; };
  1003. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightDetailCell.m; sourceTree = "<group>"; };
  1004. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightImageButton.h; sourceTree = "<group>"; };
  1005. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightImageButton.m; sourceTree = "<group>"; };
  1006. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowNavigationAccessoryView.h; sourceTree = "<group>"; };
  1007. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowNavigationAccessoryView.m; sourceTree = "<group>"; };
  1008. F762CAE91EACB66200B38484 /* XLFormTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextView.h; sourceTree = "<group>"; };
  1009. F762CAEA1EACB66200B38484 /* XLFormTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextView.m; sourceTree = "<group>"; };
  1010. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRegexValidator.h; sourceTree = "<group>"; };
  1011. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRegexValidator.m; sourceTree = "<group>"; };
  1012. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidationStatus.h; sourceTree = "<group>"; };
  1013. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidationStatus.m; sourceTree = "<group>"; };
  1014. F762CAF01EACB66200B38484 /* XLFormValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidator.h; sourceTree = "<group>"; };
  1015. F762CAF11EACB66200B38484 /* XLFormValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidator.m; sourceTree = "<group>"; };
  1016. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidatorProtocol.h; sourceTree = "<group>"; };
  1017. F762CAF31EACB66200B38484 /* XLForm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLForm.h; sourceTree = "<group>"; };
  1018. F762CAF41EACB66200B38484 /* XLForm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLForm.m; sourceTree = "<group>"; };
  1019. F762CAF51EACB66200B38484 /* XLForm.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XLForm.bundle; sourceTree = "<group>"; };
  1020. F762CB7C1EACB81000B38484 /* RECommonFunctions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RECommonFunctions.h; sourceTree = "<group>"; };
  1021. F762CB7D1EACB81000B38484 /* RECommonFunctions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RECommonFunctions.m; sourceTree = "<group>"; };
  1022. F762CB7E1EACB81000B38484 /* REMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenu.h; sourceTree = "<group>"; };
  1023. F762CB7F1EACB81000B38484 /* REMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenu.m; sourceTree = "<group>"; };
  1024. F762CB801EACB81000B38484 /* REMenuContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuContainerView.h; sourceTree = "<group>"; };
  1025. F762CB811EACB81000B38484 /* REMenuContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuContainerView.m; sourceTree = "<group>"; };
  1026. F762CB821EACB81000B38484 /* REMenuItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItem.h; sourceTree = "<group>"; };
  1027. F762CB831EACB81000B38484 /* REMenuItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItem.m; sourceTree = "<group>"; };
  1028. F762CB841EACB81000B38484 /* REMenuItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItemView.h; sourceTree = "<group>"; };
  1029. F762CB851EACB81000B38484 /* REMenuItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItemView.m; sourceTree = "<group>"; };
  1030. F762CB8D1EACB84400B38484 /* icon-error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error.png"; sourceTree = "<group>"; };
  1031. F762CB8E1EACB84400B38484 /* icon-error@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error@2x.png"; sourceTree = "<group>"; };
  1032. F762CB8F1EACB84400B38484 /* icon-info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info.png"; sourceTree = "<group>"; };
  1033. F762CB901EACB84400B38484 /* icon-info@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info@2x.png"; sourceTree = "<group>"; };
  1034. F762CB911EACB84400B38484 /* icon-success.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success.png"; sourceTree = "<group>"; };
  1035. F762CB921EACB84400B38484 /* icon-success@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success@2x.png"; sourceTree = "<group>"; };
  1036. F762CB931EACB84400B38484 /* TWMessageBarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TWMessageBarManager.h; sourceTree = "<group>"; };
  1037. F762CB941EACB84400B38484 /* TWMessageBarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TWMessageBarManager.m; sourceTree = "<group>"; };
  1038. F76344751BF259A800188725 /* synchronized.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
  1039. F76344761BF259A800188725 /* synchronizedcrypto.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
  1040. F7659A221DC0B726004860C4 /* EAIntroPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroPage.h; sourceTree = "<group>"; };
  1041. F7659A231DC0B726004860C4 /* EAIntroPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroPage.m; sourceTree = "<group>"; };
  1042. F7659A241DC0B726004860C4 /* EAIntroView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroView.h; sourceTree = "<group>"; };
  1043. F7659A251DC0B726004860C4 /* EAIntroView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroView.m; sourceTree = "<group>"; };
  1044. F7659A2B1DC0B72F004860C4 /* EARestrictedScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EARestrictedScrollView.h; sourceTree = "<group>"; };
  1045. F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EARestrictedScrollView.m; sourceTree = "<group>"; };
  1046. F7659A311DC0B737004860C4 /* iRate.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = iRate.bundle; sourceTree = "<group>"; };
  1047. F7659A321DC0B737004860C4 /* iRate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iRate.h; sourceTree = "<group>"; };
  1048. F7659A331DC0B737004860C4 /* iRate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = iRate.m; sourceTree = "<group>"; };
  1049. F768EAFB1BFB7CD800B6E341 /* CCShareOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareOC.h; sourceTree = "<group>"; };
  1050. F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareOC.m; sourceTree = "<group>"; };
  1051. F768EB021BFB7EA900B6E341 /* CCShare.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCShare.storyboard; sourceTree = "<group>"; };
  1052. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  1053. F76C3B831C6388BC00DC4301 /* CCGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
  1054. F76C3B841C6388BC00DC4301 /* CCGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
  1055. F76C3B871C638A4C00DC4301 /* CCError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
  1056. F76C3B881C638A4C00DC4301 /* CCError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
  1057. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  1058. F76F23331ED4603700C40023 /* LaunchScreen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LaunchScreen.xib; sourceTree = "<group>"; };
  1059. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1060. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  1061. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  1062. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  1063. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  1064. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  1065. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  1066. F771E3F620E239B400AFB62D /* FileProviderExtension+Network.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Network.swift"; sourceTree = "<group>"; };
  1067. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
  1068. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
  1069. F77438E81FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1070. F77438E91FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1071. F77438EA1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1072. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1073. F77438EC1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1074. F77438ED1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Intro.strings"; sourceTree = "<group>"; };
  1075. F77438EE1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Error.strings"; sourceTree = "<group>"; };
  1076. F77438EF1FCD69D200662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1077. F77438F01FCD69D200662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1078. F77438F11FCD69D200662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1079. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1080. F77438F31FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1081. F77438F41FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Intro.strings; sourceTree = "<group>"; };
  1082. F77438F51FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Error.strings; sourceTree = "<group>"; };
  1083. F77438F61FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1084. F77438F71FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1085. F77438F81FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1086. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1087. F77438FA1FCD6A0E00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1088. F77438FB1FCD6A0E00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Intro.strings"; sourceTree = "<group>"; };
  1089. F77438FC1FCD6A0E00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Error.strings"; sourceTree = "<group>"; };
  1090. F77438FD1FCD6B7E00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1091. F77438FE1FCD6B7E00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1092. F77438FF1FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1093. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1094. F77439011FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1095. F77439021FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Intro.strings; sourceTree = "<group>"; };
  1096. F77439031FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Error.strings; sourceTree = "<group>"; };
  1097. F77439041FCD6BEF00662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1098. F77439051FCD6BEF00662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1099. F77439061FCD6BEF00662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1100. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1101. F77439081FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1102. F77439091FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Intro.strings"; sourceTree = "<group>"; };
  1103. F774390A1FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Error.strings"; sourceTree = "<group>"; };
  1104. F774390B1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1105. F774390C1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1106. F774390D1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1107. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1108. F774390F1FCD6C0D00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1109. F77439101FCD6C0D00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Intro.strings"; sourceTree = "<group>"; };
  1110. F77439111FCD6C0D00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Error.strings"; sourceTree = "<group>"; };
  1111. F77439121FCD6C4900662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1112. F77439131FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1113. F77439141FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1114. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1115. F77439161FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1116. F77439171FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Intro.strings"; sourceTree = "<group>"; };
  1117. F77439181FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Error.strings"; sourceTree = "<group>"; };
  1118. F77439191FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1119. F774391A1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1120. F774391B1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1121. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1122. F774391D1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1123. F774391E1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Intro.strings"; sourceTree = "<group>"; };
  1124. F774391F1FCD6C6800662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Error.strings"; sourceTree = "<group>"; };
  1125. F77439201FCD6C8600662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1126. F77439211FCD6C8600662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1127. F77439221FCD6C8600662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1128. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1129. F77439241FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1130. F77439251FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Intro.strings"; sourceTree = "<group>"; };
  1131. F77439261FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Error.strings"; sourceTree = "<group>"; };
  1132. F77439271FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1133. F77439281FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1134. F77439291FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1135. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1136. F774392B1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1137. F774392C1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Intro.strings"; sourceTree = "<group>"; };
  1138. F774392D1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Error.strings"; sourceTree = "<group>"; };
  1139. F774392E1FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1140. F774392F1FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1141. F77439301FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1142. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1143. F77439321FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1144. F77439331FCD6CC500662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Intro.strings"; sourceTree = "<group>"; };
  1145. F77439341FCD6CC500662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Error.strings"; sourceTree = "<group>"; };
  1146. F77439351FCD6CDD00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1147. F77439361FCD6CDD00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1148. F77439371FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1149. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1150. F77439391FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1151. F774393A1FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Intro.strings"; sourceTree = "<group>"; };
  1152. F774393B1FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Error.strings"; sourceTree = "<group>"; };
  1153. F774393C1FCD6D0A00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1154. F774393D1FCD6D0A00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1155. F774393E1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1156. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1157. F77439401FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1158. F77439411FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Intro.strings"; sourceTree = "<group>"; };
  1159. F77439421FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Error.strings"; sourceTree = "<group>"; };
  1160. F77439431FCD6D2200662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1161. F77439441FCD6D2200662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1162. F77439451FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1163. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1164. F77439471FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1165. F77439481FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Intro.strings"; sourceTree = "<group>"; };
  1166. F77439491FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Error.strings"; sourceTree = "<group>"; };
  1167. F774394A1FCD6D3D00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1168. F774394B1FCD6D3D00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1169. F774394C1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1170. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1171. F774394E1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1172. F774394F1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Intro.strings"; sourceTree = "<group>"; };
  1173. F77439501FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Error.strings"; sourceTree = "<group>"; };
  1174. F77439511FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1175. F77439521FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1176. F77439531FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1177. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1178. F77439551FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1179. F77439561FCD6D6200662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Intro.strings"; sourceTree = "<group>"; };
  1180. F77439571FCD6D6200662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Error.strings"; sourceTree = "<group>"; };
  1181. F77439581FCD6D8100662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1182. F77439591FCD6D8100662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1183. F774395A1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1184. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1185. F774395C1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1186. F774395D1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Intro.strings"; sourceTree = "<group>"; };
  1187. F774395E1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Error.strings"; sourceTree = "<group>"; };
  1188. F774395F1FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1189. F77439601FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1190. F77439611FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1191. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1192. F77439631FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1193. F77439641FCD6D9D00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Intro.strings"; sourceTree = "<group>"; };
  1194. F77439651FCD6D9D00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Error.strings"; sourceTree = "<group>"; };
  1195. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@1x.png"; sourceTree = "<group>"; };
  1196. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@2x.png"; sourceTree = "<group>"; };
  1197. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@3x.png"; sourceTree = "<group>"; };
  1198. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
  1199. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
  1200. F77D49A71DC238E500CDC568 /* loading@2x.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = "loading@2x.gif"; sourceTree = "<group>"; };
  1201. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  1202. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  1203. F780711F1EDB135100EAFFF6 /* CCPhotos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPhotos.h; sourceTree = "<group>"; };
  1204. F78071201EDB135100EAFFF6 /* CCPhotos.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPhotos.m; sourceTree = "<group>"; };
  1205. F78316861C0CB3CA00C43975 /* CCShareUserOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareUserOC.h; sourceTree = "<group>"; };
  1206. F78316871C0CB3CA00C43975 /* CCShareUserOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareUserOC.m; sourceTree = "<group>"; };
  1207. F78964A71EBB576C00403E13 /* JDStatusBarNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarNotification.h; sourceTree = "<group>"; };
  1208. F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarNotification.m; sourceTree = "<group>"; };
  1209. F78964A91EBB576C00403E13 /* JDStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarStyle.h; sourceTree = "<group>"; };
  1210. F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarStyle.m; sourceTree = "<group>"; };
  1211. F78964AB1EBB576C00403E13 /* JDStatusBarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarView.h; sourceTree = "<group>"; };
  1212. F78964AC1EBB576C00403E13 /* JDStatusBarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarView.m; sourceTree = "<group>"; };
  1213. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1214. F78D6F431F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1215. F78D6F441F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1216. F78D6F451F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1217. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1218. F78D6F471F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1219. F78D6F481F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Intro.strings"; sourceTree = "<group>"; };
  1220. F78D6F491F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Error.strings"; sourceTree = "<group>"; };
  1221. F78D6F4A1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1222. F78D6F4B1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1223. F78D6F4C1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1224. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1225. F78D6F4E1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1226. F78D6F4F1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Intro.strings"; sourceTree = "<group>"; };
  1227. F78D6F501F0B7CE5002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Error.strings"; sourceTree = "<group>"; };
  1228. F78D6F511F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1229. F78D6F521F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1230. F78D6F531F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1231. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1232. F78D6F551F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1233. F78D6F561F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Intro.strings; sourceTree = "<group>"; };
  1234. F78D6F571F0B7D48002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Error.strings; sourceTree = "<group>"; };
  1235. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
  1236. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
  1237. F792A77B1BC7C45400C9388E /* CCSplit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSplit.h; sourceTree = "<group>"; };
  1238. F792A77C1BC7C45400C9388E /* CCSplit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSplit.m; sourceTree = "<group>"; };
  1239. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
  1240. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
  1241. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
  1242. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavorites.h; sourceTree = "<group>"; };
  1243. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCFavorites.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1244. F7A321631E9E37960069AD1B /* CCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActivity.h; sourceTree = "<group>"; };
  1245. F7A321641E9E37960069AD1B /* CCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCActivity.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1246. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuAccount.h; sourceTree = "<group>"; };
  1247. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuAccount.m; sourceTree = "<group>"; };
  1248. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  1249. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  1250. F7A377141EB2364A002856D3 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
  1251. F7A377151EB2364A002856D3 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Fabric.framework; sourceTree = "<group>"; };
  1252. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
  1253. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
  1254. F7A55418204EF8AF008468EC /* TOScrollBarGestureRecognizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TOScrollBarGestureRecognizer.m; sourceTree = "<group>"; };
  1255. F7A55419204EF8AF008468EC /* TOScrollBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TOScrollBar.h; sourceTree = "<group>"; };
  1256. F7A5541A204EF8AF008468EC /* UIScrollView+TOScrollBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+TOScrollBar.h"; sourceTree = "<group>"; };
  1257. F7A5541B204EF8AF008468EC /* TOScrollBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TOScrollBar.m; sourceTree = "<group>"; };
  1258. F7A5541C204EF8AF008468EC /* TOScrollBarGestureRecognizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TOScrollBarGestureRecognizer.h; sourceTree = "<group>"; };
  1259. F7A5541D204EF8AF008468EC /* UIScrollView+TOScrollBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+TOScrollBar.m"; sourceTree = "<group>"; };
  1260. F7A582D61A24DAB500E903D7 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = AppDelegate.m; sourceTree = "<group>"; };
  1261. F7A582D71A24DAB500E903D7 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
  1262. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1263. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1264. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1265. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1266. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1267. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  1268. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  1269. F7ACE4301BAC0268006C0017 /* CCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
  1270. F7ACE4311BAC0268006C0017 /* CCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
  1271. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
  1272. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
  1273. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAutoUpload.h; sourceTree = "<group>"; };
  1274. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAutoUpload.m; sourceTree = "<group>"; };
  1275. F7B1A7731EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1276. F7B1A7741EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1277. F7B1A7751EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1278. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1279. F7B1A7771EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1280. F7B1A7781EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Intro.strings; sourceTree = "<group>"; };
  1281. F7B1A7791EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Error.strings; sourceTree = "<group>"; };
  1282. F7B1FBB11E72E3D1001781FE /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = "<group>"; };
  1283. F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftModalWebVC.swift; sourceTree = "<group>"; };
  1284. F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVC.swift; sourceTree = "<group>"; };
  1285. F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivity.swift; sourceTree = "<group>"; };
  1286. F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivityChrome.swift; sourceTree = "<group>"; };
  1287. F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivitySafari.swift; sourceTree = "<group>"; };
  1288. F7B2DEED1F976785007CF4D2 /* english.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  1289. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  1290. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  1291. F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCLoginWeb.swift; sourceTree = "<group>"; };
  1292. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUchardet.h; sourceTree = "<group>"; };
  1293. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUchardet.m; sourceTree = "<group>"; };
  1294. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  1295. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  1296. F7BB04821FD58ACA00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1297. F7BB04831FD58ACA00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1298. F7BB04841FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1299. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1300. F7BB04861FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1301. F7BB04871FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Intro.strings"; sourceTree = "<group>"; };
  1302. F7BB04881FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Error.strings"; sourceTree = "<group>"; };
  1303. F7BE6E2B1D2D5C3B00106933 /* CCQuickActions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCQuickActions.h; sourceTree = "<group>"; };
  1304. F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCQuickActions.m; sourceTree = "<group>"; };
  1305. F7BF1B3F1D51E893000854F6 /* CCLogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
  1306. F7BF1B401D51E893000854F6 /* CCLogin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
  1307. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
  1308. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
  1309. F7C0F46E1C8880540059EC54 /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1310. F7C0F46F1C8880540059EC54 /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1311. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
  1312. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
  1313. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  1314. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  1315. F7C8C1901B482CEA0048180E /* CCGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
  1316. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+PKDownloadButton.m"; sourceTree = "<group>"; };
  1317. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKBorderedButton.h; sourceTree = "<group>"; };
  1318. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleProgressView.m; sourceTree = "<group>"; };
  1319. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKDownloadButton.h; sourceTree = "<group>"; };
  1320. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+PKDownloadButtonAnimations.h"; sourceTree = "<group>"; };
  1321. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleView.m; sourceTree = "<group>"; };
  1322. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKStopDownloadButton.m; sourceTree = "<group>"; };
  1323. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKPendingView.m; sourceTree = "<group>"; };
  1324. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PKDownloadButton.h"; sourceTree = "<group>"; };
  1325. F7CA1EC520E7E3FE002CC65E /* .gitkeep */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .gitkeep; sourceTree = "<group>"; };
  1326. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKMacros.h; sourceTree = "<group>"; };
  1327. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+PKDownloadButtonAnimations.m"; sourceTree = "<group>"; };
  1328. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKDownloadButton.m; sourceTree = "<group>"; };
  1329. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleProgressView.h; sourceTree = "<group>"; };
  1330. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKBorderedButton.m; sourceTree = "<group>"; };
  1331. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+PKDownloadButton.h"; sourceTree = "<group>"; };
  1332. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKStopDownloadButton.h; sourceTree = "<group>"; };
  1333. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleView.h; sourceTree = "<group>"; };
  1334. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PKDownloadButton.m"; sourceTree = "<group>"; };
  1335. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKPendingView.h; sourceTree = "<group>"; };
  1336. F7CC04E31F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1337. F7CC04E41F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1338. F7CC04E51F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1339. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1340. F7CC04E71F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1341. F7CC04E81F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Intro.strings; sourceTree = "<group>"; };
  1342. F7CC04E91F5AD50E00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Error.strings; sourceTree = "<group>"; };
  1343. F7CD0FF91C8DDA7D006520C5 /* CCSharePermissionOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSharePermissionOC.h; sourceTree = "<group>"; };
  1344. F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSharePermissionOC.m; sourceTree = "<group>"; };
  1345. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1346. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1347. F7D02A461C5F9E4400D6F972 /* CCMove.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMove.h; sourceTree = "<group>"; };
  1348. F7D02A471C5F9E4400D6F972 /* CCMove.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMove.m; sourceTree = "<group>"; };
  1349. F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCMove.storyboard; sourceTree = "<group>"; };
  1350. F7D0E65E1BC5042E008D989A /* CCDetail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = CCDetail.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1351. F7D0E65F1BC5042E008D989A /* CCDetail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCDetail.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1352. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  1353. F7D423161F0596AC009C9782 /* AppIcon-076.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-076.png"; sourceTree = "<group>"; };
  1354. F7D423171F0596AC009C9782 /* AppIcon-120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-120.png"; sourceTree = "<group>"; };
  1355. F7D423181F0596AC009C9782 /* AppIcon-152.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-152.png"; sourceTree = "<group>"; };
  1356. F7D423191F0596AC009C9782 /* AppIcon-167.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-167.png"; sourceTree = "<group>"; };
  1357. F7D4231A1F0596AC009C9782 /* AppIcon-180.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-180.png"; sourceTree = "<group>"; };
  1358. F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H.png"; sourceTree = "<group>"; };
  1359. F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@2x.png"; sourceTree = "<group>"; };
  1360. F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@3x.png"; sourceTree = "<group>"; };
  1361. F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N.png"; sourceTree = "<group>"; };
  1362. F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@2x.png"; sourceTree = "<group>"; };
  1363. F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@3x.png"; sourceTree = "<group>"; };
  1364. F7D423211F0596AC009C9782 /* Reader-Email.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email.png"; sourceTree = "<group>"; };
  1365. F7D423221F0596AC009C9782 /* Reader-Email@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@2x.png"; sourceTree = "<group>"; };
  1366. F7D423231F0596AC009C9782 /* Reader-Email@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@3x.png"; sourceTree = "<group>"; };
  1367. F7D423241F0596AC009C9782 /* Reader-Export.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export.png"; sourceTree = "<group>"; };
  1368. F7D423251F0596AC009C9782 /* Reader-Export@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@2x.png"; sourceTree = "<group>"; };
  1369. F7D423261F0596AC009C9782 /* Reader-Export@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@3x.png"; sourceTree = "<group>"; };
  1370. F7D423271F0596AC009C9782 /* Reader-Mark-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N.png"; sourceTree = "<group>"; };
  1371. F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@2x.png"; sourceTree = "<group>"; };
  1372. F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@3x.png"; sourceTree = "<group>"; };
  1373. F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y.png"; sourceTree = "<group>"; };
  1374. F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@2x.png"; sourceTree = "<group>"; };
  1375. F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@3x.png"; sourceTree = "<group>"; };
  1376. F7D4232D1F0596AC009C9782 /* Reader-Print.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print.png"; sourceTree = "<group>"; };
  1377. F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@2x.png"; sourceTree = "<group>"; };
  1378. F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@3x.png"; sourceTree = "<group>"; };
  1379. F7D423301F0596AC009C9782 /* Reader-Thumbs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs.png"; sourceTree = "<group>"; };
  1380. F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@2x.png"; sourceTree = "<group>"; };
  1381. F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@3x.png"; sourceTree = "<group>"; };
  1382. F7D423511F0596C6009C9782 /* CGPDFDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CGPDFDocument.h; sourceTree = "<group>"; };
  1383. F7D423521F0596C6009C9782 /* CGPDFDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGPDFDocument.m; sourceTree = "<group>"; };
  1384. F7D423531F0596C6009C9782 /* ReaderConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderConstants.h; sourceTree = "<group>"; };
  1385. F7D423541F0596C6009C9782 /* ReaderConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderConstants.m; sourceTree = "<group>"; };
  1386. F7D423551F0596C6009C9782 /* ReaderContentPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentPage.h; sourceTree = "<group>"; };
  1387. F7D423561F0596C6009C9782 /* ReaderContentPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentPage.m; sourceTree = "<group>"; };
  1388. F7D423571F0596C6009C9782 /* ReaderContentTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentTile.h; sourceTree = "<group>"; };
  1389. F7D423581F0596C6009C9782 /* ReaderContentTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentTile.m; sourceTree = "<group>"; };
  1390. F7D423591F0596C6009C9782 /* ReaderContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentView.h; sourceTree = "<group>"; };
  1391. F7D4235A1F0596C6009C9782 /* ReaderContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentView.m; sourceTree = "<group>"; };
  1392. F7D4235B1F0596C6009C9782 /* ReaderDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocument.h; sourceTree = "<group>"; };
  1393. F7D4235C1F0596C6009C9782 /* ReaderDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocument.m; sourceTree = "<group>"; };
  1394. F7D4235D1F0596C6009C9782 /* ReaderDocumentOutline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocumentOutline.h; sourceTree = "<group>"; };
  1395. F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocumentOutline.m; sourceTree = "<group>"; };
  1396. F7D4235F1F0596C6009C9782 /* ReaderMainPagebar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainPagebar.h; sourceTree = "<group>"; };
  1397. F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainPagebar.m; sourceTree = "<group>"; };
  1398. F7D423611F0596C6009C9782 /* ReaderMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainToolbar.h; sourceTree = "<group>"; };
  1399. F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainToolbar.m; sourceTree = "<group>"; };
  1400. F7D423631F0596C6009C9782 /* ReaderThumbCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbCache.h; sourceTree = "<group>"; };
  1401. F7D423641F0596C6009C9782 /* ReaderThumbCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbCache.m; sourceTree = "<group>"; };
  1402. F7D423651F0596C6009C9782 /* ReaderThumbFetch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbFetch.h; sourceTree = "<group>"; };
  1403. F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbFetch.m; sourceTree = "<group>"; };
  1404. F7D423671F0596C6009C9782 /* ReaderThumbQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbQueue.h; sourceTree = "<group>"; };
  1405. F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbQueue.m; sourceTree = "<group>"; };
  1406. F7D423691F0596C6009C9782 /* ReaderThumbRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRender.h; sourceTree = "<group>"; };
  1407. F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRender.m; sourceTree = "<group>"; };
  1408. F7D4236B1F0596C6009C9782 /* ReaderThumbRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRequest.h; sourceTree = "<group>"; };
  1409. F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRequest.m; sourceTree = "<group>"; };
  1410. F7D4236D1F0596C6009C9782 /* ReaderThumbsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbsView.h; sourceTree = "<group>"; };
  1411. F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbsView.m; sourceTree = "<group>"; };
  1412. F7D4236F1F0596C6009C9782 /* ReaderThumbView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbView.h; sourceTree = "<group>"; };
  1413. F7D423701F0596C6009C9782 /* ReaderThumbView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbView.m; sourceTree = "<group>"; };
  1414. F7D423711F0596C6009C9782 /* ReaderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderViewController.h; sourceTree = "<group>"; };
  1415. F7D423721F0596C6009C9782 /* ReaderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderViewController.m; sourceTree = "<group>"; };
  1416. F7D423731F0596C6009C9782 /* ThumbsMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsMainToolbar.h; sourceTree = "<group>"; };
  1417. F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsMainToolbar.m; sourceTree = "<group>"; };
  1418. F7D423751F0596C6009C9782 /* ThumbsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsViewController.h; sourceTree = "<group>"; };
  1419. F7D423761F0596C6009C9782 /* ThumbsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsViewController.m; sourceTree = "<group>"; };
  1420. F7D423771F0596C6009C9782 /* UIXToolbarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIXToolbarView.h; sourceTree = "<group>"; };
  1421. F7D423781F0596C6009C9782 /* UIXToolbarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIXToolbarView.m; sourceTree = "<group>"; };
  1422. F7D423A51F063B81009C9782 /* CTAssetsPageViewController+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPageViewController+Internal.h"; sourceTree = "<group>"; };
  1423. F7D423A61F063B81009C9782 /* CTAssetsPickerController+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPickerController+Internal.h"; sourceTree = "<group>"; };
  1424. F7D423A71F063B81009C9782 /* NSBundle+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1425. F7D423A81F063B81009C9782 /* NSBundle+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1426. F7D423A91F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDateFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1427. F7D423AA1F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDateFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1428. F7D423AB1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexSet+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1429. F7D423AC1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexSet+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1430. F7D423AD1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumberFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1431. F7D423AE1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumberFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1432. F7D423AF1F063B81009C9782 /* PHAsset+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1433. F7D423B01F063B81009C9782 /* PHAsset+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1434. F7D423B11F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAssetCollection+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1435. F7D423B21F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAssetCollection+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1436. F7D423B31F063B81009C9782 /* PHImageManager+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHImageManager+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1437. F7D423B41F063B81009C9782 /* PHImageManager+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHImageManager+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1438. F7D423B51F063B81009C9782 /* UICollectionView+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1439. F7D423B61F063B81009C9782 /* UICollectionView+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1440. F7D423B71F063B81009C9782 /* UIImage+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1441. F7D423B81F063B81009C9782 /* UIImage+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1442. F7D423B91F063B81009C9782 /* CTAssetCheckmark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCheckmark.h; sourceTree = "<group>"; };
  1443. F7D423BA1F063B81009C9782 /* CTAssetCheckmark.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCheckmark.m; sourceTree = "<group>"; };
  1444. F7D423BB1F063B81009C9782 /* CTAssetCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewCell.h; sourceTree = "<group>"; };
  1445. F7D423BC1F063B81009C9782 /* CTAssetCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewCell.m; sourceTree = "<group>"; };
  1446. F7D423BD1F063B81009C9782 /* CTAssetCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewController.h; sourceTree = "<group>"; };
  1447. F7D423BE1F063B81009C9782 /* CTAssetCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewController.m; sourceTree = "<group>"; };
  1448. F7D423BF1F063B81009C9782 /* CTAssetItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetItemViewController.h; sourceTree = "<group>"; };
  1449. F7D423C01F063B81009C9782 /* CTAssetItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetItemViewController.m; sourceTree = "<group>"; };
  1450. F7D423C11F063B81009C9782 /* CTAssetPlayButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetPlayButton.h; sourceTree = "<group>"; };
  1451. F7D423C21F063B81009C9782 /* CTAssetPlayButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetPlayButton.m; sourceTree = "<group>"; };
  1452. F7D423C31F063B81009C9782 /* CTAssetScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetScrollView.h; sourceTree = "<group>"; };
  1453. F7D423C41F063B81009C9782 /* CTAssetScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetScrollView.m; sourceTree = "<group>"; };
  1454. F7D423C51F063B81009C9782 /* CTAssetSelectionButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionButton.h; sourceTree = "<group>"; };
  1455. F7D423C61F063B81009C9782 /* CTAssetSelectionButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionButton.m; sourceTree = "<group>"; };
  1456. F7D423C71F063B81009C9782 /* CTAssetSelectionLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionLabel.h; sourceTree = "<group>"; };
  1457. F7D423C81F063B81009C9782 /* CTAssetSelectionLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionLabel.m; sourceTree = "<group>"; };
  1458. F7D423C91F063B81009C9782 /* CTAssetsGridSelectedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridSelectedView.h; sourceTree = "<group>"; };
  1459. F7D423CA1F063B81009C9782 /* CTAssetsGridSelectedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridSelectedView.m; sourceTree = "<group>"; };
  1460. F7D423CB1F063B81009C9782 /* CTAssetsGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridView.h; sourceTree = "<group>"; };
  1461. F7D423CC1F063B81009C9782 /* CTAssetsGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridView.m; sourceTree = "<group>"; };
  1462. F7D423CD1F063B81009C9782 /* CTAssetsGridViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewCell.h; sourceTree = "<group>"; };
  1463. F7D423CE1F063B81009C9782 /* CTAssetsGridViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewCell.m; sourceTree = "<group>"; };
  1464. F7D423CF1F063B81009C9782 /* CTAssetsGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewController.h; sourceTree = "<group>"; };
  1465. F7D423D01F063B81009C9782 /* CTAssetsGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewController.m; sourceTree = "<group>"; };
  1466. F7D423D11F063B81009C9782 /* CTAssetsGridViewFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewFooter.h; sourceTree = "<group>"; };
  1467. F7D423D21F063B81009C9782 /* CTAssetsGridViewFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewFooter.m; sourceTree = "<group>"; };
  1468. F7D423D31F063B81009C9782 /* CTAssetsGridViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewLayout.h; sourceTree = "<group>"; };
  1469. F7D423D41F063B81009C9782 /* CTAssetsGridViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewLayout.m; sourceTree = "<group>"; };
  1470. F7D423D51F063B81009C9782 /* CTAssetsNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsNavigationController.h; sourceTree = "<group>"; };
  1471. F7D423D61F063B82009C9782 /* CTAssetsNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsNavigationController.m; sourceTree = "<group>"; };
  1472. F7D423D71F063B82009C9782 /* CTAssetsPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageView.h; sourceTree = "<group>"; };
  1473. F7D423D81F063B82009C9782 /* CTAssetsPageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageView.m; sourceTree = "<group>"; };
  1474. F7D423D91F063B82009C9782 /* CTAssetsPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageViewController.h; sourceTree = "<group>"; };
  1475. F7D423DA1F063B82009C9782 /* CTAssetsPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageViewController.m; sourceTree = "<group>"; };
  1476. F7D423DB1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerAccessDeniedView.h; sourceTree = "<group>"; };
  1477. F7D423DC1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerAccessDeniedView.m; sourceTree = "<group>"; };
  1478. F7D423DD1F063B82009C9782 /* CTAssetsPickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CTAssetsPickerController.bundle; sourceTree = "<group>"; };
  1479. F7D423DE1F063B82009C9782 /* CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerController.h; sourceTree = "<group>"; };
  1480. F7D423DF1F063B82009C9782 /* CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerController.m; sourceTree = "<group>"; };
  1481. F7D423E01F063B82009C9782 /* CTAssetsPickerDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerDefines.h; sourceTree = "<group>"; };
  1482. F7D423E11F063B82009C9782 /* CTAssetsPickerNoAssetsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerNoAssetsView.h; sourceTree = "<group>"; };
  1483. F7D423E21F063B82009C9782 /* CTAssetsPickerNoAssetsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerNoAssetsView.m; sourceTree = "<group>"; };
  1484. F7D423E31F063B82009C9782 /* CTAssetsViewControllerTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsViewControllerTransition.h; sourceTree = "<group>"; };
  1485. F7D423E41F063B82009C9782 /* CTAssetsViewControllerTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsViewControllerTransition.m; sourceTree = "<group>"; };
  1486. F7D423E51F063B82009C9782 /* CTAssetThumbnailOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailOverlay.h; sourceTree = "<group>"; };
  1487. F7D423E61F063B82009C9782 /* CTAssetThumbnailOverlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailOverlay.m; sourceTree = "<group>"; };
  1488. F7D423E71F063B82009C9782 /* CTAssetThumbnailStacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailStacks.h; sourceTree = "<group>"; };
  1489. F7D423E81F063B82009C9782 /* CTAssetThumbnailStacks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailStacks.m; sourceTree = "<group>"; };
  1490. F7D423E91F063B82009C9782 /* CTAssetThumbnailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailView.h; sourceTree = "<group>"; };
  1491. F7D423EA1F063B82009C9782 /* CTAssetThumbnailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailView.m; sourceTree = "<group>"; };
  1492. F7D532431F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1493. F7D532441F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1494. F7D532451F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1495. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  1496. F7D532471F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1497. F7D532481F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Intro.strings; sourceTree = "<group>"; };
  1498. F7D532491F5D4124006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Error.strings; sourceTree = "<group>"; };
  1499. F7D5324A1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1500. F7D5324B1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1501. F7D5324C1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1502. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1503. F7D5324E1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1504. F7D5324F1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Intro.strings; sourceTree = "<group>"; };
  1505. F7D532501F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Error.strings; sourceTree = "<group>"; };
  1506. F7D532511F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1507. F7D532521F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1508. F7D532531F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1509. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1510. F7D532551F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1511. F7D532561F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Intro.strings"; sourceTree = "<group>"; };
  1512. F7D532571F5D4156006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Error.strings"; sourceTree = "<group>"; };
  1513. F7D5328C1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1514. F7D5328D1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1515. F7D5328E1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1516. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1517. F7D532901F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1518. F7D532911F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Intro.strings"; sourceTree = "<group>"; };
  1519. F7D532921F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Error.strings"; sourceTree = "<group>"; };
  1520. F7D532A11F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1521. F7D532A21F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1522. F7D532A31F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1523. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1524. F7D532A51F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1525. F7D532A61F5D4462006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Intro.strings"; sourceTree = "<group>"; };
  1526. F7D532A71F5D4462006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Error.strings"; sourceTree = "<group>"; };
  1527. F7DC5FE81F011EB700A903C7 /* MGSwipeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeButton.h; sourceTree = "<group>"; };
  1528. F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeButton.m; sourceTree = "<group>"; };
  1529. F7DC5FEA1F011EB700A903C7 /* MGSwipeTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeTableCell.h; sourceTree = "<group>"; };
  1530. F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeTableCell.m; sourceTree = "<group>"; };
  1531. F7DE9AAD1F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1532. F7DE9AAE1F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1533. F7DE9AAF1F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1534. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  1535. F7DE9AB11F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1536. F7DE9AB21F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Intro.strings; sourceTree = "<group>"; };
  1537. F7DE9AB31F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Error.strings; sourceTree = "<group>"; };
  1538. F7DFE24F1EBDC3A400CF5202 /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Realm.framework; sourceTree = "<group>"; };
  1539. F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RealmSwift.framework; sourceTree = "<group>"; };
  1540. F7E9C41520F4CA870040CF18 /* CCTransfers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransfers.h; sourceTree = "<group>"; };
  1541. F7E9C41820F4CA870040CF18 /* CCTransfers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransfers.m; sourceTree = "<group>"; };
  1542. F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCCreateCloud.swift; sourceTree = "<group>"; };
  1543. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
  1544. F7F54CAF1E5B14C700E19C62 /* ImageError.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
  1545. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
  1546. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
  1547. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
  1548. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
  1549. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
  1550. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
  1551. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
  1552. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
  1553. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
  1554. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
  1555. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
  1556. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
  1557. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
  1558. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
  1559. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
  1560. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
  1561. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
  1562. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
  1563. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
  1564. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
  1565. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
  1566. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
  1567. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
  1568. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
  1569. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
  1570. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
  1571. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
  1572. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
  1573. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
  1574. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
  1575. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
  1576. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
  1577. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
  1578. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
  1579. F7F54CD21E5B14C700E19C62 /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
  1580. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
  1581. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
  1582. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
  1583. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
  1584. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
  1585. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
  1586. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
  1587. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
  1588. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
  1589. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
  1590. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
  1591. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
  1592. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
  1593. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
  1594. F7F67BAD1A24D27800EE80DA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  1595. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1596. F7F801001D98205A007537BC /* CCCertificate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCertificate.h; sourceTree = "<group>"; };
  1597. F7F801011D98205A007537BC /* CCCertificate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCertificate.m; sourceTree = "<group>"; };
  1598. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  1599. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
  1600. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
  1601. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
  1602. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1603. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
  1604. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
  1605. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
  1606. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBKPasscode.h; sourceTree = "<group>"; };
  1607. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBKPasscode.m; sourceTree = "<group>"; };
  1608. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
  1609. /* End PBXFileReference section */
  1610. /* Begin PBXFrameworksBuildPhase section */
  1611. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1612. isa = PBXFrameworksBuildPhase;
  1613. buildActionMask = 2147483647;
  1614. files = (
  1615. F7DFE2551EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */,
  1616. F70A630F1D5B3467004E2AA5 /* libssl.a in Frameworks */,
  1617. F70A630B1D5B3467004E2AA5 /* libcrypto.a in Frameworks */,
  1618. F7DFE2521EBDC3A400CF5202 /* Realm.framework in Frameworks */,
  1619. );
  1620. runOnlyForDeploymentPostprocessing = 0;
  1621. };
  1622. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  1623. isa = PBXFrameworksBuildPhase;
  1624. buildActionMask = 2147483647;
  1625. files = (
  1626. F771E3FD20E23BA700AFB62D /* Realm.framework in Frameworks */,
  1627. F771E3FF20E23C3A00AFB62D /* libssl.a in Frameworks */,
  1628. F771E40020E23C3D00AFB62D /* libcrypto.a in Frameworks */,
  1629. F771E3FE20E23BAB00AFB62D /* RealmSwift.framework in Frameworks */,
  1630. );
  1631. runOnlyForDeploymentPostprocessing = 0;
  1632. };
  1633. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1634. isa = PBXFrameworksBuildPhase;
  1635. buildActionMask = 2147483647;
  1636. files = (
  1637. F7DFE2571EBDC52E00CF5202 /* Realm.framework in Frameworks */,
  1638. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */,
  1639. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */,
  1640. F7DFE2541EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */,
  1641. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */,
  1642. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */,
  1643. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */,
  1644. F7BB14961D5B62C000ECEE68 /* libcrypto.a in Frameworks */,
  1645. F7BB14971D5B62C000ECEE68 /* libssl.a in Frameworks */,
  1646. );
  1647. runOnlyForDeploymentPostprocessing = 0;
  1648. };
  1649. /* End PBXFrameworksBuildPhase section */
  1650. /* Begin PBXGroup section */
  1651. F70022561EC4C9100080073F /* OCCommunicationLib */ = {
  1652. isa = PBXGroup;
  1653. children = (
  1654. F70022571EC4C9100080073F /* ExternalLibs */,
  1655. F70022661EC4C9100080073F /* OCActivity.h */,
  1656. F70022671EC4C9100080073F /* OCActivity.m */,
  1657. F70022681EC4C9100080073F /* OCCapabilities.h */,
  1658. F70022691EC4C9100080073F /* OCCapabilities.m */,
  1659. F700226A1EC4C9100080073F /* OCCommunication.h */,
  1660. F700226B1EC4C9100080073F /* OCCommunication.m */,
  1661. F700226C1EC4C9100080073F /* OCErrorMsg.h */,
  1662. F700226D1EC4C9100080073F /* OCExternalSites.h */,
  1663. F700226E1EC4C9100080073F /* OCExternalSites.m */,
  1664. F700226F1EC4C9100080073F /* OCFileDto.h */,
  1665. F70022701EC4C9100080073F /* OCFileDto.m */,
  1666. F70022711EC4C9100080073F /* OCFrameworkConstants.h */,
  1667. F70022721EC4C9100080073F /* OCNotifications.h */,
  1668. F70022731EC4C9100080073F /* OCNotifications.m */,
  1669. F70022741EC4C9100080073F /* OCNotificationsAction.h */,
  1670. F70022751EC4C9100080073F /* OCNotificationsAction.m */,
  1671. F70022761EC4C9100080073F /* OCRichObjectStrings.h */,
  1672. F70022771EC4C9100080073F /* OCRichObjectStrings.m */,
  1673. F70022781EC4C9100080073F /* OCSharedDto.h */,
  1674. F70022791EC4C9100080073F /* OCSharedDto.m */,
  1675. F700227A1EC4C9100080073F /* OCShareUser.h */,
  1676. F700227B1EC4C9100080073F /* OCShareUser.m */,
  1677. F700227C1EC4C9100080073F /* OCUserProfile.h */,
  1678. F700227D1EC4C9100080073F /* OCUserProfile.m */,
  1679. F700227E1EC4C9100080073F /* OCWebDavClient */,
  1680. F700229B1EC4C9100080073F /* Utils */,
  1681. );
  1682. name = OCCommunicationLib;
  1683. path = Library/OCCommunicationLib;
  1684. sourceTree = "<group>";
  1685. };
  1686. F70022571EC4C9100080073F /* ExternalLibs */ = {
  1687. isa = PBXGroup;
  1688. children = (
  1689. F70022581EC4C9100080073F /* AFNetworking */,
  1690. );
  1691. path = ExternalLibs;
  1692. sourceTree = "<group>";
  1693. };
  1694. F70022581EC4C9100080073F /* AFNetworking */ = {
  1695. isa = PBXGroup;
  1696. children = (
  1697. F70022591EC4C9100080073F /* AFHTTPSessionManager.h */,
  1698. F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */,
  1699. F700225B1EC4C9100080073F /* AFNetworking.h */,
  1700. F700225C1EC4C9100080073F /* AFNetworkReachabilityManager.h */,
  1701. F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */,
  1702. F700225E1EC4C9100080073F /* AFSecurityPolicy.h */,
  1703. F700225F1EC4C9100080073F /* AFSecurityPolicy.m */,
  1704. F70022601EC4C9100080073F /* AFURLRequestSerialization.h */,
  1705. F70022611EC4C9100080073F /* AFURLRequestSerialization.m */,
  1706. F70022621EC4C9100080073F /* AFURLResponseSerialization.h */,
  1707. F70022631EC4C9100080073F /* AFURLResponseSerialization.m */,
  1708. F70022641EC4C9100080073F /* AFURLSessionManager.h */,
  1709. F70022651EC4C9100080073F /* AFURLSessionManager.m */,
  1710. );
  1711. path = AFNetworking;
  1712. sourceTree = "<group>";
  1713. };
  1714. F700227E1EC4C9100080073F /* OCWebDavClient */ = {
  1715. isa = PBXGroup;
  1716. children = (
  1717. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */,
  1718. F70022801EC4C9100080073F /* NSDate+ISO8601.m */,
  1719. F70022811EC4C9100080073F /* NSDate+RFC1123.h */,
  1720. F70022821EC4C9100080073F /* NSDate+RFC1123.m */,
  1721. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */,
  1722. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */,
  1723. F70022851EC4C9100080073F /* OCWebDAVClient.h */,
  1724. F70022861EC4C9100080073F /* OCWebDAVClient.m */,
  1725. F70022871EC4C9100080073F /* Parsers */,
  1726. );
  1727. path = OCWebDavClient;
  1728. sourceTree = "<group>";
  1729. };
  1730. F70022871EC4C9100080073F /* Parsers */ = {
  1731. isa = PBXGroup;
  1732. children = (
  1733. F70022881EC4C9100080073F /* OCXMLListParser.h */,
  1734. F70022891EC4C9100080073F /* OCXMLListParser.m */,
  1735. F700228A1EC4C9100080073F /* OCXMLParser.h */,
  1736. F700228B1EC4C9100080073F /* OCXMLParser.m */,
  1737. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */,
  1738. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */,
  1739. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */,
  1740. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */,
  1741. F70022901EC4C9100080073F /* OCXMLSharedParser.h */,
  1742. F70022911EC4C9100080073F /* OCXMLSharedParser.m */,
  1743. );
  1744. path = Parsers;
  1745. sourceTree = "<group>";
  1746. };
  1747. F700229B1EC4C9100080073F /* Utils */ = {
  1748. isa = PBXGroup;
  1749. children = (
  1750. F700229C1EC4C9100080073F /* NSString+Encode.h */,
  1751. F700229D1EC4C9100080073F /* NSString+Encode.m */,
  1752. F700229E1EC4C9100080073F /* OCConstants.h */,
  1753. F700229F1EC4C9100080073F /* UtilsFramework.h */,
  1754. F70022A01EC4C9100080073F /* UtilsFramework.m */,
  1755. );
  1756. path = Utils;
  1757. sourceTree = "<group>";
  1758. };
  1759. F70211F31BAC56E9003FC03E /* Main */ = {
  1760. isa = PBXGroup;
  1761. children = (
  1762. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */,
  1763. F70211F51BAC56E9003FC03E /* CCCellMain.m */,
  1764. F70211F61BAC56E9003FC03E /* CCCellMain.xib */,
  1765. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */,
  1766. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */,
  1767. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */,
  1768. F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */,
  1769. F70211FA1BAC56E9003FC03E /* CCMain.h */,
  1770. F70211FB1BAC56E9003FC03E /* CCMain.m */,
  1771. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1772. F7D0E65E1BC5042E008D989A /* CCDetail.h */,
  1773. F7D0E65F1BC5042E008D989A /* CCDetail.m */,
  1774. F73F537E1E929C8500F8678D /* CCMore.swift */,
  1775. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */,
  1776. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */,
  1777. F792A77B1BC7C45400C9388E /* CCSplit.h */,
  1778. F792A77C1BC7C45400C9388E /* CCSplit.m */,
  1779. );
  1780. path = Main;
  1781. sourceTree = "<group>";
  1782. };
  1783. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */ = {
  1784. isa = PBXGroup;
  1785. children = (
  1786. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */,
  1787. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */,
  1788. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */,
  1789. );
  1790. path = UploadFromOtherUpp;
  1791. sourceTree = "<group>";
  1792. };
  1793. F70F02A81C889183008DAB36 /* Libraries external */ = {
  1794. isa = PBXGroup;
  1795. children = (
  1796. F70F02B21C889183008DAB36 /* AFViewShaker */,
  1797. F73CCE221DC13788007E38D8 /* DZNEmptyDataSet */,
  1798. F7659A211DC0B726004860C4 /* EAIntroView */,
  1799. F7659A2A1DC0B72F004860C4 /* EARestrictedScrollView */,
  1800. F78964A61EBB576C00403E13 /* JDStatusBarNotification */,
  1801. F7659A2F1DC0B737004860C4 /* iRate */,
  1802. F70F04821C889183008DAB36 /* MBProgressHUD */,
  1803. F7DC5FD31F00F98B00A903C7 /* MGSwipeTableCell */,
  1804. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */,
  1805. F7540EE11D5B238600C3FFA8 /* openssl */,
  1806. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */,
  1807. F75037421DBFA91A008FB480 /* PureLayout */,
  1808. F70F05241C889184008DAB36 /* Reachability */,
  1809. F7DFE24E1EBDC3A400CF5202 /* Realm */,
  1810. F7A55417204EF8AF008468EC /* TOScrollBar */,
  1811. F75AE3C51E9D12900088BB09 /* SwiftyAvatar */,
  1812. F73CCE271DC13798007E38D8 /* UICKeyChainStore */,
  1813. F70F05561C889184008DAB36 /* UIImage+animatedGIF */,
  1814. );
  1815. path = "Libraries external";
  1816. sourceTree = SOURCE_ROOT;
  1817. };
  1818. F70F02B21C889183008DAB36 /* AFViewShaker */ = {
  1819. isa = PBXGroup;
  1820. children = (
  1821. F70F02B31C889183008DAB36 /* AFViewShaker.h */,
  1822. F70F02B41C889183008DAB36 /* AFViewShaker.m */,
  1823. );
  1824. path = AFViewShaker;
  1825. sourceTree = "<group>";
  1826. };
  1827. F70F04821C889183008DAB36 /* MBProgressHUD */ = {
  1828. isa = PBXGroup;
  1829. children = (
  1830. F70F04831C889183008DAB36 /* MBProgressHUD.h */,
  1831. F70F04841C889183008DAB36 /* MBProgressHUD.m */,
  1832. );
  1833. path = MBProgressHUD;
  1834. sourceTree = "<group>";
  1835. };
  1836. F70F05241C889184008DAB36 /* Reachability */ = {
  1837. isa = PBXGroup;
  1838. children = (
  1839. F70F05251C889184008DAB36 /* Reachability.h */,
  1840. F70F05261C889184008DAB36 /* Reachability.m */,
  1841. );
  1842. path = Reachability;
  1843. sourceTree = "<group>";
  1844. };
  1845. F70F05561C889184008DAB36 /* UIImage+animatedGIF */ = {
  1846. isa = PBXGroup;
  1847. children = (
  1848. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */,
  1849. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */,
  1850. );
  1851. path = "UIImage+animatedGIF";
  1852. sourceTree = "<group>";
  1853. };
  1854. F710E80C1EF95C9C00DC2427 /* Intro */ = {
  1855. isa = PBXGroup;
  1856. children = (
  1857. F710E80D1EF95C9C00DC2427 /* CCIntro.h */,
  1858. F710E80E1EF95C9C00DC2427 /* CCIntro.m */,
  1859. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
  1860. );
  1861. path = Intro;
  1862. sourceTree = "<group>";
  1863. };
  1864. F7169A161EE590930086BD69 /* Shares */ = {
  1865. isa = PBXGroup;
  1866. children = (
  1867. F7169A171EE590930086BD69 /* NCShares.h */,
  1868. F7169A181EE590930086BD69 /* NCShares.m */,
  1869. F7169A191EE590930086BD69 /* NCSharesCell.h */,
  1870. F7169A1A1EE590930086BD69 /* NCSharesCell.m */,
  1871. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */,
  1872. );
  1873. path = Shares;
  1874. sourceTree = "<group>";
  1875. };
  1876. F720E02A1E48C74C001A4B9E /* Actions */ = {
  1877. isa = PBXGroup;
  1878. children = (
  1879. F720E01E1E48C73E001A4B9E /* CCActions.swift */,
  1880. );
  1881. name = Actions;
  1882. sourceTree = "<group>";
  1883. };
  1884. F728CE741BF6322C00E69702 /* Share */ = {
  1885. isa = PBXGroup;
  1886. children = (
  1887. F768EB021BFB7EA900B6E341 /* CCShare.storyboard */,
  1888. F768EAFB1BFB7CD800B6E341 /* CCShareOC.h */,
  1889. F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */,
  1890. F7CD0FF91C8DDA7D006520C5 /* CCSharePermissionOC.h */,
  1891. F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */,
  1892. F78316861C0CB3CA00C43975 /* CCShareUserOC.h */,
  1893. F78316871C0CB3CA00C43975 /* CCShareUserOC.m */,
  1894. F743B2C31C95BBE8006F5B4A /* CCShareInfoCMOC.h */,
  1895. F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */,
  1896. );
  1897. path = Share;
  1898. sourceTree = "<group>";
  1899. };
  1900. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */ = {
  1901. isa = PBXGroup;
  1902. children = (
  1903. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */,
  1904. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */,
  1905. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */,
  1906. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */,
  1907. );
  1908. path = AHKActionSheet;
  1909. sourceTree = "<group>";
  1910. };
  1911. F72B60941A24F04E004EF66F /* Localizations */ = {
  1912. isa = PBXGroup;
  1913. children = (
  1914. F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */,
  1915. F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */,
  1916. F72B60911A24F00B004EF66F /* BKPasscodeView.strings */,
  1917. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1918. F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */,
  1919. F744BE9F1BEBB69F004FFF66 /* Intro.strings */,
  1920. F7B381BF1C074E3E004693F8 /* Error.strings */,
  1921. );
  1922. name = Localizations;
  1923. sourceTree = "<group>";
  1924. };
  1925. F73B4EAC1F470D9100BBEE4B /* src */ = {
  1926. isa = PBXGroup;
  1927. children = (
  1928. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */,
  1929. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */,
  1930. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */,
  1931. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */,
  1932. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */,
  1933. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */,
  1934. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */,
  1935. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */,
  1936. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */,
  1937. F73B4EB61F470D9100BBEE4B /* JpCntx.h */,
  1938. F73B4EB71F470D9100BBEE4B /* LangModels */,
  1939. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */,
  1940. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */,
  1941. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */,
  1942. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */,
  1943. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */,
  1944. F73B4ECB1F470D9100BBEE4B /* nscore.h */,
  1945. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */,
  1946. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */,
  1947. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */,
  1948. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */,
  1949. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */,
  1950. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */,
  1951. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */,
  1952. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */,
  1953. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */,
  1954. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */,
  1955. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */,
  1956. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */,
  1957. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */,
  1958. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */,
  1959. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */,
  1960. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */,
  1961. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */,
  1962. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */,
  1963. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */,
  1964. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */,
  1965. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */,
  1966. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */,
  1967. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */,
  1968. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */,
  1969. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */,
  1970. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */,
  1971. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */,
  1972. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */,
  1973. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */,
  1974. F73B4EE91F470D9100BBEE4B /* prmem.h */,
  1975. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */,
  1976. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */,
  1977. F73B4EED1F470D9100BBEE4B /* uchardet.h */,
  1978. );
  1979. path = src;
  1980. sourceTree = "<group>";
  1981. };
  1982. F73B4EB71F470D9100BBEE4B /* LangModels */ = {
  1983. isa = PBXGroup;
  1984. children = (
  1985. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */,
  1986. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */,
  1987. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */,
  1988. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */,
  1989. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */,
  1990. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */,
  1991. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */,
  1992. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */,
  1993. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */,
  1994. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */,
  1995. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */,
  1996. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */,
  1997. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */,
  1998. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */,
  1999. );
  2000. path = LangModels;
  2001. sourceTree = "<group>";
  2002. };
  2003. F73CC0571E813DFF006E3047 /* BKPasscodeView */ = {
  2004. isa = PBXGroup;
  2005. children = (
  2006. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */,
  2007. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */,
  2008. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */,
  2009. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */,
  2010. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */,
  2011. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */,
  2012. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */,
  2013. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */,
  2014. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */,
  2015. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */,
  2016. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */,
  2017. F73CC0631E813DFF006E3047 /* BKShiftingView.h */,
  2018. F73CC0641E813DFF006E3047 /* BKShiftingView.m */,
  2019. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */,
  2020. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */,
  2021. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */,
  2022. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */,
  2023. );
  2024. path = BKPasscodeView;
  2025. sourceTree = "<group>";
  2026. };
  2027. F73CCE221DC13788007E38D8 /* DZNEmptyDataSet */ = {
  2028. isa = PBXGroup;
  2029. children = (
  2030. F73CCE231DC13788007E38D8 /* UIScrollView+EmptyDataSet.h */,
  2031. F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */,
  2032. );
  2033. path = DZNEmptyDataSet;
  2034. sourceTree = "<group>";
  2035. };
  2036. F73CCE271DC13798007E38D8 /* UICKeyChainStore */ = {
  2037. isa = PBXGroup;
  2038. children = (
  2039. F73CCE281DC13798007E38D8 /* Info.plist */,
  2040. F73CCE291DC13798007E38D8 /* UICKeyChainStore.h */,
  2041. F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */,
  2042. );
  2043. path = UICKeyChainStore;
  2044. sourceTree = "<group>";
  2045. };
  2046. F73D71561F26739100E233EB /* Text */ = {
  2047. isa = PBXGroup;
  2048. children = (
  2049. F73D71611F2673C200E233EB /* NCText.swift */,
  2050. F73D71631F2674A400E233EB /* NCText.storyboard */,
  2051. );
  2052. path = Text;
  2053. sourceTree = "<group>";
  2054. };
  2055. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  2056. isa = PBXGroup;
  2057. children = (
  2058. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  2059. F732BA031D76CE1500E9878B /* CCNetworking.h */,
  2060. F732BA041D76CE1500E9878B /* CCNetworking.m */,
  2061. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */,
  2062. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */,
  2063. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */,
  2064. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */,
  2065. );
  2066. path = Networking;
  2067. sourceTree = "<group>";
  2068. };
  2069. F75037421DBFA91A008FB480 /* PureLayout */ = {
  2070. isa = PBXGroup;
  2071. children = (
  2072. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */,
  2073. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */,
  2074. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */,
  2075. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */,
  2076. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */,
  2077. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */,
  2078. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */,
  2079. F750374A1DBFA91A008FB480 /* PureLayout.h */,
  2080. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */,
  2081. );
  2082. path = PureLayout;
  2083. sourceTree = "<group>";
  2084. };
  2085. F7540EE11D5B238600C3FFA8 /* openssl */ = {
  2086. isa = PBXGroup;
  2087. children = (
  2088. F70A63061D5B3467004E2AA5 /* libcrypto.a */,
  2089. F70A63071D5B3467004E2AA5 /* libssl.a */,
  2090. F7540EE21D5B238600C3FFA8 /* aes.h */,
  2091. F7540EE31D5B238600C3FFA8 /* asn1.h */,
  2092. F7540EE41D5B238600C3FFA8 /* asn1_mac.h */,
  2093. F7540EE51D5B238600C3FFA8 /* asn1t.h */,
  2094. F7540EE61D5B238600C3FFA8 /* bio.h */,
  2095. F7540EE71D5B238600C3FFA8 /* blowfish.h */,
  2096. F7540EE81D5B238600C3FFA8 /* bn.h */,
  2097. F7540EE91D5B238600C3FFA8 /* buffer.h */,
  2098. F7540EEA1D5B238600C3FFA8 /* camellia.h */,
  2099. F7540EEB1D5B238600C3FFA8 /* cast.h */,
  2100. F7540EEC1D5B238600C3FFA8 /* cmac.h */,
  2101. F7540EED1D5B238600C3FFA8 /* cms.h */,
  2102. F7540EEE1D5B238600C3FFA8 /* comp.h */,
  2103. F7540EEF1D5B238600C3FFA8 /* conf.h */,
  2104. F7540EF01D5B238600C3FFA8 /* conf_api.h */,
  2105. F7540EF11D5B238600C3FFA8 /* crypto.h */,
  2106. F7540EF21D5B238600C3FFA8 /* des.h */,
  2107. F7540EF41D5B238600C3FFA8 /* dh.h */,
  2108. F7540EF51D5B238600C3FFA8 /* dsa.h */,
  2109. F7540EF71D5B238600C3FFA8 /* dtls1.h */,
  2110. F7540EF81D5B238600C3FFA8 /* e_os2.h */,
  2111. F7540EF91D5B238600C3FFA8 /* ebcdic.h */,
  2112. F7540EFA1D5B238600C3FFA8 /* ec.h */,
  2113. F7540EFB1D5B238600C3FFA8 /* ecdh.h */,
  2114. F7540EFC1D5B238600C3FFA8 /* ecdsa.h */,
  2115. F7540EFD1D5B238600C3FFA8 /* engine.h */,
  2116. F7540EFE1D5B238600C3FFA8 /* err.h */,
  2117. F7540EFF1D5B238600C3FFA8 /* evp.h */,
  2118. F7540F001D5B238600C3FFA8 /* hmac.h */,
  2119. F7540F011D5B238600C3FFA8 /* idea.h */,
  2120. F7540F041D5B238600C3FFA8 /* lhash.h */,
  2121. F7540F051D5B238600C3FFA8 /* md4.h */,
  2122. F7540F061D5B238600C3FFA8 /* md5.h */,
  2123. F7540F071D5B238600C3FFA8 /* mdc2.h */,
  2124. F7540F081D5B238600C3FFA8 /* modes.h */,
  2125. F7540F091D5B238600C3FFA8 /* obj_mac.h */,
  2126. F7540F0A1D5B238600C3FFA8 /* objects.h */,
  2127. F7540F0B1D5B238600C3FFA8 /* ocsp.h */,
  2128. F7540F0C1D5B238600C3FFA8 /* opensslconf.h */,
  2129. F7540F0D1D5B238600C3FFA8 /* opensslv.h */,
  2130. F7540F0E1D5B238600C3FFA8 /* ossl_typ.h */,
  2131. F7540F0F1D5B238600C3FFA8 /* pem.h */,
  2132. F7540F101D5B238600C3FFA8 /* pem2.h */,
  2133. F7540F111D5B238600C3FFA8 /* pkcs12.h */,
  2134. F7540F121D5B238600C3FFA8 /* pkcs7.h */,
  2135. F7540F141D5B238600C3FFA8 /* rand.h */,
  2136. F7540F151D5B238600C3FFA8 /* rc2.h */,
  2137. F7540F161D5B238600C3FFA8 /* rc4.h */,
  2138. F7540F171D5B238600C3FFA8 /* ripemd.h */,
  2139. F7540F181D5B238600C3FFA8 /* rsa.h */,
  2140. F7540F191D5B238600C3FFA8 /* safestack.h */,
  2141. F7540F1A1D5B238600C3FFA8 /* seed.h */,
  2142. F7540F1B1D5B238600C3FFA8 /* sha.h */,
  2143. F7540F1C1D5B238600C3FFA8 /* srp.h */,
  2144. F7540F1D1D5B238600C3FFA8 /* srtp.h */,
  2145. F7540F1E1D5B238600C3FFA8 /* ssl.h */,
  2146. F7540F1F1D5B238600C3FFA8 /* ssl2.h */,
  2147. F7540F211D5B238600C3FFA8 /* ssl3.h */,
  2148. F7540F221D5B238600C3FFA8 /* stack.h */,
  2149. F7540F231D5B238600C3FFA8 /* symhacks.h */,
  2150. F7540F241D5B238600C3FFA8 /* tls1.h */,
  2151. F7540F251D5B238600C3FFA8 /* ts.h */,
  2152. F7540F261D5B238600C3FFA8 /* txt_db.h */,
  2153. F7540F271D5B238600C3FFA8 /* ui.h */,
  2154. F7540F291D5B238600C3FFA8 /* whrlpool.h */,
  2155. F7540F2A1D5B238600C3FFA8 /* x509.h */,
  2156. F7540F2B1D5B238600C3FFA8 /* x509_vfy.h */,
  2157. F7540F2C1D5B238600C3FFA8 /* x509v3.h */,
  2158. );
  2159. path = openssl;
  2160. sourceTree = "<group>";
  2161. };
  2162. F75AE3C51E9D12900088BB09 /* SwiftyAvatar */ = {
  2163. isa = PBXGroup;
  2164. children = (
  2165. F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */,
  2166. );
  2167. path = SwiftyAvatar;
  2168. sourceTree = "<group>";
  2169. };
  2170. F762CA9F1EACB66200B38484 /* XLForm */ = {
  2171. isa = PBXGroup;
  2172. children = (
  2173. F762CAA11EACB66200B38484 /* XL */,
  2174. F762CAF51EACB66200B38484 /* XLForm.bundle */,
  2175. );
  2176. path = XLForm;
  2177. sourceTree = "<group>";
  2178. };
  2179. F762CAA11EACB66200B38484 /* XL */ = {
  2180. isa = PBXGroup;
  2181. children = (
  2182. F762CAA21EACB66200B38484 /* Cell */,
  2183. F762CAC51EACB66200B38484 /* Controllers */,
  2184. F762CACD1EACB66200B38484 /* Descriptors */,
  2185. F762CAD51EACB66200B38484 /* Helpers */,
  2186. F762CAEB1EACB66200B38484 /* Validation */,
  2187. F762CAF31EACB66200B38484 /* XLForm.h */,
  2188. F762CAF41EACB66200B38484 /* XLForm.m */,
  2189. );
  2190. path = XL;
  2191. sourceTree = "<group>";
  2192. };
  2193. F762CAA21EACB66200B38484 /* Cell */ = {
  2194. isa = PBXGroup;
  2195. children = (
  2196. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */,
  2197. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */,
  2198. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */,
  2199. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */,
  2200. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */,
  2201. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */,
  2202. F762CAA91EACB66200B38484 /* XLFormDateCell.h */,
  2203. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */,
  2204. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */,
  2205. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */,
  2206. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */,
  2207. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */,
  2208. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */,
  2209. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */,
  2210. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */,
  2211. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */,
  2212. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */,
  2213. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */,
  2214. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */,
  2215. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */,
  2216. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */,
  2217. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */,
  2218. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */,
  2219. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */,
  2220. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */,
  2221. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */,
  2222. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */,
  2223. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */,
  2224. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */,
  2225. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */,
  2226. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */,
  2227. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */,
  2228. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */,
  2229. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */,
  2230. );
  2231. path = Cell;
  2232. sourceTree = "<group>";
  2233. };
  2234. F762CAC51EACB66200B38484 /* Controllers */ = {
  2235. isa = PBXGroup;
  2236. children = (
  2237. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */,
  2238. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */,
  2239. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */,
  2240. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */,
  2241. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */,
  2242. F762CACB1EACB66200B38484 /* XLFormViewController.h */,
  2243. F762CACC1EACB66200B38484 /* XLFormViewController.m */,
  2244. );
  2245. path = Controllers;
  2246. sourceTree = "<group>";
  2247. };
  2248. F762CACD1EACB66200B38484 /* Descriptors */ = {
  2249. isa = PBXGroup;
  2250. children = (
  2251. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */,
  2252. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */,
  2253. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */,
  2254. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */,
  2255. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */,
  2256. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */,
  2257. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */,
  2258. );
  2259. path = Descriptors;
  2260. sourceTree = "<group>";
  2261. };
  2262. F762CAD51EACB66200B38484 /* Helpers */ = {
  2263. isa = PBXGroup;
  2264. children = (
  2265. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */,
  2266. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */,
  2267. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */,
  2268. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */,
  2269. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */,
  2270. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */,
  2271. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */,
  2272. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */,
  2273. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */,
  2274. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */,
  2275. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */,
  2276. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */,
  2277. F762CAE21EACB66200B38484 /* Views */,
  2278. );
  2279. path = Helpers;
  2280. sourceTree = "<group>";
  2281. };
  2282. F762CAE21EACB66200B38484 /* Views */ = {
  2283. isa = PBXGroup;
  2284. children = (
  2285. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */,
  2286. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */,
  2287. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */,
  2288. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */,
  2289. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */,
  2290. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */,
  2291. F762CAE91EACB66200B38484 /* XLFormTextView.h */,
  2292. F762CAEA1EACB66200B38484 /* XLFormTextView.m */,
  2293. );
  2294. path = Views;
  2295. sourceTree = "<group>";
  2296. };
  2297. F762CAEB1EACB66200B38484 /* Validation */ = {
  2298. isa = PBXGroup;
  2299. children = (
  2300. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */,
  2301. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */,
  2302. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */,
  2303. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */,
  2304. F762CAF01EACB66200B38484 /* XLFormValidator.h */,
  2305. F762CAF11EACB66200B38484 /* XLFormValidator.m */,
  2306. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */,
  2307. );
  2308. path = Validation;
  2309. sourceTree = "<group>";
  2310. };
  2311. F762CB1C1EACB7D400B38484 /* VFR Pdf Reader */ = {
  2312. isa = PBXGroup;
  2313. children = (
  2314. F7D423501F0596C6009C9782 /* Sources */,
  2315. F7D423151F0596AC009C9782 /* Graphics */,
  2316. );
  2317. path = "VFR Pdf Reader";
  2318. sourceTree = "<group>";
  2319. };
  2320. F762CB7B1EACB81000B38484 /* REMenu */ = {
  2321. isa = PBXGroup;
  2322. children = (
  2323. F762CB7C1EACB81000B38484 /* RECommonFunctions.h */,
  2324. F762CB7D1EACB81000B38484 /* RECommonFunctions.m */,
  2325. F762CB7E1EACB81000B38484 /* REMenu.h */,
  2326. F762CB7F1EACB81000B38484 /* REMenu.m */,
  2327. F762CB801EACB81000B38484 /* REMenuContainerView.h */,
  2328. F762CB811EACB81000B38484 /* REMenuContainerView.m */,
  2329. F762CB821EACB81000B38484 /* REMenuItem.h */,
  2330. F762CB831EACB81000B38484 /* REMenuItem.m */,
  2331. F762CB841EACB81000B38484 /* REMenuItemView.h */,
  2332. F762CB851EACB81000B38484 /* REMenuItemView.m */,
  2333. );
  2334. path = REMenu;
  2335. sourceTree = "<group>";
  2336. };
  2337. F762CB8B1EACB84400B38484 /* TWMessageBarManager */ = {
  2338. isa = PBXGroup;
  2339. children = (
  2340. F762CB8C1EACB84400B38484 /* Icons */,
  2341. F762CB931EACB84400B38484 /* TWMessageBarManager.h */,
  2342. F762CB941EACB84400B38484 /* TWMessageBarManager.m */,
  2343. );
  2344. path = TWMessageBarManager;
  2345. sourceTree = "<group>";
  2346. };
  2347. F762CB8C1EACB84400B38484 /* Icons */ = {
  2348. isa = PBXGroup;
  2349. children = (
  2350. F762CB8D1EACB84400B38484 /* icon-error.png */,
  2351. F762CB8E1EACB84400B38484 /* icon-error@2x.png */,
  2352. F762CB8F1EACB84400B38484 /* icon-info.png */,
  2353. F762CB901EACB84400B38484 /* icon-info@2x.png */,
  2354. F762CB911EACB84400B38484 /* icon-success.png */,
  2355. F762CB921EACB84400B38484 /* icon-success@2x.png */,
  2356. );
  2357. path = Icons;
  2358. sourceTree = "<group>";
  2359. };
  2360. F7659A211DC0B726004860C4 /* EAIntroView */ = {
  2361. isa = PBXGroup;
  2362. children = (
  2363. F7659A221DC0B726004860C4 /* EAIntroPage.h */,
  2364. F7659A231DC0B726004860C4 /* EAIntroPage.m */,
  2365. F7659A241DC0B726004860C4 /* EAIntroView.h */,
  2366. F7659A251DC0B726004860C4 /* EAIntroView.m */,
  2367. );
  2368. path = EAIntroView;
  2369. sourceTree = "<group>";
  2370. };
  2371. F7659A2A1DC0B72F004860C4 /* EARestrictedScrollView */ = {
  2372. isa = PBXGroup;
  2373. children = (
  2374. F7659A2B1DC0B72F004860C4 /* EARestrictedScrollView.h */,
  2375. F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */,
  2376. );
  2377. path = EARestrictedScrollView;
  2378. sourceTree = "<group>";
  2379. };
  2380. F7659A2F1DC0B737004860C4 /* iRate */ = {
  2381. isa = PBXGroup;
  2382. children = (
  2383. F7659A311DC0B737004860C4 /* iRate.bundle */,
  2384. F7659A321DC0B737004860C4 /* iRate.h */,
  2385. F7659A331DC0B737004860C4 /* iRate.m */,
  2386. );
  2387. path = iRate;
  2388. sourceTree = "<group>";
  2389. };
  2390. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  2391. isa = PBXGroup;
  2392. children = (
  2393. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  2394. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  2395. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  2396. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  2397. F771E3F620E239B400AFB62D /* FileProviderExtension+Network.swift */,
  2398. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  2399. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  2400. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  2401. );
  2402. path = "File Provider Extension";
  2403. sourceTree = "<group>";
  2404. };
  2405. F780711E1EDB135100EAFFF6 /* Photos */ = {
  2406. isa = PBXGroup;
  2407. children = (
  2408. F780711F1EDB135100EAFFF6 /* CCPhotos.h */,
  2409. F78071201EDB135100EAFFF6 /* CCPhotos.m */,
  2410. );
  2411. path = Photos;
  2412. sourceTree = "<group>";
  2413. };
  2414. F78964A61EBB576C00403E13 /* JDStatusBarNotification */ = {
  2415. isa = PBXGroup;
  2416. children = (
  2417. F78964A71EBB576C00403E13 /* JDStatusBarNotification.h */,
  2418. F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */,
  2419. F78964A91EBB576C00403E13 /* JDStatusBarStyle.h */,
  2420. F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */,
  2421. F78964AB1EBB576C00403E13 /* JDStatusBarView.h */,
  2422. F78964AC1EBB576C00403E13 /* JDStatusBarView.m */,
  2423. );
  2424. path = JDStatusBarNotification;
  2425. sourceTree = "<group>";
  2426. };
  2427. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  2428. isa = PBXGroup;
  2429. children = (
  2430. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */,
  2431. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */,
  2432. );
  2433. path = Favorites;
  2434. sourceTree = "<group>";
  2435. };
  2436. F7A321621E9E37960069AD1B /* Activity */ = {
  2437. isa = PBXGroup;
  2438. children = (
  2439. F7A321631E9E37960069AD1B /* CCActivity.h */,
  2440. F7A321641E9E37960069AD1B /* CCActivity.m */,
  2441. );
  2442. path = Activity;
  2443. sourceTree = "<group>";
  2444. };
  2445. F7A321891E9E42B20069AD1B /* MenuAccount */ = {
  2446. isa = PBXGroup;
  2447. children = (
  2448. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */,
  2449. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */,
  2450. );
  2451. path = MenuAccount;
  2452. sourceTree = "<group>";
  2453. };
  2454. F7A377131EB2364A002856D3 /* Fabric */ = {
  2455. isa = PBXGroup;
  2456. children = (
  2457. F7A377141EB2364A002856D3 /* Crashlytics.framework */,
  2458. F7A377151EB2364A002856D3 /* Fabric.framework */,
  2459. );
  2460. name = Fabric;
  2461. path = "Libraries external/Fabric";
  2462. sourceTree = SOURCE_ROOT;
  2463. };
  2464. F7A55417204EF8AF008468EC /* TOScrollBar */ = {
  2465. isa = PBXGroup;
  2466. children = (
  2467. F7A55419204EF8AF008468EC /* TOScrollBar.h */,
  2468. F7A5541B204EF8AF008468EC /* TOScrollBar.m */,
  2469. F7A5541C204EF8AF008468EC /* TOScrollBarGestureRecognizer.h */,
  2470. F7A55418204EF8AF008468EC /* TOScrollBarGestureRecognizer.m */,
  2471. F7A5541A204EF8AF008468EC /* UIScrollView+TOScrollBar.h */,
  2472. F7A5541D204EF8AF008468EC /* UIScrollView+TOScrollBar.m */,
  2473. );
  2474. path = TOScrollBar;
  2475. sourceTree = "<group>";
  2476. };
  2477. F7ACE4281BAC0268006C0017 /* Settings */ = {
  2478. isa = PBXGroup;
  2479. children = (
  2480. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  2481. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  2482. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  2483. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  2484. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  2485. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  2486. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  2487. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  2488. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  2489. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  2490. F7ACE4301BAC0268006C0017 /* CCSettings.h */,
  2491. F7ACE4311BAC0268006C0017 /* CCSettings.m */,
  2492. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  2493. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */,
  2494. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */,
  2495. );
  2496. path = Settings;
  2497. sourceTree = "<group>";
  2498. };
  2499. F7B0C0CA1EE7E7750033AC24 /* Synchronize */ = {
  2500. isa = PBXGroup;
  2501. children = (
  2502. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */,
  2503. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */,
  2504. );
  2505. path = Synchronize;
  2506. sourceTree = "<group>";
  2507. };
  2508. F7B0C1701EE8397E0033AC24 /* AutoUpload */ = {
  2509. isa = PBXGroup;
  2510. children = (
  2511. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */,
  2512. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */,
  2513. );
  2514. path = AutoUpload;
  2515. sourceTree = "<group>";
  2516. };
  2517. F7B1FBAF1E72E3D1001781FE /* SwiftWebVC */ = {
  2518. isa = PBXGroup;
  2519. children = (
  2520. F7B1FBB01E72E3D1001781FE /* Resources */,
  2521. F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */,
  2522. F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */,
  2523. F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */,
  2524. F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */,
  2525. F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */,
  2526. );
  2527. path = SwiftWebVC;
  2528. sourceTree = "<group>";
  2529. };
  2530. F7B1FBB01E72E3D1001781FE /* Resources */ = {
  2531. isa = PBXGroup;
  2532. children = (
  2533. F7B1FBB11E72E3D1001781FE /* Media.xcassets */,
  2534. );
  2535. path = Resources;
  2536. sourceTree = "<group>";
  2537. };
  2538. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */ = {
  2539. isa = PBXGroup;
  2540. children = (
  2541. F7B2DEEC1F976785007CF4D2 /* languages */,
  2542. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */,
  2543. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */,
  2544. );
  2545. path = NYMnemonic;
  2546. sourceTree = "<group>";
  2547. };
  2548. F7B2DEEC1F976785007CF4D2 /* languages */ = {
  2549. isa = PBXGroup;
  2550. children = (
  2551. F7B2DEED1F976785007CF4D2 /* english.txt */,
  2552. );
  2553. path = languages;
  2554. sourceTree = "<group>";
  2555. };
  2556. F7B4F1C51F44356F00B53B42 /* NCUchardet */ = {
  2557. isa = PBXGroup;
  2558. children = (
  2559. F73B4EAC1F470D9100BBEE4B /* src */,
  2560. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */,
  2561. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */,
  2562. );
  2563. path = NCUchardet;
  2564. sourceTree = "<group>";
  2565. };
  2566. F7BAAD951ED5A63D00B7EAD4 /* Database */ = {
  2567. isa = PBXGroup;
  2568. children = (
  2569. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  2570. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  2571. );
  2572. path = Database;
  2573. sourceTree = "<group>";
  2574. };
  2575. F7BE6E2A1D2D5C3B00106933 /* QuickActions */ = {
  2576. isa = PBXGroup;
  2577. children = (
  2578. F7BE6E2B1D2D5C3B00106933 /* CCQuickActions.h */,
  2579. F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */,
  2580. );
  2581. path = QuickActions;
  2582. sourceTree = "<group>";
  2583. };
  2584. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */ = {
  2585. isa = PBXGroup;
  2586. children = (
  2587. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */,
  2588. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */,
  2589. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */,
  2590. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */,
  2591. );
  2592. path = "ManageLocation+ManageAsset";
  2593. sourceTree = "<group>";
  2594. };
  2595. F7BFFA621A24D7300044ED85 /* Login */ = {
  2596. isa = PBXGroup;
  2597. children = (
  2598. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */,
  2599. F7BF1B3F1D51E893000854F6 /* CCLogin.h */,
  2600. F7BF1B401D51E893000854F6 /* CCLogin.m */,
  2601. F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */,
  2602. );
  2603. path = Login;
  2604. sourceTree = "<group>";
  2605. };
  2606. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  2607. isa = PBXGroup;
  2608. children = (
  2609. F76C3B871C638A4C00DC4301 /* CCError.h */,
  2610. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  2611. F76C3B881C638A4C00DC4301 /* CCError.m */,
  2612. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */,
  2613. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */,
  2614. F76C3B831C6388BC00DC4301 /* CCGraphics.h */,
  2615. F76C3B841C6388BC00DC4301 /* CCGraphics.m */,
  2616. F7514EDA1C7B1336008F3338 /* CCHud.h */,
  2617. F7514EDB1C7B1336008F3338 /* CCHud.m */,
  2618. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  2619. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  2620. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  2621. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  2622. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */,
  2623. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */,
  2624. );
  2625. path = Utility;
  2626. sourceTree = "<group>";
  2627. };
  2628. F7C0F46D1C8880540059EC54 /* Share */ = {
  2629. isa = PBXGroup;
  2630. children = (
  2631. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */,
  2632. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */,
  2633. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */,
  2634. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */,
  2635. F7C0F46E1C8880540059EC54 /* ShareViewController.h */,
  2636. F7C0F46F1C8880540059EC54 /* ShareViewController.m */,
  2637. F7296A661C8880ED001A7809 /* CCloadItemData.swift */,
  2638. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */,
  2639. );
  2640. path = Share;
  2641. sourceTree = "<group>";
  2642. };
  2643. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  2644. isa = PBXGroup;
  2645. children = (
  2646. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  2647. F710E80C1EF95C9C00DC2427 /* Intro */,
  2648. F700222B1EC479840080073F /* Custom.xcassets */,
  2649. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  2650. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  2651. F76F23331ED4603700C40023 /* LaunchScreen.xib */,
  2652. );
  2653. path = Brand;
  2654. sourceTree = "<group>";
  2655. };
  2656. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  2657. isa = PBXGroup;
  2658. children = (
  2659. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */,
  2660. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */,
  2661. );
  2662. name = Notification;
  2663. sourceTree = "<group>";
  2664. };
  2665. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  2666. isa = PBXGroup;
  2667. children = (
  2668. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  2669. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  2670. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */,
  2671. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */,
  2672. F7496B81208F5651004B299C /* iOSClient.plist */,
  2673. F7496B83208F5652004B299C /* Share.plist */,
  2674. );
  2675. name = "Supporting Files";
  2676. sourceTree = "<group>";
  2677. };
  2678. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */ = {
  2679. isa = PBXGroup;
  2680. children = (
  2681. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */,
  2682. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */,
  2683. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */,
  2684. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */,
  2685. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */,
  2686. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */,
  2687. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */,
  2688. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */,
  2689. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */,
  2690. F7CA1EC520E7E3FE002CC65E /* .gitkeep */,
  2691. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */,
  2692. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */,
  2693. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */,
  2694. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */,
  2695. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */,
  2696. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */,
  2697. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */,
  2698. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */,
  2699. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */,
  2700. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */,
  2701. );
  2702. path = PKDownloadButton;
  2703. sourceTree = "<group>";
  2704. };
  2705. F7D423151F0596AC009C9782 /* Graphics */ = {
  2706. isa = PBXGroup;
  2707. children = (
  2708. F7D423161F0596AC009C9782 /* AppIcon-076.png */,
  2709. F7D423171F0596AC009C9782 /* AppIcon-120.png */,
  2710. F7D423181F0596AC009C9782 /* AppIcon-152.png */,
  2711. F7D423191F0596AC009C9782 /* AppIcon-167.png */,
  2712. F7D4231A1F0596AC009C9782 /* AppIcon-180.png */,
  2713. F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */,
  2714. F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */,
  2715. F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */,
  2716. F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */,
  2717. F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */,
  2718. F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */,
  2719. F7D423211F0596AC009C9782 /* Reader-Email.png */,
  2720. F7D423221F0596AC009C9782 /* Reader-Email@2x.png */,
  2721. F7D423231F0596AC009C9782 /* Reader-Email@3x.png */,
  2722. F7D423241F0596AC009C9782 /* Reader-Export.png */,
  2723. F7D423251F0596AC009C9782 /* Reader-Export@2x.png */,
  2724. F7D423261F0596AC009C9782 /* Reader-Export@3x.png */,
  2725. F7D423271F0596AC009C9782 /* Reader-Mark-N.png */,
  2726. F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */,
  2727. F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */,
  2728. F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */,
  2729. F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */,
  2730. F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */,
  2731. F7D4232D1F0596AC009C9782 /* Reader-Print.png */,
  2732. F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */,
  2733. F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */,
  2734. F7D423301F0596AC009C9782 /* Reader-Thumbs.png */,
  2735. F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */,
  2736. F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */,
  2737. );
  2738. path = Graphics;
  2739. sourceTree = "<group>";
  2740. };
  2741. F7D423501F0596C6009C9782 /* Sources */ = {
  2742. isa = PBXGroup;
  2743. children = (
  2744. F7D423511F0596C6009C9782 /* CGPDFDocument.h */,
  2745. F7D423521F0596C6009C9782 /* CGPDFDocument.m */,
  2746. F7D423531F0596C6009C9782 /* ReaderConstants.h */,
  2747. F7D423541F0596C6009C9782 /* ReaderConstants.m */,
  2748. F7D423551F0596C6009C9782 /* ReaderContentPage.h */,
  2749. F7D423561F0596C6009C9782 /* ReaderContentPage.m */,
  2750. F7D423571F0596C6009C9782 /* ReaderContentTile.h */,
  2751. F7D423581F0596C6009C9782 /* ReaderContentTile.m */,
  2752. F7D423591F0596C6009C9782 /* ReaderContentView.h */,
  2753. F7D4235A1F0596C6009C9782 /* ReaderContentView.m */,
  2754. F7D4235B1F0596C6009C9782 /* ReaderDocument.h */,
  2755. F7D4235C1F0596C6009C9782 /* ReaderDocument.m */,
  2756. F7D4235D1F0596C6009C9782 /* ReaderDocumentOutline.h */,
  2757. F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */,
  2758. F7D4235F1F0596C6009C9782 /* ReaderMainPagebar.h */,
  2759. F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */,
  2760. F7D423611F0596C6009C9782 /* ReaderMainToolbar.h */,
  2761. F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */,
  2762. F7D423631F0596C6009C9782 /* ReaderThumbCache.h */,
  2763. F7D423641F0596C6009C9782 /* ReaderThumbCache.m */,
  2764. F7D423651F0596C6009C9782 /* ReaderThumbFetch.h */,
  2765. F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */,
  2766. F7D423671F0596C6009C9782 /* ReaderThumbQueue.h */,
  2767. F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */,
  2768. F7D423691F0596C6009C9782 /* ReaderThumbRender.h */,
  2769. F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */,
  2770. F7D4236B1F0596C6009C9782 /* ReaderThumbRequest.h */,
  2771. F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */,
  2772. F7D4236D1F0596C6009C9782 /* ReaderThumbsView.h */,
  2773. F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */,
  2774. F7D4236F1F0596C6009C9782 /* ReaderThumbView.h */,
  2775. F7D423701F0596C6009C9782 /* ReaderThumbView.m */,
  2776. F7D423711F0596C6009C9782 /* ReaderViewController.h */,
  2777. F7D423721F0596C6009C9782 /* ReaderViewController.m */,
  2778. F7D423731F0596C6009C9782 /* ThumbsMainToolbar.h */,
  2779. F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */,
  2780. F7D423751F0596C6009C9782 /* ThumbsViewController.h */,
  2781. F7D423761F0596C6009C9782 /* ThumbsViewController.m */,
  2782. F7D423771F0596C6009C9782 /* UIXToolbarView.h */,
  2783. F7D423781F0596C6009C9782 /* UIXToolbarView.m */,
  2784. );
  2785. path = Sources;
  2786. sourceTree = "<group>";
  2787. };
  2788. F7D423A31F063B81009C9782 /* CTAssetsPickerController */ = {
  2789. isa = PBXGroup;
  2790. children = (
  2791. F7D423A41F063B81009C9782 /* Categories */,
  2792. F7D423B91F063B81009C9782 /* CTAssetCheckmark.h */,
  2793. F7D423BA1F063B81009C9782 /* CTAssetCheckmark.m */,
  2794. F7D423BB1F063B81009C9782 /* CTAssetCollectionViewCell.h */,
  2795. F7D423BC1F063B81009C9782 /* CTAssetCollectionViewCell.m */,
  2796. F7D423BD1F063B81009C9782 /* CTAssetCollectionViewController.h */,
  2797. F7D423BE1F063B81009C9782 /* CTAssetCollectionViewController.m */,
  2798. F7D423BF1F063B81009C9782 /* CTAssetItemViewController.h */,
  2799. F7D423C01F063B81009C9782 /* CTAssetItemViewController.m */,
  2800. F7D423C11F063B81009C9782 /* CTAssetPlayButton.h */,
  2801. F7D423C21F063B81009C9782 /* CTAssetPlayButton.m */,
  2802. F7D423C31F063B81009C9782 /* CTAssetScrollView.h */,
  2803. F7D423C41F063B81009C9782 /* CTAssetScrollView.m */,
  2804. F7D423C51F063B81009C9782 /* CTAssetSelectionButton.h */,
  2805. F7D423C61F063B81009C9782 /* CTAssetSelectionButton.m */,
  2806. F7D423C71F063B81009C9782 /* CTAssetSelectionLabel.h */,
  2807. F7D423C81F063B81009C9782 /* CTAssetSelectionLabel.m */,
  2808. F7D423C91F063B81009C9782 /* CTAssetsGridSelectedView.h */,
  2809. F7D423CA1F063B81009C9782 /* CTAssetsGridSelectedView.m */,
  2810. F7D423CB1F063B81009C9782 /* CTAssetsGridView.h */,
  2811. F7D423CC1F063B81009C9782 /* CTAssetsGridView.m */,
  2812. F7D423CD1F063B81009C9782 /* CTAssetsGridViewCell.h */,
  2813. F7D423CE1F063B81009C9782 /* CTAssetsGridViewCell.m */,
  2814. F7D423CF1F063B81009C9782 /* CTAssetsGridViewController.h */,
  2815. F7D423D01F063B81009C9782 /* CTAssetsGridViewController.m */,
  2816. F7D423D11F063B81009C9782 /* CTAssetsGridViewFooter.h */,
  2817. F7D423D21F063B81009C9782 /* CTAssetsGridViewFooter.m */,
  2818. F7D423D31F063B81009C9782 /* CTAssetsGridViewLayout.h */,
  2819. F7D423D41F063B81009C9782 /* CTAssetsGridViewLayout.m */,
  2820. F7D423D51F063B81009C9782 /* CTAssetsNavigationController.h */,
  2821. F7D423D61F063B82009C9782 /* CTAssetsNavigationController.m */,
  2822. F7D423D71F063B82009C9782 /* CTAssetsPageView.h */,
  2823. F7D423D81F063B82009C9782 /* CTAssetsPageView.m */,
  2824. F7D423D91F063B82009C9782 /* CTAssetsPageViewController.h */,
  2825. F7D423DA1F063B82009C9782 /* CTAssetsPageViewController.m */,
  2826. F7D423DB1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.h */,
  2827. F7D423DC1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m */,
  2828. F7D423DD1F063B82009C9782 /* CTAssetsPickerController.bundle */,
  2829. F7D423DE1F063B82009C9782 /* CTAssetsPickerController.h */,
  2830. F7D423DF1F063B82009C9782 /* CTAssetsPickerController.m */,
  2831. F7D423E01F063B82009C9782 /* CTAssetsPickerDefines.h */,
  2832. F7D423E11F063B82009C9782 /* CTAssetsPickerNoAssetsView.h */,
  2833. F7D423E21F063B82009C9782 /* CTAssetsPickerNoAssetsView.m */,
  2834. F7D423E31F063B82009C9782 /* CTAssetsViewControllerTransition.h */,
  2835. F7D423E41F063B82009C9782 /* CTAssetsViewControllerTransition.m */,
  2836. F7D423E51F063B82009C9782 /* CTAssetThumbnailOverlay.h */,
  2837. F7D423E61F063B82009C9782 /* CTAssetThumbnailOverlay.m */,
  2838. F7D423E71F063B82009C9782 /* CTAssetThumbnailStacks.h */,
  2839. F7D423E81F063B82009C9782 /* CTAssetThumbnailStacks.m */,
  2840. F7D423E91F063B82009C9782 /* CTAssetThumbnailView.h */,
  2841. F7D423EA1F063B82009C9782 /* CTAssetThumbnailView.m */,
  2842. );
  2843. path = CTAssetsPickerController;
  2844. sourceTree = "<group>";
  2845. };
  2846. F7D423A41F063B81009C9782 /* Categories */ = {
  2847. isa = PBXGroup;
  2848. children = (
  2849. F7D423A51F063B81009C9782 /* CTAssetsPageViewController+Internal.h */,
  2850. F7D423A61F063B81009C9782 /* CTAssetsPickerController+Internal.h */,
  2851. F7D423A71F063B81009C9782 /* NSBundle+CTAssetsPickerController.h */,
  2852. F7D423A81F063B81009C9782 /* NSBundle+CTAssetsPickerController.m */,
  2853. F7D423A91F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.h */,
  2854. F7D423AA1F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.m */,
  2855. F7D423AB1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.h */,
  2856. F7D423AC1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.m */,
  2857. F7D423AD1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.h */,
  2858. F7D423AE1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.m */,
  2859. F7D423AF1F063B81009C9782 /* PHAsset+CTAssetsPickerController.h */,
  2860. F7D423B01F063B81009C9782 /* PHAsset+CTAssetsPickerController.m */,
  2861. F7D423B11F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.h */,
  2862. F7D423B21F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.m */,
  2863. F7D423B31F063B81009C9782 /* PHImageManager+CTAssetsPickerController.h */,
  2864. F7D423B41F063B81009C9782 /* PHImageManager+CTAssetsPickerController.m */,
  2865. F7D423B51F063B81009C9782 /* UICollectionView+CTAssetsPickerController.h */,
  2866. F7D423B61F063B81009C9782 /* UICollectionView+CTAssetsPickerController.m */,
  2867. F7D423B71F063B81009C9782 /* UIImage+CTAssetsPickerController.h */,
  2868. F7D423B81F063B81009C9782 /* UIImage+CTAssetsPickerController.m */,
  2869. );
  2870. path = Categories;
  2871. sourceTree = "<group>";
  2872. };
  2873. F7DC5FD31F00F98B00A903C7 /* MGSwipeTableCell */ = {
  2874. isa = PBXGroup;
  2875. children = (
  2876. F7DC5FE81F011EB700A903C7 /* MGSwipeButton.h */,
  2877. F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */,
  2878. F7DC5FEA1F011EB700A903C7 /* MGSwipeTableCell.h */,
  2879. F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */,
  2880. );
  2881. path = MGSwipeTableCell;
  2882. sourceTree = "<group>";
  2883. };
  2884. F7DFE24E1EBDC3A400CF5202 /* Realm */ = {
  2885. isa = PBXGroup;
  2886. children = (
  2887. F7DFE24F1EBDC3A400CF5202 /* Realm.framework */,
  2888. F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */,
  2889. );
  2890. path = Realm;
  2891. sourceTree = "<group>";
  2892. };
  2893. F7E9C41320F4CA870040CF18 /* Transfers */ = {
  2894. isa = PBXGroup;
  2895. children = (
  2896. F7E9C41520F4CA870040CF18 /* CCTransfers.h */,
  2897. F7E9C41820F4CA870040CF18 /* CCTransfers.m */,
  2898. );
  2899. path = Transfers;
  2900. sourceTree = "<group>";
  2901. };
  2902. F7ECBA6B1E239DCD003E6328 /* Create */ = {
  2903. isa = PBXGroup;
  2904. children = (
  2905. F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */,
  2906. );
  2907. path = Create;
  2908. sourceTree = "<group>";
  2909. };
  2910. F7F54CAC1E5B143100E19C62 /* Library */ = {
  2911. isa = PBXGroup;
  2912. children = (
  2913. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */,
  2914. F73CC0571E813DFF006E3047 /* BKPasscodeView */,
  2915. F7D423A31F063B81009C9782 /* CTAssetsPickerController */,
  2916. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */,
  2917. F7B4F1C51F44356F00B53B42 /* NCUchardet */,
  2918. F762CB7B1EACB81000B38484 /* REMenu */,
  2919. F7B1FBAF1E72E3D1001781FE /* SwiftWebVC */,
  2920. F762CB8B1EACB84400B38484 /* TWMessageBarManager */,
  2921. F762CB1C1EACB7D400B38484 /* VFR Pdf Reader */,
  2922. F762CA9F1EACB66200B38484 /* XLForm */,
  2923. );
  2924. path = Library;
  2925. sourceTree = "<group>";
  2926. };
  2927. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */ = {
  2928. isa = PBXGroup;
  2929. children = (
  2930. F7F54CAE1E5B14C700E19C62 /* Assets */,
  2931. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */,
  2932. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */,
  2933. F7F54CD21E5B14C700E19C62 /* MWCommon.h */,
  2934. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */,
  2935. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */,
  2936. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */,
  2937. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */,
  2938. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */,
  2939. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */,
  2940. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */,
  2941. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */,
  2942. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */,
  2943. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */,
  2944. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */,
  2945. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */,
  2946. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */,
  2947. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */,
  2948. );
  2949. path = MWPhotoBrowser;
  2950. sourceTree = "<group>";
  2951. };
  2952. F7F54CAE1E5B14C700E19C62 /* Assets */ = {
  2953. isa = PBXGroup;
  2954. children = (
  2955. F7F54CAF1E5B14C700E19C62 /* ImageError.png */,
  2956. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */,
  2957. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */,
  2958. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */,
  2959. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */,
  2960. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */,
  2961. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */,
  2962. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */,
  2963. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */,
  2964. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */,
  2965. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */,
  2966. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */,
  2967. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */,
  2968. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */,
  2969. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */,
  2970. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */,
  2971. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */,
  2972. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */,
  2973. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */,
  2974. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */,
  2975. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */,
  2976. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */,
  2977. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */,
  2978. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */,
  2979. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */,
  2980. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */,
  2981. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */,
  2982. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */,
  2983. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */,
  2984. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */,
  2985. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */,
  2986. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */,
  2987. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */,
  2988. );
  2989. path = Assets;
  2990. sourceTree = "<group>";
  2991. };
  2992. F7F67B9F1A24D27800EE80DA = {
  2993. isa = PBXGroup;
  2994. children = (
  2995. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  2996. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  2997. F7C0F46D1C8880540059EC54 /* Share */,
  2998. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  2999. F7FC7D651DC1F98700BB2C6A /* Products */,
  3000. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  3001. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  3002. );
  3003. sourceTree = "<group>";
  3004. };
  3005. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  3006. isa = PBXGroup;
  3007. children = (
  3008. F70F02A81C889183008DAB36 /* Libraries external */,
  3009. F7A377131EB2364A002856D3 /* Fabric */,
  3010. F70022561EC4C9100080073F /* OCCommunicationLib */,
  3011. F7A582D71A24DAB500E903D7 /* AppDelegate.h */,
  3012. F7A582D61A24DAB500E903D7 /* AppDelegate.m */,
  3013. F7C8C1901B482CEA0048180E /* CCGlobal.h */,
  3014. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  3015. F70211F31BAC56E9003FC03E /* Main */,
  3016. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  3017. F7B0C1701EE8397E0033AC24 /* AutoUpload */,
  3018. F720E02A1E48C74C001A4B9E /* Actions */,
  3019. F7A321621E9E37960069AD1B /* Activity */,
  3020. F7ECBA6B1E239DCD003E6328 /* Create */,
  3021. F7BAAD951ED5A63D00B7EAD4 /* Database */,
  3022. F7A3214D1E9E2A070069AD1B /* Favorites */,
  3023. F780711E1EDB135100EAFFF6 /* Photos */,
  3024. F7F54CAC1E5B143100E19C62 /* Library */,
  3025. F7BFFA621A24D7300044ED85 /* Login */,
  3026. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */,
  3027. F7A321891E9E42B20069AD1B /* MenuAccount */,
  3028. F7F9E3451BC26B19004B9223 /* Move */,
  3029. F74D3DB81BAC1941000BAE4B /* Networking */,
  3030. F7C5259A1E3B441D00FFE02C /* Notification */,
  3031. F7FCFFD51D70798C000E6E29 /* PeekPop */,
  3032. F7BE6E2A1D2D5C3B00106933 /* QuickActions */,
  3033. F7FE125B1BAC03FB0041924B /* Security */,
  3034. F7ACE4281BAC0268006C0017 /* Settings */,
  3035. F728CE741BF6322C00E69702 /* Share */,
  3036. F7169A161EE590930086BD69 /* Shares */,
  3037. F7B0C0CA1EE7E7750033AC24 /* Synchronize */,
  3038. F73D71561F26739100E233EB /* Text */,
  3039. F7E9C41320F4CA870040CF18 /* Transfers */,
  3040. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */,
  3041. F7BFFA991A24D7BB0044ED85 /* Utility */,
  3042. );
  3043. path = iOSClient;
  3044. sourceTree = "<group>";
  3045. };
  3046. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  3047. isa = PBXGroup;
  3048. children = (
  3049. F72B60941A24F04E004EF66F /* Localizations */,
  3050. F75CDBF51DF063AD00116AD0 /* .gitignore */,
  3051. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */,
  3052. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */,
  3053. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */,
  3054. F7229B491DF71BB300E8C4E7 /* AUTHORS */,
  3055. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */,
  3056. F77D49A71DC238E500CDC568 /* loading@2x.gif */,
  3057. F7F67BAD1A24D27800EE80DA /* main.m */,
  3058. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  3059. F76344751BF259A800188725 /* synchronized.gif */,
  3060. F76344761BF259A800188725 /* synchronizedcrypto.gif */,
  3061. );
  3062. name = "Supporting Files";
  3063. path = iOSClient;
  3064. sourceTree = "<group>";
  3065. };
  3066. F7F9E3451BC26B19004B9223 /* Move */ = {
  3067. isa = PBXGroup;
  3068. children = (
  3069. F7D02A461C5F9E4400D6F972 /* CCMove.h */,
  3070. F7D02A471C5F9E4400D6F972 /* CCMove.m */,
  3071. F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */,
  3072. );
  3073. path = Move;
  3074. sourceTree = "<group>";
  3075. };
  3076. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  3077. isa = PBXGroup;
  3078. children = (
  3079. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  3080. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  3081. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  3082. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  3083. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  3084. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  3085. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  3086. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  3087. );
  3088. name = Frameworks;
  3089. sourceTree = "<group>";
  3090. };
  3091. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  3092. isa = PBXGroup;
  3093. children = (
  3094. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  3095. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  3096. );
  3097. name = Products;
  3098. sourceTree = "<group>";
  3099. };
  3100. F7FCFFD51D70798C000E6E29 /* PeekPop */ = {
  3101. isa = PBXGroup;
  3102. children = (
  3103. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */,
  3104. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */,
  3105. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */,
  3106. );
  3107. path = PeekPop;
  3108. sourceTree = "<group>";
  3109. };
  3110. F7FE125B1BAC03FB0041924B /* Security */ = {
  3111. isa = PBXGroup;
  3112. children = (
  3113. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */,
  3114. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */,
  3115. F7F801001D98205A007537BC /* CCCertificate.h */,
  3116. F7F801011D98205A007537BC /* CCCertificate.m */,
  3117. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  3118. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  3119. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  3120. );
  3121. path = Security;
  3122. sourceTree = "<group>";
  3123. };
  3124. /* End PBXGroup section */
  3125. /* Begin PBXNativeTarget section */
  3126. F71459B41D12E3B700CAFEEC /* Share */ = {
  3127. isa = PBXNativeTarget;
  3128. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  3129. buildPhases = (
  3130. F71459B51D12E3B700CAFEEC /* Sources */,
  3131. F7145A141D12E3B700CAFEEC /* Frameworks */,
  3132. F7145A181D12E3B700CAFEEC /* Resources */,
  3133. );
  3134. buildRules = (
  3135. );
  3136. dependencies = (
  3137. );
  3138. name = Share;
  3139. productName = "Share Ext";
  3140. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  3141. productType = "com.apple.product-type.app-extension";
  3142. };
  3143. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  3144. isa = PBXNativeTarget;
  3145. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  3146. buildPhases = (
  3147. F771E3CC20E2392D00AFB62D /* Sources */,
  3148. F771E3CD20E2392D00AFB62D /* Frameworks */,
  3149. F771E3CE20E2392D00AFB62D /* Resources */,
  3150. );
  3151. buildRules = (
  3152. );
  3153. dependencies = (
  3154. );
  3155. name = "File Provider Extension";
  3156. productName = "File Provider Extension";
  3157. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  3158. productType = "com.apple.product-type.app-extension";
  3159. };
  3160. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  3161. isa = PBXNativeTarget;
  3162. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  3163. buildPhases = (
  3164. F77B0DEF1D118A16002130FE /* Sources */,
  3165. F77B0EDC1D118A16002130FE /* Frameworks */,
  3166. F77B0EE91D118A16002130FE /* Resources */,
  3167. F77B0F981D118A16002130FE /* Embed App Extensions */,
  3168. F73B02C01DC0F1C900EC2C33 /* ShellScript */,
  3169. F7A377371EB24469002856D3 /* ShellScript */,
  3170. F75A3FFF1EBCB55B00B213E8 /* Embed Frameworks */,
  3171. F75A40001EBCB82B00B213E8 /* ShellScript */,
  3172. );
  3173. buildRules = (
  3174. );
  3175. dependencies = (
  3176. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  3177. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  3178. );
  3179. name = Nextcloud;
  3180. productName = "Crypto Cloud";
  3181. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  3182. productType = "com.apple.product-type.application";
  3183. };
  3184. /* End PBXNativeTarget section */
  3185. /* Begin PBXProject section */
  3186. F7F67BA01A24D27800EE80DA /* Project object */ = {
  3187. isa = PBXProject;
  3188. attributes = {
  3189. LastSwiftUpdateCheck = 0940;
  3190. LastUpgradeCheck = 0900;
  3191. ORGANIZATIONNAME = TWS;
  3192. TargetAttributes = {
  3193. F71459B41D12E3B700CAFEEC = {
  3194. DevelopmentTeam = 6JLRKY9ZV7;
  3195. LastSwiftMigration = 0900;
  3196. SystemCapabilities = {
  3197. com.apple.ApplicationGroups.iOS = {
  3198. enabled = 1;
  3199. };
  3200. com.apple.iCloud = {
  3201. enabled = 0;
  3202. };
  3203. };
  3204. };
  3205. F771E3CF20E2392D00AFB62D = {
  3206. CreatedOnToolsVersion = 9.4.1;
  3207. DevelopmentTeam = 6JLRKY9ZV7;
  3208. ProvisioningStyle = Automatic;
  3209. };
  3210. F77B0DEB1D118A16002130FE = {
  3211. DevelopmentTeam = 6JLRKY9ZV7;
  3212. LastSwiftMigration = 0900;
  3213. ProvisioningStyle = Automatic;
  3214. SystemCapabilities = {
  3215. com.apple.Push = {
  3216. enabled = 1;
  3217. };
  3218. com.apple.iCloud = {
  3219. enabled = 1;
  3220. };
  3221. };
  3222. };
  3223. };
  3224. };
  3225. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  3226. compatibilityVersion = "Xcode 3.2";
  3227. developmentRegion = English;
  3228. hasScannedForEncodings = 0;
  3229. knownRegions = (
  3230. en,
  3231. Base,
  3232. de,
  3233. fr,
  3234. "pt-BR",
  3235. ru,
  3236. it,
  3237. tr,
  3238. "es-MX",
  3239. "nb-NO",
  3240. pl,
  3241. sv,
  3242. es,
  3243. is,
  3244. nl,
  3245. "sk-SK",
  3246. "en-GB",
  3247. "zh-Hans",
  3248. "ka-GE",
  3249. hu,
  3250. "zh-Hant-TW",
  3251. sr,
  3252. "es-CL",
  3253. "es-CO",
  3254. "es-CR",
  3255. "es-DO",
  3256. "es-EC",
  3257. "es-GT",
  3258. "es-HN",
  3259. "es-NI",
  3260. "es-PA",
  3261. "es-PE",
  3262. "es-PR",
  3263. "es-PY",
  3264. "es-SV",
  3265. "es-UY",
  3266. "cs-CZ",
  3267. ko,
  3268. "es-419",
  3269. "pt-PT",
  3270. );
  3271. mainGroup = F7F67B9F1A24D27800EE80DA;
  3272. productRefGroup = F7F67B9F1A24D27800EE80DA;
  3273. projectDirPath = "";
  3274. projectRoot = "";
  3275. targets = (
  3276. F77B0DEB1D118A16002130FE /* Nextcloud */,
  3277. F71459B41D12E3B700CAFEEC /* Share */,
  3278. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  3279. );
  3280. };
  3281. /* End PBXProject section */
  3282. /* Begin PBXResourcesBuildPhase section */
  3283. F7145A181D12E3B700CAFEEC /* Resources */ = {
  3284. isa = PBXResourcesBuildPhase;
  3285. buildActionMask = 2147483647;
  3286. files = (
  3287. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */,
  3288. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  3289. F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */,
  3290. F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */,
  3291. F7145A211D12E3B700CAFEEC /* Error.strings in Resources */,
  3292. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */,
  3293. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  3294. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  3295. );
  3296. runOnlyForDeploymentPostprocessing = 0;
  3297. };
  3298. F771E3CE20E2392D00AFB62D /* Resources */ = {
  3299. isa = PBXResourcesBuildPhase;
  3300. buildActionMask = 2147483647;
  3301. files = (
  3302. );
  3303. runOnlyForDeploymentPostprocessing = 0;
  3304. };
  3305. F77B0EE91D118A16002130FE /* Resources */ = {
  3306. isa = PBXResourcesBuildPhase;
  3307. buildActionMask = 2147483647;
  3308. files = (
  3309. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */,
  3310. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */,
  3311. F7D4234D1F0596AC009C9782 /* Reader-Thumbs.png in Resources */,
  3312. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */,
  3313. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */,
  3314. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */,
  3315. F77D49A91DC238E500CDC568 /* loading@2x.gif in Resources */,
  3316. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */,
  3317. F7D4233D1F0596AC009C9782 /* Reader-Button-N@3x.png in Resources */,
  3318. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */,
  3319. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  3320. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */,
  3321. F7D4246E1F063B82009C9782 /* CTAssetsPickerController.bundle in Resources */,
  3322. F762CB991EACB84400B38484 /* icon-success.png in Resources */,
  3323. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */,
  3324. F77B0F0E1D118A16002130FE /* BKPasscodeView.strings in Resources */,
  3325. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */,
  3326. F7D4233B1F0596AC009C9782 /* Reader-Button-N.png in Resources */,
  3327. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */,
  3328. F7D423441F0596AC009C9782 /* Reader-Mark-N.png in Resources */,
  3329. F77B0F181D118A16002130FE /* Intro.strings in Resources */,
  3330. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */,
  3331. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */,
  3332. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */,
  3333. F7D423371F0596AC009C9782 /* AppIcon-180.png in Resources */,
  3334. F7D423401F0596AC009C9782 /* Reader-Email@3x.png in Resources */,
  3335. F7D423391F0596AC009C9782 /* Reader-Button-H@2x.png in Resources */,
  3336. F7D423351F0596AC009C9782 /* AppIcon-152.png in Resources */,
  3337. F7B1FBC41E72E3D1001781FE /* Media.xcassets in Resources */,
  3338. F7D4234E1F0596AC009C9782 /* Reader-Thumbs@2x.png in Resources */,
  3339. F77B0F2F1D118A16002130FE /* CCMove.storyboard in Resources */,
  3340. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */,
  3341. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */,
  3342. F7659A371DC0B737004860C4 /* iRate.bundle in Resources */,
  3343. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */,
  3344. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */,
  3345. F7D4234B1F0596AC009C9782 /* Reader-Print@2x.png in Resources */,
  3346. F762CB971EACB84400B38484 /* icon-info.png in Resources */,
  3347. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */,
  3348. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */,
  3349. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  3350. F7D423471F0596AC009C9782 /* Reader-Mark-Y.png in Resources */,
  3351. F7D423431F0596AC009C9782 /* Reader-Export@3x.png in Resources */,
  3352. F7D4233C1F0596AC009C9782 /* Reader-Button-N@2x.png in Resources */,
  3353. F7D423411F0596AC009C9782 /* Reader-Export.png in Resources */,
  3354. F77B0F481D118A16002130FE /* synchronized.gif in Resources */,
  3355. F7D4233E1F0596AC009C9782 /* Reader-Email.png in Resources */,
  3356. F762CB981EACB84400B38484 /* icon-info@2x.png in Resources */,
  3357. F7D423361F0596AC009C9782 /* AppIcon-167.png in Resources */,
  3358. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */,
  3359. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
  3360. F77B0F4D1D118A16002130FE /* CCShare.storyboard in Resources */,
  3361. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */,
  3362. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */,
  3363. F732B3371E8045A1002B7D75 /* SwiftWebVC.strings in Resources */,
  3364. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */,
  3365. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */,
  3366. F7CA1ED520E7E3FE002CC65E /* .gitkeep in Resources */,
  3367. F762CB9A1EACB84400B38484 /* icon-success@2x.png in Resources */,
  3368. F77B0F551D118A16002130FE /* Error.strings in Resources */,
  3369. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */,
  3370. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */,
  3371. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */,
  3372. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */,
  3373. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */,
  3374. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */,
  3375. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */,
  3376. F7D423461F0596AC009C9782 /* Reader-Mark-N@3x.png in Resources */,
  3377. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */,
  3378. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */,
  3379. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */,
  3380. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */,
  3381. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  3382. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  3383. F7D4234C1F0596AC009C9782 /* Reader-Print@3x.png in Resources */,
  3384. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */,
  3385. F76F23341ED4603700C40023 /* LaunchScreen.xib in Resources */,
  3386. F77B0F671D118A16002130FE /* InfoPlist.strings in Resources */,
  3387. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */,
  3388. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */,
  3389. F762CB951EACB84400B38484 /* icon-error.png in Resources */,
  3390. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */,
  3391. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */,
  3392. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */,
  3393. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */,
  3394. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */,
  3395. F7D4233A1F0596AC009C9782 /* Reader-Button-H@3x.png in Resources */,
  3396. F7D423341F0596AC009C9782 /* AppIcon-120.png in Resources */,
  3397. F7D4234F1F0596AC009C9782 /* Reader-Thumbs@3x.png in Resources */,
  3398. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */,
  3399. F7D423381F0596AC009C9782 /* Reader-Button-H.png in Resources */,
  3400. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */,
  3401. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  3402. F7D423491F0596AC009C9782 /* Reader-Mark-Y@3x.png in Resources */,
  3403. F7D423421F0596AC009C9782 /* Reader-Export@2x.png in Resources */,
  3404. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */,
  3405. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */,
  3406. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */,
  3407. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */,
  3408. F7D423451F0596AC009C9782 /* Reader-Mark-N@2x.png in Resources */,
  3409. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */,
  3410. F7D423481F0596AC009C9782 /* Reader-Mark-Y@2x.png in Resources */,
  3411. F7D4233F1F0596AC009C9782 /* Reader-Email@2x.png in Resources */,
  3412. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */,
  3413. F75797AE1E81356C00187A1B /* CTAssetsPicker.strings in Resources */,
  3414. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */,
  3415. F762CB961EACB84400B38484 /* icon-error@2x.png in Resources */,
  3416. F7D4234A1F0596AC009C9782 /* Reader-Print.png in Resources */,
  3417. F7D423331F0596AC009C9782 /* AppIcon-076.png in Resources */,
  3418. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */,
  3419. );
  3420. runOnlyForDeploymentPostprocessing = 0;
  3421. };
  3422. /* End PBXResourcesBuildPhase section */
  3423. /* Begin PBXShellScriptBuildPhase section */
  3424. F73B02C01DC0F1C900EC2C33 /* ShellScript */ = {
  3425. isa = PBXShellScriptBuildPhase;
  3426. buildActionMask = 2147483647;
  3427. files = (
  3428. );
  3429. inputPaths = (
  3430. );
  3431. outputPaths = (
  3432. );
  3433. runOnlyForDeploymentPostprocessing = 0;
  3434. shellPath = /bin/sh;
  3435. shellScript = "#!/bin/bash\n# buildNumber=$(/usr/libexec/PlistBuddy -c \"Print CFBundleVersion\" \"$INFOPLIST_FILE\")\n# buildNumber=$(echo $buildNumber | sed 's/0*//')\n# buildNumber=$(($buildNumber + 1))\n# buildNumber=$(printf \"%04d\" $buildNumber)\n# /usr/libexec/PlistBuddy -c \"Set :CFBundleVersion $buildNumber\" \"$INFOPLIST_FILE\"";
  3436. };
  3437. F75A40001EBCB82B00B213E8 /* ShellScript */ = {
  3438. isa = PBXShellScriptBuildPhase;
  3439. buildActionMask = 2147483647;
  3440. files = (
  3441. );
  3442. inputPaths = (
  3443. );
  3444. outputPaths = (
  3445. );
  3446. runOnlyForDeploymentPostprocessing = 0;
  3447. shellPath = /bin/sh;
  3448. shellScript = "bash \"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework/strip-frameworks.sh\"";
  3449. };
  3450. F7A377371EB24469002856D3 /* ShellScript */ = {
  3451. isa = PBXShellScriptBuildPhase;
  3452. buildActionMask = 2147483647;
  3453. files = (
  3454. );
  3455. inputPaths = (
  3456. );
  3457. outputPaths = (
  3458. );
  3459. runOnlyForDeploymentPostprocessing = 0;
  3460. shellPath = /bin/sh;
  3461. shellScript = "\"${PROJECT_DIR}/Libraries external/Fabric/Fabric.framework/run\" 52fe877f4a4ff58868da789df0b0eb915fd94ae1 3d6e5abfdc40776a4a8468ddf5910958596ccbccc341e19f7aaf0fbeb4ff6cf5\n";
  3462. };
  3463. /* End PBXShellScriptBuildPhase section */
  3464. /* Begin PBXSourcesBuildPhase section */
  3465. F71459B51D12E3B700CAFEEC /* Sources */ = {
  3466. isa = PBXSourcesBuildPhase;
  3467. buildActionMask = 2147483647;
  3468. files = (
  3469. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */,
  3470. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3471. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */,
  3472. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */,
  3473. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */,
  3474. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3475. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */,
  3476. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */,
  3477. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */,
  3478. F70022A21EC4C9100080073F /* AFHTTPSessionManager.m in Sources */,
  3479. F70022A51EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */,
  3480. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3481. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3482. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3483. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */,
  3484. F734E5891F019D860060CB77 /* UIScrollView+EmptyDataSet.m in Sources */,
  3485. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3486. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3487. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  3488. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */,
  3489. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3490. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3491. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3492. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3493. F70022E41EC4C9100080073F /* OCXMLParser.m in Sources */,
  3494. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */,
  3495. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */,
  3496. F70022E11EC4C9100080073F /* OCXMLListParser.m in Sources */,
  3497. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3498. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3499. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  3500. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */,
  3501. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */,
  3502. F71459D51D12E3B700CAFEEC /* MBProgressHUD.m in Sources */,
  3503. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */,
  3504. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */,
  3505. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */,
  3506. F70022B11EC4C9100080073F /* AFURLSessionManager.m in Sources */,
  3507. F73CCE321DC13798007E38D8 /* UICKeyChainStore.m in Sources */,
  3508. F70022AE1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */,
  3509. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3510. F77EB62A1EC0B50A003F814F /* CCCertificate.m in Sources */,
  3511. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3512. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3513. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3514. F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */,
  3515. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */,
  3516. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */,
  3517. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3518. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3519. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3520. F70022A81EC4C9100080073F /* AFSecurityPolicy.m in Sources */,
  3521. F70022AB1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */,
  3522. F70022B41EC4C9100080073F /* OCActivity.m in Sources */,
  3523. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3524. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3525. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */,
  3526. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3527. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3528. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3529. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */,
  3530. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3531. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3532. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3533. );
  3534. runOnlyForDeploymentPostprocessing = 0;
  3535. };
  3536. F771E3CC20E2392D00AFB62D /* Sources */ = {
  3537. isa = PBXSourcesBuildPhase;
  3538. buildActionMask = 2147483647;
  3539. files = (
  3540. F7434B4820E2407000417916 /* AFURLRequestSerialization.m in Sources */,
  3541. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */,
  3542. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  3543. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */,
  3544. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */,
  3545. F7434B5720E2416800417916 /* UICKeyChainStore.m in Sources */,
  3546. F7434B3A20E2403500417916 /* OCActivity.m in Sources */,
  3547. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */,
  3548. F7434B4A20E2407600417916 /* AFURLSessionManager.m in Sources */,
  3549. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */,
  3550. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */,
  3551. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */,
  3552. F7434B5920E241B600417916 /* OCNetworking.m in Sources */,
  3553. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */,
  3554. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */,
  3555. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  3556. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */,
  3557. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */,
  3558. F7434B4320E2405900417916 /* OCShareUser.m in Sources */,
  3559. F771E3F920E239B500AFB62D /* FileProviderExtension+Network.swift in Sources */,
  3560. F7434B4F20E2408E00417916 /* OCXMLListParser.m in Sources */,
  3561. F7434B6120E2445C00417916 /* CCCertificate.m in Sources */,
  3562. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */,
  3563. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  3564. F7434B4620E2406900417916 /* AFNetworkReachabilityManager.m in Sources */,
  3565. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */,
  3566. F7434B5620E2412900417916 /* CCError.m in Sources */,
  3567. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */,
  3568. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */,
  3569. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */,
  3570. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */,
  3571. F7434B4520E2406400417916 /* AFHTTPSessionManager.m in Sources */,
  3572. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */,
  3573. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  3574. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */,
  3575. F7434B5D20E241E800417916 /* CCUtility.m in Sources */,
  3576. F7434B5020E2409100417916 /* OCXMLParser.m in Sources */,
  3577. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */,
  3578. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  3579. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  3580. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  3581. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  3582. F7434B4720E2406C00417916 /* AFSecurityPolicy.m in Sources */,
  3583. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */,
  3584. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */,
  3585. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */,
  3586. F7434B4920E2407300417916 /* AFURLResponseSerialization.m in Sources */,
  3587. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */,
  3588. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */,
  3589. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  3590. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */,
  3591. F7434B5820E241B100417916 /* CCNetworking.m in Sources */,
  3592. );
  3593. runOnlyForDeploymentPostprocessing = 0;
  3594. };
  3595. F77B0DEF1D118A16002130FE /* Sources */ = {
  3596. isa = PBXSourcesBuildPhase;
  3597. buildActionMask = 2147483647;
  3598. files = (
  3599. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3600. F7D424671F063B82009C9782 /* CTAssetsGridViewController.m in Sources */,
  3601. F70022A41EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */,
  3602. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */,
  3603. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */,
  3604. F77B0DF41D118A16002130FE /* CCMain.m in Sources */,
  3605. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */,
  3606. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */,
  3607. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  3608. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */,
  3609. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */,
  3610. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */,
  3611. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */,
  3612. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */,
  3613. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */,
  3614. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */,
  3615. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */,
  3616. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */,
  3617. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3618. F7D4245C1F063B82009C9782 /* CTAssetCheckmark.m in Sources */,
  3619. F70022A11EC4C9100080073F /* AFHTTPSessionManager.m in Sources */,
  3620. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */,
  3621. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */,
  3622. F77B0E031D118A16002130FE /* CCShareInfoCMOC.m in Sources */,
  3623. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */,
  3624. F7D423881F0596C6009C9782 /* ReaderThumbView.m in Sources */,
  3625. F73CCE301DC13798007E38D8 /* UICKeyChainStore.m in Sources */,
  3626. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */,
  3627. F7D4238A1F0596C6009C9782 /* ThumbsMainToolbar.m in Sources */,
  3628. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3629. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */,
  3630. F7A55420204EF8AF008468EC /* UIScrollView+TOScrollBar.m in Sources */,
  3631. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */,
  3632. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */,
  3633. F70022B01EC4C9100080073F /* AFURLSessionManager.m in Sources */,
  3634. F7B1FBC71E72E3D1001781FE /* SwiftWebVC.swift in Sources */,
  3635. F7DC5FEC1F011EB700A903C7 /* MGSwipeButton.m in Sources */,
  3636. F7D423801F0596C6009C9782 /* ReaderMainPagebar.m in Sources */,
  3637. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */,
  3638. F762CB881EACB81000B38484 /* REMenuContainerView.m in Sources */,
  3639. F7D4237F1F0596C6009C9782 /* ReaderDocumentOutline.m in Sources */,
  3640. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */,
  3641. F7D424621F063B82009C9782 /* CTAssetSelectionButton.m in Sources */,
  3642. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */,
  3643. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */,
  3644. F7D424631F063B82009C9782 /* CTAssetSelectionLabel.m in Sources */,
  3645. F7B1FBC61E72E3D1001781FE /* SwiftModalWebVC.swift in Sources */,
  3646. F7A5541F204EF8AF008468EC /* TOScrollBar.m in Sources */,
  3647. F7A321651E9E37960069AD1B /* CCActivity.m in Sources */,
  3648. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */,
  3649. F77B0E131D118A16002130FE /* AppDelegate.m in Sources */,
  3650. F762CB861EACB81000B38484 /* RECommonFunctions.m in Sources */,
  3651. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */,
  3652. F77B0E141D118A16002130FE /* CCError.m in Sources */,
  3653. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */,
  3654. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */,
  3655. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */,
  3656. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */,
  3657. F7D424641F063B82009C9782 /* CTAssetsGridSelectedView.m in Sources */,
  3658. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */,
  3659. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */,
  3660. F7D424711F063B82009C9782 /* CTAssetsViewControllerTransition.m in Sources */,
  3661. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */,
  3662. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */,
  3663. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3664. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */,
  3665. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */,
  3666. F762CB9B1EACB84400B38484 /* TWMessageBarManager.m in Sources */,
  3667. F7D423871F0596C6009C9782 /* ReaderThumbsView.m in Sources */,
  3668. F77B0E201D118A16002130FE /* CCShareUserOC.m in Sources */,
  3669. F7B1FBCA1E72E3D1001781FE /* SwiftWebVCActivitySafari.swift in Sources */,
  3670. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */,
  3671. F720E01F1E48C73E001A4B9E /* CCActions.swift in Sources */,
  3672. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */,
  3673. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3674. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */,
  3675. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */,
  3676. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */,
  3677. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */,
  3678. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3679. F77B0E231D118A16002130FE /* CCSharePermissionOC.m in Sources */,
  3680. F78071211EDB135100EAFFF6 /* CCPhotos.m in Sources */,
  3681. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */,
  3682. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */,
  3683. F75AE3C71E9D12900088BB09 /* SwiftyAvatar.swift in Sources */,
  3684. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */,
  3685. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */,
  3686. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */,
  3687. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */,
  3688. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */,
  3689. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */,
  3690. F77B0E301D118A16002130FE /* CCHud.m in Sources */,
  3691. F7D423891F0596C6009C9782 /* ReaderViewController.m in Sources */,
  3692. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3693. F7D4246C1F063B82009C9782 /* CTAssetsPageViewController.m in Sources */,
  3694. F7D424601F063B82009C9782 /* CTAssetPlayButton.m in Sources */,
  3695. F70022E31EC4C9100080073F /* OCXMLParser.m in Sources */,
  3696. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */,
  3697. F7D4246B1F063B82009C9782 /* CTAssetsPageView.m in Sources */,
  3698. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */,
  3699. F78964AE1EBB576C00403E13 /* JDStatusBarStyle.m in Sources */,
  3700. F7D423831F0596C6009C9782 /* ReaderThumbFetch.m in Sources */,
  3701. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */,
  3702. F7D424721F063B82009C9782 /* CTAssetThumbnailOverlay.m in Sources */,
  3703. F7D4237A1F0596C6009C9782 /* ReaderConstants.m in Sources */,
  3704. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */,
  3705. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */,
  3706. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  3707. F710E8101EF95C9C00DC2427 /* CCIntro.m in Sources */,
  3708. F77B0E411D118A16002130FE /* CCSplit.m in Sources */,
  3709. F7D4245F1F063B82009C9782 /* CTAssetItemViewController.m in Sources */,
  3710. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3711. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */,
  3712. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */,
  3713. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */,
  3714. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */,
  3715. F7F801031D98205A007537BC /* CCCertificate.m in Sources */,
  3716. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  3717. F73B4F791E8D3BF800A97F07 /* CCMainTabBarController.swift in Sources */,
  3718. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */,
  3719. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3720. F77B0E541D118A16002130FE /* CCMove.m in Sources */,
  3721. F7A5541E204EF8AF008468EC /* TOScrollBarGestureRecognizer.m in Sources */,
  3722. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3723. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */,
  3724. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3725. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */,
  3726. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */,
  3727. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */,
  3728. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */,
  3729. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */,
  3730. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */,
  3731. F7D4237D1F0596C6009C9782 /* ReaderContentView.m in Sources */,
  3732. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */,
  3733. F7D4245D1F063B82009C9782 /* CTAssetCollectionViewCell.m in Sources */,
  3734. F7D4245E1F063B82009C9782 /* CTAssetCollectionViewController.m in Sources */,
  3735. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */,
  3736. F7BE6E2F1D2D5C3B00106933 /* CCQuickActions.m in Sources */,
  3737. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */,
  3738. F7D424691F063B82009C9782 /* CTAssetsGridViewLayout.m in Sources */,
  3739. F7D4237E1F0596C6009C9782 /* ReaderDocument.m in Sources */,
  3740. F7D424661F063B82009C9782 /* CTAssetsGridViewCell.m in Sources */,
  3741. F7659A291DC0B726004860C4 /* EAIntroView.m in Sources */,
  3742. F7D4237C1F0596C6009C9782 /* ReaderContentTile.m in Sources */,
  3743. F7D424581F063B82009C9782 /* PHAssetCollection+CTAssetsPickerController.m in Sources */,
  3744. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3745. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */,
  3746. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3747. F7D424611F063B82009C9782 /* CTAssetScrollView.m in Sources */,
  3748. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */,
  3749. F7B3A4EE1E97818A000DACE8 /* CCLoginWeb.swift in Sources */,
  3750. F73D71621F2673C200E233EB /* NCText.swift in Sources */,
  3751. F77B0E631D118A16002130FE /* CCShareOC.m in Sources */,
  3752. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */,
  3753. F73CCE261DC13788007E38D8 /* UIScrollView+EmptyDataSet.m in Sources */,
  3754. F7D4246F1F063B82009C9782 /* CTAssetsPickerController.m in Sources */,
  3755. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */,
  3756. F77B0E671D118A16002130FE /* Reachability.m in Sources */,
  3757. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */,
  3758. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3759. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3760. F7D424571F063B82009C9782 /* PHAsset+CTAssetsPickerController.m in Sources */,
  3761. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3762. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
  3763. F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */,
  3764. F7D423861F0596C6009C9782 /* ReaderThumbRequest.m in Sources */,
  3765. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */,
  3766. F7D4246A1F063B82009C9782 /* CTAssetsNavigationController.m in Sources */,
  3767. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3768. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3769. F7B1FBC91E72E3D1001781FE /* SwiftWebVCActivityChrome.swift in Sources */,
  3770. F762CB8A1EACB81000B38484 /* REMenuItemView.m in Sources */,
  3771. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */,
  3772. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3773. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */,
  3774. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */,
  3775. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */,
  3776. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */,
  3777. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */,
  3778. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */,
  3779. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */,
  3780. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */,
  3781. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */,
  3782. F7659A391DC0B737004860C4 /* iRate.m in Sources */,
  3783. F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */,
  3784. F7D424741F063B82009C9782 /* CTAssetThumbnailView.m in Sources */,
  3785. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  3786. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */,
  3787. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  3788. F70022AD1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */,
  3789. F7D424531F063B82009C9782 /* NSBundle+CTAssetsPickerController.m in Sources */,
  3790. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */,
  3791. F7659A271DC0B726004860C4 /* EAIntroPage.m in Sources */,
  3792. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */,
  3793. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */,
  3794. F7D424651F063B82009C9782 /* CTAssetsGridView.m in Sources */,
  3795. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */,
  3796. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */,
  3797. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */,
  3798. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */,
  3799. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3800. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */,
  3801. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3802. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3803. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */,
  3804. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */,
  3805. F70022E01EC4C9100080073F /* OCXMLListParser.m in Sources */,
  3806. F70022B31EC4C9100080073F /* OCActivity.m in Sources */,
  3807. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3808. F7D424731F063B82009C9782 /* CTAssetThumbnailStacks.m in Sources */,
  3809. F78964AD1EBB576C00403E13 /* JDStatusBarNotification.m in Sources */,
  3810. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */,
  3811. F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */,
  3812. F7D4246D1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m in Sources */,
  3813. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */,
  3814. F7D4238C1F0596C6009C9782 /* UIXToolbarView.m in Sources */,
  3815. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  3816. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  3817. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */,
  3818. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */,
  3819. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */,
  3820. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */,
  3821. F762CB891EACB81000B38484 /* REMenuItem.m in Sources */,
  3822. F7D423791F0596C6009C9782 /* CGPDFDocument.m in Sources */,
  3823. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */,
  3824. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3825. F7D424551F063B82009C9782 /* NSIndexSet+CTAssetsPickerController.m in Sources */,
  3826. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */,
  3827. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */,
  3828. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */,
  3829. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */,
  3830. F7D423821F0596C6009C9782 /* ReaderThumbCache.m in Sources */,
  3831. F70022A71EC4C9100080073F /* AFSecurityPolicy.m in Sources */,
  3832. F78964AF1EBB576C00403E13 /* JDStatusBarView.m in Sources */,
  3833. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */,
  3834. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */,
  3835. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */,
  3836. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */,
  3837. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */,
  3838. F7DC5FED1F011EB700A903C7 /* MGSwipeTableCell.m in Sources */,
  3839. F7D424541F063B82009C9782 /* NSDateFormatter+CTAssetsPickerController.m in Sources */,
  3840. F7D4238B1F0596C6009C9782 /* ThumbsViewController.m in Sources */,
  3841. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */,
  3842. F7D423811F0596C6009C9782 /* ReaderMainToolbar.m in Sources */,
  3843. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */,
  3844. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */,
  3845. F7D4237B1F0596C6009C9782 /* ReaderContentPage.m in Sources */,
  3846. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */,
  3847. F762CB871EACB81000B38484 /* REMenu.m in Sources */,
  3848. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */,
  3849. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */,
  3850. F7D424681F063B82009C9782 /* CTAssetsGridViewFooter.m in Sources */,
  3851. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  3852. F7D424701F063B82009C9782 /* CTAssetsPickerNoAssetsView.m in Sources */,
  3853. F7D424591F063B82009C9782 /* PHImageManager+CTAssetsPickerController.m in Sources */,
  3854. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */,
  3855. F7ECBA6D1E239DCD003E6328 /* CCCreateCloud.swift in Sources */,
  3856. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3857. F7D424561F063B82009C9782 /* NSNumberFormatter+CTAssetsPickerController.m in Sources */,
  3858. F70022AA1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */,
  3859. F7D423851F0596C6009C9782 /* ReaderThumbRender.m in Sources */,
  3860. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */,
  3861. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */,
  3862. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3863. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */,
  3864. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3865. F7D423841F0596C6009C9782 /* ReaderThumbQueue.m in Sources */,
  3866. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  3867. F7D4245A1F063B82009C9782 /* UICollectionView+CTAssetsPickerController.m in Sources */,
  3868. F7D4245B1F063B82009C9782 /* UIImage+CTAssetsPickerController.m in Sources */,
  3869. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3870. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */,
  3871. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */,
  3872. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */,
  3873. F77B0ED91D118A16002130FE /* main.m in Sources */,
  3874. );
  3875. runOnlyForDeploymentPostprocessing = 0;
  3876. };
  3877. /* End PBXSourcesBuildPhase section */
  3878. /* Begin PBXTargetDependency section */
  3879. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  3880. isa = PBXTargetDependency;
  3881. target = F71459B41D12E3B700CAFEEC /* Share */;
  3882. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  3883. };
  3884. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  3885. isa = PBXTargetDependency;
  3886. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  3887. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  3888. };
  3889. /* End PBXTargetDependency section */
  3890. /* Begin PBXVariantGroup section */
  3891. F72B60911A24F00B004EF66F /* BKPasscodeView.strings */ = {
  3892. isa = PBXVariantGroup;
  3893. children = (
  3894. F7151A801D477A4B00E6AF45 /* en */,
  3895. F7B1A7751EBB3C8000BFB6D1 /* de */,
  3896. F75B91E11ECAE17800199C96 /* fr */,
  3897. F75B91F61ECAE26300199C96 /* pt-BR */,
  3898. F75B923C1ECAE55E00199C96 /* ru */,
  3899. F7169A2F1EE59BB70086BD69 /* it */,
  3900. F7169A4B1EE59C640086BD69 /* tr */,
  3901. F78D6F451F0B7CB9002F9619 /* es-MX */,
  3902. F78D6F4C1F0B7CE4002F9619 /* nb-NO */,
  3903. F78D6F531F0B7D47002F9619 /* pl */,
  3904. F7DE9AAF1F482FA5008DFE10 /* sv */,
  3905. F7CC04E51F5AD50D00378CEF /* es */,
  3906. F7D532451F5D4123006568B1 /* is */,
  3907. F7D5324C1F5D4137006568B1 /* nl */,
  3908. F7D532531F5D4155006568B1 /* sk-SK */,
  3909. F7D5328E1F5D443B006568B1 /* en-GB */,
  3910. F7D532A31F5D4461006568B1 /* zh-Hans */,
  3911. F77438EA1FCD694900662C46 /* ka-GE */,
  3912. F77438F11FCD69D200662C46 /* hu */,
  3913. F77438F81FCD6A0D00662C46 /* zh-Hant-TW */,
  3914. F77438FF1FCD6B7F00662C46 /* sr */,
  3915. F77439061FCD6BEF00662C46 /* es-CL */,
  3916. F774390D1FCD6C0C00662C46 /* es-CO */,
  3917. F77439141FCD6C4A00662C46 /* es-CR */,
  3918. F774391B1FCD6C6700662C46 /* es-DO */,
  3919. F77439221FCD6C8600662C46 /* es-EC */,
  3920. F77439291FCD6CAA00662C46 /* es-GT */,
  3921. F77439301FCD6CC400662C46 /* es-HN */,
  3922. F77439371FCD6CDE00662C46 /* es-NI */,
  3923. F774393E1FCD6D0B00662C46 /* es-PA */,
  3924. F77439451FCD6D2300662C46 /* es-PE */,
  3925. F774394C1FCD6D3E00662C46 /* es-PR */,
  3926. F77439531FCD6D6100662C46 /* es-PY */,
  3927. F774395A1FCD6D8200662C46 /* es-SV */,
  3928. F77439611FCD6D9C00662C46 /* es-UY */,
  3929. F7BB04841FD58ACB00BBFD2A /* cs-CZ */,
  3930. F7320933201B812F008A0888 /* ko */,
  3931. F732093A201B81E4008A0888 /* es-419 */,
  3932. F70A07C7205285FB00DC1231 /* pt-PT */,
  3933. );
  3934. name = BKPasscodeView.strings;
  3935. path = "Supporting Files";
  3936. sourceTree = "<group>";
  3937. };
  3938. F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */ = {
  3939. isa = PBXVariantGroup;
  3940. children = (
  3941. F732B3361E8045A1002B7D75 /* en */,
  3942. F7B1A7741EBB3C8000BFB6D1 /* de */,
  3943. F75B91E01ECAE17800199C96 /* fr */,
  3944. F75B91F51ECAE26300199C96 /* pt-BR */,
  3945. F75B923B1ECAE55E00199C96 /* ru */,
  3946. F7169A2E1EE59BB70086BD69 /* it */,
  3947. F7169A4A1EE59C640086BD69 /* tr */,
  3948. F78D6F441F0B7CB9002F9619 /* es-MX */,
  3949. F78D6F4B1F0B7CE4002F9619 /* nb-NO */,
  3950. F78D6F521F0B7D47002F9619 /* pl */,
  3951. F7DE9AAE1F482FA5008DFE10 /* sv */,
  3952. F7CC04E41F5AD50D00378CEF /* es */,
  3953. F7D532441F5D4123006568B1 /* is */,
  3954. F7D5324B1F5D4137006568B1 /* nl */,
  3955. F7D532521F5D4155006568B1 /* sk-SK */,
  3956. F7D5328D1F5D443B006568B1 /* en-GB */,
  3957. F7D532A21F5D4461006568B1 /* zh-Hans */,
  3958. F77438E91FCD694900662C46 /* ka-GE */,
  3959. F77438F01FCD69D200662C46 /* hu */,
  3960. F77438F71FCD6A0D00662C46 /* zh-Hant-TW */,
  3961. F77438FE1FCD6B7E00662C46 /* sr */,
  3962. F77439051FCD6BEF00662C46 /* es-CL */,
  3963. F774390C1FCD6C0C00662C46 /* es-CO */,
  3964. F77439131FCD6C4A00662C46 /* es-CR */,
  3965. F774391A1FCD6C6700662C46 /* es-DO */,
  3966. F77439211FCD6C8600662C46 /* es-EC */,
  3967. F77439281FCD6CAA00662C46 /* es-GT */,
  3968. F774392F1FCD6CC400662C46 /* es-HN */,
  3969. F77439361FCD6CDD00662C46 /* es-NI */,
  3970. F774393D1FCD6D0A00662C46 /* es-PA */,
  3971. F77439441FCD6D2200662C46 /* es-PE */,
  3972. F774394B1FCD6D3D00662C46 /* es-PR */,
  3973. F77439521FCD6D6100662C46 /* es-PY */,
  3974. F77439591FCD6D8100662C46 /* es-SV */,
  3975. F77439601FCD6D9C00662C46 /* es-UY */,
  3976. F7BB04831FD58ACA00BBFD2A /* cs-CZ */,
  3977. F7320932201B812F008A0888 /* ko */,
  3978. F7320939201B81E4008A0888 /* es-419 */,
  3979. F70A07C6205285FB00DC1231 /* pt-PT */,
  3980. );
  3981. name = SwiftWebVC.strings;
  3982. path = "Supporting Files";
  3983. sourceTree = "<group>";
  3984. };
  3985. F744BE9F1BEBB69F004FFF66 /* Intro.strings */ = {
  3986. isa = PBXVariantGroup;
  3987. children = (
  3988. F7151A831D477A4B00E6AF45 /* en */,
  3989. F7B1A7781EBB3C8100BFB6D1 /* de */,
  3990. F75B91E41ECAE17800199C96 /* fr */,
  3991. F75B91F91ECAE26400199C96 /* pt-BR */,
  3992. F75B923F1ECAE55F00199C96 /* ru */,
  3993. F7169A321EE59BB70086BD69 /* it */,
  3994. F7169A4E1EE59C640086BD69 /* tr */,
  3995. F78D6F481F0B7CB9002F9619 /* es-MX */,
  3996. F78D6F4F1F0B7CE4002F9619 /* nb-NO */,
  3997. F78D6F561F0B7D47002F9619 /* pl */,
  3998. F7DE9AB21F482FA5008DFE10 /* sv */,
  3999. F7CC04E81F5AD50D00378CEF /* es */,
  4000. F7D532481F5D4123006568B1 /* is */,
  4001. F7D5324F1F5D4137006568B1 /* nl */,
  4002. F7D532561F5D4155006568B1 /* sk-SK */,
  4003. F7D532911F5D443B006568B1 /* en-GB */,
  4004. F7D532A61F5D4462006568B1 /* zh-Hans */,
  4005. F77438ED1FCD694900662C46 /* ka-GE */,
  4006. F77438F41FCD69D300662C46 /* hu */,
  4007. F77438FB1FCD6A0E00662C46 /* zh-Hant-TW */,
  4008. F77439021FCD6B7F00662C46 /* sr */,
  4009. F77439091FCD6BF000662C46 /* es-CL */,
  4010. F77439101FCD6C0D00662C46 /* es-CO */,
  4011. F77439171FCD6C4A00662C46 /* es-CR */,
  4012. F774391E1FCD6C6700662C46 /* es-DO */,
  4013. F77439251FCD6C8700662C46 /* es-EC */,
  4014. F774392C1FCD6CAA00662C46 /* es-GT */,
  4015. F77439331FCD6CC500662C46 /* es-HN */,
  4016. F774393A1FCD6CDE00662C46 /* es-NI */,
  4017. F77439411FCD6D0B00662C46 /* es-PA */,
  4018. F77439481FCD6D2300662C46 /* es-PE */,
  4019. F774394F1FCD6D3E00662C46 /* es-PR */,
  4020. F77439561FCD6D6200662C46 /* es-PY */,
  4021. F774395D1FCD6D8200662C46 /* es-SV */,
  4022. F77439641FCD6D9D00662C46 /* es-UY */,
  4023. F7BB04871FD58ACB00BBFD2A /* cs-CZ */,
  4024. F7320936201B8130008A0888 /* ko */,
  4025. F732093D201B81E5008A0888 /* es-419 */,
  4026. F70A07CA205285FB00DC1231 /* pt-PT */,
  4027. );
  4028. name = Intro.strings;
  4029. path = "Supporting Files";
  4030. sourceTree = "<group>";
  4031. };
  4032. F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */ = {
  4033. isa = PBXVariantGroup;
  4034. children = (
  4035. F75797AD1E81356C00187A1B /* en */,
  4036. F7B1A7731EBB3C8000BFB6D1 /* de */,
  4037. F75B91DF1ECAE17800199C96 /* fr */,
  4038. F75B91F41ECAE26300199C96 /* pt-BR */,
  4039. F75B923A1ECAE55E00199C96 /* ru */,
  4040. F7169A2D1EE59BB70086BD69 /* it */,
  4041. F7169A491EE59C630086BD69 /* tr */,
  4042. F78D6F431F0B7CB9002F9619 /* es-MX */,
  4043. F78D6F4A1F0B7CE4002F9619 /* nb-NO */,
  4044. F78D6F511F0B7D47002F9619 /* pl */,
  4045. F7DE9AAD1F482FA5008DFE10 /* sv */,
  4046. F7CC04E31F5AD50D00378CEF /* es */,
  4047. F7D532431F5D4123006568B1 /* is */,
  4048. F7D5324A1F5D4137006568B1 /* nl */,
  4049. F7D532511F5D4155006568B1 /* sk-SK */,
  4050. F7D5328C1F5D443B006568B1 /* en-GB */,
  4051. F7D532A11F5D4461006568B1 /* zh-Hans */,
  4052. F77438E81FCD694900662C46 /* ka-GE */,
  4053. F77438EF1FCD69D200662C46 /* hu */,
  4054. F77438F61FCD6A0D00662C46 /* zh-Hant-TW */,
  4055. F77438FD1FCD6B7E00662C46 /* sr */,
  4056. F77439041FCD6BEF00662C46 /* es-CL */,
  4057. F774390B1FCD6C0C00662C46 /* es-CO */,
  4058. F77439121FCD6C4900662C46 /* es-CR */,
  4059. F77439191FCD6C6700662C46 /* es-DO */,
  4060. F77439201FCD6C8600662C46 /* es-EC */,
  4061. F77439271FCD6CAA00662C46 /* es-GT */,
  4062. F774392E1FCD6CC400662C46 /* es-HN */,
  4063. F77439351FCD6CDD00662C46 /* es-NI */,
  4064. F774393C1FCD6D0A00662C46 /* es-PA */,
  4065. F77439431FCD6D2200662C46 /* es-PE */,
  4066. F774394A1FCD6D3D00662C46 /* es-PR */,
  4067. F77439511FCD6D6100662C46 /* es-PY */,
  4068. F77439581FCD6D8100662C46 /* es-SV */,
  4069. F774395F1FCD6D9C00662C46 /* es-UY */,
  4070. F7BB04821FD58ACA00BBFD2A /* cs-CZ */,
  4071. F7320931201B812F008A0888 /* ko */,
  4072. F7320938201B81E4008A0888 /* es-419 */,
  4073. F70A07C5205285FA00DC1231 /* pt-PT */,
  4074. );
  4075. name = CTAssetsPicker.strings;
  4076. path = "Supporting Files";
  4077. sourceTree = "<group>";
  4078. };
  4079. F7B381BF1C074E3E004693F8 /* Error.strings */ = {
  4080. isa = PBXVariantGroup;
  4081. children = (
  4082. F7151A841D477A4B00E6AF45 /* en */,
  4083. F7B1A7791EBB3C8100BFB6D1 /* de */,
  4084. F75B91E51ECAE17800199C96 /* fr */,
  4085. F75B91FA1ECAE26400199C96 /* pt-BR */,
  4086. F75B92401ECAE55F00199C96 /* ru */,
  4087. F7169A331EE59BB80086BD69 /* it */,
  4088. F7169A4F1EE59C640086BD69 /* tr */,
  4089. F78D6F491F0B7CB9002F9619 /* es-MX */,
  4090. F78D6F501F0B7CE5002F9619 /* nb-NO */,
  4091. F78D6F571F0B7D48002F9619 /* pl */,
  4092. F7DE9AB31F482FA5008DFE10 /* sv */,
  4093. F7CC04E91F5AD50E00378CEF /* es */,
  4094. F7D532491F5D4124006568B1 /* is */,
  4095. F7D532501F5D4137006568B1 /* nl */,
  4096. F7D532571F5D4156006568B1 /* sk-SK */,
  4097. F7D532921F5D443B006568B1 /* en-GB */,
  4098. F7D532A71F5D4462006568B1 /* zh-Hans */,
  4099. F77438EE1FCD694900662C46 /* ka-GE */,
  4100. F77438F51FCD69D300662C46 /* hu */,
  4101. F77438FC1FCD6A0E00662C46 /* zh-Hant-TW */,
  4102. F77439031FCD6B7F00662C46 /* sr */,
  4103. F774390A1FCD6BF000662C46 /* es-CL */,
  4104. F77439111FCD6C0D00662C46 /* es-CO */,
  4105. F77439181FCD6C4A00662C46 /* es-CR */,
  4106. F774391F1FCD6C6800662C46 /* es-DO */,
  4107. F77439261FCD6C8700662C46 /* es-EC */,
  4108. F774392D1FCD6CAA00662C46 /* es-GT */,
  4109. F77439341FCD6CC500662C46 /* es-HN */,
  4110. F774393B1FCD6CDE00662C46 /* es-NI */,
  4111. F77439421FCD6D0B00662C46 /* es-PA */,
  4112. F77439491FCD6D2300662C46 /* es-PE */,
  4113. F77439501FCD6D3E00662C46 /* es-PR */,
  4114. F77439571FCD6D6200662C46 /* es-PY */,
  4115. F774395E1FCD6D8200662C46 /* es-SV */,
  4116. F77439651FCD6D9D00662C46 /* es-UY */,
  4117. F7BB04881FD58ACB00BBFD2A /* cs-CZ */,
  4118. F7320937201B8130008A0888 /* ko */,
  4119. F732093E201B81E5008A0888 /* es-419 */,
  4120. F70A07CB205285FB00DC1231 /* pt-PT */,
  4121. );
  4122. name = Error.strings;
  4123. path = "Supporting Files";
  4124. sourceTree = "<group>";
  4125. };
  4126. F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */ = {
  4127. isa = PBXVariantGroup;
  4128. children = (
  4129. F7151A821D477A4B00E6AF45 /* en */,
  4130. F7B1A7771EBB3C8100BFB6D1 /* de */,
  4131. F75B91E31ECAE17800199C96 /* fr */,
  4132. F75B91F81ECAE26400199C96 /* pt-BR */,
  4133. F75B923E1ECAE55E00199C96 /* ru */,
  4134. F7169A311EE59BB70086BD69 /* it */,
  4135. F7169A4D1EE59C640086BD69 /* tr */,
  4136. F78D6F471F0B7CB9002F9619 /* es-MX */,
  4137. F78D6F4E1F0B7CE4002F9619 /* nb-NO */,
  4138. F78D6F551F0B7D47002F9619 /* pl */,
  4139. F7DE9AB11F482FA5008DFE10 /* sv */,
  4140. F7CC04E71F5AD50D00378CEF /* es */,
  4141. F7D532471F5D4123006568B1 /* is */,
  4142. F7D5324E1F5D4137006568B1 /* nl */,
  4143. F7D532551F5D4155006568B1 /* sk-SK */,
  4144. F7D532901F5D443B006568B1 /* en-GB */,
  4145. F7D532A51F5D4461006568B1 /* zh-Hans */,
  4146. F77438EC1FCD694900662C46 /* ka-GE */,
  4147. F77438F31FCD69D300662C46 /* hu */,
  4148. F77438FA1FCD6A0E00662C46 /* zh-Hant-TW */,
  4149. F77439011FCD6B7F00662C46 /* sr */,
  4150. F77439081FCD6BF000662C46 /* es-CL */,
  4151. F774390F1FCD6C0D00662C46 /* es-CO */,
  4152. F77439161FCD6C4A00662C46 /* es-CR */,
  4153. F774391D1FCD6C6700662C46 /* es-DO */,
  4154. F77439241FCD6C8700662C46 /* es-EC */,
  4155. F774392B1FCD6CAA00662C46 /* es-GT */,
  4156. F77439321FCD6CC400662C46 /* es-HN */,
  4157. F77439391FCD6CDE00662C46 /* es-NI */,
  4158. F77439401FCD6D0B00662C46 /* es-PA */,
  4159. F77439471FCD6D2300662C46 /* es-PE */,
  4160. F774394E1FCD6D3E00662C46 /* es-PR */,
  4161. F77439551FCD6D6100662C46 /* es-PY */,
  4162. F774395C1FCD6D8200662C46 /* es-SV */,
  4163. F77439631FCD6D9C00662C46 /* es-UY */,
  4164. F7BB04861FD58ACB00BBFD2A /* cs-CZ */,
  4165. F7320935201B8130008A0888 /* ko */,
  4166. F732093C201B81E4008A0888 /* es-419 */,
  4167. F70A07C9205285FB00DC1231 /* pt-PT */,
  4168. );
  4169. name = InfoPlist.strings;
  4170. path = "Supporting Files";
  4171. sourceTree = "<group>";
  4172. };
  4173. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  4174. isa = PBXVariantGroup;
  4175. children = (
  4176. F7151A811D477A4B00E6AF45 /* en */,
  4177. F7B1A7761EBB3C8000BFB6D1 /* de */,
  4178. F75B91E21ECAE17800199C96 /* fr */,
  4179. F75B91F71ECAE26300199C96 /* pt-BR */,
  4180. F75B923D1ECAE55E00199C96 /* ru */,
  4181. F7169A301EE59BB70086BD69 /* it */,
  4182. F7169A4C1EE59C640086BD69 /* tr */,
  4183. F78D6F461F0B7CB9002F9619 /* es-MX */,
  4184. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  4185. F78D6F541F0B7D47002F9619 /* pl */,
  4186. F7DE9AB01F482FA5008DFE10 /* sv */,
  4187. F7CC04E61F5AD50D00378CEF /* es */,
  4188. F7D532461F5D4123006568B1 /* is */,
  4189. F7D5324D1F5D4137006568B1 /* nl */,
  4190. F7D532541F5D4155006568B1 /* sk-SK */,
  4191. F7D5328F1F5D443B006568B1 /* en-GB */,
  4192. F7D532A41F5D4461006568B1 /* zh-Hans */,
  4193. F77438EB1FCD694900662C46 /* ka-GE */,
  4194. F77438F21FCD69D300662C46 /* hu */,
  4195. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  4196. F77439001FCD6B7F00662C46 /* sr */,
  4197. F77439071FCD6BF000662C46 /* es-CL */,
  4198. F774390E1FCD6C0C00662C46 /* es-CO */,
  4199. F77439151FCD6C4A00662C46 /* es-CR */,
  4200. F774391C1FCD6C6700662C46 /* es-DO */,
  4201. F77439231FCD6C8700662C46 /* es-EC */,
  4202. F774392A1FCD6CAA00662C46 /* es-GT */,
  4203. F77439311FCD6CC400662C46 /* es-HN */,
  4204. F77439381FCD6CDE00662C46 /* es-NI */,
  4205. F774393F1FCD6D0B00662C46 /* es-PA */,
  4206. F77439461FCD6D2300662C46 /* es-PE */,
  4207. F774394D1FCD6D3E00662C46 /* es-PR */,
  4208. F77439541FCD6D6100662C46 /* es-PY */,
  4209. F774395B1FCD6D8200662C46 /* es-SV */,
  4210. F77439621FCD6D9C00662C46 /* es-UY */,
  4211. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  4212. F7320934201B812F008A0888 /* ko */,
  4213. F732093B201B81E4008A0888 /* es-419 */,
  4214. F70A07C8205285FB00DC1231 /* pt-PT */,
  4215. );
  4216. name = Localizable.strings;
  4217. path = "Supporting Files";
  4218. sourceTree = "<group>";
  4219. };
  4220. /* End PBXVariantGroup section */
  4221. /* Begin XCBuildConfiguration section */
  4222. F7145A261D12E3B700CAFEEC /* Debug */ = {
  4223. isa = XCBuildConfiguration;
  4224. buildSettings = {
  4225. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4226. APPLICATION_EXTENSION_API_ONLY = NO;
  4227. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4228. CLANG_ENABLE_MODULES = YES;
  4229. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4230. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4231. CODE_SIGN_IDENTITY = "iPhone Developer";
  4232. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4233. DEBUG_INFORMATION_FORMAT = dwarf;
  4234. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4235. FRAMEWORK_SEARCH_PATHS = (
  4236. "$(inherited)",
  4237. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4238. );
  4239. GCC_NO_COMMON_BLOCKS = YES;
  4240. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4241. GCC_PREPROCESSOR_DEFINITIONS = (
  4242. "$(inherited)",
  4243. EXTENSION,
  4244. EXTENSION_SHARE,
  4245. NC,
  4246. );
  4247. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4248. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4249. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4250. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4251. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4252. OTHER_LDFLAGS = (
  4253. "-Obj-C",
  4254. "-all_load",
  4255. );
  4256. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4257. PRODUCT_NAME = "$(TARGET_NAME)";
  4258. SKIP_INSTALL = YES;
  4259. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  4260. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4261. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4262. SWIFT_VERSION = 4.0;
  4263. TARGETED_DEVICE_FAMILY = "1,2";
  4264. USE_HEADERMAP = YES;
  4265. };
  4266. name = Debug;
  4267. };
  4268. F7145A271D12E3B700CAFEEC /* Release */ = {
  4269. isa = XCBuildConfiguration;
  4270. buildSettings = {
  4271. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4272. APPLICATION_EXTENSION_API_ONLY = NO;
  4273. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4274. CLANG_ENABLE_MODULES = YES;
  4275. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4276. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4277. CODE_SIGN_IDENTITY = "iPhone Developer";
  4278. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4279. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4280. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4281. FRAMEWORK_SEARCH_PATHS = (
  4282. "$(inherited)",
  4283. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4284. );
  4285. GCC_NO_COMMON_BLOCKS = YES;
  4286. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4287. GCC_PREPROCESSOR_DEFINITIONS = (
  4288. "$(inherited)",
  4289. EXTENSION,
  4290. EXTENSION_SHARE,
  4291. NC,
  4292. );
  4293. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4294. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4295. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4296. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4297. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4298. OTHER_LDFLAGS = (
  4299. "-Obj-C",
  4300. "-all_load",
  4301. );
  4302. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4303. PRODUCT_NAME = "$(TARGET_NAME)";
  4304. SKIP_INSTALL = YES;
  4305. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  4306. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4307. SWIFT_VERSION = 4.0;
  4308. TARGETED_DEVICE_FAMILY = "1,2";
  4309. USE_HEADERMAP = YES;
  4310. };
  4311. name = Release;
  4312. };
  4313. F771E3F020E2392E00AFB62D /* Debug */ = {
  4314. isa = XCBuildConfiguration;
  4315. buildSettings = {
  4316. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4317. CLANG_ANALYZER_NONNULL = YES;
  4318. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4319. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4320. CLANG_ENABLE_OBJC_WEAK = YES;
  4321. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  4322. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4323. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4324. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4325. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4326. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  4327. CODE_SIGN_IDENTITY = "iPhone Developer";
  4328. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4329. CODE_SIGN_STYLE = Automatic;
  4330. DEBUG_INFORMATION_FORMAT = dwarf;
  4331. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4332. FRAMEWORK_SEARCH_PATHS = (
  4333. "$(inherited)",
  4334. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4335. );
  4336. GCC_C_LANGUAGE_STANDARD = gnu11;
  4337. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4338. GCC_PREPROCESSOR_DEFINITIONS = (
  4339. "$(inherited)",
  4340. EXTENSION,
  4341. EXTENSION_FILE_PROVIDER_EXTENSION,
  4342. NC,
  4343. );
  4344. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4345. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  4346. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4347. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4348. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4349. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4350. PRODUCT_NAME = "$(TARGET_NAME)";
  4351. SKIP_INSTALL = YES;
  4352. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4353. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4354. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4355. SWIFT_VERSION = 4.0;
  4356. TARGETED_DEVICE_FAMILY = "1,2";
  4357. };
  4358. name = Debug;
  4359. };
  4360. F771E3F120E2392E00AFB62D /* Release */ = {
  4361. isa = XCBuildConfiguration;
  4362. buildSettings = {
  4363. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4364. CLANG_ANALYZER_NONNULL = YES;
  4365. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4366. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4367. CLANG_ENABLE_OBJC_WEAK = YES;
  4368. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  4369. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4370. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4371. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4372. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4373. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  4374. CODE_SIGN_IDENTITY = "iPhone Developer";
  4375. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4376. CODE_SIGN_STYLE = Automatic;
  4377. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4378. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4379. FRAMEWORK_SEARCH_PATHS = (
  4380. "$(inherited)",
  4381. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4382. );
  4383. GCC_C_LANGUAGE_STANDARD = gnu11;
  4384. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4385. GCC_PREPROCESSOR_DEFINITIONS = (
  4386. EXTENSION,
  4387. EXTENSION_FILE_PROVIDER_EXTENSION,
  4388. NC,
  4389. );
  4390. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4391. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  4392. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4393. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4394. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4395. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4396. PRODUCT_NAME = "$(TARGET_NAME)";
  4397. SKIP_INSTALL = YES;
  4398. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4399. SWIFT_VERSION = 4.0;
  4400. TARGETED_DEVICE_FAMILY = "1,2";
  4401. };
  4402. name = Release;
  4403. };
  4404. F77B0F9B1D118A16002130FE /* Debug */ = {
  4405. isa = XCBuildConfiguration;
  4406. buildSettings = {
  4407. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4408. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4409. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4410. CLANG_ENABLE_MODULES = YES;
  4411. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4412. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4413. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  4414. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4415. CURRENT_PROJECT_VERSION = "";
  4416. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4417. ENABLE_BITCODE = YES;
  4418. FRAMEWORK_SEARCH_PATHS = (
  4419. "$(inherited)",
  4420. "$(PROJECT_DIR)\"/Libraries external/Analytics\"",
  4421. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4422. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4423. );
  4424. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4425. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4426. GCC_PREPROCESSOR_DEFINITIONS = (
  4427. "$(inherited)",
  4428. NC,
  4429. );
  4430. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4431. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4432. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4433. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4434. LIBRARY_SEARCH_PATHS = "\"Libraries external/openssl\"";
  4435. OTHER_LDFLAGS = (
  4436. "-Obj-C",
  4437. "-all_load",
  4438. );
  4439. OTHER_SWIFT_FLAGS = "-DDEBUG";
  4440. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4441. PRODUCT_NAME = "$(TARGET_NAME)";
  4442. PROVISIONING_PROFILE = "";
  4443. PROVISIONING_PROFILE_SPECIFIER = "";
  4444. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4445. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4446. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4447. SWIFT_VERSION = 4.0;
  4448. TARGETED_DEVICE_FAMILY = "1,2";
  4449. USE_HEADERMAP = YES;
  4450. VERSIONING_SYSTEM = "";
  4451. };
  4452. name = Debug;
  4453. };
  4454. F77B0F9C1D118A16002130FE /* Release */ = {
  4455. isa = XCBuildConfiguration;
  4456. buildSettings = {
  4457. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4458. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4459. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4460. CLANG_ENABLE_MODULES = YES;
  4461. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4462. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4463. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  4464. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4465. COPY_PHASE_STRIP = NO;
  4466. CURRENT_PROJECT_VERSION = "";
  4467. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4468. ENABLE_BITCODE = YES;
  4469. FRAMEWORK_SEARCH_PATHS = (
  4470. "$(inherited)",
  4471. "$(PROJECT_DIR)\"/Libraries external/Analytics\"",
  4472. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4473. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4474. );
  4475. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4476. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4477. GCC_PREPROCESSOR_DEFINITIONS = (
  4478. "$(inherited)",
  4479. NC,
  4480. );
  4481. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4482. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4483. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4484. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4485. LIBRARY_SEARCH_PATHS = "\"Libraries external/openssl\"";
  4486. OTHER_LDFLAGS = (
  4487. "-Obj-C",
  4488. "-all_load",
  4489. );
  4490. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4491. PRODUCT_NAME = "$(TARGET_NAME)";
  4492. PROVISIONING_PROFILE = "";
  4493. PROVISIONING_PROFILE_SPECIFIER = "";
  4494. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4495. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4496. SWIFT_VERSION = 4.0;
  4497. TARGETED_DEVICE_FAMILY = "1,2";
  4498. USE_HEADERMAP = YES;
  4499. VERSIONING_SYSTEM = "";
  4500. };
  4501. name = Release;
  4502. };
  4503. F7F67BC91A24D27800EE80DA /* Debug */ = {
  4504. isa = XCBuildConfiguration;
  4505. buildSettings = {
  4506. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4507. ALWAYS_SEARCH_USER_PATHS = NO;
  4508. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4509. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4510. CLANG_CXX_LIBRARY = "libc++";
  4511. CLANG_ENABLE_MODULES = YES;
  4512. CLANG_ENABLE_OBJC_ARC = YES;
  4513. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4514. CLANG_WARN_BOOL_CONVERSION = YES;
  4515. CLANG_WARN_COMMA = YES;
  4516. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4517. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4518. CLANG_WARN_EMPTY_BODY = YES;
  4519. CLANG_WARN_ENUM_CONVERSION = YES;
  4520. CLANG_WARN_INFINITE_RECURSION = YES;
  4521. CLANG_WARN_INT_CONVERSION = YES;
  4522. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4523. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4524. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4525. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4526. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4527. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4528. CLANG_WARN_UNREACHABLE_CODE = YES;
  4529. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4530. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4531. COPY_PHASE_STRIP = NO;
  4532. DEFINES_MODULE = YES;
  4533. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4534. ENABLE_TESTABILITY = YES;
  4535. GCC_C_LANGUAGE_STANDARD = gnu99;
  4536. GCC_DYNAMIC_NO_PIC = NO;
  4537. GCC_NO_COMMON_BLOCKS = YES;
  4538. GCC_OPTIMIZATION_LEVEL = 0;
  4539. GCC_PREPROCESSOR_DEFINITIONS = (
  4540. "DEBUG=1",
  4541. "$(inherited)",
  4542. );
  4543. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4544. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4545. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4546. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4547. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4548. GCC_WARN_UNUSED_FUNCTION = YES;
  4549. GCC_WARN_UNUSED_VARIABLE = YES;
  4550. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4551. MTL_ENABLE_DEBUG_INFO = YES;
  4552. ONLY_ACTIVE_ARCH = YES;
  4553. OTHER_LDFLAGS = (
  4554. "-Obj-C",
  4555. "-all_load",
  4556. );
  4557. SDKROOT = iphoneos;
  4558. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4559. };
  4560. name = Debug;
  4561. };
  4562. F7F67BCA1A24D27800EE80DA /* Release */ = {
  4563. isa = XCBuildConfiguration;
  4564. buildSettings = {
  4565. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4566. ALWAYS_SEARCH_USER_PATHS = NO;
  4567. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4568. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4569. CLANG_CXX_LIBRARY = "libc++";
  4570. CLANG_ENABLE_MODULES = YES;
  4571. CLANG_ENABLE_OBJC_ARC = YES;
  4572. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4573. CLANG_WARN_BOOL_CONVERSION = YES;
  4574. CLANG_WARN_COMMA = YES;
  4575. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4576. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4577. CLANG_WARN_EMPTY_BODY = YES;
  4578. CLANG_WARN_ENUM_CONVERSION = YES;
  4579. CLANG_WARN_INFINITE_RECURSION = YES;
  4580. CLANG_WARN_INT_CONVERSION = YES;
  4581. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4582. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4583. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4584. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4585. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4586. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4587. CLANG_WARN_UNREACHABLE_CODE = YES;
  4588. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4589. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4590. COPY_PHASE_STRIP = NO;
  4591. DEFINES_MODULE = YES;
  4592. ENABLE_NS_ASSERTIONS = NO;
  4593. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4594. GCC_C_LANGUAGE_STANDARD = gnu99;
  4595. GCC_NO_COMMON_BLOCKS = YES;
  4596. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4597. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4598. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4599. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4600. GCC_WARN_UNUSED_FUNCTION = YES;
  4601. GCC_WARN_UNUSED_VARIABLE = YES;
  4602. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4603. MTL_ENABLE_DEBUG_INFO = NO;
  4604. OTHER_LDFLAGS = (
  4605. "-Obj-C",
  4606. "-all_load",
  4607. );
  4608. SDKROOT = iphoneos;
  4609. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  4610. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4611. VALIDATE_PRODUCT = YES;
  4612. };
  4613. name = Release;
  4614. };
  4615. /* End XCBuildConfiguration section */
  4616. /* Begin XCConfigurationList section */
  4617. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  4618. isa = XCConfigurationList;
  4619. buildConfigurations = (
  4620. F7145A261D12E3B700CAFEEC /* Debug */,
  4621. F7145A271D12E3B700CAFEEC /* Release */,
  4622. );
  4623. defaultConfigurationIsVisible = 0;
  4624. defaultConfigurationName = Release;
  4625. };
  4626. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  4627. isa = XCConfigurationList;
  4628. buildConfigurations = (
  4629. F771E3F020E2392E00AFB62D /* Debug */,
  4630. F771E3F120E2392E00AFB62D /* Release */,
  4631. );
  4632. defaultConfigurationIsVisible = 0;
  4633. defaultConfigurationName = Release;
  4634. };
  4635. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  4636. isa = XCConfigurationList;
  4637. buildConfigurations = (
  4638. F77B0F9B1D118A16002130FE /* Debug */,
  4639. F77B0F9C1D118A16002130FE /* Release */,
  4640. );
  4641. defaultConfigurationIsVisible = 0;
  4642. defaultConfigurationName = Release;
  4643. };
  4644. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  4645. isa = XCConfigurationList;
  4646. buildConfigurations = (
  4647. F7F67BC91A24D27800EE80DA /* Debug */,
  4648. F7F67BCA1A24D27800EE80DA /* Release */,
  4649. );
  4650. defaultConfigurationIsVisible = 0;
  4651. defaultConfigurationName = Release;
  4652. };
  4653. /* End XCConfigurationList section */
  4654. };
  4655. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  4656. }